From 45c758bbde9993f5bf233f33bc9acfccef99fafe Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Sat, 19 Oct 2024 16:35:35 -0300 Subject: [PATCH 1/6] DOC: adds new apogee comparison plot --- docs/examples/index.rst | 67 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 62 insertions(+), 5 deletions(-) diff --git a/docs/examples/index.rst b/docs/examples/index.rst index 5d976a377..64c672a95 100644 --- a/docs/examples/index.rst +++ b/docs/examples/index.rst @@ -1,14 +1,71 @@ Flights simulated with RocketPy =============================== -Apart from the classical Calisto rocket, which is many times used as a -reference in the getting started tutorial, RocketPy also includes some very -interesting examples of real rockets. +RocketPy has been used to simulate many flights, from small amateur rockets to +large professional ones. +This section contains some of the most interesting +results obtained with RocketPy. +The following plot shows the comparison between the simulated and measured +apogee of some rockets. -If you want to see your rocket here, please contact the maintainers! +.. jupyter-execute:: + :hide-code: + + import matplotlib.pyplot as plt + + results = { + # "Name (Year)": (simulated, measured) m + # - use 2 decimal places + # - sort by year and then by name + "Valetudo (2019)": (825.39, 860), + "Bella Lui (2020)": (460.50, 458.97), + "NDRT (2020)": (1296.77, 1316.75), + "Prometheus (2022)": (4190.05, 3898.37), + "Cavour (2023)": (2818.90, 2789), + "Juno III (2023)": (3026.05, 3213), + "Halcyon (2023)": (3212.775, 3450), + } + + max_apogee = 4500 + + # Extract data + simulated = [sim for sim, meas in results.values()] + measured = [meas for sim, meas in results.values()] + labels = list(results.keys()) + + # Create the plot + fig, ax = plt.subplots(figsize=(9, 9)) + ax.scatter(simulated, measured) + ax.grid(True, alpha=0.3) + + # Add the x = y line + ax.plot([0, max_apogee], [0, max_apogee], linestyle='--', color='black', alpha=0.6) + + # Add text labels + for i, label in enumerate(labels): + ax.text(simulated[i], measured[i], label, ha='center', va='bottom', fontsize=8) + + # Set titles and labels + ax.set_title("Simulated x Measured Apogee") + ax.set_xlabel("Simulated Apogee (m)") + ax.set_ylabel("Measured Apogee (m)") + + # Set aspect ratio to 1:1 + ax.set_aspect('equal', adjustable='box') + ax.set_xlim(0, max_apogee) + ax.set_ylim(0, max_apogee) + + plt.show() + +In the next sections you will find the simulations of the rockets listed above. + +.. note:: + + If you want to see your rocket here, please contact the maintainers! \ + We would love to include your rocket in the examples. .. toctree:: - :maxdepth: 2 + :maxdepth: 1 :caption: Contents: bella_lui_flight_sim.ipynb From 13e66f6f6c74529332bcc2d9b396f418f98cab8d Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Sat, 19 Oct 2024 16:36:24 -0300 Subject: [PATCH 2/6] DOC: fix minor documentation issues --- docs/conf.py | 6 ------ docs/examples/cavour_flight_sim.ipynb | 4 ++-- docs/examples/halcyon_flight_sim.ipynb | 4 ++-- docs/reference/classes/sensors/abstract/sensor.rst | 2 +- docs/reference/classes/sensors/accelerometer.rst | 2 +- docs/reference/index.rst | 1 + docs/user/rocket/generic_surface.rst | 2 +- rocketpy/rocket/rocket.py | 6 +++--- rocketpy/sensors/accelerometer.py | 5 ++++- rocketpy/sensors/barometer.py | 1 + rocketpy/sensors/gnss_receiver.py | 1 + rocketpy/sensors/gyroscope.py | 3 +++ rocketpy/sensors/sensor.py | 7 ++++--- 13 files changed, 24 insertions(+), 20 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c5fbf4fad..fbe3f9d69 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -123,12 +123,6 @@ "github_url": "https://github.com/RocketPy-Team/RocketPy", "navbar_end": ["theme-switcher", "navbar-icon-links.html"], "icon_links": [ - { - "name": "GitHub", - "url": "https://github.com/RocketPy-Team/RocketPy/", - "icon": "fa-brands fa-square-github", - "type": "fontawesome", - }, { "name": "LinkedIn", "url": "https://www.linkedin.com/company/rocketpy/", diff --git a/docs/examples/cavour_flight_sim.ipynb b/docs/examples/cavour_flight_sim.ipynb index bf19b4c00..e3940224f 100644 --- a/docs/examples/cavour_flight_sim.ipynb +++ b/docs/examples/cavour_flight_sim.ipynb @@ -320,7 +320,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Flight Simulation DATA" + "## Flight Simulation DATA" ] }, { @@ -375,7 +375,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Data analysis" + "## Data analysis" ] }, { diff --git a/docs/examples/halcyon_flight_sim.ipynb b/docs/examples/halcyon_flight_sim.ipynb index d7b627602..b7d814f7b 100644 --- a/docs/examples/halcyon_flight_sim.ipynb +++ b/docs/examples/halcyon_flight_sim.ipynb @@ -448,7 +448,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Flight Simulation Data" + "## Flight Simulation Data" ] }, { @@ -503,7 +503,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Data analysis" + "## Data analysis" ] }, { diff --git a/docs/reference/classes/sensors/abstract/sensor.rst b/docs/reference/classes/sensors/abstract/sensor.rst index 188744f98..867d979c8 100644 --- a/docs/reference/classes/sensors/abstract/sensor.rst +++ b/docs/reference/classes/sensors/abstract/sensor.rst @@ -1,5 +1,5 @@ Sensor Class ------------ -.. autoclass:: rocketpy.sensors.Barometer +.. autoclass:: rocketpy.sensors.Sensor :members: diff --git a/docs/reference/classes/sensors/accelerometer.rst b/docs/reference/classes/sensors/accelerometer.rst index 0eac1e4c0..03d9012b4 100644 --- a/docs/reference/classes/sensors/accelerometer.rst +++ b/docs/reference/classes/sensors/accelerometer.rst @@ -1,5 +1,5 @@ Accelerometer Class ---------------- +------------------- .. autoclass:: rocketpy.sensors.Accelerometer :members: diff --git a/docs/reference/index.rst b/docs/reference/index.rst index 22187252f..c0868c0c5 100644 --- a/docs/reference/index.rst +++ b/docs/reference/index.rst @@ -14,6 +14,7 @@ This reference manual details functions, modules, methods and attributes include classes/Components classes/Rocket classes/Parachute + classes/sensors/index.rst classes/Flight Utilities classes/EnvironmentAnalysis diff --git a/docs/user/rocket/generic_surface.rst b/docs/user/rocket/generic_surface.rst index f6568758e..f2e166148 100644 --- a/docs/user/rocket/generic_surface.rst +++ b/docs/user/rocket/generic_surface.rst @@ -289,7 +289,7 @@ rocket's configuration: rocket.add_surfaces(generic_surface, position=(0,0,0)) The position of the generic surface is defined in the User Defined coordinate -System, see :ref:`rocketaxes` for more information. +System, see :ref:`rocket_axes` for more information. .. tip:: If defining the coefficients of the entire rocket is desired, only a single diff --git a/rocketpy/rocket/rocket.py b/rocketpy/rocket/rocket.py index 61de81f27..758447fde 100644 --- a/rocketpy/rocket/rocket.py +++ b/rocketpy/rocket/rocket.py @@ -1739,7 +1739,7 @@ def add_cm_eccentricity(self, x, y): See Also -------- - :ref:`rocketaxes` + :ref:`rocket_axes` Notes ----- @@ -1777,7 +1777,7 @@ def add_cp_eccentricity(self, x, y): See Also -------- - :ref:`rocketaxes` + :ref:`rocket_axes` """ self.cp_eccentricity_x = x self.cp_eccentricity_y = y @@ -1807,7 +1807,7 @@ def add_thrust_eccentricity(self, x, y): See Also -------- - :ref:`rocketaxes` + :ref:`rocket_axes` """ self.thrust_eccentricity_y = x self.thrust_eccentricity_x = y diff --git a/rocketpy/sensors/accelerometer.py b/rocketpy/sensors/accelerometer.py index 607b1632e..935f4e3cf 100644 --- a/rocketpy/sensors/accelerometer.py +++ b/rocketpy/sensors/accelerometer.py @@ -88,7 +88,8 @@ def __init__( Sample rate of the sensor in Hz. orientation : tuple, list, optional Orientation of the sensor in the rocket. The orientation can be - given as: + given as either: + - A list of length 3, where the elements are the Euler angles for the rotation yaw (ψ), pitch (θ) and roll (φ) in radians. The standard rotation sequence is z-y-x (3-2-1) is used, meaning the @@ -99,6 +100,7 @@ def __init__( of reference is defined as to have z axis along the sensor's normal vector pointing upwards, x and y axes perpendicular to the z axis and each other. + The rocket frame of reference is defined as to have z axis along the rocket's axis of symmetry pointing upwards, x and y axes perpendicular to the z axis and each other. A rotation around the x @@ -204,6 +206,7 @@ def measure(self, time, **kwargs): Current time in seconds. kwargs : dict Keyword arguments dictionary containing the following keys: + - u : np.array State vector of the rocket. - u_dot : np.array diff --git a/rocketpy/sensors/barometer.py b/rocketpy/sensors/barometer.py index 9e6fceb16..bf5b538e2 100644 --- a/rocketpy/sensors/barometer.py +++ b/rocketpy/sensors/barometer.py @@ -144,6 +144,7 @@ def measure(self, time, **kwargs): Current time in seconds. kwargs : dict Keyword arguments dictionary containing the following keys: + - u : np.array State vector of the rocket. - u_dot : np.array diff --git a/rocketpy/sensors/gnss_receiver.py b/rocketpy/sensors/gnss_receiver.py index 9502bd918..686cd29e5 100644 --- a/rocketpy/sensors/gnss_receiver.py +++ b/rocketpy/sensors/gnss_receiver.py @@ -72,6 +72,7 @@ def measure(self, time, **kwargs): Current time in seconds. kwargs : dict Keyword arguments dictionary containing the following keys: + - u : np.array State vector of the rocket. - u_dot : np.array diff --git a/rocketpy/sensors/gyroscope.py b/rocketpy/sensors/gyroscope.py index eb1337a73..cafac1cdc 100644 --- a/rocketpy/sensors/gyroscope.py +++ b/rocketpy/sensors/gyroscope.py @@ -89,6 +89,7 @@ def __init__( orientation : tuple, list, optional Orientation of the sensor in the rocket. The orientation can be given as: + - A list of length 3, where the elements are the Euler angles for the rotation yaw (ψ), pitch (θ) and roll (φ) in radians. The standard rotation sequence is z-y-x (3-2-1) is used, meaning the @@ -99,6 +100,7 @@ def __init__( of reference is defined as to have z axis along the sensor's normal vector pointing upwards, x and y axes perpendicular to the z axis and each other. + The rocket frame of reference is defined as to have z axis along the rocket's axis of symmetry pointing upwards, x and y axes perpendicular to the z axis and each other. Default is (0, 0, 0), @@ -206,6 +208,7 @@ def measure(self, time, **kwargs): Current time in seconds. kwargs : dict Keyword arguments dictionary containing the following keys: + - u : np.array State vector of the rocket. - u_dot : np.array diff --git a/rocketpy/sensors/sensor.py b/rocketpy/sensors/sensor.py index 3db574016..4890540dc 100644 --- a/rocketpy/sensors/sensor.py +++ b/rocketpy/sensors/sensor.py @@ -346,12 +346,13 @@ def __init__( Sample rate of the sensor orientation : tuple, list, optional Orientation of the sensor in relation to the rocket frame of - reference (Body Axes Coordinate System). See :ref:'rocket_axes' for + reference (Body Axes Coordinate System). See :ref:`rocket_axes` for more information. If orientation is not given, the sensor axes will be aligned with the rocket axis. - The orientation can be given as: - - A list or tuple of length 3, where the elements are the intrisic + The orientation can be given as either: + + - A list or tuple of length 3, where the elements are the intrinsic rotation angles in radians. The rotation sequence z-x-z (3-1-3) is used, meaning the sensor is first around the z axis (roll), then around the new x axis (pitch) and finally around the new z axis From 282e54e07ef0d029ec3b01af2d179a6848ec0714 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> Date: Fri, 1 Nov 2024 21:04:51 -0300 Subject: [PATCH 3/6] BUG: fix export ellipses to kml function (#712) * BUG: fix export ellipses to kml function * BUG: fix export ellipses to kml function * MNT: raise error if no apogee or impact data is found for plotting ellipses * DEV: Adds #712 to changelog * TST: increase monte carlo tests --- CHANGELOG.md | 9 +- .../monte_carlo_class_example.errors.txt | 1 + .../monte_carlo_class_example.inputs.txt | 1819 ++++++++--------- .../monte_carlo_class_example.kml | 81 +- .../monte_carlo_class_example.outputs.txt | 1819 ++++++++--------- .../monte_carlo_class_usage.ipynb | 484 ++++- rocketpy/plots/monte_carlo_plots.py | 29 +- rocketpy/simulation/monte_carlo.py | 92 +- rocketpy/tools.py | 295 +-- tests/integration/test_monte_carlo.py | 2 +- tests/unit/test_tools.py | 14 + 11 files changed, 2381 insertions(+), 2264 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1d36558..f68f10b8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ Attention: The newest changes should be on top --> ### Fixed +- BUG: fix export ellipses to kml function [#712](https://github.com/RocketPy-Team/RocketPy/pull/712) ## [v1.6.1] - 2024-10-10 @@ -76,7 +77,7 @@ Attention: The newest changes should be on top --> - DOC: Halcyon Flight Example [#681](https://github.com/RocketPy-Team/RocketPy/pull/681) - ENH: Adds GenericMotor.load_from_eng_file() method [#676](https://github.com/RocketPy-Team/RocketPy/pull/676) - ENH: Introducing local sensitivity analysis [#575](https://github.com/RocketPy-Team/RocketPy/pull/575) -- ENH: Add STFT function to Function class [#620](https://github.com/RocketPy-Team/RocketPy/pull/620) +- ENH: Add STFT function to Function class [#620](https://github.com/RocketPy-Team/RocketPy/pull/620) - ENH: Rocket Axis Definition [#635](https://github.com/RocketPy-Team/RocketPy/pull/635) ### Changed @@ -179,7 +180,7 @@ You can install this version by running `pip install rocketpy==1.3.0` - MNT: refactor u_dot parachute method [#596](https://github.com/RocketPy-Team/RocketPy/pull/596) - BLD: Change setup.py to pyproject.toml [#589](https://github.com/RocketPy-Team/RocketPy/pull/589) - DEP: delete deprecated rocketpy.tools.cached_property [#587](https://github.com/RocketPy-Team/RocketPy/pull/587) -- ENH: Flight simulation speed up [#581](https://github.com/RocketPy-Team/RocketPy/pull/581) +- ENH: Flight simulation speed up [#581](https://github.com/RocketPy-Team/RocketPy/pull/581) - MNT: Modularize Rocket Draw [#580](https://github.com/RocketPy-Team/RocketPy/pull/580) - DOC: Improvements of Environment docstring phrasing [#565](https://github.com/RocketPy-Team/RocketPy/pull/565) - MNT: Refactor flight prints module [#579](https://github.com/RocketPy-Team/RocketPy/pull/579) @@ -196,7 +197,7 @@ You can install this version by running `pip install rocketpy==1.3.0` - BUG: Fix minor type hinting problems [#598](https://github.com/RocketPy-Team/RocketPy/pull/598) - BUG: Optional Dependencies Naming in pyproject.toml. [#592](https://github.com/RocketPy-Team/RocketPy/pull/592) - BUG: Swap rocket.total_mass.differentiate for motor.total_mass_flow rate [#585](https://github.com/RocketPy-Team/RocketPy/pull/585) -- BUG: export_eng 'Motor' method would not work for liquid motors. [#559](https://github.com/RocketPy-Team/RocketPy/pull/559) +- BUG: export_eng 'Motor' method would not work for liquid motors. [#559](https://github.com/RocketPy-Team/RocketPy/pull/559) ## [v1.2.2] - 2024-03-22 @@ -226,7 +227,7 @@ You can install this version by running `pip install rocketpy==1.2.0` - DOC: add juno3 flight example [#513](https://github.com/RocketPy-Team/RocketPy/pull/513) - ENH: add Function.low_pass_filter method [#508](https://github.com/RocketPy-Team/RocketPy/pull/508) - ENH: Air Brakes [#426](https://github.com/RocketPy-Team/RocketPy/pull/426) -- +- ### Changed diff --git a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.errors.txt b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.errors.txt index e69de29bb..12cc565e4 100644 --- a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.errors.txt +++ b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.errors.txt @@ -0,0 +1 @@ +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635026504073287, "mass": 15.682085969389227, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338988882158036, "I_33_without_motor": 0.03130204348386302, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.964579481480238, "trigger": 800, "sampling_rate": 105, "lag": 1.5400928421750208, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.053581347292585, "trigger": "apogee", "sampling_rate": 105, "lag": 1.547076677223584, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6856.354770975974, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032730650070270366, "grain_number": 5, "grain_density": 1759.0002074492309, "grain_outer_radius": 0.03242230462181787, "grain_initial_inner_radius": 0.014932033668244029, "grain_initial_height": 0.11986670781368569, "grain_separation": 0.0043804774372666125, "grains_center_of_mass_position": 0.39749334004739806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012776739944301812, "throat_radius": 0.011558987272317063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554668494646906}], "aerodynamic_surfaces": [{"length": 0.5585738309196118, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133607250248703]}, {"n": 4, "root_chord": 0.11954751546671595, "tip_chord": 0.05966602935963838, "span": 0.10964031934715668, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514983708842365]}, {"top_radius": 0.06343918078680816, "bottom_radius": 0.04325007199856578, "length": 0.060394317313238605, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6974746622933771, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188258915052254, "upper_button_position": 0.07864877078815169}], "rail_length": 5, "inclination": 84.44167248190685, "heading": 54.43860091183173} diff --git a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.inputs.txt b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.inputs.txt index 9a890d126..6aee96082 100644 --- a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.inputs.txt +++ b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.inputs.txt @@ -1,1000 +1,819 @@ -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349805737362968, "mass": 15.389343012059967, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321735286465201, "I_33_without_motor": 0.03131376369351965, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.876119007794975, "trigger": 800, "sampling_rate": 105, "lag": 1.4039051334657628, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1153330682349194, "trigger": "apogee", "sampling_rate": 105, "lag": 1.312010528474876, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4108.051237022448, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311718353546555, "grain_number": 5, "grain_density": 1695.4913078620402, "grain_outer_radius": 0.03264948443697062, "grain_initial_inner_radius": 0.014555365817764128, "grain_initial_height": 0.11821009521651879, "grain_separation": 0.004583915578695257, "grains_center_of_mass_position": 0.3969572624428137, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00047102172569662396, "throat_radius": 0.010080872060816265, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255619886341495}], "aerodynamic_surfaces": [{"length": 0.5576500216475931, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352121042080896}, {"n": 4, "root_chord": 0.12021634187795194, "tip_chord": 0.06025703291533595, "span": 0.10918068131206991, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488626145273403}, {"top_radius": 0.0626865801265797, "bottom_radius": 0.04297830537127572, "length": 0.06011444931045156, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992654977438861, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187574583936143, "upper_button_position": 0.08050803935027184}], "rail_length": 5, "inclination": 83.99566634839267, "heading": 53.47446847289658} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349568759277349, "mass": 15.871372970399714, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32143833801456, "I_33_without_motor": 0.025361480812992165, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077882999005631, "trigger": 800, "sampling_rate": 105, "lag": 1.4756252566522896, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9234284715919572, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3881834217904099, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7560.552269691809, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323498477966384, "grain_number": 5, "grain_density": 1755.9230148617169, "grain_outer_radius": 0.03267183091689585, "grain_initial_inner_radius": 0.014535059788844295, "grain_initial_height": 0.12113377540018655, "grain_separation": 0.003711258876365968, "grains_center_of_mass_position": 0.3990071185124238, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004780092736673756, "throat_radius": 0.011354053231359101, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256755951809356}], "aerodynamic_surfaces": [{"length": 0.5580358686457025, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334538600705395}, {"n": 4, "root_chord": 0.11977955036692965, "tip_chord": 0.06089877303072869, "span": 0.11014224339464011, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483242434463498}, {"top_radius": 0.060837816049840676, "bottom_radius": 0.041506576959683614, "length": 0.0593279226733775, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698095605353847, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183525039576656, "upper_button_position": 0.07974310139618135}], "rail_length": 5, "inclination": 84.34620859076892, "heading": 55.07341785747127} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350798915776218, "mass": 14.72596643167926, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332159201892256, "I_33_without_motor": 0.03228516003734544, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06461007091624, "trigger": 800, "sampling_rate": 105, "lag": 1.6023514110104404, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0268301860306066, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4122896506826836, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6871.511434578152, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296838299836172, "grain_number": 5, "grain_density": 1869.21321159043, "grain_outer_radius": 0.03309847387726497, "grain_initial_inner_radius": 0.015208042171507568, "grain_initial_height": 0.12018993129472064, "grain_separation": 0.005764039775868713, "grains_center_of_mass_position": 0.3964108328391228, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009325348653550037, "throat_radius": 0.01079038465163295, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534347949360516}], "aerodynamic_surfaces": [{"length": 0.5573675625079105, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327284409935567}, {"n": 4, "root_chord": 0.12045567438924641, "tip_chord": 0.059803267822943845, "span": 0.11030749808635916, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510433984582117}, {"top_radius": 0.0638544619409675, "bottom_radius": 0.043529212214606434, "length": 0.06067193427632704, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997281750819397, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178201480548839, "upper_button_position": 0.0819080270270558}], "rail_length": 5, "inclination": 82.84930725852438, "heading": 52.13067196496287} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349198879334829, "mass": 15.663210357314242, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3039992581611815, "I_33_without_motor": 0.036471318111333015, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02480928546872, "trigger": 800, "sampling_rate": 105, "lag": 1.491790048256705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0886103746464808, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3716473123220443, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8953.471688856735, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03190765393770245, "grain_number": 5, "grain_density": 1880.4406232197334, "grain_outer_radius": 0.03302450040538434, "grain_initial_inner_radius": 0.015617614510899127, "grain_initial_height": 0.12048318998351128, "grain_separation": 0.007169103759842684, "grains_center_of_mass_position": 0.39783080401039733, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012363481472211675, "throat_radius": 0.01177144987710455, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532840556626004}], "aerodynamic_surfaces": [{"length": 0.5587315001541049, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342885125674442}, {"n": 4, "root_chord": 0.12028910461093067, "tip_chord": 0.05998112208049944, "span": 0.11009690638634227, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490342720699566}, {"top_radius": 0.06573189567819025, "bottom_radius": 0.044838697306655476, "length": 0.061833697191102314, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995776122750901, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186939180530747, "upper_button_position": 0.08088369422201536}], "rail_length": 5, "inclination": 85.78558268616787, "heading": 50.68863776937965} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0634989137088062, "mass": 15.524205851856598, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307077744556842, "I_33_without_motor": 0.04121834457103162, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.807308247519861, "trigger": 800, "sampling_rate": 105, "lag": 1.3926705554294792, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9735423972094154, "trigger": "apogee", "sampling_rate": 105, "lag": 1.062451397033119, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5015.991156946792, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03267549450294006, "grain_number": 5, "grain_density": 1865.8385945972504, "grain_outer_radius": 0.032517505250722056, "grain_initial_inner_radius": 0.014395951176178923, "grain_initial_height": 0.11905243928021207, "grain_separation": 0.00694319036163794, "grains_center_of_mass_position": 0.39631145238620025, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00047548869979659425, "throat_radius": 0.01203043859832975, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540384094728645}], "aerodynamic_surfaces": [{"length": 0.5577651567092415, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1317591734921408}, {"n": 4, "root_chord": 0.12039721538667243, "tip_chord": 0.05979438371862118, "span": 0.110346321409889, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488799975545195}, {"top_radius": 0.063826629209881, "bottom_radius": 0.04301283500733776, "length": 0.05914550109264588, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004398082348514, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177243515058461, "upper_button_position": 0.08271545672900527}], "rail_length": 5, "inclination": 85.79943057564431, "heading": 55.22885759009731} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349794514593535, "mass": 15.40131838197621, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323516323773933, "I_33_without_motor": 0.044043180957609535, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.889796197469883, "trigger": 800, "sampling_rate": 105, "lag": 1.6597157374660025, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1577128968109667, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4102498864975466, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5747.9694330832945, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260091681525579, "grain_number": 5, "grain_density": 1809.41425119596, "grain_outer_radius": 0.03285416034821841, "grain_initial_inner_radius": 0.014334423858244476, "grain_initial_height": 0.11908764387597626, "grain_separation": 0.003758212153780999, "grains_center_of_mass_position": 0.39530588102932435, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00018237988519243417, "throat_radius": 0.010390477481317925, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554664124441006}], "aerodynamic_surfaces": [{"length": 0.557486775934228, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134035581723955}, {"n": 4, "root_chord": 0.11976113202801413, "tip_chord": 0.06045327753628993, "span": 0.10909251698941519, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486601934173354}, {"top_radius": 0.06411375627493335, "bottom_radius": 0.04310692208158088, "length": 0.060334064485441104, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983587967714802, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169822425076821, "upper_button_position": 0.08137655426379808}], "rail_length": 5, "inclination": 85.7942384784516, "heading": 51.97018719141674} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.0634831907893462, "mass": 16.142985666295708, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318786454516819, "I_33_without_motor": 0.03311914769696219, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001403677260269, "trigger": 800, "sampling_rate": 105, "lag": 1.3419601294384211, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9531651643576923, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2598768535655447, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5310.725604918773, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274206298396838, "grain_number": 5, "grain_density": 1769.4667598578696, "grain_outer_radius": 0.03323051860789689, "grain_initial_inner_radius": 0.015364332976995312, "grain_initial_height": 0.1211366621886763, "grain_separation": 0.0054513310859828894, "grains_center_of_mass_position": 0.39600826493805114, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007871611885092088, "throat_radius": 0.01078534923432791, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541869514725055}], "aerodynamic_surfaces": [{"length": 0.5557371893856308, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327216562898037}, {"n": 4, "root_chord": 0.11958761788853188, "tip_chord": 0.059764931435170546, "span": 0.11065314184124352, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489547751220671}, {"top_radius": 0.06314625464289524, "bottom_radius": 0.04407792894307738, "length": 0.05905359461955076, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007021074685083, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173895248569061, "upper_button_position": 0.08331258261160213}], "rail_length": 5, "inclination": 85.49781283239032, "heading": 50.80975573862622} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349863232206687, "mass": 15.689204211722974, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31826115576864, "I_33_without_motor": 0.040021497095157836, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031682825222076, "trigger": 800, "sampling_rate": 105, "lag": 1.5691961404651653, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9959763974871235, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5491443870900725, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6382.952785577865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268121568941596, "grain_number": 5, "grain_density": 1795.5261699281193, "grain_outer_radius": 0.03316899104541241, "grain_initial_inner_radius": 0.014916134344019517, "grain_initial_height": 0.11991351535231197, "grain_separation": 0.005798273412858732, "grains_center_of_mass_position": 0.3962572632273513, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018490357116945797, "throat_radius": 0.010816573474938064, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556502958930567}], "aerodynamic_surfaces": [{"length": 0.5576033172097007, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134515287298298}, {"n": 4, "root_chord": 0.11991996486751397, "tip_chord": 0.06067129726063602, "span": 0.10948630816400014, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05073679223004}, {"top_radius": 0.06416681384172478, "bottom_radius": 0.04329548648817064, "length": 0.06013474794204077, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008199501135784, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6158737611598102, "upper_button_position": 0.08494618895376826}], "rail_length": 5, "inclination": 84.0756264420093, "heading": 54.17262036645339} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350145673884958, "mass": 15.551586568589524, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304098105921679, "I_33_without_motor": 0.0371267629688243, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.87776987475195, "trigger": 800, "sampling_rate": 105, "lag": 1.6207770644096942, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1217546123772562, "trigger": "apogee", "sampling_rate": 105, "lag": 1.533869910295029, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7672.407794262357, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033394083699183424, "grain_number": 5, "grain_density": 1845.5288691977412, "grain_outer_radius": 0.033045834806567, "grain_initial_inner_radius": 0.015146644936899874, "grain_initial_height": 0.11954096300884073, "grain_separation": 0.006306291632734014, "grains_center_of_mass_position": 0.3959085893646627, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.296846509519164e-05, "throat_radius": 0.011124106372909724, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533534977228655}], "aerodynamic_surfaces": [{"length": 0.5572518846982311, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328806737307489}, {"n": 4, "root_chord": 0.11983317278506934, "tip_chord": 0.06014155279889624, "span": 0.1099090387242727, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04894748976471}, {"top_radius": 0.06451922460124532, "bottom_radius": 0.042126954277296416, "length": 0.06126263117808771, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6977609532603006, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165137190466425, "upper_button_position": 0.08124723421365809}], "rail_length": 5, "inclination": 84.89745125792864, "heading": 53.86043715778058} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349077882706658, "mass": 15.182258161101158, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315839751337961, "I_33_without_motor": 0.02847599123995332, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92888228429399, "trigger": 800, "sampling_rate": 105, "lag": 1.2893860157136594, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9984549208702471, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4180995518728992, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4836.092533212706, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03246502670934628, "grain_number": 5, "grain_density": 1841.8703491868155, "grain_outer_radius": 0.03375046120564701, "grain_initial_inner_radius": 0.015186898360631518, "grain_initial_height": 0.11913158211544887, "grain_separation": 0.003757966089633795, "grains_center_of_mass_position": 0.3959208138544734, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008812406844481487, "throat_radius": 0.010392935494783003, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543762846310362}], "aerodynamic_surfaces": [{"length": 0.5589077117249827, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351650894400276}, {"n": 4, "root_chord": 0.12027315335664264, "tip_chord": 0.0596310380384038, "span": 0.1101237279389898, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490800700121272}, {"top_radius": 0.06434392063538708, "bottom_radius": 0.04378058030439624, "length": 0.0604952671466271, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984142175190204, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617636089535155, "upper_button_position": 0.08077812798386541}], "rail_length": 5, "inclination": 84.6231758124475, "heading": 54.97132895874029} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349149023014282, "mass": 15.052223673264162, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316137352455153, "I_33_without_motor": 0.04684661206944135, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94324607463676, "trigger": 800, "sampling_rate": 105, "lag": 1.4243411241093509, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0107768396385226, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3149262219082003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5878.3880575907615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301890901754477, "grain_number": 5, "grain_density": 1756.551375235997, "grain_outer_radius": 0.032779270289304815, "grain_initial_inner_radius": 0.015498336695161466, "grain_initial_height": 0.12203403166970983, "grain_separation": 0.004317483172715653, "grains_center_of_mass_position": 0.3979647402253393, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019389074728340151, "throat_radius": 0.01096760808975465, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551359399044315}], "aerodynamic_surfaces": [{"length": 0.5581139563509647, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351899635505072}, {"n": 4, "root_chord": 0.1190971514089676, "tip_chord": 0.06015880099599558, "span": 0.1101427822116408, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497565539410971}, {"top_radius": 0.06496552288147592, "bottom_radius": 0.043265211710923596, "length": 0.0607792206563812, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001054142381778, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191725236056508, "upper_button_position": 0.08093289063252707}], "rail_length": 5, "inclination": 84.2045831780379, "heading": 55.827662347141086} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349771397997445, "mass": 16.06160129672824, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332391382910079, "I_33_without_motor": 0.03836774915008192, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.833613287054275, "trigger": 800, "sampling_rate": 105, "lag": 1.5252294101465433, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0152581218071508, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4152760988225876, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7264.589176934608, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032651078892538, "grain_number": 5, "grain_density": 1783.2474873169085, "grain_outer_radius": 0.032638278263303025, "grain_initial_inner_radius": 0.014546021780960197, "grain_initial_height": 0.11869900613004641, "grain_separation": 0.0055516452533830845, "grains_center_of_mass_position": 0.3990985124982269, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005789697742237419, "throat_radius": 0.010370894562649148, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547226295208156}], "aerodynamic_surfaces": [{"length": 0.5589992990932895, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332962891295542}, {"n": 4, "root_chord": 0.11997195921922695, "tip_chord": 0.06021813666525289, "span": 0.10974846882243691, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048127176371201}, {"top_radius": 0.0626895490712947, "bottom_radius": 0.04295730176021872, "length": 0.06013783250367658, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988672196278417, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159110571053398, "upper_button_position": 0.08295616252250193}], "rail_length": 5, "inclination": 84.32339349978908, "heading": 49.195438412567476} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350823729860457, "mass": 15.688069242517775, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325243150834928, "I_33_without_motor": 0.032883472155852356, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10054796124173, "trigger": 800, "sampling_rate": 105, "lag": 1.6090738644763298, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0253342111637302, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1455799743026462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5835.446044485204, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291193533023806, "grain_number": 5, "grain_density": 1823.7305167531724, "grain_outer_radius": 0.03335598855317141, "grain_initial_inner_radius": 0.014878106917750955, "grain_initial_height": 0.12062607598446093, "grain_separation": 0.00519190786964085, "grains_center_of_mass_position": 0.3952453699601913, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005391907645689813, "throat_radius": 0.010371047038801776, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254781104436866}], "aerodynamic_surfaces": [{"length": 0.5596845712180962, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134312984571847}, {"n": 4, "root_chord": 0.12028784640528524, "tip_chord": 0.06067134528620903, "span": 0.10977611857131127, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050878752737091}, {"top_radius": 0.06475316574797511, "bottom_radius": 0.0434451615534851, "length": 0.05955295639484732, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007156149871617, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185509977858705, "upper_button_position": 0.0821646172012912}], "rail_length": 5, "inclination": 84.35345931769689, "heading": 51.34419493832341} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349496323819319, "mass": 16.259908337654522, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323062647180183, "I_33_without_motor": 0.03505173996383975, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.164397606912067, "trigger": 800, "sampling_rate": 105, "lag": 1.4002631067369522, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.976996570483305, "trigger": "apogee", "sampling_rate": 105, "lag": 1.609805870911143, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6976.04080346311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326218816446908, "grain_number": 5, "grain_density": 1826.2255702247571, "grain_outer_radius": 0.03356251139043825, "grain_initial_inner_radius": 0.015334953156546614, "grain_initial_height": 0.1204411386290191, "grain_separation": 0.007401598319972476, "grains_center_of_mass_position": 0.39746816647781963, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003996622633307872, "throat_radius": 0.010964437673858303, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540506934237796}], "aerodynamic_surfaces": [{"length": 0.5597210365333222, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334537865305767}, {"n": 4, "root_chord": 0.12007047533957835, "tip_chord": 0.060563899452429744, "span": 0.11010237318931132, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505678483668137}, {"top_radius": 0.062183458119483365, "bottom_radius": 0.04370613088519955, "length": 0.059307195473033536, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982687810960271, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190359027235721, "upper_button_position": 0.07923287837245496}], "rail_length": 5, "inclination": 84.03529089427091, "heading": 53.00075114985448} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0634971499086867, "mass": 15.595245779914459, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316998748419351, "I_33_without_motor": 0.02203501484059431, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996222182833018, "trigger": 800, "sampling_rate": 105, "lag": 1.4971784097416883, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9841311168606752, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5537292455629264, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4020.69782709258, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032342075062813266, "grain_number": 5, "grain_density": 1833.075350239971, "grain_outer_radius": 0.03253278269544026, "grain_initial_inner_radius": 0.014521374697467448, "grain_initial_height": 0.12043526270674562, "grain_separation": 0.007720893836035399, "grains_center_of_mass_position": 0.3971440277584128, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005229393716931545, "throat_radius": 0.010643392128009686, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253725496151976}], "aerodynamic_surfaces": [{"length": 0.5592797323447093, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342976277579035}, {"n": 4, "root_chord": 0.12060886287220145, "tip_chord": 0.06022305941312313, "span": 0.11089171247307048, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499359475750885}, {"top_radius": 0.062268785401773316, "bottom_radius": 0.043295567582801224, "length": 0.05898370388734055, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988687434996698, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61955938562073, "upper_button_position": 0.07930935787893978}], "rail_length": 5, "inclination": 83.74488308095599, "heading": 53.09822074153155} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350115072868714, "mass": 16.095579687860106, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322824873984299, "I_33_without_motor": 0.029834578589775198, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.947147586360721, "trigger": 800, "sampling_rate": 105, "lag": 1.564550595258857, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0687263976612273, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3950721919110773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6644.865950511452, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296243423156791, "grain_number": 5, "grain_density": 1788.7335808252174, "grain_outer_radius": 0.033369536043405326, "grain_initial_inner_radius": 0.0147496536188582, "grain_initial_height": 0.11959279084610683, "grain_separation": 0.00705740314149294, "grains_center_of_mass_position": 0.3959842817536911, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013766206422772553, "throat_radius": 0.01088145044450906, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559313298266825}], "aerodynamic_surfaces": [{"length": 0.5580999529954143, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346684017995525}, {"n": 4, "root_chord": 0.12004206236616682, "tip_chord": 0.06017961077015289, "span": 0.10902181975775063, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484506116060401}, {"top_radius": 0.06449762184403855, "bottom_radius": 0.04272349665973286, "length": 0.05964299291814662, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993206687186437, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180232423447362, "upper_button_position": 0.08129742637390758}], "rail_length": 5, "inclination": 84.72649806068213, "heading": 52.73351541621439} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349289642040103, "mass": 15.340434817425109, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3385756786690335, "I_33_without_motor": 0.04262909256505486, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.923795886197066, "trigger": 800, "sampling_rate": 105, "lag": 1.4314563393486488, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0041711926879937, "trigger": "apogee", "sampling_rate": 105, "lag": 1.287934603102582, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5889.036478599186, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032394861525868596, "grain_number": 5, "grain_density": 1660.9528555185695, "grain_outer_radius": 0.032338779327253625, "grain_initial_inner_radius": 0.0154588667737736, "grain_initial_height": 0.12209863203704184, "grain_separation": 0.004801021547758095, "grains_center_of_mass_position": 0.3989821401298585, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002400641650416377, "throat_radius": 0.01108728192286811, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537996525494397}], "aerodynamic_surfaces": [{"length": 0.5585277845861264, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134409209899724}, {"n": 4, "root_chord": 0.11890184679142328, "tip_chord": 0.0597080724579482, "span": 0.11011584048441443, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498322899420125}, {"top_radius": 0.0634147386524999, "bottom_radius": 0.04554817377221769, "length": 0.05984419536240244, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988274677442051, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191755441362213, "upper_button_position": 0.07965192360798379}], "rail_length": 5, "inclination": 86.24763533071174, "heading": 52.23831165823071} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635028060539363, "mass": 14.777986480047897, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310664032513163, "I_33_without_motor": 0.016564876790099367, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96762502545579, "trigger": 800, "sampling_rate": 105, "lag": 1.5642660762813334, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9910853668220625, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7883064799358206, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5400.2384854408165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345658985769215, "grain_number": 5, "grain_density": 1762.6226300849758, "grain_outer_radius": 0.03320671336185181, "grain_initial_inner_radius": 0.015015736926571694, "grain_initial_height": 0.12154522427311285, "grain_separation": 0.005057596989791103, "grains_center_of_mass_position": 0.39841462708979797, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009428596992236787, "throat_radius": 0.010226492812006981, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545693794448503}], "aerodynamic_surfaces": [{"length": 0.5578984025077259, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336243054258601}, {"n": 4, "root_chord": 0.11922484281503748, "tip_chord": 0.060328823877992356, "span": 0.11063473065590104, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484087504872224}, {"top_radius": 0.06315639178025098, "bottom_radius": 0.043928715102024646, "length": 0.05953836538671803, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996583171704494, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165170044868177, "upper_button_position": 0.08314131268363167}], "rail_length": 5, "inclination": 86.47363753649725, "heading": 50.287576960514876} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349516537004417, "mass": 15.835782863122091, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307202712968757, "I_33_without_motor": 0.025730202026935236, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033637722927553, "trigger": 800, "sampling_rate": 105, "lag": 1.504910882202733, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9978140129362387, "trigger": "apogee", "sampling_rate": 105, "lag": 1.196007486500236, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5934.21189980341, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033535228023604695, "grain_number": 5, "grain_density": 1845.8880119852554, "grain_outer_radius": 0.03285168331136458, "grain_initial_inner_radius": 0.015420017644234686, "grain_initial_height": 0.11885944066029998, "grain_separation": 0.0032660142191687047, "grains_center_of_mass_position": 0.3967137075304384, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001741474640243094, "throat_radius": 0.011214353763790914, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544411136059979}], "aerodynamic_surfaces": [{"length": 0.5598644517518168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334267313653756}, {"n": 4, "root_chord": 0.12022901236400485, "tip_chord": 0.05977564071928336, "span": 0.10976459441825573, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506508376463026}, {"top_radius": 0.06260219692495436, "bottom_radius": 0.04243102271072424, "length": 0.06073322923312748, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007437023844868, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186281043651749, "upper_button_position": 0.0821155980193119}], "rail_length": 5, "inclination": 86.74729128100171, "heading": 52.164118455763834} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349941918966595, "mass": 14.757850832964294, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332035614904166, "I_33_without_motor": 0.04953719906058777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.026239333697717, "trigger": 800, "sampling_rate": 105, "lag": 1.4476468707904513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.020832647345615, "trigger": "apogee", "sampling_rate": 105, "lag": 1.642058196999335, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7627.663519970132, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032763996578027296, "grain_number": 5, "grain_density": 1884.7765105650922, "grain_outer_radius": 0.033171609397371814, "grain_initial_inner_radius": 0.014965821437379439, "grain_initial_height": 0.11864664191566922, "grain_separation": 0.005599234829832283, "grains_center_of_mass_position": 0.3979775989541212, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007646217517993514, "throat_radius": 0.011054549784517326, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531559345060732}], "aerodynamic_surfaces": [{"length": 0.5573522294710914, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135084579066834}, {"n": 4, "root_chord": 0.12041584289943728, "tip_chord": 0.05919724033372533, "span": 0.11020174937378745, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495771860913206}, {"top_radius": 0.06468868983057015, "bottom_radius": 0.04254516112501002, "length": 0.059658604560467884, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006484411134483, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167910931560748, "upper_button_position": 0.08385734795737343}], "rail_length": 5, "inclination": 85.0165569633472, "heading": 51.42812017323681} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349573051930275, "mass": 14.705894285706163, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322290941822908, "I_33_without_motor": 0.02745541270052427, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929050311672276, "trigger": 800, "sampling_rate": 105, "lag": 1.4567623115907777, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0416389584186911, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1953621628685687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5883.235519635259, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274276288897552, "grain_number": 5, "grain_density": 1787.1522467017537, "grain_outer_radius": 0.033325265622759136, "grain_initial_inner_radius": 0.014160264376743777, "grain_initial_height": 0.12050681052260187, "grain_separation": 0.004522895099516344, "grains_center_of_mass_position": 0.3977909163010779, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006010457439932404, "throat_radius": 0.010924716986993073, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564243971249953}], "aerodynamic_surfaces": [{"length": 0.558494833990384, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133026906850505}, {"n": 4, "root_chord": 0.11970739762463548, "tip_chord": 0.05995287293418132, "span": 0.10961960583233095, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491460934972807}, {"top_radius": 0.0633287276788201, "bottom_radius": 0.04296792984612608, "length": 0.060661359673024697, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001972894249188, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177345996347001, "upper_button_position": 0.08246268979021865}], "rail_length": 5, "inclination": 84.36690147378349, "heading": 52.15785593400487} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350691370484511, "mass": 15.375454386291343, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322216733927299, "I_33_without_motor": 0.0488665964478586, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.142229410394958, "trigger": 800, "sampling_rate": 105, "lag": 1.6259259646437332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9593836740555426, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5004765998478848, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6085.75909136553, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032693247881894094, "grain_number": 5, "grain_density": 1775.364557660513, "grain_outer_radius": 0.03297155546349147, "grain_initial_inner_radius": 0.014562338344974219, "grain_initial_height": 0.11928756873291008, "grain_separation": 0.004131653681182388, "grains_center_of_mass_position": 0.39628198466762365, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012087763643927588, "throat_radius": 0.011253001213580638, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532965013348667}], "aerodynamic_surfaces": [{"length": 0.5600863727852301, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134660452006978}, {"n": 4, "root_chord": 0.11924153914852088, "tip_chord": 0.06036796573394087, "span": 0.11008618370424614, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050248327753988}, {"top_radius": 0.06336863208480528, "bottom_radius": 0.04165133795497803, "length": 0.060005251928262525, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001544295790166, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173830332361199, "upper_button_position": 0.08277139634289676}], "rail_length": 5, "inclination": 84.50279256801589, "heading": 53.69405748118107} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349832982758892, "mass": 16.02903245857102, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314413338193415, "I_33_without_motor": 0.023218102937927254, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.976399418695124, "trigger": 800, "sampling_rate": 105, "lag": 1.3990312864503887, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0217777201390443, "trigger": "apogee", "sampling_rate": 105, "lag": 1.379523772806063, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6132.662326354549, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326461587480111, "grain_number": 5, "grain_density": 1788.8497381437428, "grain_outer_radius": 0.03293598394697067, "grain_initial_inner_radius": 0.014978384652673619, "grain_initial_height": 0.12007873915360227, "grain_separation": 0.004292939763628557, "grains_center_of_mass_position": 0.3974238833871943, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00042695127067467404, "throat_radius": 0.009996273876891589, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533906511175006}], "aerodynamic_surfaces": [{"length": 0.5592369620087875, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344691953676378}, {"n": 4, "root_chord": 0.12041694000646186, "tip_chord": 0.06020891364451193, "span": 0.1107802335716825, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493767366093343}, {"top_radius": 0.0628496784436011, "bottom_radius": 0.043601374224137866, "length": 0.05955901816566243, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003844046340703, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617577469695097, "upper_button_position": 0.08280693493897329}], "rail_length": 5, "inclination": 86.08654520931525, "heading": 52.52115346390788} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349777476216968, "mass": 14.77036744876668, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3336957983684306, "I_33_without_motor": 0.03164590628125244, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998125881590365, "trigger": 800, "sampling_rate": 105, "lag": 1.5823595355698956, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1853674282556859, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1000948789706366, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5838.241874688789, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03349469836365394, "grain_number": 5, "grain_density": 1846.4959184424245, "grain_outer_radius": 0.03266687842808839, "grain_initial_inner_radius": 0.014132786221955964, "grain_initial_height": 0.12069379311657909, "grain_separation": 0.004371932851724252, "grains_center_of_mass_position": 0.3949639351394846, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011199214851220407, "throat_radius": 0.01224913032373014, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553465636469159}], "aerodynamic_surfaces": [{"length": 0.5583225055865026, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338606190233744}, {"n": 4, "root_chord": 0.12042461277289382, "tip_chord": 0.05948407449582567, "span": 0.11003142069651707, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502164413282196}, {"top_radius": 0.06486946321523443, "bottom_radius": 0.04187548160155882, "length": 0.06069954620840913, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007346091011946, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182141542410853, "upper_button_position": 0.08252045486010928}], "rail_length": 5, "inclination": 86.53516918005025, "heading": 53.38497173992747} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350064369392422, "mass": 15.776742570532493, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3261729828636435, "I_33_without_motor": 0.062028837883637965, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952977714318768, "trigger": 800, "sampling_rate": 105, "lag": 1.5110878803581131, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027978798496391, "trigger": "apogee", "sampling_rate": 105, "lag": 1.228489465402528, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6635.668537280559, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03322810166653286, "grain_number": 5, "grain_density": 1793.068435084934, "grain_outer_radius": 0.033105080203801894, "grain_initial_inner_radius": 0.015005764341483437, "grain_initial_height": 0.1219596201662962, "grain_separation": 0.006272092789142068, "grains_center_of_mass_position": 0.3968332790320618, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010080146174357683, "throat_radius": 0.010902847807010112, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528969265671057}], "aerodynamic_surfaces": [{"length": 0.559702461672514, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335855368959693}, {"n": 4, "root_chord": 0.11904784008141027, "tip_chord": 0.06019941362849089, "span": 0.11115943899829868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500996068180684}, {"top_radius": 0.06235840981546982, "bottom_radius": 0.04218277854533803, "length": 0.05938342296196676, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990955670180977, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198845464082514, "upper_button_position": 0.0792110206098463}], "rail_length": 5, "inclination": 83.24565632042845, "heading": 52.58192448158735} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350323499792426, "mass": 14.651077301372744, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32070273690344, "I_33_without_motor": 0.01729312627257346, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954779402955229, "trigger": 800, "sampling_rate": 105, "lag": 1.5470353395788718, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.115183836887164, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6930634710280799, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4638.340575130238, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254823671065685, "grain_number": 5, "grain_density": 1733.1978964223026, "grain_outer_radius": 0.03268842263116126, "grain_initial_inner_radius": 0.014867541777496303, "grain_initial_height": 0.11955625873587028, "grain_separation": 0.00527410806509485, "grains_center_of_mass_position": 0.39702113667668404, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001440708528056745, "throat_radius": 0.01067050624477582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549660236563618}], "aerodynamic_surfaces": [{"length": 0.5583015607612604, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349859904223252}, {"n": 4, "root_chord": 0.1198947996884292, "tip_chord": 0.05961490190495473, "span": 0.10962334179828528, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0469533059293987}, {"top_radius": 0.06511807817795677, "bottom_radius": 0.04326400513712575, "length": 0.05818621340128909, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002796144847137, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192657237069603, "upper_button_position": 0.08101389077775334}], "rail_length": 5, "inclination": 82.79993638002914, "heading": 54.37910747063778} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350091365879432, "mass": 15.463444706409655, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317952848175079, "I_33_without_motor": 0.03687726467575583, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00183637375758, "trigger": 800, "sampling_rate": 105, "lag": 1.5355184653827332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.04888049906759, "trigger": "apogee", "sampling_rate": 105, "lag": 1.558934044622351, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7557.3354940699455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033731653394277195, "grain_number": 5, "grain_density": 1813.7163870780694, "grain_outer_radius": 0.03306316562784347, "grain_initial_inner_radius": 0.01488260817077351, "grain_initial_height": 0.12047121959934422, "grain_separation": 0.0034565659056673536, "grains_center_of_mass_position": 0.3972639620100451, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.745751525041744e-05, "throat_radius": 0.011302248020488646, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548361654528548}], "aerodynamic_surfaces": [{"length": 0.5580792380706249, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341427366034778}, {"n": 4, "root_chord": 0.12008650519888689, "tip_chord": 0.060141330977386026, "span": 0.11006193004360525, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498258207967233}, {"top_radius": 0.0622002347005867, "bottom_radius": 0.0453339603344552, "length": 0.060789534639952535, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011527477147944, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168521643680118, "upper_button_position": 0.08430058334678259}], "rail_length": 5, "inclination": 83.78756376749426, "heading": 56.07597008849938} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350497387031168, "mass": 15.313270032961752, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318806485476994, "I_33_without_motor": 0.04310388585161646, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017352892895936, "trigger": 800, "sampling_rate": 105, "lag": 1.7339624918416612, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0552149776236606, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3324286233681066, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5476.088276744743, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251138482860435, "grain_number": 5, "grain_density": 1803.073999276056, "grain_outer_radius": 0.03279543593632932, "grain_initial_inner_radius": 0.015097642786605409, "grain_initial_height": 0.1196305129144597, "grain_separation": 0.005338080433340111, "grains_center_of_mass_position": 0.3960972565854047, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007710917591485829, "throat_radius": 0.0106408215470816, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549539527536533}], "aerodynamic_surfaces": [{"length": 0.5591946009000855, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1321531927342205}, {"n": 4, "root_chord": 0.12021570352722127, "tip_chord": 0.060222583792967556, "span": 0.11026046971043867, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501839114167995}, {"top_radius": 0.06240701914583821, "bottom_radius": 0.04323867961291724, "length": 0.05778210944650016, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6966584016441574, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192265408473946, "upper_button_position": 0.07743186079676279}], "rail_length": 5, "inclination": 83.73677578414399, "heading": 52.586571438522924} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0635006415020225, "mass": 15.157453661020284, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3303390217483795, "I_33_without_motor": 0.030036949122793782, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.064227129670325, "trigger": 800, "sampling_rate": 105, "lag": 1.3879171234674064, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0708185765105778, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6885000689825342, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8918.807514678447, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03215004022773385, "grain_number": 5, "grain_density": 1779.4157752258875, "grain_outer_radius": 0.03307958697125433, "grain_initial_inner_radius": 0.014669335016496412, "grain_initial_height": 0.12067747268967578, "grain_separation": 0.005902312219081716, "grains_center_of_mass_position": 0.3967438332761992, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002086193600736681, "throat_radius": 0.011773543101144413, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554971953015337}], "aerodynamic_surfaces": [{"length": 0.5578678142057448, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335985643146669}, {"n": 4, "root_chord": 0.11943631092156881, "tip_chord": 0.0594331966430376, "span": 0.10948765552500994, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487618170625317}, {"top_radius": 0.06252788518243818, "bottom_radius": 0.04388445151228416, "length": 0.060392462177812634, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985525495093954, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195280347107155, "upper_button_position": 0.07902451479867989}], "rail_length": 5, "inclination": 83.76230576549924, "heading": 51.97450692963247} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350732434794058, "mass": 16.071064849151114, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314095955876032, "I_33_without_motor": 0.03023484930325967, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91799947166049, "trigger": 800, "sampling_rate": 105, "lag": 1.4215181656476934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8899655112990069, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7709509497049556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7234.867446547289, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242131592524293, "grain_number": 5, "grain_density": 1750.001788747524, "grain_outer_radius": 0.03343194850107893, "grain_initial_inner_radius": 0.014983987224918095, "grain_initial_height": 0.12012224574215605, "grain_separation": 0.0057657487475558915, "grains_center_of_mass_position": 0.39775930535233806, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.659971916630411e-05, "throat_radius": 0.010812708957483158, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255426798852575}], "aerodynamic_surfaces": [{"length": 0.5583856795085949, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1314154105791567}, {"n": 4, "root_chord": 0.11910904766919855, "tip_chord": 0.05965440527125726, "span": 0.110133576163433, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050489178032026}, {"top_radius": 0.06289370642952723, "bottom_radius": 0.04527435768121304, "length": 0.060484100801257205, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014249628515073, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190697081941698, "upper_button_position": 0.0823552546573375}], "rail_length": 5, "inclination": 85.37733702226338, "heading": 52.83394689945224} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349853562579544, "mass": 14.860815037724485, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321010444981891, "I_33_without_motor": 0.048068429205837856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071128109660549, "trigger": 800, "sampling_rate": 105, "lag": 1.5562870397809332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8651712275055142, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7987263860104032, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5434.058915487685, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03374868411164983, "grain_number": 5, "grain_density": 1705.032003261435, "grain_outer_radius": 0.03317420687319108, "grain_initial_inner_radius": 0.014623247101864889, "grain_initial_height": 0.11992780666124846, "grain_separation": 0.00419944102795998, "grains_center_of_mass_position": 0.3974097781643184, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006480899266671069, "throat_radius": 0.010935105979604056, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546864065288177}], "aerodynamic_surfaces": [{"length": 0.5582382958424721, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341421580815019}, {"n": 4, "root_chord": 0.12035349167373018, "tip_chord": 0.06000674412447816, "span": 0.10952101308966868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484991016024832}, {"top_radius": 0.0638097646739722, "bottom_radius": 0.04237226758473821, "length": 0.06097825577952067, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990455900602129, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189749028731053, "upper_button_position": 0.08007068718710764}], "rail_length": 5, "inclination": 83.82051867959342, "heading": 54.911176063688906} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.0635116753305397, "mass": 15.49845759283512, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336472308389497, "I_33_without_motor": 0.04069553810659204, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063559584905144, "trigger": 800, "sampling_rate": 105, "lag": 1.2905812957137088, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0223632114661545, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5994716309800856, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6006.2629982933695, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318503370090418, "grain_number": 5, "grain_density": 1713.3445780863392, "grain_outer_radius": 0.032934794472172776, "grain_initial_inner_radius": 0.01495291142450078, "grain_initial_height": 0.12060662508883245, "grain_separation": 0.0051168999017424934, "grains_center_of_mass_position": 0.39577249283195165, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005365368833315221, "throat_radius": 0.012007544888753751, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548750352411828}], "aerodynamic_surfaces": [{"length": 0.5603675924883934, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327604174419805}, {"n": 4, "root_chord": 0.11997992004752153, "tip_chord": 0.05962278208735578, "span": 0.11036260921946028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051662466158219}, {"top_radius": 0.06385691065816054, "bottom_radius": 0.045114213907327255, "length": 0.06046549577445222, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006554851616371, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182103756474806, "upper_button_position": 0.08244510951415651}], "rail_length": 5, "inclination": 85.66963521163987, "heading": 52.602671326575496} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349560752293766, "mass": 16.664087845312594, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337802262965366, "I_33_without_motor": 0.0407327042749928, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.023280589987813, "trigger": 800, "sampling_rate": 105, "lag": 1.2870032995413538, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0241649582299852, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5151423711439447, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4983.780701240228, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316129171814035, "grain_number": 5, "grain_density": 1808.5722220545642, "grain_outer_radius": 0.03368565650202489, "grain_initial_inner_radius": 0.015592820880214195, "grain_initial_height": 0.11848586970872325, "grain_separation": 0.0022858383496845414, "grains_center_of_mass_position": 0.3976094698333155, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007618562634158164, "throat_radius": 0.0118418647009625, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541349506803463}], "aerodynamic_surfaces": [{"length": 0.5589955104661426, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1316263631780845}, {"n": 4, "root_chord": 0.1208712148140044, "tip_chord": 0.0596623105442456, "span": 0.11072819229863695, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049042126599752}, {"top_radius": 0.06321273653945396, "bottom_radius": 0.04311906597593315, "length": 0.058568280439542514, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699788198226367, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174843411273954, "upper_button_position": 0.08230385709897159}], "rail_length": 5, "inclination": 85.06862431724193, "heading": 53.21504178213832} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349462470018391, "mass": 15.166791573164456, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315951153125883, "I_33_without_motor": 0.05222043902583534, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063971481271997, "trigger": 800, "sampling_rate": 105, "lag": 1.5807108301349375, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0424735689762819, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4636453833960417, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7739.40313836753, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339200579082744, "grain_number": 5, "grain_density": 1866.8495327759233, "grain_outer_radius": 0.03315918334687575, "grain_initial_inner_radius": 0.014694926282833224, "grain_initial_height": 0.11961064561788978, "grain_separation": 0.006638549598848076, "grains_center_of_mass_position": 0.3966320698296619, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008345853683403186, "throat_radius": 0.011321296338143768, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255073870903621}], "aerodynamic_surfaces": [{"length": 0.5588478552862977, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1368421787504073}, {"n": 4, "root_chord": 0.11979907211060045, "tip_chord": 0.06013554797004079, "span": 0.11020492240121446, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0476509147413928}, {"top_radius": 0.06405033212019315, "bottom_radius": 0.04281418388860137, "length": 0.06012779621797064, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997641865655639, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6207608769626876, "upper_button_position": 0.07900330960287638}], "rail_length": 5, "inclination": 86.23598489261914, "heading": 53.63131182357933} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349892236147425, "mass": 15.813858351995155, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305223029392013, "I_33_without_motor": 0.0323378549981077, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98157711750764, "trigger": 800, "sampling_rate": 105, "lag": 1.3952058444387285, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0059282497255604, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6792389074889456, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6467.487616984311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03280632587400556, "grain_number": 5, "grain_density": 1850.3383983487986, "grain_outer_radius": 0.03269593106144444, "grain_initial_inner_radius": 0.015536029456381308, "grain_initial_height": 0.11906431033028123, "grain_separation": 0.00625289926028106, "grains_center_of_mass_position": 0.39551335543032456, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009615624580315669, "throat_radius": 0.011987094368434469, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253737289693758}], "aerodynamic_surfaces": [{"length": 0.5576955633285382, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134179477510607}, {"n": 4, "root_chord": 0.12063580698716754, "tip_chord": 0.060241268915199556, "span": 0.10979923176858505, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490844794918306}, {"top_radius": 0.06378778835310395, "bottom_radius": 0.04303438842169079, "length": 0.05952939213316356, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011771641207513, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618558415303725, "upper_button_position": 0.08261874881702624}], "rail_length": 5, "inclination": 84.06689963343842, "heading": 50.707467893551225} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350151653274179, "mass": 15.38355836832909, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34919804001931, "I_33_without_motor": 0.044914106797004076, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961325490267429, "trigger": 800, "sampling_rate": 105, "lag": 1.4189975772704562, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8330251136852691, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6477548994066264, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7043.9348591737025, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033227671377447525, "grain_number": 5, "grain_density": 1692.8854048321066, "grain_outer_radius": 0.03260477071122402, "grain_initial_inner_radius": 0.014804175286660412, "grain_initial_height": 0.11984178048092269, "grain_separation": 0.005725751560119558, "grains_center_of_mass_position": 0.3968040902702311, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002597580117764804, "throat_radius": 0.011226534538235355, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546674417489092}], "aerodynamic_surfaces": [{"length": 0.5579079598493271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346430940439656}, {"n": 4, "root_chord": 0.12014339337084276, "tip_chord": 0.06055371102952285, "span": 0.1101014468000001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486742898925114}, {"top_radius": 0.06266420702975821, "bottom_radius": 0.04344861617204269, "length": 0.0589915586208901, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699840450958753, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188627073740706, "upper_button_position": 0.08097774358468246}], "rail_length": 5, "inclination": 85.19571995118287, "heading": 56.040202586104876} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349537698527634, "mass": 14.784187309736325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328288199076838, "I_33_without_motor": 0.031802033028603176, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.195975500559905, "trigger": 800, "sampling_rate": 105, "lag": 1.5791318114620738, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0051922966643938, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3307211905989367, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4972.496268455642, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333678250459182, "grain_number": 5, "grain_density": 1927.955755234891, "grain_outer_radius": 0.03306574791950731, "grain_initial_inner_radius": 0.014823161930559412, "grain_initial_height": 0.11969337602065336, "grain_separation": 0.007619603045434634, "grains_center_of_mass_position": 0.3974769685958634, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008251194239674745, "throat_radius": 0.011313817687185927, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255823592032743}], "aerodynamic_surfaces": [{"length": 0.5561749973743835, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134770121619074}, {"n": 4, "root_chord": 0.1201106276289912, "tip_chord": 0.05970224697369418, "span": 0.11019537696676324, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484751866870627}, {"top_radius": 0.06361156854332055, "bottom_radius": 0.043227428931303095, "length": 0.06089838390643315, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004733878493226, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173330585286085, "upper_button_position": 0.08314032932071402}], "rail_length": 5, "inclination": 84.79753927778376, "heading": 48.66384404880091} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06348705629425301, "mass": 16.39830260854023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3262761423027465, "I_33_without_motor": 0.025135153923277608, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97108865865782, "trigger": 800, "sampling_rate": 105, "lag": 1.365068625805243, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0684320526320468, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1840932317717268, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7138.138437682387, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311776843538658, "grain_number": 5, "grain_density": 1916.324487597835, "grain_outer_radius": 0.03364852698963181, "grain_initial_inner_radius": 0.015582049761177929, "grain_initial_height": 0.11947539768894257, "grain_separation": 0.007082510175951542, "grains_center_of_mass_position": 0.39758209825507246, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.781098676794332e-05, "throat_radius": 0.010593712012918451, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535409114700151}], "aerodynamic_surfaces": [{"length": 0.5586572115026747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334135970362837}, {"n": 4, "root_chord": 0.12006811056674967, "tip_chord": 0.05945043746289274, "span": 0.11049484272110482, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487800712891824}, {"top_radius": 0.0625266423719595, "bottom_radius": 0.04353635279866146, "length": 0.05942329349256412, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989257727213671, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165805251217177, "upper_button_position": 0.08234524759964945}], "rail_length": 5, "inclination": 83.84469146015444, "heading": 50.677068300749276} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349473082898309, "mass": 15.404847449360084, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3219596043372395, "I_33_without_motor": 0.03370429889618732, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01334315855229, "trigger": 800, "sampling_rate": 105, "lag": 1.3524328049448424, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0438413818748091, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4310159368318933, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6563.233191358629, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282652054880432, "grain_number": 5, "grain_density": 1805.6128750901846, "grain_outer_radius": 0.033031596721085965, "grain_initial_inner_radius": 0.01474212038268315, "grain_initial_height": 0.11950080046714429, "grain_separation": 0.0051217487047985465, "grains_center_of_mass_position": 0.39769013343030846, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003353958577078534, "throat_radius": 0.010665856932486005, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556814153998614}], "aerodynamic_surfaces": [{"length": 0.5570695764510412, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328778225366722}, {"n": 4, "root_chord": 0.12027103141440536, "tip_chord": 0.059631167690776136, "span": 0.11012465307676664, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483983647291906}, {"top_radius": 0.06467537850303534, "bottom_radius": 0.04276250854763116, "length": 0.059516169650512665, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997797566178395, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166327252508849, "upper_button_position": 0.08314703136695467}], "rail_length": 5, "inclination": 84.81381133520138, "heading": 55.69215399186726} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349334313316006, "mass": 15.377693841353906, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30544496008372, "I_33_without_motor": 0.04356790693492326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038656787973501, "trigger": 800, "sampling_rate": 105, "lag": 1.3645357010829464, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.921775519405074, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5525963297653413, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5853.316007612147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032742628852572245, "grain_number": 5, "grain_density": 1740.6799865402093, "grain_outer_radius": 0.03306191092976819, "grain_initial_inner_radius": 0.014910126185529343, "grain_initial_height": 0.11919839719637225, "grain_separation": 0.004083478301411183, "grains_center_of_mass_position": 0.39713969474508504, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006724081142765483, "throat_radius": 0.010650419782200308, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558421134106506}], "aerodynamic_surfaces": [{"length": 0.5577690311444558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13480476483823}, {"n": 4, "root_chord": 0.11916209239346039, "tip_chord": 0.05941962883385589, "span": 0.1101446532743543, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0474562936881613}, {"top_radius": 0.0632281220343872, "bottom_radius": 0.043474617844417036, "length": 0.059217230378574744, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983554811753827, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186926440147209, "upper_button_position": 0.0796628371606618}], "rail_length": 5, "inclination": 83.8122673563343, "heading": 51.61864029379732} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0634951541767748, "mass": 15.255668808979742, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341800526652775, "I_33_without_motor": 0.031563077925111406, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.923240003553795, "trigger": 800, "sampling_rate": 105, "lag": 1.5276709846587333, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0707287835427794, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4402227306943136, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4165.533502554409, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033358973115460024, "grain_number": 5, "grain_density": 1778.476694089874, "grain_outer_radius": 0.03247083692651509, "grain_initial_inner_radius": 0.015181831780434148, "grain_initial_height": 0.11974656761853977, "grain_separation": 0.00524835671270787, "grains_center_of_mass_position": 0.3974949526549338, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00015529841022655935, "throat_radius": 0.010656179417557981, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550539035608137}], "aerodynamic_surfaces": [{"length": 0.5579557344512343, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343042273789947}, {"n": 4, "root_chord": 0.11981900293219698, "tip_chord": 0.06008695311249397, "span": 0.10981285843154395, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498219541103633}, {"top_radius": 0.06239995809588046, "bottom_radius": 0.04395174325560048, "length": 0.060247309324621745, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999864175604598, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187376724376585, "upper_button_position": 0.08124874512280122}], "rail_length": 5, "inclination": 85.01072020608397, "heading": 50.963000524419314} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350765526533976, "mass": 14.41978350315901, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325561666807349, "I_33_without_motor": 0.04953792392091372, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059934856110042, "trigger": 800, "sampling_rate": 105, "lag": 1.562924124808594, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.059925062712742, "trigger": "apogee", "sampling_rate": 105, "lag": 1.387698564632698, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5610.063776664329, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033713888056963716, "grain_number": 5, "grain_density": 1827.5085932423594, "grain_outer_radius": 0.03300882170267584, "grain_initial_inner_radius": 0.015453625411588266, "grain_initial_height": 0.12023600507000745, "grain_separation": 0.00636667760432852, "grains_center_of_mass_position": 0.39647840302191867, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001133525634644437, "throat_radius": 0.011307506112528329, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554105109032534}], "aerodynamic_surfaces": [{"length": 0.558785645550066, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338677715025234}, {"n": 4, "root_chord": 0.11953690171804328, "tip_chord": 0.06003732701267183, "span": 0.1098885731763148, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494558744316835}, {"top_radius": 0.06387788704406881, "bottom_radius": 0.044672731375851975, "length": 0.05905098802922664, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990895082037972, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173257779156454, "upper_button_position": 0.08176373028815187}], "rail_length": 5, "inclination": 85.3244507242868, "heading": 52.757694842798436} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351215133520088, "mass": 15.843212042148487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326215547097721, "I_33_without_motor": 0.02059253598062621, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00943738063936, "trigger": 800, "sampling_rate": 105, "lag": 1.5905181240654418, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0014343323201047, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5305034723590818, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5775.565336717358, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032872068224286996, "grain_number": 5, "grain_density": 1830.6227011276524, "grain_outer_radius": 0.03250751239716039, "grain_initial_inner_radius": 0.01538213071705384, "grain_initial_height": 0.12147794176605325, "grain_separation": 0.005873703773264789, "grains_center_of_mass_position": 0.39648974428171363, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020422007557733589, "throat_radius": 0.011639182317895435, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544978369211663}], "aerodynamic_surfaces": [{"length": 0.5588271298025168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344080768409972}, {"n": 4, "root_chord": 0.1197517523089997, "tip_chord": 0.059961995887289586, "span": 0.11086404206330304, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048565928094417}, {"top_radius": 0.06208259356957655, "bottom_radius": 0.043920154129965465, "length": 0.059137333616921084, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984874893117708, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176842927981818, "upper_button_position": 0.08080319651358903}], "rail_length": 5, "inclination": 84.96533002590839, "heading": 52.64606223766785} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06348062466926292, "mass": 14.914710077273151, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31442414190573, "I_33_without_motor": 0.02932743082405187, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925606090722166, "trigger": 800, "sampling_rate": 105, "lag": 1.4342907350256293, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.016432870593287, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4132361199045471, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6314.594002331805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03216314666823376, "grain_number": 5, "grain_density": 1806.8638251464545, "grain_outer_radius": 0.03315653926414992, "grain_initial_inner_radius": 0.014964138602340244, "grain_initial_height": 0.1219151606792681, "grain_separation": 0.0035052415757475816, "grains_center_of_mass_position": 0.39729627306992243, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001030037247118342, "throat_radius": 0.011369693928032198, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547553583562432}], "aerodynamic_surfaces": [{"length": 0.5587543086164146, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134756623351826}, {"n": 4, "root_chord": 0.12036346149669078, "tip_chord": 0.05956755943037989, "span": 0.10932491793855066, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499862962894142}, {"top_radius": 0.06312474066508675, "bottom_radius": 0.04480321908287437, "length": 0.06031937783835525, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004603960700665, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177970280351526, "upper_button_position": 0.08266336803491392}], "rail_length": 5, "inclination": 86.01714833601416, "heading": 55.2900124050487} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349463330799976, "mass": 14.934158662590121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330853885018033, "I_33_without_motor": 0.0250270984522042, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.069041971441914, "trigger": 800, "sampling_rate": 105, "lag": 1.4902539797178858, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0105135556596303, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2584945985726232, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6838.503109854836, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032788100415119995, "grain_number": 5, "grain_density": 1856.4698710918121, "grain_outer_radius": 0.03290658087965673, "grain_initial_inner_radius": 0.014837317850079614, "grain_initial_height": 0.12111467213851829, "grain_separation": 0.005969771575908932, "grains_center_of_mass_position": 0.3971988443905438, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001933511530354512, "throat_radius": 0.01039967431868839, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546113838920792}], "aerodynamic_surfaces": [{"length": 0.5586689378554233, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353065245459462}, {"n": 4, "root_chord": 0.12002573383773667, "tip_chord": 0.06037024619779822, "span": 0.11003961643108692, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05037323450034}, {"top_radius": 0.06474290967128023, "bottom_radius": 0.04175147531306995, "length": 0.06089368236964099, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013344030129911, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617575622584652, "upper_button_position": 0.08375878042833906}], "rail_length": 5, "inclination": 84.04755013543522, "heading": 52.257096048909816} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350065251645172, "mass": 15.397119900509578, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316862237815673, "I_33_without_motor": 0.02906517410483791, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989803360781028, "trigger": 800, "sampling_rate": 105, "lag": 1.425944254105163, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0839503983590668, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4258824298706705, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7136.3235718079995, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03354469750654767, "grain_number": 5, "grain_density": 1780.6358167502106, "grain_outer_radius": 0.03292870425502642, "grain_initial_inner_radius": 0.014353895335496168, "grain_initial_height": 0.11901716035724681, "grain_separation": 0.0052065375837644185, "grains_center_of_mass_position": 0.39748114205403057, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010327708087928926, "throat_radius": 0.011108251062075318, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257005031460541}], "aerodynamic_surfaces": [{"length": 0.5568586431685533, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134190947598527}, {"n": 4, "root_chord": 0.11929847862403585, "tip_chord": 0.06014520898937184, "span": 0.11035986130911364, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499734609336335}, {"top_radius": 0.06316520424861073, "bottom_radius": 0.04406530559210587, "length": 0.06051963522140107, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004681572320971, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176055926982537, "upper_button_position": 0.08286256453384344}], "rail_length": 5, "inclination": 83.69190989725888, "heading": 54.4498230225978} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635061378994302, "mass": 15.082728472432706, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32265171101244, "I_33_without_motor": 0.0383279726907075, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01117050993031, "trigger": 800, "sampling_rate": 105, "lag": 1.4322438826572992, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.035349644431696, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8113460566167543, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6473.744737537664, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327648981295852, "grain_number": 5, "grain_density": 1815.4097016105834, "grain_outer_radius": 0.033429706782977395, "grain_initial_inner_radius": 0.015561178368349055, "grain_initial_height": 0.12191979479173796, "grain_separation": 0.003098139229935367, "grains_center_of_mass_position": 0.39701548583698626, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007527625518320067, "throat_radius": 0.01088932906275521, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544554389304845}], "aerodynamic_surfaces": [{"length": 0.5585593487945456, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354062625740022}, {"n": 4, "root_chord": 0.11944941744935678, "tip_chord": 0.059462716523612756, "span": 0.11034547046189777, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482571835412993}, {"top_radius": 0.06390952839832315, "bottom_radius": 0.04278806713976812, "length": 0.06025345104712421, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009942069698832, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190488450910179, "upper_button_position": 0.08194536187886536}], "rail_length": 5, "inclination": 85.67971377793073, "heading": 54.23890350196233} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349864220113352, "mass": 14.41650118614819, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319741872856187, "I_33_without_motor": 0.03472961803584761, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990740860440786, "trigger": 800, "sampling_rate": 105, "lag": 1.4372355709920068, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9251496529010053, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7396438956496996, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6508.591589202997, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330347594464678, "grain_number": 5, "grain_density": 1753.994003913029, "grain_outer_radius": 0.03298599114202703, "grain_initial_inner_radius": 0.014844144179194958, "grain_initial_height": 0.12008688688927298, "grain_separation": 0.003444032942332869, "grains_center_of_mass_position": 0.39792909574951846, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006424344902623232, "throat_radius": 0.01010460526096478, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529842151426347}], "aerodynamic_surfaces": [{"length": 0.5589039454572083, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135686227313652}, {"n": 4, "root_chord": 0.11987338615947557, "tip_chord": 0.060859556108176414, "span": 0.10948849524179761, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504903651098458}, {"top_radius": 0.06368438355962706, "bottom_radius": 0.04283866337381521, "length": 0.05926491343884509, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997862792942222, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155934898215006, "upper_button_position": 0.08419278947272157}], "rail_length": 5, "inclination": 83.9640144034249, "heading": 52.34168342730578} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350465040149963, "mass": 15.55453853073227, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326547653460541, "I_33_without_motor": 0.01822170955931573, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959796823207947, "trigger": 800, "sampling_rate": 105, "lag": 1.4621227486992825, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9887216158853949, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1747064919083783, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5512.184806405827, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03245125262842901, "grain_number": 5, "grain_density": 1803.6477846089088, "grain_outer_radius": 0.03319396256001193, "grain_initial_inner_radius": 0.014912752481407549, "grain_initial_height": 0.12214402968076775, "grain_separation": 0.0052650257417983385, "grains_center_of_mass_position": 0.3971951722372159, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.895874972828478e-05, "throat_radius": 0.010303973380468037, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558994586268755}], "aerodynamic_surfaces": [{"length": 0.5572021673266618, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349030614690068}, {"n": 4, "root_chord": 0.12010764673113897, "tip_chord": 0.06028176752071886, "span": 0.10965827996551789, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502438376734333}, {"top_radius": 0.0639269944683951, "bottom_radius": 0.04352085421474047, "length": 0.06010118427466233, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.69852603152891, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184293938079217, "upper_button_position": 0.0800966377209883}], "rail_length": 5, "inclination": 84.67694879436915, "heading": 55.10921392595863} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349716624180138, "mass": 15.07112619462678, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31110470130587, "I_33_without_motor": 0.03392357358026496, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.073813989611532, "trigger": 800, "sampling_rate": 105, "lag": 1.6077572740269752, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0702954180749038, "trigger": "apogee", "sampling_rate": 105, "lag": 1.226893379289926, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5678.3299107189, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03390547870560464, "grain_number": 5, "grain_density": 1796.774352309785, "grain_outer_radius": 0.0333559495314962, "grain_initial_inner_radius": 0.015022531836519153, "grain_initial_height": 0.11923897459871362, "grain_separation": 0.005599560916878962, "grains_center_of_mass_position": 0.3979863295171355, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003875123168496042, "throat_radius": 0.0105435312834858, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529054537191844}], "aerodynamic_surfaces": [{"length": 0.559654076192131, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349300871579207}, {"n": 4, "root_chord": 0.11903494389909527, "tip_chord": 0.06004357041538464, "span": 0.11106469707494357, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489595504531322}, {"top_radius": 0.06335250910844101, "bottom_radius": 0.04356591769170291, "length": 0.058973117831032804, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005833665121121, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164391250052956, "upper_button_position": 0.08414424150681643}], "rail_length": 5, "inclination": 86.40110039785615, "heading": 51.218211031809844} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349448334165322, "mass": 15.298741450849498, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321544700317957, "I_33_without_motor": 0.023274018118781138, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967009985301091, "trigger": 800, "sampling_rate": 105, "lag": 1.560388717551689, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.091771266033166, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4151637732746045, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5868.1388102417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032382363022929114, "grain_number": 5, "grain_density": 1770.4662091732519, "grain_outer_radius": 0.03319809298899922, "grain_initial_inner_radius": 0.01502984946293905, "grain_initial_height": 0.11966283375802417, "grain_separation": 0.005233696060228307, "grains_center_of_mass_position": 0.3970685128615112, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00036943495874137256, "throat_radius": 0.01151424064201958, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562106474933863}], "aerodynamic_surfaces": [{"length": 0.5594697647138253, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340487529276646}, {"n": 4, "root_chord": 0.12039157443856162, "tip_chord": 0.05950278869812312, "span": 0.11076552129131496, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488455870115632}, {"top_radius": 0.06359652363131808, "bottom_radius": 0.03964542904617157, "length": 0.06048785511886974, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004719627039983, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186997091776918, "upper_button_position": 0.08177225352630646}], "rail_length": 5, "inclination": 83.59734078402197, "heading": 53.19054591866502} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349975557352297, "mass": 14.768074314684897, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321059606452353, "I_33_without_motor": 0.03091066114385889, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91641303820664, "trigger": 800, "sampling_rate": 105, "lag": 1.7880236039977166, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0141456240893212, "trigger": "apogee", "sampling_rate": 105, "lag": 1.444792522831466, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6724.401285368063, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326354293464759, "grain_number": 5, "grain_density": 1834.3621599879384, "grain_outer_radius": 0.033190114487442586, "grain_initial_inner_radius": 0.015325043615942637, "grain_initial_height": 0.11950131335441432, "grain_separation": 0.004913313529872333, "grains_center_of_mass_position": 0.3979528579943961, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000449026825019869, "throat_radius": 0.01082717080887362, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547322299495405}], "aerodynamic_surfaces": [{"length": 0.557252231986837, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339618216837346}, {"n": 4, "root_chord": 0.1196766435570281, "tip_chord": 0.06055693994036601, "span": 0.10934204284975299, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048738605617315}, {"top_radius": 0.06346790743906837, "bottom_radius": 0.043433178675328456, "length": 0.05818152337846077, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989006769458527, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61879472776139, "upper_button_position": 0.08010594918446268}], "rail_length": 5, "inclination": 84.22684412389987, "heading": 54.10005454232554} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06351062981450813, "mass": 15.232266431803986, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301002402707049, "I_33_without_motor": 0.02707834818526545, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.880921046682198, "trigger": 800, "sampling_rate": 105, "lag": 1.666592908239531, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0261887029321795, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3956966760272134, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4767.402002093024, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266721103873782, "grain_number": 5, "grain_density": 1706.4063684330256, "grain_outer_radius": 0.03325484329778405, "grain_initial_inner_radius": 0.015046468563251904, "grain_initial_height": 0.1204667141741095, "grain_separation": 0.005827400130056573, "grains_center_of_mass_position": 0.39806896540572195, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00034147186774403693, "throat_radius": 0.010561249141551984, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2570256602893568}], "aerodynamic_surfaces": [{"length": 0.5581771838088418, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332752018993308}, {"n": 4, "root_chord": 0.11958481770953845, "tip_chord": 0.060784538990663516, "span": 0.10868602858032868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500844768705648}, {"top_radius": 0.0629348051781742, "bottom_radius": 0.04184786119590895, "length": 0.06080674902433629, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994493830039835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190779355881528, "upper_button_position": 0.08037144741583069}], "rail_length": 5, "inclination": 86.60245084256965, "heading": 51.202813672789134} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350048355393753, "mass": 15.411209878729423, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316453000999988, "I_33_without_motor": 0.02761628630718192, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03172530593291, "trigger": 800, "sampling_rate": 105, "lag": 1.5081809895189222, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9559585949728939, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4929183256211398, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6257.936576128004, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315965224484999, "grain_number": 5, "grain_density": 1814.3445493680772, "grain_outer_radius": 0.033122870921110915, "grain_initial_inner_radius": 0.015171395598170094, "grain_initial_height": 0.11795909970854944, "grain_separation": 0.0034061980385949363, "grains_center_of_mass_position": 0.39788958604294955, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014914777126534252, "throat_radius": 0.011096104228118655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554384760285664}], "aerodynamic_surfaces": [{"length": 0.5578420083775204, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329833425822862}, {"n": 4, "root_chord": 0.11946136241820553, "tip_chord": 0.059765406467872526, "span": 0.11013914595995819, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484523177322809}, {"top_radius": 0.06356529134564337, "bottom_radius": 0.042418240847875786, "length": 0.0606979196839853, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012153338200212, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180559287626823, "upper_button_position": 0.08315940505733888}], "rail_length": 5, "inclination": 86.93481718174543, "heading": 50.525996717825436} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349615577091762, "mass": 15.66266477213422, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332051547610867, "I_33_without_motor": 0.023384692407072902, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.073356359130852, "trigger": 800, "sampling_rate": 105, "lag": 1.6345681806427885, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1006703828953928, "trigger": "apogee", "sampling_rate": 105, "lag": 1.282543241888264, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6323.6429138302565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307430219660058, "grain_number": 5, "grain_density": 1874.047906831238, "grain_outer_radius": 0.03277403752812842, "grain_initial_inner_radius": 0.015113259753481236, "grain_initial_height": 0.12006387347200774, "grain_separation": 0.005413115685965959, "grains_center_of_mass_position": 0.3960564548419836, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00251872076352836, "throat_radius": 0.011729633050078285, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561908353379405}], "aerodynamic_surfaces": [{"length": 0.557797758248747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325329851763386}, {"n": 4, "root_chord": 0.11965419854509357, "tip_chord": 0.0614918820904758, "span": 0.11019654997994151, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502835417983574}, {"top_radius": 0.06272856644349761, "bottom_radius": 0.042018808939787954, "length": 0.0601840348645436, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999840032478992, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182267279873623, "upper_button_position": 0.08175727526053689}], "rail_length": 5, "inclination": 84.86933444994946, "heading": 53.22958216788612} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349723512329102, "mass": 15.943935715769182, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333428853566272, "I_33_without_motor": 0.046053414079563613, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.892084301869515, "trigger": 800, "sampling_rate": 105, "lag": 1.3734533951319166, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9430624452868104, "trigger": "apogee", "sampling_rate": 105, "lag": 1.327682243108526, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8187.939378769465, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03224886698051687, "grain_number": 5, "grain_density": 1739.7779307657242, "grain_outer_radius": 0.033151486164808064, "grain_initial_inner_radius": 0.01467435989407957, "grain_initial_height": 0.11986718624277437, "grain_separation": 0.005894597080896587, "grains_center_of_mass_position": 0.3975171104762011, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007102303243276977, "throat_radius": 0.011573986105858153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539534740573541}], "aerodynamic_surfaces": [{"length": 0.5582003391176011, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352429697202688}, {"n": 4, "root_chord": 0.11953897423612143, "tip_chord": 0.05961293038259803, "span": 0.11006366887271096, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497561512445663}, {"top_radius": 0.06354251547589108, "bottom_radius": 0.04170435505106815, "length": 0.05959986016575317, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988146022259054, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194986634826957, "upper_button_position": 0.07931593874320975}], "rail_length": 5, "inclination": 84.22653896161472, "heading": 58.355250034654354} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06348909164983167, "mass": 14.69891367470536, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3476451044022095, "I_33_without_motor": 0.03970687712573247, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.056768981321168, "trigger": 800, "sampling_rate": 105, "lag": 1.3579637523384729, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0700215111968592, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4476855592167945, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7138.362272657434, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269119328792005, "grain_number": 5, "grain_density": 1838.116063784062, "grain_outer_radius": 0.03292778042311661, "grain_initial_inner_radius": 0.015268192466222684, "grain_initial_height": 0.11951389340565807, "grain_separation": 0.0029625345705061165, "grains_center_of_mass_position": 0.3952569261838015, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006199925676863013, "throat_radius": 0.010411405294693494, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547627588899026}], "aerodynamic_surfaces": [{"length": 0.5584917625625248, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134389441753904}, {"n": 4, "root_chord": 0.11958768829481153, "tip_chord": 0.05906127726538528, "span": 0.10971651737750256, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507393508364709}, {"top_radius": 0.06361936962410315, "bottom_radius": 0.0432515267185195, "length": 0.05983386115148892, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011203324367692, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183042381940064, "upper_button_position": 0.08281609424276282}], "rail_length": 5, "inclination": 84.66938226704926, "heading": 57.02511246002728} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349728060433774, "mass": 15.193602097173748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33437172456487, "I_33_without_motor": 0.0254232800885371, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.832455868837107, "trigger": 800, "sampling_rate": 105, "lag": 1.4392440522645695, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9139784120979761, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4271076921511818, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7813.166813893336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033690439728597615, "grain_number": 5, "grain_density": 1884.8959248227961, "grain_outer_radius": 0.03303512513196555, "grain_initial_inner_radius": 0.014484796402649925, "grain_initial_height": 0.11998359852644405, "grain_separation": 0.004450523932336658, "grains_center_of_mass_position": 0.3948525321534341, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007202555098698931, "throat_radius": 0.01030501966284108, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552378768292105}], "aerodynamic_surfaces": [{"length": 0.5573737030513088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134479359263793}, {"n": 4, "root_chord": 0.11988704532981614, "tip_chord": 0.060398459301173046, "span": 0.10977792489898723, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0476644490750815}, {"top_radius": 0.06388655319911074, "bottom_radius": 0.04686800927303743, "length": 0.05885726498080226, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999317830742146, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171091788091754, "upper_button_position": 0.08282260426503918}], "rail_length": 5, "inclination": 84.93067879302544, "heading": 51.63890875884704} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.063503693005892, "mass": 15.608394376618186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317763053010017, "I_33_without_motor": 0.03194544768606371, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014617393541693, "trigger": 800, "sampling_rate": 105, "lag": 1.5339536538189815, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0152757964482997, "trigger": "apogee", "sampling_rate": 105, "lag": 1.635174063522442, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6453.52613749269, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033386699018007955, "grain_number": 5, "grain_density": 1783.708045509334, "grain_outer_radius": 0.033307249334383844, "grain_initial_inner_radius": 0.01467859038481482, "grain_initial_height": 0.12007668734544967, "grain_separation": 0.005342032108352509, "grains_center_of_mass_position": 0.3981349146693675, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007792646134429882, "throat_radius": 0.010994351211252109, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547970696921367}], "aerodynamic_surfaces": [{"length": 0.5566822635086706, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135130740464944}, {"n": 4, "root_chord": 0.1197808018743018, "tip_chord": 0.060068579247397384, "span": 0.10921259229760506, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050768635726361}, {"top_radius": 0.06397241355500084, "bottom_radius": 0.04216645422659838, "length": 0.06112058442436944, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011374124008717, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617763633237347, "upper_button_position": 0.08337377916352473}], "rail_length": 5, "inclination": 86.87217876130678, "heading": 55.49648251479946} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350428291806037, "mass": 15.217936928478371, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337217144021302, "I_33_without_motor": 0.026906998917822347, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.764732387140672, "trigger": 800, "sampling_rate": 105, "lag": 1.2428964240957607, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0250091938491073, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5529263564211875, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5405.449508421032, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291052417028702, "grain_number": 5, "grain_density": 1822.726193465152, "grain_outer_radius": 0.03332758566888196, "grain_initial_inner_radius": 0.014618094123555423, "grain_initial_height": 0.1189122143906587, "grain_separation": 0.0035360591686299514, "grains_center_of_mass_position": 0.39749068665268095, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010648908111239488, "throat_radius": 0.010536272295268153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550408527965307}], "aerodynamic_surfaces": [{"length": 0.5588515372770299, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336924695313868}, {"n": 4, "root_chord": 0.12041714810849834, "tip_chord": 0.06023681542622486, "span": 0.10985903885931668, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048570002441649}, {"top_radius": 0.06286436374571985, "bottom_radius": 0.041913286609041686, "length": 0.05843414951530003, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990534159369798, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161708105486888, "upper_button_position": 0.08288260538829095}], "rail_length": 5, "inclination": 85.26885158852326, "heading": 53.06472692750394} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635058842346787, "mass": 15.06791224310324, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328402895959076, "I_33_without_motor": 0.028573691592324486, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.972274125360801, "trigger": 800, "sampling_rate": 105, "lag": 1.4722196739114988, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9211286151770035, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5562931527727704, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5781.465196919127, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03221191539639273, "grain_number": 5, "grain_density": 1787.2366061495343, "grain_outer_radius": 0.03269935670261168, "grain_initial_inner_radius": 0.015816901773549576, "grain_initial_height": 0.11971894909729286, "grain_separation": 0.005000390191896349, "grains_center_of_mass_position": 0.39540541573978066, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019107466947016465, "throat_radius": 0.010345294605853046, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542517447831865}], "aerodynamic_surfaces": [{"length": 0.5575600145057481, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334342105972937}, {"n": 4, "root_chord": 0.12022207006048488, "tip_chord": 0.05982023454922542, "span": 0.1100399553960582, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492929985067982}, {"top_radius": 0.0627016981654082, "bottom_radius": 0.0435053287391393, "length": 0.06001172020480557, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700475008404681, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184255519967052, "upper_button_position": 0.08204945640797578}], "rail_length": 5, "inclination": 84.31414547000661, "heading": 52.154009520909305} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349250053646838, "mass": 15.730255266093938, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304764275104755, "I_33_without_motor": 0.02502551536146594, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.002089728333287, "trigger": 800, "sampling_rate": 105, "lag": 1.5033109683376304, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0502837286583628, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7724692809781302, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6975.797603085575, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032942895080587384, "grain_number": 5, "grain_density": 1781.3261242079877, "grain_outer_radius": 0.03390535263755485, "grain_initial_inner_radius": 0.015489110510795163, "grain_initial_height": 0.12011124382076364, "grain_separation": 0.00392222643675867, "grains_center_of_mass_position": 0.3977338369128524, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003457914957666131, "throat_radius": 0.010160648504150252, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254727183196578}], "aerodynamic_surfaces": [{"length": 0.5574471428558757, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325333549103234}, {"n": 4, "root_chord": 0.12010929667674348, "tip_chord": 0.06069605053891706, "span": 0.11094693112500818, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496843334419605}, {"top_radius": 0.06299955938641023, "bottom_radius": 0.045217345117441826, "length": 0.060018740934449706, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998334581083575, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191208248587933, "upper_button_position": 0.08071263324956424}], "rail_length": 5, "inclination": 84.70934046634623, "heading": 50.88807014828924} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635070459284034, "mass": 15.971454984504023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323845934420354, "I_33_without_motor": 0.03723520156706045, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.884040966758283, "trigger": 800, "sampling_rate": 105, "lag": 1.5382376834378624, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9442083005675123, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4527724817772543, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7649.366957171147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329389368431338, "grain_number": 5, "grain_density": 1881.69296256002, "grain_outer_radius": 0.03307963274811645, "grain_initial_inner_radius": 0.015242730029946713, "grain_initial_height": 0.12108240025446038, "grain_separation": 0.0045784379536469655, "grains_center_of_mass_position": 0.39586562901181876, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007537558028837716, "throat_radius": 0.010950665500437164, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255673151909839}], "aerodynamic_surfaces": [{"length": 0.5575350293536677, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340206483531974}, {"n": 4, "root_chord": 0.11912535423412966, "tip_chord": 0.05908092949758944, "span": 0.11013612578114468, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501708135460701}, {"top_radius": 0.06490958450869985, "bottom_radius": 0.04294417011589532, "length": 0.060281690135080224, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005802381100752, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617944994601467, "upper_button_position": 0.08263524350860818}], "rail_length": 5, "inclination": 85.9069822481434, "heading": 51.25837320014707} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349607166249685, "mass": 15.371436830543239, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321422337433471, "I_33_without_motor": 0.0337929607098668, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039734658279068, "trigger": 800, "sampling_rate": 105, "lag": 1.5937408872485073, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0005613353724356, "trigger": "apogee", "sampling_rate": 105, "lag": 1.744048638408157, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6861.712250249643, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033373780784762073, "grain_number": 5, "grain_density": 1829.633650538257, "grain_outer_radius": 0.03305073515369776, "grain_initial_inner_radius": 0.015035442227461776, "grain_initial_height": 0.11972042455408399, "grain_separation": 0.00428237931798054, "grains_center_of_mass_position": 0.3973251831428218, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000645662107852641, "throat_radius": 0.01145594087430309, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548621111903164}], "aerodynamic_surfaces": [{"length": 0.5571275196581473, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135310239429237}, {"n": 4, "root_chord": 0.1201031527095268, "tip_chord": 0.06002426919384585, "span": 0.10961128438366938, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488651348229234}, {"top_radius": 0.06392845060456655, "bottom_radius": 0.04364858387490322, "length": 0.059321841416545416, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700510427500657, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188611181733934, "upper_button_position": 0.08164930932726355}], "rail_length": 5, "inclination": 85.05389801165572, "heading": 51.195480220778954} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06348677169191433, "mass": 15.14005840394968, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3308679711747455, "I_33_without_motor": 0.026847338646989426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.921319776274668, "trigger": 800, "sampling_rate": 105, "lag": 1.5895466965183518, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.069639952112304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1071023445337342, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7256.336719228032, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03231980234923759, "grain_number": 5, "grain_density": 1774.514084372399, "grain_outer_radius": 0.032805465552169066, "grain_initial_inner_radius": 0.015568265825715093, "grain_initial_height": 0.12122775988822539, "grain_separation": 0.006124509332398598, "grains_center_of_mass_position": 0.3973868058298345, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007883861097203405, "throat_radius": 0.010232810379308767, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555320210955556}], "aerodynamic_surfaces": [{"length": 0.5589452691324261, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331842254068791}, {"n": 4, "root_chord": 0.11978159663735359, "tip_chord": 0.06032636633445844, "span": 0.11004120367766608, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488362250661722}, {"top_radius": 0.0644601272262442, "bottom_radius": 0.043836507746869, "length": 0.06048875511522501, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000555513136356, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618683340074938, "upper_button_position": 0.08137221123869764}], "rail_length": 5, "inclination": 86.04416876217294, "heading": 54.87305260799277} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350756900739546, "mass": 14.717050156826039, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328107852306494, "I_33_without_motor": 0.03729267055072154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91299859575238, "trigger": 800, "sampling_rate": 105, "lag": 1.4062180509856301, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9779206634525973, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6697156954736196, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5786.112906674323, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032488739562179875, "grain_number": 5, "grain_density": 1761.3658991937295, "grain_outer_radius": 0.032904057871343435, "grain_initial_inner_radius": 0.015226117570868704, "grain_initial_height": 0.12014620542418493, "grain_separation": 0.005226221679003051, "grains_center_of_mass_position": 0.39674555251453153, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006509331072296952, "throat_radius": 0.011153558865640558, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552639346725896}], "aerodynamic_surfaces": [{"length": 0.5579759512835899, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135460862315443}, {"n": 4, "root_chord": 0.11998647942880653, "tip_chord": 0.059837589649854486, "span": 0.10972114983670352, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509057211413424}, {"top_radius": 0.06317579683319034, "bottom_radius": 0.04328585749161155, "length": 0.06000135831425228, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991167513688383, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175245174942308, "upper_button_position": 0.08159223387460757}], "rail_length": 5, "inclination": 83.21963115772571, "heading": 54.137270499656864} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349620042566649, "mass": 15.688650638412062, "I_11_without_motor": 6.321, "I_22_without_motor": 6.344177351978726, "I_33_without_motor": 0.02433015034613832, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960995523807533, "trigger": 800, "sampling_rate": 105, "lag": 1.4726556117018859, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0694901015845961, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9344504887861285, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6648.725015600951, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309384656710171, "grain_number": 5, "grain_density": 1796.1847733917396, "grain_outer_radius": 0.032787412590176035, "grain_initial_inner_radius": 0.015107755605349034, "grain_initial_height": 0.11947822994143362, "grain_separation": 0.00391454420776473, "grains_center_of_mass_position": 0.39556589314470453, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013157072681443175, "throat_radius": 0.011759588442354797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557854510746587}], "aerodynamic_surfaces": [{"length": 0.558608405261547, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332120487237156}, {"n": 4, "root_chord": 0.12013571510615105, "tip_chord": 0.06004433157764359, "span": 0.10994184474347156, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486411023522393}, {"top_radius": 0.06468668336576586, "bottom_radius": 0.042307322102417, "length": 0.06001698216733037, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000394033902818, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172580493161293, "upper_button_position": 0.08278135407415255}], "rail_length": 5, "inclination": 83.80540089427349, "heading": 53.35270262859277} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350655516401149, "mass": 16.32043331528853, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320668011445413, "I_33_without_motor": 0.05560572763798648, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08059800897686, "trigger": 800, "sampling_rate": 105, "lag": 1.5403361945337615, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.018685693927716, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1819465499052424, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4594.37275762643, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03396095082303874, "grain_number": 5, "grain_density": 1854.2197032405993, "grain_outer_radius": 0.03276290993215177, "grain_initial_inner_radius": 0.015417254027316307, "grain_initial_height": 0.11948708225690548, "grain_separation": 0.0055731681125377195, "grains_center_of_mass_position": 0.3981066697113159, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005976431922582009, "throat_radius": 0.010861286959197133, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254219419401086}], "aerodynamic_surfaces": [{"length": 0.5571878579353834, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339259315424584}, {"n": 4, "root_chord": 0.11969346590937632, "tip_chord": 0.058805368160786006, "span": 0.10949053649776162, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497430805899983}, {"top_radius": 0.06363387874994732, "bottom_radius": 0.04406112943264425, "length": 0.060411881721516285, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006580833345302, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186376277833678, "upper_button_position": 0.08202045555116233}], "rail_length": 5, "inclination": 83.68252541051976, "heading": 49.95097449554565} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350764979824418, "mass": 15.162963667411667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326242386977451, "I_33_without_motor": 0.027746737816406013, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018575590898456, "trigger": 800, "sampling_rate": 105, "lag": 1.6634367935397814, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0939489810313632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0830870423792494, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6954.90963099508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032900700954529086, "grain_number": 5, "grain_density": 1847.176298861176, "grain_outer_radius": 0.032987261296184844, "grain_initial_inner_radius": 0.014665193644853908, "grain_initial_height": 0.11949087619348141, "grain_separation": 0.005632261747858377, "grains_center_of_mass_position": 0.3986381179223693, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004485705845824582, "throat_radius": 0.010883430077234482, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555489586119533}], "aerodynamic_surfaces": [{"length": 0.5581491849006133, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1367669168737289}, {"n": 4, "root_chord": 0.120272855156925, "tip_chord": 0.06031693015192932, "span": 0.10980038440739641, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500740294480397}, {"top_radius": 0.06458505235374025, "bottom_radius": 0.044000424266398434, "length": 0.060784033696106424, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003040632673027, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171555362486123, "upper_button_position": 0.08314852701869035}], "rail_length": 5, "inclination": 85.24304746224365, "heading": 53.336204396211954} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350200778207533, "mass": 16.271868501930637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317028100200779, "I_33_without_motor": 0.023853633154252554, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.841659092516746, "trigger": 800, "sampling_rate": 105, "lag": 1.367800377254207, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8881008411241331, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4420404647041682, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5449.725935226492, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033266463889782244, "grain_number": 5, "grain_density": 1877.7244942081281, "grain_outer_radius": 0.03266647275896182, "grain_initial_inner_radius": 0.014897568085973352, "grain_initial_height": 0.1199850407651676, "grain_separation": 0.004420462947576628, "grains_center_of_mass_position": 0.39765766446532513, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00035975565112595476, "throat_radius": 0.01071886218939527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545735443637047}], "aerodynamic_surfaces": [{"length": 0.5560483859868627, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329514413962194}, {"n": 4, "root_chord": 0.12081812204297902, "tip_chord": 0.05966369305496363, "span": 0.11008484701654647, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049740198601122}, {"top_radius": 0.06429173490398293, "bottom_radius": 0.042907145674132924, "length": 0.061964610262805614, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009604726267802, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183365120519337, "upper_button_position": 0.08262396057484644}], "rail_length": 5, "inclination": 83.71771996463185, "heading": 53.61358324272006} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350230056239921, "mass": 14.832040120291108, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323533907463835, "I_33_without_motor": 0.040536025269779424, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945156835453874, "trigger": 800, "sampling_rate": 105, "lag": 1.4018015760579434, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0676472450231336, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6824157018038761, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4265.7338562613895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033991030772348725, "grain_number": 5, "grain_density": 1644.6313033847082, "grain_outer_radius": 0.03283962112625895, "grain_initial_inner_radius": 0.014678250120292247, "grain_initial_height": 0.12008038987086891, "grain_separation": 0.0044523679169504796, "grains_center_of_mass_position": 0.3970738206231322, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001810600995124177, "throat_radius": 0.011526691443849775, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544805241726473}], "aerodynamic_surfaces": [{"length": 0.5595399542985262, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327280737642065}, {"n": 4, "root_chord": 0.11926124567617229, "tip_chord": 0.05975159257905394, "span": 0.11019950704537503, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490758945515797}, {"top_radius": 0.06147881769045503, "bottom_radius": 0.043978139370416724, "length": 0.05925839181409183, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992022958333449, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173502025835066, "upper_button_position": 0.08185209324983833}], "rail_length": 5, "inclination": 85.78949268423177, "heading": 55.276684859912955} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350528454789083, "mass": 14.484150885171399, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335897880194627, "I_33_without_motor": 0.030131851926491315, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848145302398388, "trigger": 800, "sampling_rate": 105, "lag": 1.3543508684217516, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.063583112273867, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5140461943938115, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6921.555377199053, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318102305537878, "grain_number": 5, "grain_density": 1860.3937901668978, "grain_outer_radius": 0.032852117868116544, "grain_initial_inner_radius": 0.015236509881394677, "grain_initial_height": 0.12014630568579027, "grain_separation": 0.006332073500534592, "grains_center_of_mass_position": 0.39664754080542874, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002948712363569236, "throat_radius": 0.011513904059615804, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560004595970191}], "aerodynamic_surfaces": [{"length": 0.5583160971544873, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343189833835425}, {"n": 4, "root_chord": 0.1197352642923288, "tip_chord": 0.05956223219824577, "span": 0.10993738398146198, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494964732180767}, {"top_radius": 0.0641124682990919, "bottom_radius": 0.04338826672835221, "length": 0.05930789020437407, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982408626975872, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159813138756408, "upper_button_position": 0.08225954882194642}], "rail_length": 5, "inclination": 85.35880428522448, "heading": 54.91119793487917} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0634944423424279, "mass": 16.543942243556273, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3187680786780795, "I_33_without_motor": 0.06136527811092572, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025861537547955, "trigger": 800, "sampling_rate": 105, "lag": 1.4083457917007907, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0352196255795962, "trigger": "apogee", "sampling_rate": 105, "lag": 1.111022927201113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4891.834156312663, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03219415692470974, "grain_number": 5, "grain_density": 1838.6032601945512, "grain_outer_radius": 0.03323550136924247, "grain_initial_inner_radius": 0.015184781488199545, "grain_initial_height": 0.12056813451947614, "grain_separation": 0.0058600541970467365, "grains_center_of_mass_position": 0.3968056866962573, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001223243820470747, "throat_radius": 0.01129628173738251, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561783467531988}], "aerodynamic_surfaces": [{"length": 0.5605830242689647, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342283959268546}, {"n": 4, "root_chord": 0.12022854331827051, "tip_chord": 0.05987666392498371, "span": 0.10990495486886455, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497979015579413}, {"top_radius": 0.06422211913745192, "bottom_radius": 0.04327616338406991, "length": 0.060415120502258154, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016925181550269, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172199714718457, "upper_button_position": 0.08447254668318116}], "rail_length": 5, "inclination": 84.6894782901628, "heading": 52.8261048563352} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350566122961479, "mass": 14.928182337626133, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323661728445394, "I_33_without_motor": 0.03228190130721379, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110884083524061, "trigger": 800, "sampling_rate": 105, "lag": 1.5676857060173053, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9405144819683772, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3620808804673863, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6940.124000483348, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03365527672822683, "grain_number": 5, "grain_density": 1803.7206384407439, "grain_outer_radius": 0.03356106923552959, "grain_initial_inner_radius": 0.014303402715568877, "grain_initial_height": 0.11904128483535759, "grain_separation": 0.0031225819029239493, "grains_center_of_mass_position": 0.39675702829220544, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0023895408812494956, "throat_radius": 0.01143022937721282, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560030148171792}], "aerodynamic_surfaces": [{"length": 0.5588379291795464, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345723308005935}, {"n": 4, "root_chord": 0.12004078675835052, "tip_chord": 0.05985898029531563, "span": 0.10982098238068103, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504936810262098}, {"top_radius": 0.06374117442521363, "bottom_radius": 0.04387470233476198, "length": 0.05918586693423917, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997794620203718, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160052320842214, "upper_button_position": 0.08377422993615036}], "rail_length": 5, "inclination": 84.47556863538495, "heading": 53.86280918273841} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350107412304232, "mass": 15.496361478016329, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3253788058248865, "I_33_without_motor": 0.03174500693222137, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077596460365733, "trigger": 800, "sampling_rate": 105, "lag": 1.7845558888440654, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1028531129077648, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4235550275090618, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7047.263318098907, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262782737649929, "grain_number": 5, "grain_density": 1856.4189782870783, "grain_outer_radius": 0.03282007983243874, "grain_initial_inner_radius": 0.015194126841114357, "grain_initial_height": 0.11976478178181095, "grain_separation": 0.0039547267776007915, "grains_center_of_mass_position": 0.3960023340721274, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006694763617126642, "throat_radius": 0.010879373978334814, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546596672549797}], "aerodynamic_surfaces": [{"length": 0.5589422274876825, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340539114677315}, {"n": 4, "root_chord": 0.11939426914400152, "tip_chord": 0.061076434195520175, "span": 0.10963482274907424, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499196396667414}, {"top_radius": 0.0625563313490686, "bottom_radius": 0.042357454283967116, "length": 0.05931520389230761, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001925332564348, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193081927760242, "upper_button_position": 0.0808843404804106}], "rail_length": 5, "inclination": 85.73461630515293, "heading": 54.11805710672891} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350814524322684, "mass": 15.76545852629856, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319916678291581, "I_33_without_motor": 0.04455851470261017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.075362706070479, "trigger": 800, "sampling_rate": 105, "lag": 1.4832832735851402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027388536223086, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9391856492201962, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6623.543355664533, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032351409479228335, "grain_number": 5, "grain_density": 1840.9914797091317, "grain_outer_radius": 0.033205582073393795, "grain_initial_inner_radius": 0.015625363735831097, "grain_initial_height": 0.11932013869406959, "grain_separation": 0.004462712676667207, "grains_center_of_mass_position": 0.39601813275354836, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012194781402286342, "throat_radius": 0.011189755216265149, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563108596920054}], "aerodynamic_surfaces": [{"length": 0.5592176218957299, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333041409371842}, {"n": 4, "root_chord": 0.11981931943300754, "tip_chord": 0.0601479399134115, "span": 0.10983372425019144, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494433547468993}, {"top_radius": 0.061774830326283774, "bottom_radius": 0.044861482864980144, "length": 0.06114756674101728, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002347101302007, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194550399033589, "upper_button_position": 0.08077967022684174}], "rail_length": 5, "inclination": 86.1975914047038, "heading": 52.78693911053079} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350661675120706, "mass": 15.82863625737726, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3262178534551206, "I_33_without_motor": 0.04708245436945863, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110811575474338, "trigger": 800, "sampling_rate": 105, "lag": 1.4927377091512977, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027527306873051, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4140805677970711, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5175.055552085467, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032887731083226394, "grain_number": 5, "grain_density": 1708.7589401264286, "grain_outer_radius": 0.033235034790178294, "grain_initial_inner_radius": 0.015271396602312042, "grain_initial_height": 0.11902327942790449, "grain_separation": 0.0042420948510715544, "grains_center_of_mass_position": 0.3973083115889271, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007152024721642259, "throat_radius": 0.012094258845567108, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543973962353805}], "aerodynamic_surfaces": [{"length": 0.5597977458058035, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345738740726803}, {"n": 4, "root_chord": 0.12021869672689584, "tip_chord": 0.059874498142359275, "span": 0.11037572572223962, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488278117195846}, {"top_radius": 0.06453645404665377, "bottom_radius": 0.042469486105316055, "length": 0.060237403748513184, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995325202279592, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163258417657922, "upper_button_position": 0.083206678462167}], "rail_length": 5, "inclination": 85.1703179081904, "heading": 54.11871901415833} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349974585400614, "mass": 15.114873688412956, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312127146772799, "I_33_without_motor": 0.03641182564170358, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.795916367941777, "trigger": 800, "sampling_rate": 105, "lag": 1.483351743321719, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0426990574851502, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2284665135153146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6357.76293039882, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03257927180349721, "grain_number": 5, "grain_density": 1824.1236983952663, "grain_outer_radius": 0.03280874759780054, "grain_initial_inner_radius": 0.01435807123919998, "grain_initial_height": 0.1209343613175914, "grain_separation": 0.005033527929099555, "grains_center_of_mass_position": 0.3965214569901056, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.3849625060257904e-05, "throat_radius": 0.0113791505175037, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255327943896963}], "aerodynamic_surfaces": [{"length": 0.5586841770630917, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339872697592441}, {"n": 4, "root_chord": 0.11914397360891196, "tip_chord": 0.05936605190461864, "span": 0.11021782469278932, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048738602532867}, {"top_radius": 0.06284524952372868, "bottom_radius": 0.04332244185440218, "length": 0.0607626019553223, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699093090874951, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186971619739431, "upper_button_position": 0.08039592890100788}], "rail_length": 5, "inclination": 86.17215817057885, "heading": 48.34298840876551} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349681036597633, "mass": 15.99762984753401, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324457527162217, "I_33_without_motor": 0.036362200405327255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848862195283386, "trigger": 800, "sampling_rate": 105, "lag": 1.5679302900194665, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.005078486677523, "trigger": "apogee", "sampling_rate": 105, "lag": 1.654884747811826, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5883.877058011067, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0332760934484958, "grain_number": 5, "grain_density": 1883.153687011777, "grain_outer_radius": 0.033260522076742315, "grain_initial_inner_radius": 0.014703855743628114, "grain_initial_height": 0.12047166491050332, "grain_separation": 0.00403072116951464, "grains_center_of_mass_position": 0.39763259542461016, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005454308982842138, "throat_radius": 0.011854708060886418, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558299431707267}], "aerodynamic_surfaces": [{"length": 0.5568246875568417, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336391111756992}, {"n": 4, "root_chord": 0.11936280449932841, "tip_chord": 0.0603059951385392, "span": 0.10989420658833064, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489795640803914}, {"top_radius": 0.06298389409039873, "bottom_radius": 0.041426075596181285, "length": 0.058540415556341374, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010575893926125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61775233772039, "upper_button_position": 0.08330525167222258}], "rail_length": 5, "inclination": 85.03091524028119, "heading": 53.38066848957075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349970515564267, "mass": 16.7020441975132, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310870927397118, "I_33_without_motor": 0.047278014654661374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.28289823749439, "trigger": 800, "sampling_rate": 105, "lag": 1.36020608967158, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1340259260280965, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1421362389872456, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6506.215146846739, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291199693749289, "grain_number": 5, "grain_density": 1821.1289651287602, "grain_outer_radius": 0.032892333903385466, "grain_initial_inner_radius": 0.01527471372495248, "grain_initial_height": 0.11980194773979806, "grain_separation": 0.003926593959134177, "grains_center_of_mass_position": 0.3980201061898963, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003472714670996996, "throat_radius": 0.010795807351420626, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550883742283114}], "aerodynamic_surfaces": [{"length": 0.55807726657663, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1321450501339494}, {"n": 4, "root_chord": 0.11928974755881772, "tip_chord": 0.06016025131417437, "span": 0.11034147752528517, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050387680794538}, {"top_radius": 0.06477484209179492, "bottom_radius": 0.04250379821194162, "length": 0.059318900087982164, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006085520566799, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184926145703337, "upper_button_position": 0.08211593748634627}], "rail_length": 5, "inclination": 84.72940214912872, "heading": 57.92604498942562} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350558487733447, "mass": 15.983730438131424, "I_11_without_motor": 6.321, "I_22_without_motor": 6.298085572284144, "I_33_without_motor": 0.029240704627731245, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960976276327756, "trigger": 800, "sampling_rate": 105, "lag": 1.7099976808286452, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0158625950239693, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4029824639963446, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6089.887262764002, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033037234033609114, "grain_number": 5, "grain_density": 1811.6588279045811, "grain_outer_radius": 0.03280806804657398, "grain_initial_inner_radius": 0.015221539892509047, "grain_initial_height": 0.12040108456314491, "grain_separation": 0.002503197280798909, "grains_center_of_mass_position": 0.39775276850178876, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005017149330466289, "throat_radius": 0.011338150953577293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540846424594958}], "aerodynamic_surfaces": [{"length": 0.5575103373253242, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134508836400656}, {"n": 4, "root_chord": 0.11968598992668096, "tip_chord": 0.05944041876099646, "span": 0.10947801041526689, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503805853390857}, {"top_radius": 0.06352643637218514, "bottom_radius": 0.044381852882531166, "length": 0.06078189878625247, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7017762569591384, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619045367152774, "upper_button_position": 0.08273088980636434}], "rail_length": 5, "inclination": 84.20620010067341, "heading": 53.57068077651382} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06351400663834361, "mass": 14.488002056223754, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302630651009075, "I_33_without_motor": 0.01867712391252678, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.121616194429002, "trigger": 800, "sampling_rate": 105, "lag": 1.475686586132477, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9997199502237726, "trigger": "apogee", "sampling_rate": 105, "lag": 1.472986069654121, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6755.5619674346135, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330599635803222, "grain_number": 5, "grain_density": 1750.4361869240909, "grain_outer_radius": 0.033341111582149925, "grain_initial_inner_radius": 0.014362978204404141, "grain_initial_height": 0.1200170945660025, "grain_separation": 0.004307674285154488, "grains_center_of_mass_position": 0.3981743555047869, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004964701142615134, "throat_radius": 0.011236061687940127, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554195822642888}], "aerodynamic_surfaces": [{"length": 0.5581683349798491, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344246462705185}, {"n": 4, "root_chord": 0.11997958701210333, "tip_chord": 0.06071479202179132, "span": 0.10976932173362793, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484544490205376}, {"top_radius": 0.061448499246609334, "bottom_radius": 0.04523326649599763, "length": 0.0594531523390045, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013060972818543, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186026599542703, "upper_button_position": 0.082703437327584}], "rail_length": 5, "inclination": 84.4277018183889, "heading": 54.11096923486808} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350235371807647, "mass": 15.643256717727482, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31484231546398, "I_33_without_motor": 0.03879934321514706, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.858917654307808, "trigger": 800, "sampling_rate": 105, "lag": 1.4784579349750218, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9838706844381231, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4589853114666496, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8303.138743064093, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033136887538392425, "grain_number": 5, "grain_density": 1706.3365786711984, "grain_outer_radius": 0.033203127675014196, "grain_initial_inner_radius": 0.014620694257207223, "grain_initial_height": 0.11931887202492436, "grain_separation": 0.005268508430061792, "grains_center_of_mass_position": 0.398657700356464, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006593181526172394, "throat_radius": 0.010939617815146453, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534890588037042}], "aerodynamic_surfaces": [{"length": 0.5579905740972613, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333718365991028}, {"n": 4, "root_chord": 0.12042214436310424, "tip_chord": 0.05945571428694382, "span": 0.11087136242977642, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505711588908924}, {"top_radius": 0.06453145257863914, "bottom_radius": 0.045220708674426034, "length": 0.05858500792255242, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997362971850666, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183491823794736, "upper_button_position": 0.08138711480559302}], "rail_length": 5, "inclination": 83.92210274961906, "heading": 55.12444897992712} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350152520071942, "mass": 15.503546856156708, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3145048870049605, "I_33_without_motor": 0.04437958883140379, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.21927198567488, "trigger": 800, "sampling_rate": 105, "lag": 1.59407986941476, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9603732196788408, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2953310889308238, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7358.106541699496, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033293653655997714, "grain_number": 5, "grain_density": 1825.3868859460908, "grain_outer_radius": 0.03308110481886692, "grain_initial_inner_radius": 0.015258790226737299, "grain_initial_height": 0.11951692080881275, "grain_separation": 0.0056842889566227585, "grains_center_of_mass_position": 0.3967160006095692, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005968118078223158, "throat_radius": 0.010469257068926341, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559483707951424}], "aerodynamic_surfaces": [{"length": 0.5572597394752801, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346841018574605}, {"n": 4, "root_chord": 0.11973674289367298, "tip_chord": 0.06107790232082755, "span": 0.11060859825401242, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486334871651686}, {"top_radius": 0.06357281075013996, "bottom_radius": 0.04395568135182032, "length": 0.059484823118766746, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990544410440023, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618192133249666, "upper_button_position": 0.08086230779433623}], "rail_length": 5, "inclination": 83.63377609029784, "heading": 54.06013712899685} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06348873140492899, "mass": 15.39772319044281, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3174720052941815, "I_33_without_motor": 0.022596380190005955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.097213670849488, "trigger": 800, "sampling_rate": 105, "lag": 1.3915705717553755, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9392168526179459, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1722377125966115, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7789.6939194185525, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220875596767066, "grain_number": 5, "grain_density": 1829.5918774760182, "grain_outer_radius": 0.0333520343461694, "grain_initial_inner_radius": 0.015798604275461405, "grain_initial_height": 0.12120350282084366, "grain_separation": 0.004147546821427842, "grains_center_of_mass_position": 0.3973996870194583, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007571415798461605, "throat_radius": 0.01056596211528706, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559984267869009}], "aerodynamic_surfaces": [{"length": 0.5598839359056458, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340080292248607}, {"n": 4, "root_chord": 0.11999033766132569, "tip_chord": 0.059477826871808206, "span": 0.110790973002475, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049439284946093}, {"top_radius": 0.06373663444402292, "bottom_radius": 0.04456696248788347, "length": 0.06186325318758883, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008161936296559, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171436530571246, "upper_button_position": 0.08367254057253126}], "rail_length": 5, "inclination": 84.1350661455557, "heading": 51.32123894891269} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350598992671388, "mass": 15.116068341532, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299839960840006, "I_33_without_motor": 0.01644455782724902, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005139069894474, "trigger": 800, "sampling_rate": 105, "lag": 1.5317942436035836, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.939972522541705, "trigger": "apogee", "sampling_rate": 105, "lag": 1.421665582118231, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7174.048183442291, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254635528269922, "grain_number": 5, "grain_density": 1764.9919682071377, "grain_outer_radius": 0.03390879652495536, "grain_initial_inner_radius": 0.014487947460811916, "grain_initial_height": 0.12137442375819109, "grain_separation": 0.005689221571236834, "grains_center_of_mass_position": 0.39684012577775113, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004551127867471365, "throat_radius": 0.01056050772560727, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567251348503206}], "aerodynamic_surfaces": [{"length": 0.5569123681035684, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134029574676987}, {"n": 4, "root_chord": 0.1191195122470778, "tip_chord": 0.059826853779867725, "span": 0.109668341577623, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050095184906917}, {"top_radius": 0.06350673085402615, "bottom_radius": 0.04561634274014269, "length": 0.059939108086846785, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993075391459747, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178754835179717, "upper_button_position": 0.08143205562800293}], "rail_length": 5, "inclination": 84.96482932211737, "heading": 50.01235133133258} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350081100060809, "mass": 15.290264575798169, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331667706303446, "I_33_without_motor": 0.0339782939510848, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.893563369195329, "trigger": 800, "sampling_rate": 105, "lag": 1.5663737577399734, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.144254414408596, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5703425622768268, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6557.447005330478, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286637081406721, "grain_number": 5, "grain_density": 1857.297453394681, "grain_outer_radius": 0.03312507850113102, "grain_initial_inner_radius": 0.015341526885860936, "grain_initial_height": 0.1193774231810778, "grain_separation": 0.006201944381486715, "grains_center_of_mass_position": 0.398051042737148, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009746942665539987, "throat_radius": 0.010475869929167552, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544954465742617}], "aerodynamic_surfaces": [{"length": 0.559307222611432, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332300103923867}, {"n": 4, "root_chord": 0.1204196754203411, "tip_chord": 0.05996124035653514, "span": 0.11085263126304826, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490986824828115}, {"top_radius": 0.06263055158629517, "bottom_radius": 0.0443820503747486, "length": 0.058523060112769185, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985530755453083, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181384137231515, "upper_button_position": 0.08041466182215684}], "rail_length": 5, "inclination": 84.80763804597896, "heading": 51.99008546797012} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349845681881174, "mass": 15.51034496849051, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316727280221023, "I_33_without_motor": 0.030246264150415578, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141142672811634, "trigger": 800, "sampling_rate": 105, "lag": 1.5045091541582942, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.101470987295491, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4927963819611385, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6505.899573331687, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03408550019847789, "grain_number": 5, "grain_density": 1867.9895441954816, "grain_outer_radius": 0.03353725871127009, "grain_initial_inner_radius": 0.014628179391210635, "grain_initial_height": 0.11953944285208373, "grain_separation": 0.004182063015203245, "grains_center_of_mass_position": 0.39891814475468484, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003842676966896822, "throat_radius": 0.01103949658744561, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538345958776453}], "aerodynamic_surfaces": [{"length": 0.559415848170083, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134052971441127}, {"n": 4, "root_chord": 0.11994061139359602, "tip_chord": 0.05948595807829556, "span": 0.11011284758369706, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501150844757636}, {"top_radius": 0.06464814708973617, "bottom_radius": 0.04352222557724632, "length": 0.0585589750660511, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997298893488606, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187423504653559, "upper_button_position": 0.08098753888350474}], "rail_length": 5, "inclination": 86.474474699447, "heading": 50.66593022491799} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349680222394927, "mass": 15.643316291495657, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316745053484233, "I_33_without_motor": 0.03579971686675272, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095979349860174, "trigger": 800, "sampling_rate": 105, "lag": 1.475909857557183, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9035818933164838, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4089724074006489, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4896.471678751919, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298513394652725, "grain_number": 5, "grain_density": 1808.8603877853539, "grain_outer_radius": 0.033356221412443376, "grain_initial_inner_radius": 0.015201075509221488, "grain_initial_height": 0.12106447511444422, "grain_separation": 0.004962363233293196, "grains_center_of_mass_position": 0.39670890774644746, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010246868597606887, "throat_radius": 0.011059400591960707, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528122022960284}], "aerodynamic_surfaces": [{"length": 0.5583855378621938, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344380718895668}, {"n": 4, "root_chord": 0.12050371769439953, "tip_chord": 0.06072083691641604, "span": 0.10845637143937845, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498592074610775}, {"top_radius": 0.06219235503046719, "bottom_radius": 0.043658473838901146, "length": 0.060391755425846266, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991087141773683, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177706815293468, "upper_button_position": 0.08133803264802153}], "rail_length": 5, "inclination": 83.75950967544838, "heading": 52.81416723410497} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635145613891314, "mass": 14.919882950884865, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31713440372247, "I_33_without_motor": 0.030953003217082373, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851983640853021, "trigger": 800, "sampling_rate": 105, "lag": 1.4674681803175535, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1148370905667397, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2170684610675548, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5757.587142390023, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264355487281794, "grain_number": 5, "grain_density": 1767.9587158898676, "grain_outer_radius": 0.03251756804050797, "grain_initial_inner_radius": 0.015176804260234314, "grain_initial_height": 0.12191463620238359, "grain_separation": 0.0044503365173660285, "grains_center_of_mass_position": 0.3977572437278211, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005173096070174438, "throat_radius": 0.011126365611107669, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551257712256572}], "aerodynamic_surfaces": [{"length": 0.5601842487663329, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.136177778694469}, {"n": 4, "root_chord": 0.11988328125493863, "tip_chord": 0.06017443466160251, "span": 0.11076226557972312, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503119555233178}, {"top_radius": 0.06560409124978885, "bottom_radius": 0.04299137589844139, "length": 0.05994768897515142, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995762995345279, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183125497860648, "upper_button_position": 0.08126374974846318}], "rail_length": 5, "inclination": 85.21720727835242, "heading": 51.18477991807628} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350799607024002, "mass": 14.947600302843787, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312788457320762, "I_33_without_motor": 0.04180624820518606, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017992556628661, "trigger": 800, "sampling_rate": 105, "lag": 1.398942283033999, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0416920314502922, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7789275838385676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8140.79664329265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03230735666210473, "grain_number": 5, "grain_density": 1802.8444442124874, "grain_outer_radius": 0.032808978312102076, "grain_initial_inner_radius": 0.015087007833029001, "grain_initial_height": 0.11943103331599621, "grain_separation": 0.006470155588081557, "grains_center_of_mass_position": 0.39713222788523667, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001542140305043063, "throat_radius": 0.011042068432316605, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254005398596193}], "aerodynamic_surfaces": [{"length": 0.5589161969389901, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348949048591155}, {"n": 4, "root_chord": 0.12029758596995735, "tip_chord": 0.05919475982371939, "span": 0.11020577511677891, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492190914748913}, {"top_radius": 0.0653027983876275, "bottom_radius": 0.0430500075381404, "length": 0.058441057712237635, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994178881342481, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163732600851495, "upper_button_position": 0.08304462804909862}], "rail_length": 5, "inclination": 84.84997515913865, "heading": 54.79119826119657} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350715438925233, "mass": 14.911781771523472, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326217155331234, "I_33_without_motor": 0.026738793342583042, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9045350187866, "trigger": 800, "sampling_rate": 105, "lag": 1.5611502756372717, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9477003042000832, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8053277913023458, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4192.319075126652, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372274899816038, "grain_number": 5, "grain_density": 1731.0750003774046, "grain_outer_radius": 0.033022506503355774, "grain_initial_inner_radius": 0.014405611854931704, "grain_initial_height": 0.12125557153893804, "grain_separation": 0.00557374472977037, "grains_center_of_mass_position": 0.39650507852695116, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00204210356327978, "throat_radius": 0.011548932997289414, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547710426134508}], "aerodynamic_surfaces": [{"length": 0.5583418920136936, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132467109299782}, {"n": 4, "root_chord": 0.12022298610880851, "tip_chord": 0.06039332706406446, "span": 0.10968755736213517, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487299647403217}, {"top_radius": 0.06472108994437213, "bottom_radius": 0.0428817818560753, "length": 0.05998782676461884, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998278306866319, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188852003617226, "upper_button_position": 0.08094263032490934}], "rail_length": 5, "inclination": 85.08393299977227, "heading": 53.152312220561264} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349135874648634, "mass": 15.227745034422579, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328067525100397, "I_33_without_motor": 0.051856798993548586, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.081147978016215, "trigger": 800, "sampling_rate": 105, "lag": 1.441512799468951, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1350477353537014, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0652942000959411, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8226.779106751808, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296671778629183, "grain_number": 5, "grain_density": 1794.5380261118798, "grain_outer_radius": 0.03316284838728819, "grain_initial_inner_radius": 0.015570892836227378, "grain_initial_height": 0.11786795852576153, "grain_separation": 0.005699956331369701, "grains_center_of_mass_position": 0.39750989182175395, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006433399879353447, "throat_radius": 0.01091426770867519, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551869052470377}], "aerodynamic_surfaces": [{"length": 0.5582690252647475, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348439469258729}, {"n": 4, "root_chord": 0.12002542974067226, "tip_chord": 0.05880573673990045, "span": 0.11054678427559483, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048338267260117}, {"top_radius": 0.062048702665586916, "bottom_radius": 0.04229849581588398, "length": 0.06054473057445315, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001183995939708, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170084519383152, "upper_button_position": 0.0831099476556556}], "rail_length": 5, "inclination": 83.317555803898, "heading": 50.073892199774534} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350007100790607, "mass": 15.346193332828916, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313671547730219, "I_33_without_motor": 0.04118073591819581, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.224403066457928, "trigger": 800, "sampling_rate": 105, "lag": 1.5894647845701857, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9519317612339457, "trigger": "apogee", "sampling_rate": 105, "lag": 1.80203000320157, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8365.602197242839, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03385539216002575, "grain_number": 5, "grain_density": 1849.1184115931123, "grain_outer_radius": 0.03347122697907893, "grain_initial_inner_radius": 0.013589743167067788, "grain_initial_height": 0.11846655686473725, "grain_separation": 0.0030982950946336803, "grains_center_of_mass_position": 0.39867294189801744, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00040441594520245085, "throat_radius": 0.011688280430105263, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253925753583204}], "aerodynamic_surfaces": [{"length": 0.5586340107133337, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133938710731301}, {"n": 4, "root_chord": 0.1198993694377257, "tip_chord": 0.05911195730664921, "span": 0.10911447762110936, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511743161941631}, {"top_radius": 0.062256588297886946, "bottom_radius": 0.04323290618185043, "length": 0.058846189158892545, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992967783086661, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181799465174678, "upper_button_position": 0.08111683179119833}], "rail_length": 5, "inclination": 84.1384756973065, "heading": 49.61643323022119} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350052305835922, "mass": 15.115920335113344, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319132260871135, "I_33_without_motor": 0.03595321247378587, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.814085839028625, "trigger": 800, "sampling_rate": 105, "lag": 1.779725913397803, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9786608268201671, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3984355931154082, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7794.8507945065085, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03319507850173346, "grain_number": 5, "grain_density": 1757.1145301020474, "grain_outer_radius": 0.032915704246017835, "grain_initial_inner_radius": 0.014392395617239984, "grain_initial_height": 0.11944441466371589, "grain_separation": 0.004808233588103325, "grains_center_of_mass_position": 0.39575030878562184, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00026792212715745473, "throat_radius": 0.011345184261050573, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543155838175284}], "aerodynamic_surfaces": [{"length": 0.5554051730441475, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335764278856537}, {"n": 4, "root_chord": 0.1197950504125894, "tip_chord": 0.060236872149017504, "span": 0.10988308130130058, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048262494183557}, {"top_radius": 0.06445895826098125, "bottom_radius": 0.04371041425965579, "length": 0.06060449291454869, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698050704790991, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182414969805278, "upper_button_position": 0.07980920781046319}], "rail_length": 5, "inclination": 83.73642942859885, "heading": 48.70947385752797} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349819344016877, "mass": 14.91435283264655, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339101671966135, "I_33_without_motor": 0.020431519149313147, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.050930009038527, "trigger": 800, "sampling_rate": 105, "lag": 1.5022128284170904, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8555420961984556, "trigger": "apogee", "sampling_rate": 105, "lag": 1.20961713702428, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8292.42278609725, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033033042157571545, "grain_number": 5, "grain_density": 1848.9062150201967, "grain_outer_radius": 0.03283215110851232, "grain_initial_inner_radius": 0.014925838832059975, "grain_initial_height": 0.12033946039756978, "grain_separation": 0.004689772041219562, "grains_center_of_mass_position": 0.39825132125470825, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.229818951653239e-05, "throat_radius": 0.011670454098550876, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541040873549887}], "aerodynamic_surfaces": [{"length": 0.5579548847691839, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352376533326163}, {"n": 4, "root_chord": 0.12096538315006407, "tip_chord": 0.05991045242439588, "span": 0.1099636943830481, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502761684720519}, {"top_radius": 0.064984992949409, "bottom_radius": 0.04259715164998101, "length": 0.060258695626333625, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009953460848338, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168805442954454, "upper_button_position": 0.08411480178938846}], "rail_length": 5, "inclination": 85.66275536848622, "heading": 53.48432420631581} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350368589990667, "mass": 14.705932630121234, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320596967925617, "I_33_without_motor": 0.047639724366590905, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.091867034268141, "trigger": 800, "sampling_rate": 105, "lag": 1.4229270331824002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0110607256772164, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3629275246252577, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7578.08930406861, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032536894985095134, "grain_number": 5, "grain_density": 1766.0941314237798, "grain_outer_radius": 0.032667542707133394, "grain_initial_inner_radius": 0.014497828113498803, "grain_initial_height": 0.12000154334700223, "grain_separation": 0.00543459028876444, "grains_center_of_mass_position": 0.3977002200976118, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.0475624787934472e-05, "throat_radius": 0.011006249576076129, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25602903277785}], "aerodynamic_surfaces": [{"length": 0.5593622715830067, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333413167190476}, {"n": 4, "root_chord": 0.1194764770094732, "tip_chord": 0.06054362587412015, "span": 0.11011148264870423, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050946621409242}, {"top_radius": 0.06269512752701054, "bottom_radius": 0.04293900133294346, "length": 0.058286072473278515, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990924423669941, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171469276831657, "upper_button_position": 0.08194551468382838}], "rail_length": 5, "inclination": 86.12836318145474, "heading": 54.021858144316994} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06351378873743432, "mass": 16.768861830467337, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341235051045173, "I_33_without_motor": 0.043075527314753115, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.097661472681697, "trigger": 800, "sampling_rate": 105, "lag": 1.6808447325911922, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9257916550838271, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2873819950098448, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5024.148293049208, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277844081730795, "grain_number": 5, "grain_density": 1829.1206041382616, "grain_outer_radius": 0.03316615739939846, "grain_initial_inner_radius": 0.015206020285706716, "grain_initial_height": 0.12025421132574594, "grain_separation": 0.005157488936621555, "grains_center_of_mass_position": 0.3978633517745328, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006350857502272174, "throat_radius": 0.010200294522305262, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544302809356915}], "aerodynamic_surfaces": [{"length": 0.5603004908434152, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339410562184815}, {"n": 4, "root_chord": 0.11981710585037116, "tip_chord": 0.0602984114324569, "span": 0.10993077916310137, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506843520783684}, {"top_radius": 0.06347103289462869, "bottom_radius": 0.043092701809785236, "length": 0.05920851525639374, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992591427496182, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191151024768903, "upper_button_position": 0.08014404027272792}], "rail_length": 5, "inclination": 83.18815569444799, "heading": 51.4949739499224} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350189387446976, "mass": 15.0913078032644, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315905096471741, "I_33_without_motor": 0.024775277233472642, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.906621506673076, "trigger": 800, "sampling_rate": 105, "lag": 1.367739471960069, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0326083171762455, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5429689636009525, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6265.175285834637, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321344556349369, "grain_number": 5, "grain_density": 1800.127512214592, "grain_outer_radius": 0.033229503986835024, "grain_initial_inner_radius": 0.015183870819922255, "grain_initial_height": 0.11998072419676169, "grain_separation": 0.0046488488730071185, "grains_center_of_mass_position": 0.3977251625602929, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.985307778830978e-05, "throat_radius": 0.010479272645559989, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530220606602054}], "aerodynamic_surfaces": [{"length": 0.5578530553154493, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344004402855246}, {"n": 4, "root_chord": 0.11989238611093492, "tip_chord": 0.05938953044048133, "span": 0.10976012111434563, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488295170399584}, {"top_radius": 0.06397153360022556, "bottom_radius": 0.043431881515955166, "length": 0.059153690156386336, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6972848699311283, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177701107559546, "upper_button_position": 0.0795147591751737}], "rail_length": 5, "inclination": 85.11060977925972, "heading": 50.16826750403689} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.063504115338031, "mass": 16.10917217458517, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311907543659545, "I_33_without_motor": 0.041287942171076716, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141107138285534, "trigger": 800, "sampling_rate": 105, "lag": 1.4729559346996886, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9653208470849748, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6408366103551466, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6068.437469092751, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301219407418273, "grain_number": 5, "grain_density": 1790.619416683616, "grain_outer_radius": 0.033479728716031366, "grain_initial_inner_radius": 0.014996391464857622, "grain_initial_height": 0.11975321248832699, "grain_separation": 0.005235645695760492, "grains_center_of_mass_position": 0.3984217104025421, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001528512368567433, "throat_radius": 0.00999136548936409, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558053450902429}], "aerodynamic_surfaces": [{"length": 0.558285474363346, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134179220949414}, {"n": 4, "root_chord": 0.12027571518662107, "tip_chord": 0.059462265254718163, "span": 0.10947798258578538, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500105734889351}, {"top_radius": 0.06421178092135375, "bottom_radius": 0.04261329646115109, "length": 0.06116867941256444, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700063448305565, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184842605619397, "upper_button_position": 0.08157918774362527}], "rail_length": 5, "inclination": 85.54189971391708, "heading": 55.17767358774814} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349735775776559, "mass": 15.256917308157925, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320249626963356, "I_33_without_motor": 0.04991916307841865, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021856259520986, "trigger": 800, "sampling_rate": 105, "lag": 1.4728956878833381, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.833731844771304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6412185531903503, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5689.632848723463, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275267201355658, "grain_number": 5, "grain_density": 1815.4851237039313, "grain_outer_radius": 0.032518486645821035, "grain_initial_inner_radius": 0.014876657680877583, "grain_initial_height": 0.12000388844577059, "grain_separation": 0.00674045937225929, "grains_center_of_mass_position": 0.3977601987448277, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005840071895316602, "throat_radius": 0.009880445376396336, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554639155625995}], "aerodynamic_surfaces": [{"length": 0.5589811970740689, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340514718534436}, {"n": 4, "root_chord": 0.11985082119448227, "tip_chord": 0.05992044573861256, "span": 0.10960707951038343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502097511082116}, {"top_radius": 0.06190571938277773, "bottom_radius": 0.04328192874106962, "length": 0.061160732636974906, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000666117994385, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171331599649635, "upper_button_position": 0.08293345183447498}], "rail_length": 5, "inclination": 84.61227788747846, "heading": 53.540944743676064} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349727051185163, "mass": 15.788969410092719, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322999423606519, "I_33_without_motor": 0.030242488363424646, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10617953632471, "trigger": 800, "sampling_rate": 105, "lag": 1.645109709678108, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0981584599872398, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6562870817190183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7511.79778459823, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277614022184676, "grain_number": 5, "grain_density": 1918.5484028239011, "grain_outer_radius": 0.03282145872535381, "grain_initial_inner_radius": 0.01547269376816627, "grain_initial_height": 0.1186429919368166, "grain_separation": 0.0034149262282545, "grains_center_of_mass_position": 0.3958058354635835, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005922914904854142, "throat_radius": 0.010884184120683043, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255279203504352}], "aerodynamic_surfaces": [{"length": 0.5580315970879022, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349203052658428}, {"n": 4, "root_chord": 0.11956407609128841, "tip_chord": 0.059783245772437606, "span": 0.11024405686466565, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490422720014103}, {"top_radius": 0.06514601954615656, "bottom_radius": 0.041882411076930234, "length": 0.05936354195948523, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998839676109705, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165459403439718, "upper_button_position": 0.08333802726699868}], "rail_length": 5, "inclination": 86.10557195038133, "heading": 52.52377349864741} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349848654024029, "mass": 15.252055369299741, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310286553004251, "I_33_without_motor": 0.033209576035724074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.131771862409858, "trigger": 800, "sampling_rate": 105, "lag": 1.3995002223583273, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8616313316261645, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7130398517257421, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6049.051361090419, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033014858450513766, "grain_number": 5, "grain_density": 1865.3647321649, "grain_outer_radius": 0.03319641239509709, "grain_initial_inner_radius": 0.014826399271513253, "grain_initial_height": 0.11956227049328506, "grain_separation": 0.005871551185507644, "grains_center_of_mass_position": 0.39664055036786305, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015119123356641681, "throat_radius": 0.011742468363928867, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546222613187423}], "aerodynamic_surfaces": [{"length": 0.5581449303375392, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342128061238421}, {"n": 4, "root_chord": 0.12096906153098778, "tip_chord": 0.06072671769911218, "span": 0.11037627881904408, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495479494991307}, {"top_radius": 0.06464857355383402, "bottom_radius": 0.04436933950766091, "length": 0.059901893781954554, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018455151449575, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174018872167826, "upper_button_position": 0.08444362792817495}], "rail_length": 5, "inclination": 85.68685412353847, "heading": 52.064270031402636} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350745566815232, "mass": 16.106981843545128, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309938471386973, "I_33_without_motor": 0.03151517684201613, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071986967701294, "trigger": 800, "sampling_rate": 105, "lag": 1.5466928139465308, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0085702864246588, "trigger": "apogee", "sampling_rate": 105, "lag": 1.573696821879477, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6763.9025753816095, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03241084075066628, "grain_number": 5, "grain_density": 1855.8546372209626, "grain_outer_radius": 0.03230908237521815, "grain_initial_inner_radius": 0.016178145564751615, "grain_initial_height": 0.12133644071221013, "grain_separation": 0.005037198456550965, "grains_center_of_mass_position": 0.39551808875163363, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007119252521343649, "throat_radius": 0.010738503334103595, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562555346501627}], "aerodynamic_surfaces": [{"length": 0.5579511491328436, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338627223928375}, {"n": 4, "root_chord": 0.12074405800928523, "tip_chord": 0.05968904979241561, "span": 0.10931539508867417, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498256397578263}, {"top_radius": 0.06426372139112921, "bottom_radius": 0.044229402739227444, "length": 0.058902718956537425, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012231732024442, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183104058336527, "upper_button_position": 0.0829127673687915}], "rail_length": 5, "inclination": 85.266904405429, "heading": 49.794114664358226} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350621446230925, "mass": 14.841692506447885, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327752000367287, "I_33_without_motor": 0.03907484399161633, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.091814352399155, "trigger": 800, "sampling_rate": 105, "lag": 1.4992361724668226, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0468320593693858, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4993000738557682, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4863.825361160375, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032969244787988045, "grain_number": 5, "grain_density": 1805.7710283145896, "grain_outer_radius": 0.03303835174647323, "grain_initial_inner_radius": 0.01451223992677961, "grain_initial_height": 0.12003733910795311, "grain_separation": 0.004510616843182897, "grains_center_of_mass_position": 0.39817819911698504, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004618993384721217, "throat_radius": 0.01150072286535639, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25630477881221}], "aerodynamic_surfaces": [{"length": 0.5585780884637838, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349618811424176}, {"n": 4, "root_chord": 0.11992036820016388, "tip_chord": 0.05961597097296392, "span": 0.1092669949125781, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493701612784996}, {"top_radius": 0.061775892131545086, "bottom_radius": 0.04369330259565961, "length": 0.05916580014607244, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698811276299496, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171376285813581, "upper_button_position": 0.0816736477181379}], "rail_length": 5, "inclination": 83.68039590472803, "heading": 54.36235574283949} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350438902869007, "mass": 16.072859280408846, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3298206154136665, "I_33_without_motor": 0.01336678091257663, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.086137125423095, "trigger": 800, "sampling_rate": 105, "lag": 1.5328326525847824, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9316424554335484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.515361003296773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6559.391319936775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250419743854408, "grain_number": 5, "grain_density": 1839.030847532249, "grain_outer_radius": 0.03328317295032952, "grain_initial_inner_radius": 0.014684220891041868, "grain_initial_height": 0.11951600587197346, "grain_separation": 0.006014554834178955, "grains_center_of_mass_position": 0.398107567014065, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002672607467401567, "throat_radius": 0.01085443038387839, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253740844700262}], "aerodynamic_surfaces": [{"length": 0.5564901150119972, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337664283497029}, {"n": 4, "root_chord": 0.1200052781821323, "tip_chord": 0.0606393992272465, "span": 0.11000066161411143, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050381107612405}, {"top_radius": 0.0619620624313371, "bottom_radius": 0.04361842493818588, "length": 0.05876988465049463, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700310426485725, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183437019975266, "upper_button_position": 0.0819667244881983}], "rail_length": 5, "inclination": 83.91531357263793, "heading": 53.25777865050567} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350031515430649, "mass": 15.657619452418041, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318996965670656, "I_33_without_motor": 0.054107885302780934, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003520112140395, "trigger": 800, "sampling_rate": 105, "lag": 1.6731450772148426, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0564331137818055, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5786131986724676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6099.38050417305, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0320285438688287, "grain_number": 5, "grain_density": 1787.4341102528563, "grain_outer_radius": 0.03289515549063039, "grain_initial_inner_radius": 0.014600899255547452, "grain_initial_height": 0.12031295452157646, "grain_separation": 0.005373141772981798, "grains_center_of_mass_position": 0.39864008444613425, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0023234223057753823, "throat_radius": 0.011001562284135461, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254141525659934}], "aerodynamic_surfaces": [{"length": 0.5583634629614801, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333307153777983}, {"n": 4, "root_chord": 0.11912600722867468, "tip_chord": 0.06053502242550476, "span": 0.11055805395162467, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494438741897492}, {"top_radius": 0.06145767359558424, "bottom_radius": 0.04543997367063665, "length": 0.05959555523823961, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988384849692856, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162258188853408, "upper_button_position": 0.0826126660839448}], "rail_length": 5, "inclination": 83.70463835627308, "heading": 54.256796381234345} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349776692865144, "mass": 15.696962155339778, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33555647585771, "I_33_without_motor": 0.02390801720019156, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911579103512112, "trigger": 800, "sampling_rate": 105, "lag": 1.522986247416424, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1091844168523586, "trigger": "apogee", "sampling_rate": 105, "lag": 1.649947830119409, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8169.44423670311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03344592530703636, "grain_number": 5, "grain_density": 1800.538000539368, "grain_outer_radius": 0.033489253232458376, "grain_initial_inner_radius": 0.014820077122711403, "grain_initial_height": 0.11932873992742436, "grain_separation": 0.005574195042519616, "grains_center_of_mass_position": 0.3950209056989943, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005958977959757021, "throat_radius": 0.009946834697377189, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565137011693948}], "aerodynamic_surfaces": [{"length": 0.5588554949379569, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336878956502834}, {"n": 4, "root_chord": 0.11921559380073037, "tip_chord": 0.059916140223415404, "span": 0.1096628057993646, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050788437967068}, {"top_radius": 0.06338042605915598, "bottom_radius": 0.04331835730984487, "length": 0.06110100033119088, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008118387618427, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183425624965184, "upper_button_position": 0.0824692762653243}], "rail_length": 5, "inclination": 84.8798091305304, "heading": 53.74190335475741} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06351246262071779, "mass": 14.85759636622915, "I_11_without_motor": 6.321, "I_22_without_motor": 6.2973487974043465, "I_33_without_motor": 0.03954619028942351, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957358785963027, "trigger": 800, "sampling_rate": 105, "lag": 1.5299378676326265, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0756708654147986, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4258603393021643, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6973.764426918031, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033577443213112415, "grain_number": 5, "grain_density": 1811.153975073818, "grain_outer_radius": 0.032698002574931474, "grain_initial_inner_radius": 0.014954858424024602, "grain_initial_height": 0.12013763627052026, "grain_separation": 0.003042426632408333, "grains_center_of_mass_position": 0.397570388144813, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006978460405298574, "throat_radius": 0.010518567882147905, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542689560305853}], "aerodynamic_surfaces": [{"length": 0.5568467305829896, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1360343554352368}, {"n": 4, "root_chord": 0.1204987771229088, "tip_chord": 0.060135737279112804, "span": 0.1092628521807992, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488271158180569}, {"top_radius": 0.06088069205217574, "bottom_radius": 0.04338356870174444, "length": 0.06000618039822587, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989625750073148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181608566256721, "upper_button_position": 0.08080171838164274}], "rail_length": 5, "inclination": 83.01427149321322, "heading": 53.731695314472255} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350771065044335, "mass": 14.707128886969343, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30886919433377, "I_33_without_motor": 0.024467588154499943, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.111931854804746, "trigger": 800, "sampling_rate": 105, "lag": 1.3586830327261255, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.2167047133737416, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3987655290071013, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7845.711443161349, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237260077930485, "grain_number": 5, "grain_density": 1770.2506703919587, "grain_outer_radius": 0.032323166920179995, "grain_initial_inner_radius": 0.015296263481597003, "grain_initial_height": 0.11864626465719347, "grain_separation": 0.004939165523753706, "grains_center_of_mass_position": 0.3983142559112887, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010162577214416686, "throat_radius": 0.011122340747746812, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544956225738821}], "aerodynamic_surfaces": [{"length": 0.5584861681973526, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1359636066229952}, {"n": 4, "root_chord": 0.12012482430769668, "tip_chord": 0.060171065378584604, "span": 0.11046478370021051, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504616177948296}, {"top_radius": 0.06291135562172685, "bottom_radius": 0.04511355904914787, "length": 0.06002511679344385, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009098219457898, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176353732841592, "upper_button_position": 0.08327444866163058}], "rail_length": 5, "inclination": 84.61237493818372, "heading": 50.1813983141497} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350068162274161, "mass": 14.902825770567343, "I_11_without_motor": 6.321, "I_22_without_motor": 6.293102911425003, "I_33_without_motor": 0.03266730188356574, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037312740400207, "trigger": 800, "sampling_rate": 105, "lag": 1.6636443842188293, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0960499639153984, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4964319854737098, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5763.102963833306, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320983692327401, "grain_number": 5, "grain_density": 1861.2360064293619, "grain_outer_radius": 0.03356180911958015, "grain_initial_inner_radius": 0.0154476256143793, "grain_initial_height": 0.12098295587260975, "grain_separation": 0.004730070785544564, "grains_center_of_mass_position": 0.39700469284157214, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013433743034642022, "throat_radius": 0.010748073631857672, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25554927711435}], "aerodynamic_surfaces": [{"length": 0.5578331881756069, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338349277014208}, {"n": 4, "root_chord": 0.11985965436347855, "tip_chord": 0.05977903934795141, "span": 0.11029602982428521, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501667742760967}, {"top_radius": 0.06271319638931855, "bottom_radius": 0.04493557586284961, "length": 0.06181800070247836, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005163546262653, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168284099628568, "upper_button_position": 0.08368794466340845}], "rail_length": 5, "inclination": 85.62328723308622, "heading": 50.519164909940486} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350051325021552, "mass": 15.43069227678457, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304054433619668, "I_33_without_motor": 0.018267842120446565, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.026353882286857, "trigger": 800, "sampling_rate": 105, "lag": 1.4709959652655777, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0235874094637225, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6847166970758245, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5965.733368913436, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366460649692259, "grain_number": 5, "grain_density": 1876.8669064997125, "grain_outer_radius": 0.03290055069637058, "grain_initial_inner_radius": 0.01473097781849781, "grain_initial_height": 0.1197165996881397, "grain_separation": 0.004522145486866685, "grains_center_of_mass_position": 0.3975571837521802, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001674402149512375, "throat_radius": 0.011375731412343793, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553114967365089}], "aerodynamic_surfaces": [{"length": 0.5577610961381101, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341799316998886}, {"n": 4, "root_chord": 0.1189671765344474, "tip_chord": 0.059786551815312235, "span": 0.11015928553253743, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494548707317854}, {"top_radius": 0.06368957883413683, "bottom_radius": 0.044121675147224974, "length": 0.05937585904586448, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991550325722382, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167750783336003, "upper_button_position": 0.08237995423863786}], "rail_length": 5, "inclination": 85.55010942587167, "heading": 54.17619573935714} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349984880051172, "mass": 15.324617752966121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320570808660589, "I_33_without_motor": 0.02360345285823202, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06619892887516, "trigger": 800, "sampling_rate": 105, "lag": 1.5161555506292026, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.920868512511743, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5310726479178436, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7671.021111740034, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032879069987656905, "grain_number": 5, "grain_density": 1813.1865755780082, "grain_outer_radius": 0.03264642353607026, "grain_initial_inner_radius": 0.014720387546084965, "grain_initial_height": 0.11995013802304029, "grain_separation": 0.004862090054101911, "grains_center_of_mass_position": 0.39861304253259555, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002327693252931908, "throat_radius": 0.011021360060573193, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553501780393108}], "aerodynamic_surfaces": [{"length": 0.5572043373558289, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330050640604707}, {"n": 4, "root_chord": 0.12115010487613433, "tip_chord": 0.05972921487884055, "span": 0.10982502133185865, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04761985135437}, {"top_radius": 0.06483179779971603, "bottom_radius": 0.04343035032363132, "length": 0.06010765506740075, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982272272162765, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172104882562209, "upper_button_position": 0.08101673896005557}], "rail_length": 5, "inclination": 83.99954865533877, "heading": 52.35374854762159} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349919180245256, "mass": 15.219860513157313, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323854066593241, "I_33_without_motor": 0.041318217871327514, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045184522464142, "trigger": 800, "sampling_rate": 105, "lag": 1.538353121491094, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9467564093982844, "trigger": "apogee", "sampling_rate": 105, "lag": 2.326398065556665, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5145.553830095075, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03340435117961838, "grain_number": 5, "grain_density": 1847.7839850901019, "grain_outer_radius": 0.03285935812737155, "grain_initial_inner_radius": 0.015334391151266002, "grain_initial_height": 0.11932114151101766, "grain_separation": 0.005523517236350819, "grains_center_of_mass_position": 0.3965675728496444, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006781596288413438, "throat_radius": 0.010476547026726195, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550284333659767}], "aerodynamic_surfaces": [{"length": 0.5560391798078569, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346473653594158}, {"n": 4, "root_chord": 0.11996008629913624, "tip_chord": 0.059082371737368286, "span": 0.11056976861232318, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.052098745554227}, {"top_radius": 0.06353155742702692, "bottom_radius": 0.04337328378957578, "length": 0.059330802392900873, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014759229793908, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191662430557282, "upper_button_position": 0.08230967992366256}], "rail_length": 5, "inclination": 84.87037937231509, "heading": 52.17861782471377} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349572036321202, "mass": 14.888009682889182, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319271974915762, "I_33_without_motor": 0.02066745347569885, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017067178164845, "trigger": 800, "sampling_rate": 105, "lag": 1.6570318793093324, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0326055923817181, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5039532545427141, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8274.505826420287, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03195447925116708, "grain_number": 5, "grain_density": 1693.8285519425074, "grain_outer_radius": 0.03339813251209532, "grain_initial_inner_radius": 0.01564415162515484, "grain_initial_height": 0.11995492313809591, "grain_separation": 0.004056882325461747, "grains_center_of_mass_position": 0.3970262686499011, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010853425295570035, "throat_radius": 0.011628717834526013, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563757011702348}], "aerodynamic_surfaces": [{"length": 0.5594189886199223, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331362143965045}, {"n": 4, "root_chord": 0.11982166391041495, "tip_chord": 0.060066699167588423, "span": 0.1100369797386986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04949246614902}, {"top_radius": 0.0626947610218041, "bottom_radius": 0.04320908772086275, "length": 0.059306042463505626, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010954174075793, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170203243621054, "upper_button_position": 0.08407509304547389}], "rail_length": 5, "inclination": 85.53774388923257, "heading": 53.92188988423194} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06351763969622704, "mass": 15.311123758740091, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31876746723973, "I_33_without_motor": 0.015143701034917065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.076522847463828, "trigger": 800, "sampling_rate": 105, "lag": 1.433715699777008, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.820644656946266, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3451701043434587, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5678.191258039272, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264148648604168, "grain_number": 5, "grain_density": 1877.4509320190386, "grain_outer_radius": 0.0331827303045738, "grain_initial_inner_radius": 0.015747451420678547, "grain_initial_height": 0.11996618632543056, "grain_separation": 0.005837565004317157, "grains_center_of_mass_position": 0.39727089682464745, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011647674896186338, "throat_radius": 0.011486690597516863, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555836885849712}], "aerodynamic_surfaces": [{"length": 0.5581292713994831, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135126377794128}, {"n": 4, "root_chord": 0.12078236635540618, "tip_chord": 0.0601157768539455, "span": 0.10903274557306387, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485312737659163}, {"top_radius": 0.06425881516937505, "bottom_radius": 0.04112034815638699, "length": 0.05978593542638168, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988171222501491, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188013452994032, "upper_button_position": 0.08001577695074591}], "rail_length": 5, "inclination": 84.0321952741704, "heading": 53.704574279748826} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350431211413714, "mass": 15.33056912227899, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322293301210487, "I_33_without_motor": 0.025768474522124267, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996364216816996, "trigger": 800, "sampling_rate": 105, "lag": 1.2997499800334, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0642325999175626, "trigger": "apogee", "sampling_rate": 105, "lag": 1.507989060528068, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5775.064236537909, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375420670915365, "grain_number": 5, "grain_density": 1825.054715179989, "grain_outer_radius": 0.03313070212312987, "grain_initial_inner_radius": 0.01519115254434178, "grain_initial_height": 0.11927643668434071, "grain_separation": 0.003787462418822176, "grains_center_of_mass_position": 0.3971791866676311, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003100231108138205, "throat_radius": 0.010795701731930455, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540480764247341}], "aerodynamic_surfaces": [{"length": 0.559690619413958, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342353181004141}, {"n": 4, "root_chord": 0.11901665186608444, "tip_chord": 0.06064315879325703, "span": 0.11069594793432323, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502884999254867}, {"top_radius": 0.06242825981780766, "bottom_radius": 0.04445330822477244, "length": 0.05898592655026538, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999950182173843, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180739473312848, "upper_button_position": 0.08192107088609946}], "rail_length": 5, "inclination": 84.46655790883167, "heading": 51.05445129380317} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.063494812282566, "mass": 15.463486321902636, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31991237426077, "I_33_without_motor": 0.03557978326081777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.010792656335948, "trigger": 800, "sampling_rate": 105, "lag": 1.3461517365454012, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.074594082026453, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4169867050012375, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5596.791672100121, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033084280373128175, "grain_number": 5, "grain_density": 1850.7156988755414, "grain_outer_radius": 0.03335757808626882, "grain_initial_inner_radius": 0.015518176361808973, "grain_initial_height": 0.11984731950013472, "grain_separation": 0.002792466680811504, "grains_center_of_mass_position": 0.3969628108081254, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011719361580654272, "throat_radius": 0.011316010256501403, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549314745550137}], "aerodynamic_surfaces": [{"length": 0.5584351201626182, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135076681522108}, {"n": 4, "root_chord": 0.11988113238261638, "tip_chord": 0.060206941811435696, "span": 0.10853526995143771, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496277689829365}, {"top_radius": 0.06271382139674711, "bottom_radius": 0.044030009972105114, "length": 0.06000413724945244, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001916874370703, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176283707657871, "upper_button_position": 0.08256331667128314}], "rail_length": 5, "inclination": 84.75367582587563, "heading": 53.68341247516293} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350575419294353, "mass": 15.26696985150912, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323449517912705, "I_33_without_motor": 0.006353486328738452, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.965750440094789, "trigger": 800, "sampling_rate": 105, "lag": 1.5516502609942384, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9927941077918069, "trigger": "apogee", "sampling_rate": 105, "lag": 1.664012227170333, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7519.835334003337, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316621593685852, "grain_number": 5, "grain_density": 1868.6364844445502, "grain_outer_radius": 0.03280304406548487, "grain_initial_inner_radius": 0.0141372718885303, "grain_initial_height": 0.12140885894895179, "grain_separation": 0.006178243675213911, "grains_center_of_mass_position": 0.3954987438336845, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012333309709128696, "throat_radius": 0.011208097586128734, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548976474189957}], "aerodynamic_surfaces": [{"length": 0.5589852765579472, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339189216592989}, {"n": 4, "root_chord": 0.11995319813575282, "tip_chord": 0.0593697511790956, "span": 0.11094225824888636, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484049559617703}, {"top_radius": 0.06127170156533768, "bottom_radius": 0.045226129149195354, "length": 0.06055096424137187, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990266368639053, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174125439936261, "upper_button_position": 0.08161409287027921}], "rail_length": 5, "inclination": 85.59452594733256, "heading": 50.675298836427906} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350624191089453, "mass": 15.100297220858339, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325666832089434, "I_33_without_motor": 0.028898481546113634, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.122392455478531, "trigger": 800, "sampling_rate": 105, "lag": 1.4219004022075843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.005038132929931, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3638129809578752, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6863.097493842715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297322739426203, "grain_number": 5, "grain_density": 1849.116300262107, "grain_outer_radius": 0.03369887992881719, "grain_initial_inner_radius": 0.01505823286799762, "grain_initial_height": 0.12214791832714586, "grain_separation": 0.0034871832268583737, "grains_center_of_mass_position": 0.39660125587093004, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.7866544536203067e-06, "throat_radius": 0.011084138271144763, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554322624898138}], "aerodynamic_surfaces": [{"length": 0.5562615508205724, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342423771299084}, {"n": 4, "root_chord": 0.11998067222471084, "tip_chord": 0.06015333818670187, "span": 0.10958307455707125, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04998901522925}, {"top_radius": 0.06425344765270699, "bottom_radius": 0.042398419687148706, "length": 0.060125983365360534, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003731445593163, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170965225905582, "upper_button_position": 0.08327662196875807}], "rail_length": 5, "inclination": 84.5635738101647, "heading": 52.65839492013668} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06351330072946952, "mass": 15.386404520074779, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308956242727637, "I_33_without_motor": 0.036718184416095215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057047870228473, "trigger": 800, "sampling_rate": 105, "lag": 1.3981036821030113, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0095485251758385, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3285070805196493, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6572.405727675767, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359952227457597, "grain_number": 5, "grain_density": 1776.5188555937414, "grain_outer_radius": 0.03264310891634383, "grain_initial_inner_radius": 0.015039983301562806, "grain_initial_height": 0.11973049562028275, "grain_separation": 0.0033158885613058724, "grains_center_of_mass_position": 0.39776169830598007, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005175878775741225, "throat_radius": 0.009767856952200284, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538626227209175}], "aerodynamic_surfaces": [{"length": 0.5594806203981242, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328599619935538}, {"n": 4, "root_chord": 0.11925316636455299, "tip_chord": 0.05981456100794632, "span": 0.10928615216575409, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048894326406283}, {"top_radius": 0.0638138482039431, "bottom_radius": 0.044287335448883226, "length": 0.05886953613561374, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994040064689312, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177194997827864, "upper_button_position": 0.0816845066861448}], "rail_length": 5, "inclination": 84.7395739942971, "heading": 54.98411179135813} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350991594380175, "mass": 15.12715715072943, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322593237740374, "I_33_without_motor": 0.032097758951557226, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.107233299266797, "trigger": 800, "sampling_rate": 105, "lag": 1.657880110536003, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9257061185948712, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7045563111514177, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5944.622922062193, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03365435640474106, "grain_number": 5, "grain_density": 1804.6564610239384, "grain_outer_radius": 0.033307239475791395, "grain_initial_inner_radius": 0.01526705890367068, "grain_initial_height": 0.12011019457713616, "grain_separation": 0.005122961648119859, "grains_center_of_mass_position": 0.39549973453417075, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006368908051000745, "throat_radius": 0.010905326371687275, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544378234516655}], "aerodynamic_surfaces": [{"length": 0.5603500416181459, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332189893338087}, {"n": 4, "root_chord": 0.1203789429354959, "tip_chord": 0.059286358317222114, "span": 0.10988316853334705, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500876583343954}, {"top_radius": 0.06323126814927806, "bottom_radius": 0.04366398242960384, "length": 0.06063613920646451, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998190786405517, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174899329932163, "upper_button_position": 0.0823291456473354}], "rail_length": 5, "inclination": 85.05664435632109, "heading": 54.42170228118703} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349240653439, "mass": 15.99915319125967, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331042222262681, "I_33_without_motor": 0.01971016726355502, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924183004158714, "trigger": 800, "sampling_rate": 105, "lag": 1.5810582428569377, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9904429571892462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.302670099771827, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6694.36681748818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033046305076627765, "grain_number": 5, "grain_density": 1768.5517341487216, "grain_outer_radius": 0.03341739721220499, "grain_initial_inner_radius": 0.014833313713642604, "grain_initial_height": 0.12080319253147309, "grain_separation": 0.0054521834110355365, "grains_center_of_mass_position": 0.3952336624907157, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009633959381124032, "throat_radius": 0.01007500440734527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532654388550042}], "aerodynamic_surfaces": [{"length": 0.5566239995074583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345733606348296}, {"n": 4, "root_chord": 0.11985219074385352, "tip_chord": 0.05980323160704853, "span": 0.10950990709646562, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509153958601527}, {"top_radius": 0.06393922591123277, "bottom_radius": 0.043278459699098173, "length": 0.05841929589568373, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001452079893249, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178649302515514, "upper_button_position": 0.08228027773777347}], "rail_length": 5, "inclination": 84.33315071239508, "heading": 54.66495701860613} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350610314654673, "mass": 14.792157864606462, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325598254834596, "I_33_without_motor": 0.011191468130995561, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.901092987044334, "trigger": 800, "sampling_rate": 105, "lag": 1.5185920976426623, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.883461017930672, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3723686302564702, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5964.857951485534, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293186719770083, "grain_number": 5, "grain_density": 1806.300101663316, "grain_outer_radius": 0.03349448398832278, "grain_initial_inner_radius": 0.015230381432902727, "grain_initial_height": 0.12105532167959622, "grain_separation": 0.005570824453794486, "grains_center_of_mass_position": 0.3973416612394895, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017284991674727823, "throat_radius": 0.010846427107965444, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547131777951959}], "aerodynamic_surfaces": [{"length": 0.5592174597334189, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330894247193233}, {"n": 4, "root_chord": 0.12012997100832577, "tip_chord": 0.059765268567035665, "span": 0.11076154202267999, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501107794944038}, {"top_radius": 0.06264931672745377, "bottom_radius": 0.04381311532392954, "length": 0.059902034059366734, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992120414104122, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183813506583262, "upper_button_position": 0.08083069075208593}], "rail_length": 5, "inclination": 85.69779162654197, "heading": 54.47023158875257} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349565329141597, "mass": 15.134384321781068, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317633161373358, "I_33_without_motor": 0.027736246698693692, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.898624232643735, "trigger": 800, "sampling_rate": 105, "lag": 1.6317709385721524, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.064023780210711, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4907370491414755, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6974.858155836628, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327826091251648, "grain_number": 5, "grain_density": 1753.6216852594455, "grain_outer_radius": 0.033093034110136754, "grain_initial_inner_radius": 0.015102250731662796, "grain_initial_height": 0.12053686254237121, "grain_separation": 0.006649572941768563, "grains_center_of_mass_position": 0.3975659587906984, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007808738729413049, "throat_radius": 0.011346953644026872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552589262968326}], "aerodynamic_surfaces": [{"length": 0.5571212097561189, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348721936935164}, {"n": 4, "root_chord": 0.11928319038705841, "tip_chord": 0.05987691840485697, "span": 0.11091405791097153, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508414637512875}, {"top_radius": 0.0633512930640417, "bottom_radius": 0.043733095055740016, "length": 0.05997878864959069, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986115780101335, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619458582812946, "upper_button_position": 0.07915299519718755}], "rail_length": 5, "inclination": 84.95350569380365, "heading": 52.55937575002991} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349804858504061, "mass": 15.614236216888422, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328930774300211, "I_33_without_motor": 0.03820204039906461, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931701094211402, "trigger": 800, "sampling_rate": 105, "lag": 1.4376858601332965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0224256958633866, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5891237528138837, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5744.075689995206, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032342010783908574, "grain_number": 5, "grain_density": 1773.8636648751253, "grain_outer_radius": 0.032839134875675906, "grain_initial_inner_radius": 0.015250786576255877, "grain_initial_height": 0.11797362862146477, "grain_separation": 0.0053249687225800915, "grains_center_of_mass_position": 0.3979589689100173, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005757410025568749, "throat_radius": 0.011081259282816343, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545718216812238}], "aerodynamic_surfaces": [{"length": 0.5601235265194598, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338483854338552}, {"n": 4, "root_chord": 0.12074017884737977, "tip_chord": 0.059664510471119835, "span": 0.10960801640271149, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0514621162488242}, {"top_radius": 0.06166377710206051, "bottom_radius": 0.04413974077974029, "length": 0.060018512744035364, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998464463748658, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617359133167989, "upper_button_position": 0.08248731320687686}], "rail_length": 5, "inclination": 84.77311692108101, "heading": 48.654459608465885} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350298967670237, "mass": 15.611274865941677, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318504865051681, "I_33_without_motor": 0.010142649080123859, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.060111677627678, "trigger": 800, "sampling_rate": 105, "lag": 1.5124200929731728, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9723133154527539, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5490121453435308, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7256.960594754796, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283584454058308, "grain_number": 5, "grain_density": 1796.2643887521367, "grain_outer_radius": 0.03292734199524411, "grain_initial_inner_radius": 0.01544811807079275, "grain_initial_height": 0.12057850265778307, "grain_separation": 0.004467360815391258, "grains_center_of_mass_position": 0.3961461214207114, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018579225351100734, "throat_radius": 0.01031167072446267, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549731737621228}], "aerodynamic_surfaces": [{"length": 0.5572859624616294, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350215132849875}, {"n": 4, "root_chord": 0.11988802973634592, "tip_chord": 0.06009084424582103, "span": 0.10980598554978924, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048289081224987}, {"top_radius": 0.06200867988016712, "bottom_radius": 0.04337005360194057, "length": 0.05931951311674406, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009476232372365, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183870266881449, "upper_button_position": 0.08256059654909154}], "rail_length": 5, "inclination": 86.46716974173262, "heading": 51.96846862892424} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349611622968425, "mass": 14.96039114835547, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330137191690472, "I_33_without_motor": 0.03197211699039966, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960684339337876, "trigger": 800, "sampling_rate": 105, "lag": 1.577504969057939, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9880780887887765, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6906740109013794, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5097.001478627745, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331903885922519, "grain_number": 5, "grain_density": 1842.8078286804493, "grain_outer_radius": 0.03243587717690581, "grain_initial_inner_radius": 0.014912894209686346, "grain_initial_height": 0.11961442904028051, "grain_separation": 0.004093139499540884, "grains_center_of_mass_position": 0.3962730881577704, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023718300356584816, "throat_radius": 0.011167363087520832, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552229826853802}], "aerodynamic_surfaces": [{"length": 0.5589157605040005, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341367625407268}, {"n": 4, "root_chord": 0.1193027766445761, "tip_chord": 0.05938890088529183, "span": 0.11057163106539587, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494755758294527}, {"top_radius": 0.06408646801835009, "bottom_radius": 0.04293485033298673, "length": 0.05936478591322313, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008373784899272, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155990579545596, "upper_button_position": 0.08523832053536762}], "rail_length": 5, "inclination": 84.36221397273324, "heading": 51.101719244634715} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0634958264476379, "mass": 15.091121573120066, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317279287515436, "I_33_without_motor": 0.02686893569951967, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.060780106575478, "trigger": 800, "sampling_rate": 105, "lag": 1.8034501242438061, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.009862268334769, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8468234251725546, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4567.794779479918, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03226019968513079, "grain_number": 5, "grain_density": 1767.7702589752419, "grain_outer_radius": 0.03234728180420368, "grain_initial_inner_radius": 0.014829069177442061, "grain_initial_height": 0.11953210797489495, "grain_separation": 0.0032231997528291865, "grains_center_of_mass_position": 0.399431127626421, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006773789655973023, "throat_radius": 0.010781338388411799, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558826326310424}], "aerodynamic_surfaces": [{"length": 0.5582798711825218, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344679268474471}, {"n": 4, "root_chord": 0.11955101858100538, "tip_chord": 0.05973168957411355, "span": 0.11084998221356859, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493237444213197}, {"top_radius": 0.06148583812337437, "bottom_radius": 0.0439389233723516, "length": 0.05985076750645156, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996712385826125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617442308228238, "upper_button_position": 0.08222893035437451}], "rail_length": 5, "inclination": 86.06006363590497, "heading": 53.32059269980984} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349257139097583, "mass": 14.914895473689619, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329651098698962, "I_33_without_motor": 0.04261590497262869, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.162739320600643, "trigger": 800, "sampling_rate": 105, "lag": 1.4320747449412923, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.023143936604243, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6449871608414135, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5418.398978680564, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03265503360460004, "grain_number": 5, "grain_density": 1801.2611525713744, "grain_outer_radius": 0.03259923841854898, "grain_initial_inner_radius": 0.015496436855705183, "grain_initial_height": 0.12035510165791713, "grain_separation": 0.003467809728829852, "grains_center_of_mass_position": 0.39782518562944075, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.514964952368365e-05, "throat_radius": 0.010505920903651824, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558287165070436}], "aerodynamic_surfaces": [{"length": 0.5563002413314715, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337070305327566}, {"n": 4, "root_chord": 0.12058206879260473, "tip_chord": 0.05939749117084494, "span": 0.11073014493173841, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501603639509116}, {"top_radius": 0.06390258342583685, "bottom_radius": 0.04316954290092135, "length": 0.06177993638232729, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997252379486006, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167904470379508, "upper_button_position": 0.08293479091064981}], "rail_length": 5, "inclination": 84.58077901000256, "heading": 51.587540682064535} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349260466965082, "mass": 15.96199913102214, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303738538137898, "I_33_without_motor": 0.051840729245633835, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.136056052301361, "trigger": 800, "sampling_rate": 105, "lag": 1.6952482597264824, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1445368172822084, "trigger": "apogee", "sampling_rate": 105, "lag": 1.497320362696156, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5248.028479425186, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262178376427554, "grain_number": 5, "grain_density": 1890.9884234130163, "grain_outer_radius": 0.033093679050508376, "grain_initial_inner_radius": 0.014699365968605927, "grain_initial_height": 0.12054684581903735, "grain_separation": 0.0066192116610360435, "grains_center_of_mass_position": 0.3976147091887926, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00046616622581820697, "throat_radius": 0.010441644883604669, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542366842580728}], "aerodynamic_surfaces": [{"length": 0.5576971535274301, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334311354669067}, {"n": 4, "root_chord": 0.1210891171586126, "tip_chord": 0.059561491208699836, "span": 0.11022778544134347, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488951664197879}, {"top_radius": 0.06388128127096447, "bottom_radius": 0.043486732246331254, "length": 0.06125640845057478, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700300399717693, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177413828067164, "upper_button_position": 0.08255901691097656}], "rail_length": 5, "inclination": 86.259074668088, "heading": 51.92817399608891} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350463011304713, "mass": 15.825005745483539, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335529531233941, "I_33_without_motor": 0.053530110206216286, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.857258482077306, "trigger": 800, "sampling_rate": 105, "lag": 1.5934317752035334, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0097162274121003, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4483018072308833, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6179.294012292292, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328866860810775, "grain_number": 5, "grain_density": 1815.772217176808, "grain_outer_radius": 0.032858509733110504, "grain_initial_inner_radius": 0.015086149161161496, "grain_initial_height": 0.12064578215931167, "grain_separation": 0.005159028853358898, "grains_center_of_mass_position": 0.4002719080780624, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00018987352530227313, "throat_radius": 0.011113752855391361, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559147559940027}], "aerodynamic_surfaces": [{"length": 0.5583432503747706, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134056076391088}, {"n": 4, "root_chord": 0.12019103600336047, "tip_chord": 0.05998812711673408, "span": 0.11063942177669873, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489092728075986}, {"top_radius": 0.06388062679389403, "bottom_radius": 0.04365687556782112, "length": 0.060341723128959766, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700131458291048, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167621456898147, "upper_button_position": 0.08336931260123326}], "rail_length": 5, "inclination": 85.6266122124612, "heading": 53.390235344450424} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349536040671326, "mass": 15.197866836831277, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324073184434637, "I_33_without_motor": 0.018590274386703555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.898000229959765, "trigger": 800, "sampling_rate": 105, "lag": 1.4242939143742626, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.865735713115023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2972048742823914, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6203.303479194901, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033825037261139966, "grain_number": 5, "grain_density": 1786.1947426686138, "grain_outer_radius": 0.031953896932150144, "grain_initial_inner_radius": 0.015165708264257286, "grain_initial_height": 0.1201948814322325, "grain_separation": 0.005310187879168689, "grains_center_of_mass_position": 0.3970661136618418, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014487004271964525, "throat_radius": 0.011112810407676359, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256995936255761}], "aerodynamic_surfaces": [{"length": 0.559920194476145, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343946257291486}, {"n": 4, "root_chord": 0.12062050293061448, "tip_chord": 0.05920298687485567, "span": 0.110506557943098, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047906450633271}, {"top_radius": 0.06191871561547444, "bottom_radius": 0.043870078356907524, "length": 0.05922990713298132, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995663395996374, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192049817309104, "upper_button_position": 0.080361357868727}], "rail_length": 5, "inclination": 85.2273267453457, "heading": 51.1781206743411} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349965713074782, "mass": 15.311703017225152, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32050242494968, "I_33_without_motor": 0.04107820669221909, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038263997785966, "trigger": 800, "sampling_rate": 105, "lag": 1.440667854337187, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0068360110292778, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7562140887483115, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6268.207411982574, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295494201648608, "grain_number": 5, "grain_density": 1814.44588648403, "grain_outer_radius": 0.0325348583417798, "grain_initial_inner_radius": 0.014848343860487735, "grain_initial_height": 0.12024084017558294, "grain_separation": 0.006026053318577733, "grains_center_of_mass_position": 0.39560736915384676, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018054183413581135, "throat_radius": 0.010906089085672237, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551377064372136}], "aerodynamic_surfaces": [{"length": 0.5591580353039994, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344419009071554}, {"n": 4, "root_chord": 0.11950363052755164, "tip_chord": 0.060843558699157925, "span": 0.11050095876479428, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490272961926888}, {"top_radius": 0.06491347053918169, "bottom_radius": 0.04342735843800461, "length": 0.058845673904262666, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699579264671644, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170759408090767, "upper_button_position": 0.08250332386256731}], "rail_length": 5, "inclination": 84.26283200930024, "heading": 50.92381903883889} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350152386048022, "mass": 15.382269423636018, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323201622329304, "I_33_without_motor": 0.04227896051724365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.066327884885489, "trigger": 800, "sampling_rate": 105, "lag": 1.5775576956544295, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.152824314149073, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4013794001600368, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6587.892644645643, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334855392479083, "grain_number": 5, "grain_density": 1765.851106489849, "grain_outer_radius": 0.033225126172361216, "grain_initial_inner_radius": 0.01522734997032733, "grain_initial_height": 0.11897863312793354, "grain_separation": 0.005455367080851298, "grains_center_of_mass_position": 0.39593723318429214, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009603676299238095, "throat_radius": 0.01170225301233408, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254561943915988}], "aerodynamic_surfaces": [{"length": 0.5588678879756909, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340271245189681}, {"n": 4, "root_chord": 0.11920728716701066, "tip_chord": 0.059906715725177404, "span": 0.10970900168889607, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484033599147389}, {"top_radius": 0.06388150040338333, "bottom_radius": 0.04455640873679082, "length": 0.06049810069772409, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002625824769341, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617553127937028, "upper_button_position": 0.08270945453990608}], "rail_length": 5, "inclination": 86.86778785029117, "heading": 51.11538660619788} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349449723956649, "mass": 15.170115427949648, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30340983053615, "I_33_without_motor": 0.03083590671850331, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978288444257926, "trigger": 800, "sampling_rate": 105, "lag": 1.5638164646718278, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0597988707182444, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6409675158492778, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8630.017233190814, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032869417381465434, "grain_number": 5, "grain_density": 1818.9614303785559, "grain_outer_radius": 0.03260470419245069, "grain_initial_inner_radius": 0.015031287953434745, "grain_initial_height": 0.11954076461752168, "grain_separation": 0.0032671562465962237, "grains_center_of_mass_position": 0.3963685476783739, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011683843113232885, "throat_radius": 0.011013625536791213, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255778889053313}], "aerodynamic_surfaces": [{"length": 0.5572750614375473, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330695383085432}, {"n": 4, "root_chord": 0.12040068782473744, "tip_chord": 0.05965182382531797, "span": 0.10977232056828877, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501472536137058}, {"top_radius": 0.0641113410929193, "bottom_radius": 0.04169624721107774, "length": 0.060670374245928776, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700485751650358, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186739093921552, "upper_button_position": 0.08181184225820282}], "rail_length": 5, "inclination": 85.11085641458992, "heading": 52.48243754331786} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349116751559737, "mass": 15.135622313674112, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3198120437304395, "I_33_without_motor": 0.035352032363806976, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.995105583853169, "trigger": 800, "sampling_rate": 105, "lag": 1.5106647978776377, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0409350335143184, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6929630209945885, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7554.842229474231, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033094688692492484, "grain_number": 5, "grain_density": 1778.452453439551, "grain_outer_radius": 0.03243790225017269, "grain_initial_inner_radius": 0.014710302904158873, "grain_initial_height": 0.121184926392902, "grain_separation": 0.004935022616224108, "grains_center_of_mass_position": 0.39701605061858886, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006750819713606398, "throat_radius": 0.010724558222954232, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543319821144168}], "aerodynamic_surfaces": [{"length": 0.5597592518269784, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337456255721132}, {"n": 4, "root_chord": 0.11937491941882873, "tip_chord": 0.059296678840160655, "span": 0.11003215065863221, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487483655871017}, {"top_radius": 0.06118255805193593, "bottom_radius": 0.04133468608652134, "length": 0.06059132200773187, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990732690597649, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175864466852609, "upper_button_position": 0.081486822374504}], "rail_length": 5, "inclination": 86.02874650088499, "heading": 52.78026627098203} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350398822191289, "mass": 15.888183930453637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323003139766252, "I_33_without_motor": 0.037894954235630385, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.822672717321442, "trigger": 800, "sampling_rate": 105, "lag": 1.4823458931282159, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0295108833260689, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4436059937365655, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7321.616711633883, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03218465066390669, "grain_number": 5, "grain_density": 1829.5401695337457, "grain_outer_radius": 0.03310699290238271, "grain_initial_inner_radius": 0.014682699474933565, "grain_initial_height": 0.11995759258153803, "grain_separation": 0.00472496338836304, "grains_center_of_mass_position": 0.39709811238999454, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0021418314452996217, "throat_radius": 0.011761687350355397, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254514375966186}], "aerodynamic_surfaces": [{"length": 0.5585602432789974, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350310297296062}, {"n": 4, "root_chord": 0.12036601599782602, "tip_chord": 0.059969938784699674, "span": 0.11044897305859265, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050206248811717}, {"top_radius": 0.0613469345970594, "bottom_radius": 0.04226599127606422, "length": 0.06021755952813659, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000129935163134, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177166962726871, "upper_button_position": 0.0822962972436263}], "rail_length": 5, "inclination": 85.73526617819618, "heading": 51.77177727035349} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349863561147669, "mass": 14.135075575010699, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31538950223791, "I_33_without_motor": 0.03573152288669024, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.906352685151997, "trigger": 800, "sampling_rate": 105, "lag": 1.5258712989509962, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9931233233333682, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3772675925575082, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6294.631910842732, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242186022433548, "grain_number": 5, "grain_density": 1805.958395830986, "grain_outer_radius": 0.03305402986502139, "grain_initial_inner_radius": 0.015073477867470946, "grain_initial_height": 0.1211314105335342, "grain_separation": 0.0059024531956417565, "grains_center_of_mass_position": 0.3985084695055291, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007200084796337718, "throat_radius": 0.011010325985367343, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555520741690946}], "aerodynamic_surfaces": [{"length": 0.5582905857473602, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333543089049654}, {"n": 4, "root_chord": 0.120841928016134, "tip_chord": 0.05988887955337852, "span": 0.1094724810224224, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048208865961751}, {"top_radius": 0.06229926484565538, "bottom_radius": 0.04514504198316922, "length": 0.060368129978684036, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009088600318799, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176474455127706, "upper_button_position": 0.08326141451910929}], "rail_length": 5, "inclination": 84.99243588725189, "heading": 54.81294214729176} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350588924698342, "mass": 15.645466015380535, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328655162255979, "I_33_without_motor": 0.040606636020335374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000575455347585, "trigger": 800, "sampling_rate": 105, "lag": 1.528162387519848, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0475420426189903, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5174125936054654, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8507.96776139164, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033168290122900616, "grain_number": 5, "grain_density": 1766.8125489536735, "grain_outer_radius": 0.03237960713691327, "grain_initial_inner_radius": 0.015601345652456307, "grain_initial_height": 0.11816626639728973, "grain_separation": 0.004542774555424076, "grains_center_of_mass_position": 0.39582720624379214, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006175590591922911, "throat_radius": 0.011066412632062267, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255198757333275}], "aerodynamic_surfaces": [{"length": 0.5602800575215194, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352622529876533}, {"n": 4, "root_chord": 0.1202397455686428, "tip_chord": 0.059896270678013175, "span": 0.10976098341371528, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515275421253847}, {"top_radius": 0.061746344813424996, "bottom_radius": 0.04296849814557971, "length": 0.059747262118950824, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004226598161531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174008316125069, "upper_button_position": 0.08302182820364623}], "rail_length": 5, "inclination": 84.11180825016737, "heading": 53.33763022830932} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349127627677817, "mass": 15.36323009148413, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32677240784788, "I_33_without_motor": 0.03186293769097189, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953712020297932, "trigger": 800, "sampling_rate": 105, "lag": 1.5332385187028066, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0759271490602351, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8101065160810306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5122.120308120892, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256397630409074, "grain_number": 5, "grain_density": 1797.2537975385817, "grain_outer_radius": 0.03311107710414853, "grain_initial_inner_radius": 0.015034724444684941, "grain_initial_height": 0.11870589401441302, "grain_separation": 0.006087377771882522, "grains_center_of_mass_position": 0.3963951153726739, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00048202583657612437, "throat_radius": 0.01098560841395235, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538796789262994}], "aerodynamic_surfaces": [{"length": 0.5584999498197305, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342570435514296}, {"n": 4, "root_chord": 0.12064710564700097, "tip_chord": 0.06035193433759837, "span": 0.1112770069652831, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049020680934583}, {"top_radius": 0.06161988425648386, "bottom_radius": 0.043073021433112285, "length": 0.06058341919652415, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000651611484505, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6156179483369549, "upper_button_position": 0.08444721281149559}], "rail_length": 5, "inclination": 82.72730104076106, "heading": 51.832923739146366} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350548911483277, "mass": 15.196987326107507, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322911752914334, "I_33_without_motor": 0.029071625031605604, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01529759872456, "trigger": 800, "sampling_rate": 105, "lag": 1.6240928054914994, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0173761859666313, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9223418136934463, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5949.014682553843, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032709169420396964, "grain_number": 5, "grain_density": 1723.9274368851547, "grain_outer_radius": 0.03285200300984052, "grain_initial_inner_radius": 0.015246455946376821, "grain_initial_height": 0.11943244041733653, "grain_separation": 0.006434562197706361, "grains_center_of_mass_position": 0.39827095616666636, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012446540491387436, "throat_radius": 0.010784613850832575, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555442427635455}], "aerodynamic_surfaces": [{"length": 0.5595017972391894, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343159645449299}, {"n": 4, "root_chord": 0.11979364250152547, "tip_chord": 0.059668916509132676, "span": 0.10987085122250405, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486918367848215}, {"top_radius": 0.06340631542068006, "bottom_radius": 0.04317597445590289, "length": 0.060251498311681355, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001742424211105, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176030405079379, "upper_button_position": 0.08257120191317258}], "rail_length": 5, "inclination": 83.72196011985731, "heading": 54.648412360478446} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350196147982773, "mass": 15.961044927182556, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313405397400806, "I_33_without_motor": 0.014460259928266692, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.108503657730996, "trigger": 800, "sampling_rate": 105, "lag": 1.653096332612516, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0148416228572408, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3545277347391953, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7709.473538047852, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03215600214939541, "grain_number": 5, "grain_density": 1821.7615356485571, "grain_outer_radius": 0.033090627041041515, "grain_initial_inner_radius": 0.014767087610650174, "grain_initial_height": 0.11988254663815412, "grain_separation": 0.004938406486628706, "grains_center_of_mass_position": 0.39604761170574104, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017894307943806364, "throat_radius": 0.010956729735127322, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2527441721712052}], "aerodynamic_surfaces": [{"length": 0.5584390273315171, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133870173739432}, {"n": 4, "root_chord": 0.11931422570051636, "tip_chord": 0.05955824106428458, "span": 0.11046001756520475, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489984691313294}, {"top_radius": 0.06401438054836182, "bottom_radius": 0.041090512301951834, "length": 0.06007341188459335, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999807230798568, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176582363538038, "upper_button_position": 0.08232248672605302}], "rail_length": 5, "inclination": 83.67572045959503, "heading": 55.43651657941093} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.0635019133758962, "mass": 14.54732933281578, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314697196649693, "I_33_without_motor": 0.031850034978897344, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967169551923757, "trigger": 800, "sampling_rate": 105, "lag": 1.523224898377273, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9378759650822776, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3537514435353697, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7947.501834263485, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032388725939664915, "grain_number": 5, "grain_density": 1891.8527868887786, "grain_outer_radius": 0.032402696948094195, "grain_initial_inner_radius": 0.014914777014518448, "grain_initial_height": 0.11891936464367071, "grain_separation": 0.005562544866071887, "grains_center_of_mass_position": 0.39783720286790414, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005072781019447114, "throat_radius": 0.010004885046747404, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548006914940513}], "aerodynamic_surfaces": [{"length": 0.5591111650625761, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134632213955361}, {"n": 4, "root_chord": 0.11978678845759276, "tip_chord": 0.05937379602676614, "span": 0.11052871273677399, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505895065476698}, {"top_radius": 0.06406397721944418, "bottom_radius": 0.04331962085510427, "length": 0.06046018843277992, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6966046694267279, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167996613555162, "upper_button_position": 0.07980500807121171}], "rail_length": 5, "inclination": 84.81435357503749, "heading": 51.59471469896678} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349906720314932, "mass": 14.758087413410518, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332534117461721, "I_33_without_motor": 0.025373122255974725, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.835928098985326, "trigger": 800, "sampling_rate": 105, "lag": 1.506387702225661, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0165968178644882, "trigger": "apogee", "sampling_rate": 105, "lag": 1.762095552557879, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5350.61520156988, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275962078535465, "grain_number": 5, "grain_density": 1765.1330357068746, "grain_outer_radius": 0.03307547187032609, "grain_initial_inner_radius": 0.015220302090858985, "grain_initial_height": 0.11952424628286304, "grain_separation": 0.005561936913155055, "grains_center_of_mass_position": 0.39894157312096307, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000581039015009967, "throat_radius": 0.010873874245807479, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254057635300259}], "aerodynamic_surfaces": [{"length": 0.5592415679533114, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338096479596769}, {"n": 4, "root_chord": 0.11935324717414902, "tip_chord": 0.05989407434987168, "span": 0.10888984407211272, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050377046078841}, {"top_radius": 0.06388737100274794, "bottom_radius": 0.04351781168602751, "length": 0.059803797640653, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990918305343807, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181095133672198, "upper_button_position": 0.08098231716716098}], "rail_length": 5, "inclination": 84.88665251337277, "heading": 54.036380191295535} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350860224786839, "mass": 15.981782540886451, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317197541236021, "I_33_without_motor": 0.022684266587713046, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.875257068345203, "trigger": 800, "sampling_rate": 105, "lag": 1.6612206181882758, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.061905675804864, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8643650774428366, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7212.43141220651, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362196112067915, "grain_number": 5, "grain_density": 1851.6102943957446, "grain_outer_radius": 0.03305017715872104, "grain_initial_inner_radius": 0.014561932235058899, "grain_initial_height": 0.1217894360645019, "grain_separation": 0.004111362273784844, "grains_center_of_mass_position": 0.3956480330586067, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015457473216710976, "throat_radius": 0.011333463554828716, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532288699513767}], "aerodynamic_surfaces": [{"length": 0.5590321435590817, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134586502646021}, {"n": 4, "root_chord": 0.1197132449283789, "tip_chord": 0.06015190728891841, "span": 0.10984949753395674, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496033894066277}, {"top_radius": 0.06286050644811517, "bottom_radius": 0.043162623465698394, "length": 0.06007206185474104, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6974005585745191, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618479803064754, "upper_button_position": 0.07892075550976507}], "rail_length": 5, "inclination": 84.1516973033268, "heading": 51.49819347301642} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349726192947155, "mass": 15.46258612175419, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328406869336436, "I_33_without_motor": 0.05746263395274792, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014558467101493, "trigger": 800, "sampling_rate": 105, "lag": 1.5532322389900937, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9258495049222292, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5048865945124807, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6077.274262474141, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032977942097277356, "grain_number": 5, "grain_density": 1808.0629925388253, "grain_outer_radius": 0.03274072714445204, "grain_initial_inner_radius": 0.014923438116496199, "grain_initial_height": 0.11965153736476665, "grain_separation": 0.005159810402652537, "grains_center_of_mass_position": 0.3975098871808523, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023343631647653804, "throat_radius": 0.011276535880982777, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553717179609336}], "aerodynamic_surfaces": [{"length": 0.5582013825537332, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327181531696393}, {"n": 4, "root_chord": 0.11944112630614123, "tip_chord": 0.05965676501145644, "span": 0.10949791050951914, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049605574340411}, {"top_radius": 0.0635837649820061, "bottom_radius": 0.04429830869230127, "length": 0.05931050008563967, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002222814266235, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193084775610955, "upper_button_position": 0.08091380386552793}], "rail_length": 5, "inclination": 84.29897473934142, "heading": 55.10207124086729} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350929662144605, "mass": 16.18568751455519, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312539990980307, "I_33_without_motor": 0.03058748608275749, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005589782753255, "trigger": 800, "sampling_rate": 105, "lag": 1.4270873359772376, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0311218522949854, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5509844450996075, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7847.213897602665, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298648503129354, "grain_number": 5, "grain_density": 1798.6389861272476, "grain_outer_radius": 0.03300328092611363, "grain_initial_inner_radius": 0.015423822948592467, "grain_initial_height": 0.12097910558889624, "grain_separation": 0.004254100966389604, "grains_center_of_mass_position": 0.39733063076592984, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003031451369023246, "throat_radius": 0.011282508715208249, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257069040084278}], "aerodynamic_surfaces": [{"length": 0.5575777173104661, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325237437156626}, {"n": 4, "root_chord": 0.12002288292269223, "tip_chord": 0.06041124996027345, "span": 0.1098146417787029, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049002890949585}, {"top_radius": 0.06221830758828819, "bottom_radius": 0.04500918415448397, "length": 0.06023038874792016, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002729462205624, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618371789105254, "upper_button_position": 0.08190115711530832}], "rail_length": 5, "inclination": 83.33695757885444, "heading": 54.925573625019595} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0635133590227814, "mass": 16.295022727166646, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304944674855294, "I_33_without_motor": 0.03802372112938428, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.088921978984752, "trigger": 800, "sampling_rate": 105, "lag": 1.6379160454310977, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.00075680511432, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5625225957666096, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6106.218694510337, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247432735036313, "grain_number": 5, "grain_density": 1910.445975693062, "grain_outer_radius": 0.032857330668864496, "grain_initial_inner_radius": 0.01499627935476116, "grain_initial_height": 0.11936266019990871, "grain_separation": 0.004683111540906328, "grains_center_of_mass_position": 0.39617529673483404, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014967120953659088, "throat_radius": 0.011401804537801666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557597276232197}], "aerodynamic_surfaces": [{"length": 0.5584669176461553, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351196231196836}, {"n": 4, "root_chord": 0.11969007643307066, "tip_chord": 0.05970597252570466, "span": 0.11035301456955092, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498726418964426}, {"top_radius": 0.06383052553171334, "bottom_radius": 0.04196564135779064, "length": 0.05926074502161329, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008337310388831, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186033646121875, "upper_button_position": 0.08223036642669568}], "rail_length": 5, "inclination": 85.8214818693726, "heading": 53.52503658369647} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350239672294224, "mass": 16.086389087312007, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314867471301596, "I_33_without_motor": 0.04321147923310348, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.840114141245783, "trigger": 800, "sampling_rate": 105, "lag": 1.4548968901677042, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8666336314167444, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6557589911725183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6543.062922086235, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033314643888578105, "grain_number": 5, "grain_density": 1685.1418412034138, "grain_outer_radius": 0.03358198275063197, "grain_initial_inner_radius": 0.014542061776240607, "grain_initial_height": 0.12008962568247225, "grain_separation": 0.005605042190007692, "grains_center_of_mass_position": 0.39839917576599937, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006245965656011715, "throat_radius": 0.010796833623054551, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546031432340463}], "aerodynamic_surfaces": [{"length": 0.5590667226770348, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347388626069723}, {"n": 4, "root_chord": 0.11966141179004697, "tip_chord": 0.060216295229258594, "span": 0.10982861377500766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049851591106494}, {"top_radius": 0.06445606445475568, "bottom_radius": 0.04469566314423664, "length": 0.06145539751640688, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000109888057188, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173055331011122, "upper_button_position": 0.08270545570460652}], "rail_length": 5, "inclination": 83.47013723468216, "heading": 52.359769292226396} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349649336128395, "mass": 15.833469877280196, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319062972617655, "I_33_without_motor": 0.03387175888377246, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.949489545486486, "trigger": 800, "sampling_rate": 105, "lag": 1.7055504586274373, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0770205340779304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4483431974600818, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5886.9075040191165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03410135336448911, "grain_number": 5, "grain_density": 1849.8959643550036, "grain_outer_radius": 0.03298253535551193, "grain_initial_inner_radius": 0.015843814495792433, "grain_initial_height": 0.11866544237084341, "grain_separation": 0.006419040802933594, "grains_center_of_mass_position": 0.3981012422999042, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00019243243806204026, "throat_radius": 0.010876522847575756, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253896688752568}], "aerodynamic_surfaces": [{"length": 0.5595580133067715, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355498266514816}, {"n": 4, "root_chord": 0.12048587953716276, "tip_chord": 0.059235939934718165, "span": 0.11022960568844216, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484608985654307}, {"top_radius": 0.06452739005064898, "bottom_radius": 0.04362504482119002, "length": 0.059128967122249125, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983738832957537, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184171877520664, "upper_button_position": 0.07995669554368723}], "rail_length": 5, "inclination": 83.26155740719472, "heading": 49.30888030513053} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350092629989322, "mass": 15.71634272488432, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326931076344441, "I_33_without_motor": 0.03132146392978697, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.243561033272321, "trigger": 800, "sampling_rate": 105, "lag": 1.5031645054281604, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9782868981471065, "trigger": "apogee", "sampling_rate": 105, "lag": 1.237044244059561, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5899.988238035816, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317442089428744, "grain_number": 5, "grain_density": 1843.694638344761, "grain_outer_radius": 0.03283459572532388, "grain_initial_inner_radius": 0.015132594170403477, "grain_initial_height": 0.12181190709196009, "grain_separation": 0.005486532668168026, "grains_center_of_mass_position": 0.39852153039000454, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008759308259350764, "throat_radius": 0.010345775548631614, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558642229250803}], "aerodynamic_surfaces": [{"length": 0.5584871798971595, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133229585609694}, {"n": 4, "root_chord": 0.12031976756017963, "tip_chord": 0.060108194506635425, "span": 0.1102650116145328, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489190758526188}, {"top_radius": 0.0650546286933226, "bottom_radius": 0.04293679749555717, "length": 0.058850579972494266, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999412938473701, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178458495791428, "upper_button_position": 0.08209544426822735}], "rail_length": 5, "inclination": 82.77731020429178, "heading": 53.15206320614382} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06348736026438125, "mass": 15.733812039279627, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319236272522059, "I_33_without_motor": 0.0351889350581526, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.905900222951152, "trigger": 800, "sampling_rate": 105, "lag": 1.4579095411456864, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.94338575471638, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4096822253063301, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5713.219408590335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03322613328344229, "grain_number": 5, "grain_density": 1813.1961959752566, "grain_outer_radius": 0.032507369024289766, "grain_initial_inner_radius": 0.015040650599679966, "grain_initial_height": 0.11913278445188835, "grain_separation": 0.0059179343297877844, "grains_center_of_mass_position": 0.39807777115227605, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00043658153176474445, "throat_radius": 0.010338057670041234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554727932310563}], "aerodynamic_surfaces": [{"length": 0.5587088048908043, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133386326135615}, {"n": 4, "root_chord": 0.12017856033314665, "tip_chord": 0.06000443390946428, "span": 0.10902421650756416, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485830142661547}, {"top_radius": 0.06425721666217434, "bottom_radius": 0.04357726495147766, "length": 0.05840849110862601, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001891927926401, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618507784447957, "upper_button_position": 0.08168140834468318}], "rail_length": 5, "inclination": 86.21141814888645, "heading": 52.71461174666536} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349738283229296, "mass": 15.673680205983562, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339730690942283, "I_33_without_motor": 0.01839843232098088, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974365172688024, "trigger": 800, "sampling_rate": 105, "lag": 1.4679632861163536, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9849525942138695, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5039901648049436, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4630.576190422004, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249426198930988, "grain_number": 5, "grain_density": 1824.5304888044477, "grain_outer_radius": 0.03279772408375011, "grain_initial_inner_radius": 0.015025770449162033, "grain_initial_height": 0.1197630216227875, "grain_separation": 0.0036821169494668767, "grains_center_of_mass_position": 0.3958786655697574, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00045659562339130853, "throat_radius": 0.010767641122841884, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540316346198217}], "aerodynamic_surfaces": [{"length": 0.5576310009197043, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336536250654226}, {"n": 4, "root_chord": 0.11943979665137462, "tip_chord": 0.06040566758808628, "span": 0.1096579707095415, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498833115263733}, {"top_radius": 0.06438870811019876, "bottom_radius": 0.04264789529266684, "length": 0.05963466025644609, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986012019527854, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164020279017826, "upper_button_position": 0.08219917405100285}], "rail_length": 5, "inclination": 84.0605445909088, "heading": 53.26097501868309} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06351168702972702, "mass": 15.071440415430695, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339486940039293, "I_33_without_motor": 0.03769333342542826, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.891751008514055, "trigger": 800, "sampling_rate": 105, "lag": 1.3722287836318157, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.891233872877227, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4785846065718473, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7670.447013383142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03212086378093714, "grain_number": 5, "grain_density": 1768.2713089345812, "grain_outer_radius": 0.03271515294326996, "grain_initial_inner_radius": 0.014786855935760804, "grain_initial_height": 0.11933029178491038, "grain_separation": 0.005823317835175776, "grains_center_of_mass_position": 0.3975721642790229, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00033118991564179716, "throat_radius": 0.011574587939003072, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556851392550885}], "aerodynamic_surfaces": [{"length": 0.5589878239695617, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335200262324565}, {"n": 4, "root_chord": 0.11970579106869901, "tip_chord": 0.06070557828841739, "span": 0.11071397637005198, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494772829214571}, {"top_radius": 0.06166613221769352, "bottom_radius": 0.04373400292102769, "length": 0.05906632316168422, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992196525392527, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176888087418883, "upper_button_position": 0.08153084379736442}], "rail_length": 5, "inclination": 81.56929641186917, "heading": 56.04874203520202} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349591650458654, "mass": 15.162635265359139, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332985881497121, "I_33_without_motor": 0.03130952796451725, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978748089525485, "trigger": 800, "sampling_rate": 105, "lag": 1.3357629295483546, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0954109009879158, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6754711159528328, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6355.995130106566, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278906051185303, "grain_number": 5, "grain_density": 1748.96149468394, "grain_outer_radius": 0.03305907029683662, "grain_initial_inner_radius": 0.014547506209523744, "grain_initial_height": 0.12057244356509747, "grain_separation": 0.005624388756730869, "grains_center_of_mass_position": 0.3957825863711238, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014041600445767637, "throat_radius": 0.011461451856872466, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255065370954003}], "aerodynamic_surfaces": [{"length": 0.5593499154327721, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350129738995047}, {"n": 4, "root_chord": 0.1189566465146446, "tip_chord": 0.060114876926780934, "span": 0.10981523729266687, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501849761803268}, {"top_radius": 0.06302076816378362, "bottom_radius": 0.04474354824353912, "length": 0.06099762068413935, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016829640692237, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177704815918406, "upper_button_position": 0.08391248247738314}], "rail_length": 5, "inclination": 85.62458847663979, "heading": 52.379830305857375} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349851039458232, "mass": 16.409422713914125, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308921165403618, "I_33_without_motor": 0.049395392435366905, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05357019918881, "trigger": 800, "sampling_rate": 105, "lag": 1.5195724103883699, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.017014581966598, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6592795390606438, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8386.71294120165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317127200498292, "grain_number": 5, "grain_density": 1871.5079298782045, "grain_outer_radius": 0.03299436228520115, "grain_initial_inner_radius": 0.014855611754163592, "grain_initial_height": 0.12023029789273078, "grain_separation": 0.006010153905251245, "grains_center_of_mass_position": 0.3961840507174937, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001820125244641761, "throat_radius": 0.011617370670579925, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564262290583996}], "aerodynamic_surfaces": [{"length": 0.557460900854103, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337715543529927}, {"n": 4, "root_chord": 0.11991381247762835, "tip_chord": 0.06060999470600891, "span": 0.11037788972090908, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484697150139297}, {"top_radius": 0.061829074337605705, "bottom_radius": 0.04351152314055659, "length": 0.06034703534386459, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004321166878789, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188039821080422, "upper_button_position": 0.08162813457983664}], "rail_length": 5, "inclination": 85.26793001853689, "heading": 52.71654468064663} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.0634973749283073, "mass": 16.41572104606536, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3150041060307585, "I_33_without_motor": 0.04218028559039208, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.942561725900983, "trigger": 800, "sampling_rate": 105, "lag": 1.376296158208041, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0890129787942437, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4317128702794752, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5897.62247527861, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315222646355596, "grain_number": 5, "grain_density": 1840.1545610569394, "grain_outer_radius": 0.03327588645576102, "grain_initial_inner_radius": 0.015620986448928911, "grain_initial_height": 0.1194323274680835, "grain_separation": 0.004820795079298896, "grains_center_of_mass_position": 0.39761436482117973, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025854299686439887, "throat_radius": 0.010545113800334236, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540476999338095}], "aerodynamic_surfaces": [{"length": 0.5583197224616212, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344031173041753}, {"n": 4, "root_chord": 0.12061486903034002, "tip_chord": 0.060740126686013175, "span": 0.1095481577281957, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050111393911201}, {"top_radius": 0.06547086158338138, "bottom_radius": 0.043108483072571674, "length": 0.060907015727495316, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996525622926675, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183488875761113, "upper_button_position": 0.0813036747165562}], "rail_length": 5, "inclination": 85.03165825132004, "heading": 55.577326176558486} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06348746244165607, "mass": 15.572439924916603, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338303685187692, "I_33_without_motor": 0.053812503456609026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095214968249174, "trigger": 800, "sampling_rate": 105, "lag": 1.6357671335371446, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9065954356558216, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1728375609397834, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6652.026858713303, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032816599465685235, "grain_number": 5, "grain_density": 1820.2307180912608, "grain_outer_radius": 0.03344121323996746, "grain_initial_inner_radius": 0.015597244631185416, "grain_initial_height": 0.12075469384019985, "grain_separation": 0.005158601852454574, "grains_center_of_mass_position": 0.39781901798522173, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029144664828083066, "throat_radius": 0.010360964594420522, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540157614569787}], "aerodynamic_surfaces": [{"length": 0.5594026160214198, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340617853877344}, {"n": 4, "root_chord": 0.1199242984774138, "tip_chord": 0.060932351681135866, "span": 0.1089746922187335, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503486081832518}, {"top_radius": 0.06301672216560456, "bottom_radius": 0.04308635423956238, "length": 0.06081177327614255, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987515623021795, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181979688517858, "upper_button_position": 0.0805535934503937}], "rail_length": 5, "inclination": 84.03337163495912, "heading": 54.75752757477003} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350158036799983, "mass": 15.20893651665693, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316394619863262, "I_33_without_motor": 0.03578544640909065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.108544238972591, "trigger": 800, "sampling_rate": 105, "lag": 1.3403291600240261, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0517749917052182, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1414111553745407, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5869.309829720169, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274182355097607, "grain_number": 5, "grain_density": 1827.736345433479, "grain_outer_radius": 0.03264047232144729, "grain_initial_inner_radius": 0.01483669438777579, "grain_initial_height": 0.12023582127394784, "grain_separation": 0.004370467756609591, "grains_center_of_mass_position": 0.39574496521042907, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017309020607755808, "throat_radius": 0.011654776044066877, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549432020792235}], "aerodynamic_surfaces": [{"length": 0.5585615055249918, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133831439603343}, {"n": 4, "root_chord": 0.12015849499603093, "tip_chord": 0.06004252587699913, "span": 0.11002331609124698, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507203537199798}, {"top_radius": 0.06347851908834241, "bottom_radius": 0.04351883518437396, "length": 0.06056405973540542, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990221389399459, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174811838732773, "upper_button_position": 0.08154095506666859}], "rail_length": 5, "inclination": 83.94354943792524, "heading": 49.70673655240099} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06348962405183876, "mass": 15.345574877569774, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3261605704349515, "I_33_without_motor": 0.05601839158986675, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051678432730208, "trigger": 800, "sampling_rate": 105, "lag": 1.4086068407697063, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0138113804999764, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5071636387001426, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7431.492329242134, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330913085150425, "grain_number": 5, "grain_density": 1735.6668562455836, "grain_outer_radius": 0.03323452357407623, "grain_initial_inner_radius": 0.015410819745634402, "grain_initial_height": 0.12055838887650917, "grain_separation": 0.005417347150461013, "grains_center_of_mass_position": 0.39768621042859165, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020520430764162795, "throat_radius": 0.010754080263173234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538453904661215}], "aerodynamic_surfaces": [{"length": 0.5585512000992925, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323912635572513}, {"n": 4, "root_chord": 0.1196595111303919, "tip_chord": 0.06013598495010679, "span": 0.10948618771345879, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048810961938373}, {"top_radius": 0.06244873383420562, "bottom_radius": 0.04261215124143515, "length": 0.061576888894666115, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982190031242052, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184066127944964, "upper_button_position": 0.07981239032970877}], "rail_length": 5, "inclination": 84.6269728269789, "heading": 52.727581150741486} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06348971577506066, "mass": 14.968690192799777, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312629559329801, "I_33_without_motor": 0.03331650031292519, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.790309972749814, "trigger": 800, "sampling_rate": 105, "lag": 1.6067943555716828, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9508743488156667, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4020379618766323, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7755.279375901468, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032828901189039146, "grain_number": 5, "grain_density": 1883.7089890162556, "grain_outer_radius": 0.03231518544862137, "grain_initial_inner_radius": 0.015542198187360757, "grain_initial_height": 0.1203694715539592, "grain_separation": 0.004692802279833674, "grains_center_of_mass_position": 0.3977690458870366, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004353238212811264, "throat_radius": 0.012011410041294338, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562772868691106}], "aerodynamic_surfaces": [{"length": 0.5576460297757151, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351555043335015}, {"n": 4, "root_chord": 0.11926850754231576, "tip_chord": 0.06004752879931525, "span": 0.10953853408140951, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515846093057604}, {"top_radius": 0.06350358267729699, "bottom_radius": 0.04187069266842155, "length": 0.05892762828726303, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985854791589311, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174547905591722, "upper_button_position": 0.08113068859975892}], "rail_length": 5, "inclination": 85.52350874901599, "heading": 51.471682862773214} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349687127599872, "mass": 15.223490240805157, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32253380547646, "I_33_without_motor": 0.04407535187562442, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.053593773435725, "trigger": 800, "sampling_rate": 105, "lag": 1.4895237039421574, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8745760389119263, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3773148500441486, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6634.13608265769, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03221712995320454, "grain_number": 5, "grain_density": 1816.3093408823688, "grain_outer_radius": 0.032284679488992704, "grain_initial_inner_radius": 0.015592811556139775, "grain_initial_height": 0.12042699970116678, "grain_separation": 0.0047637490620186605, "grains_center_of_mass_position": 0.3973196439129636, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001162215160539848, "throat_radius": 0.01075389898045163, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568428940326357}], "aerodynamic_surfaces": [{"length": 0.5586699695279679, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342033217565057}, {"n": 4, "root_chord": 0.11922053120918251, "tip_chord": 0.05965197832382318, "span": 0.10935822712195652, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480699406729113}, {"top_radius": 0.06495112132729068, "bottom_radius": 0.04294093502570392, "length": 0.05941867581477882, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993086618485312, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619022464833607, "upper_button_position": 0.08028619701492423}], "rail_length": 5, "inclination": 84.02186270608303, "heading": 54.13365130416341} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350118413256112, "mass": 15.098487749979439, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338068708611668, "I_33_without_motor": 0.02960246242410678, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89576290434112, "trigger": 800, "sampling_rate": 105, "lag": 1.520915313570452, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9617865673090016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.139701582575987, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6969.045810398421, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03384109128194972, "grain_number": 5, "grain_density": 1791.0492813206813, "grain_outer_radius": 0.032624265558878485, "grain_initial_inner_radius": 0.015109650425621048, "grain_initial_height": 0.11948856598356265, "grain_separation": 0.004185113290186749, "grains_center_of_mass_position": 0.3971294999371868, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001376265230323754, "throat_radius": 0.010808449894148767, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545473641907694}], "aerodynamic_surfaces": [{"length": 0.557656055137747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339528994212444}, {"n": 4, "root_chord": 0.12055034499674644, "tip_chord": 0.060024758484830076, "span": 0.10997933588405208, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492024400322129}, {"top_radius": 0.06411637664075612, "bottom_radius": 0.04288403355164774, "length": 0.061115685869848654, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699332458545782, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176913688810032, "upper_button_position": 0.08164108966477879}], "rail_length": 5, "inclination": 83.53762678571259, "heading": 54.08469305734445} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06348794462980006, "mass": 14.18217472922873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306589892163851, "I_33_without_motor": 0.02471962226489275, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02439725666625, "trigger": 800, "sampling_rate": 105, "lag": 1.4291527999467715, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.983678013323086, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5059056823324724, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5084.180445836946, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0333714390591387, "grain_number": 5, "grain_density": 1777.8194209350388, "grain_outer_radius": 0.033137533630760024, "grain_initial_inner_radius": 0.014916689063613112, "grain_initial_height": 0.12057507496400163, "grain_separation": 0.004557861400389524, "grains_center_of_mass_position": 0.3961439762986354, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018139108290960602, "throat_radius": 0.01127308028489627, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562850962995258}], "aerodynamic_surfaces": [{"length": 0.5582265820034591, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335862648703499}, {"n": 4, "root_chord": 0.11999027301506622, "tip_chord": 0.06013670939343541, "span": 0.11012501392919832, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493901238960581}, {"top_radius": 0.06371147586485183, "bottom_radius": 0.04513549366382111, "length": 0.059616765673971256, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989958396865005, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181576523776074, "upper_button_position": 0.08083818730889303}], "rail_length": 5, "inclination": 85.29202270265894, "heading": 55.96990360398405} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350981966071717, "mass": 16.177428233401148, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317638982229031, "I_33_without_motor": 0.03405202583171906, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.043115673194544, "trigger": 800, "sampling_rate": 105, "lag": 1.4409873756635247, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0014453314956977, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1099358627942992, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6467.5971301339705, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032870677337169925, "grain_number": 5, "grain_density": 1820.0962745904517, "grain_outer_radius": 0.03200988372178632, "grain_initial_inner_radius": 0.015021478680341434, "grain_initial_height": 0.12104409802732466, "grain_separation": 0.004743279133481982, "grains_center_of_mass_position": 0.3959002556748805, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00084825030671016, "throat_radius": 0.011467770307472277, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559743232704528}], "aerodynamic_surfaces": [{"length": 0.5578868313221517, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348253459565207}, {"n": 4, "root_chord": 0.12019300063792412, "tip_chord": 0.05999344337289254, "span": 0.11046014465379975, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048657520263045}, {"top_radius": 0.06480210002783825, "bottom_radius": 0.04443315172900255, "length": 0.060701383625574236, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007674031662343, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193312109950302, "upper_button_position": 0.08143619217120412}], "rail_length": 5, "inclination": 83.7835847988184, "heading": 52.54642423463458} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350185797538703, "mass": 15.508062839578319, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321359840196587, "I_33_without_motor": 0.025665654156291233, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998021527209138, "trigger": 800, "sampling_rate": 105, "lag": 1.605948140731614, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0387241454509653, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3535339576500378, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6505.359750917803, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03395383708371905, "grain_number": 5, "grain_density": 1899.8118382085609, "grain_outer_radius": 0.03271173760114545, "grain_initial_inner_radius": 0.013578675064625451, "grain_initial_height": 0.1207507429070821, "grain_separation": 0.004103719263799836, "grains_center_of_mass_position": 0.39605684803169056, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020846212273646799, "throat_radius": 0.010659526440699554, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562769391467126}], "aerodynamic_surfaces": [{"length": 0.5586288059034218, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134511330565248}, {"n": 4, "root_chord": 0.11971714883043616, "tip_chord": 0.059931979474035946, "span": 0.11044602790203165, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496247609641278}, {"top_radius": 0.06373323046767851, "bottom_radius": 0.04354497660326926, "length": 0.05919605844675959, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6966765898128924, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187044632969707, "upper_button_position": 0.07797212651592167}], "rail_length": 5, "inclination": 85.10108208436962, "heading": 51.17142475470371} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0634907019361671, "mass": 15.182127740148708, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323639347875531, "I_33_without_motor": 0.03769007854769185, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86543178538524, "trigger": 800, "sampling_rate": 105, "lag": 1.5730221894539358, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0667065302261476, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5173262739684306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7372.656596216449, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03245214597804979, "grain_number": 5, "grain_density": 1816.242107562234, "grain_outer_radius": 0.033241964787189486, "grain_initial_inner_radius": 0.015044978235104263, "grain_initial_height": 0.12028558687122, "grain_separation": 0.004627548396509005, "grains_center_of_mass_position": 0.3971576902291467, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018321625835203735, "throat_radius": 0.010999434478995379, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546128070394624}], "aerodynamic_surfaces": [{"length": 0.5571460134800734, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342206000749913}, {"n": 4, "root_chord": 0.11990385726774161, "tip_chord": 0.06024217049494853, "span": 0.10953706517181021, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482290928381548}, {"top_radius": 0.0633642645562397, "bottom_radius": 0.043414337424330936, "length": 0.060173417717977684, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000672044552134, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178590891016936, "upper_button_position": 0.0822081153535198}], "rail_length": 5, "inclination": 84.84803489377889, "heading": 52.37481760325718} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349471538108327, "mass": 14.985591629060266, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3052914766242, "I_33_without_motor": 0.04086450354379039, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924159473717264, "trigger": 800, "sampling_rate": 105, "lag": 1.3243808114091218, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8887983353124068, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5020511162506145, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6420.261272996256, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03236824856564066, "grain_number": 5, "grain_density": 1848.8366997726325, "grain_outer_radius": 0.033029902770541505, "grain_initial_inner_radius": 0.014877546444049152, "grain_initial_height": 0.11854993546054633, "grain_separation": 0.005244312696660027, "grains_center_of_mass_position": 0.39573874013382526, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015330124406810247, "throat_radius": 0.01130360271809251, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557693509551322}], "aerodynamic_surfaces": [{"length": 0.5572255480746537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334615237677996}, {"n": 4, "root_chord": 0.11933478216498587, "tip_chord": 0.059544007982743306, "span": 0.10956301662487257, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507559426127258}, {"top_radius": 0.06260224543356223, "bottom_radius": 0.043700600009466815, "length": 0.05942449041691766, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985642466466527, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187530583049221, "upper_button_position": 0.07981118834173062}], "rail_length": 5, "inclination": 84.40399965393726, "heading": 52.00467100741291} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350872797496568, "mass": 14.86330198322787, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331571069167265, "I_33_without_motor": 0.031164126486334164, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.907946461397575, "trigger": 800, "sampling_rate": 105, "lag": 1.4638702144643967, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9240204861790904, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5090786783554297, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4068.3226185661183, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032698600026082186, "grain_number": 5, "grain_density": 1783.5406164277254, "grain_outer_radius": 0.032876359016343976, "grain_initial_inner_radius": 0.0154747633900757, "grain_initial_height": 0.12074706076616154, "grain_separation": 0.004028820180709501, "grains_center_of_mass_position": 0.3964470128367758, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007010734116214913, "throat_radius": 0.011634624154483766, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536336321644317}], "aerodynamic_surfaces": [{"length": 0.5576779150818609, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344732481152007}, {"n": 4, "root_chord": 0.11999485812708817, "tip_chord": 0.05936468197659942, "span": 0.11012034891551868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504479771721855}, {"top_radius": 0.06287461152126371, "bottom_radius": 0.04353913467122323, "length": 0.06132637653274098, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980881692428003, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174175638110156, "upper_button_position": 0.08067060543178461}], "rail_length": 5, "inclination": 84.0928254664605, "heading": 49.178068029153394} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350251309662988, "mass": 15.19805758988502, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309023191244715, "I_33_without_motor": 0.03275625352517056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.121911394329384, "trigger": 800, "sampling_rate": 105, "lag": 1.4125139029176312, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9946348166364551, "trigger": "apogee", "sampling_rate": 105, "lag": 1.358834174792617, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7068.352369894088, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324136861506346, "grain_number": 5, "grain_density": 1756.0476593667092, "grain_outer_radius": 0.03286054541110731, "grain_initial_inner_radius": 0.014862325679233656, "grain_initial_height": 0.12137683232904861, "grain_separation": 0.005894431185987738, "grains_center_of_mass_position": 0.3985544572552029, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008353809128557598, "throat_radius": 0.011420676107125216, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543133945166791}], "aerodynamic_surfaces": [{"length": 0.5590154999029089, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331443734701951}, {"n": 4, "root_chord": 0.11984527354053828, "tip_chord": 0.0603932073826817, "span": 0.11029599645756334, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501824310302044}, {"top_radius": 0.06235612526873988, "bottom_radius": 0.04443524068351717, "length": 0.059753808078152774, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014644910476507, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168894570409905, "upper_button_position": 0.08457503400666022}], "rail_length": 5, "inclination": 83.23588190438937, "heading": 51.61998064807713} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349900776485567, "mass": 15.295328757075326, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300963387856158, "I_33_without_motor": 0.027107913046676417, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971824952074028, "trigger": 800, "sampling_rate": 105, "lag": 1.5434033833063052, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0020982417497772, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3384275662979122, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6640.340780762262, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032536965586476355, "grain_number": 5, "grain_density": 1835.3561518416136, "grain_outer_radius": 0.03290809709539075, "grain_initial_inner_radius": 0.015061640303852585, "grain_initial_height": 0.12149849461055916, "grain_separation": 0.004538047115060515, "grains_center_of_mass_position": 0.39814644405737754, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017849253162846616, "throat_radius": 0.01042559377963261, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549504949466892}], "aerodynamic_surfaces": [{"length": 0.558010039995445, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332894899454804}, {"n": 4, "root_chord": 0.12016398727383941, "tip_chord": 0.06011735349965931, "span": 0.10984591983059423, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494889443285176}, {"top_radius": 0.06417881405749257, "bottom_radius": 0.04238421238865492, "length": 0.06090245797835121, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987994687436914, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172709682520058, "upper_button_position": 0.08152850049168558}], "rail_length": 5, "inclination": 84.31337115290411, "heading": 58.053551189273165} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.063505400482454, "mass": 15.387126254446446, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311999052698002, "I_33_without_motor": 0.04130505815797578, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.069828040328161, "trigger": 800, "sampling_rate": 105, "lag": 1.441277994935533, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.888899097579208, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5364467027404434, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6170.291568776147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03177955796893773, "grain_number": 5, "grain_density": 1810.5632470321518, "grain_outer_radius": 0.032687446604043546, "grain_initial_inner_radius": 0.014778394828049242, "grain_initial_height": 0.11957741652920774, "grain_separation": 0.004616160156611536, "grains_center_of_mass_position": 0.39729852021810186, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002946884130081266, "throat_radius": 0.010928108851147256, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255103253428119}], "aerodynamic_surfaces": [{"length": 0.5580369415193082, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339353683794642}, {"n": 4, "root_chord": 0.11985421018157734, "tip_chord": 0.059317967209957, "span": 0.10946540793341374, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495308162629282}, {"top_radius": 0.062059856958740306, "bottom_radius": 0.04315583362880075, "length": 0.060539130937150194, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003955682133552, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177138441972956, "upper_button_position": 0.08268172401605967}], "rail_length": 5, "inclination": 85.20180445636684, "heading": 53.30509444709604} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349023712339182, "mass": 15.604407970494902, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3284332327855415, "I_33_without_motor": 0.03413092369607449, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997663806194534, "trigger": 800, "sampling_rate": 105, "lag": 1.372235809462407, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9665171308157399, "trigger": "apogee", "sampling_rate": 105, "lag": 1.448275389995411, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4504.106124273733, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03233685113082392, "grain_number": 5, "grain_density": 1820.0421015302697, "grain_outer_radius": 0.032517610214843715, "grain_initial_inner_radius": 0.014167720507138803, "grain_initial_height": 0.12113354059479664, "grain_separation": 0.005761277047196462, "grains_center_of_mass_position": 0.3962771114543182, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000767774676303267, "throat_radius": 0.010651425732821209, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552749582196945}], "aerodynamic_surfaces": [{"length": 0.5576283885160874, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344596070935493}, {"n": 4, "root_chord": 0.12017627281751417, "tip_chord": 0.05984692914074958, "span": 0.11083616419152897, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483994247767132}, {"top_radius": 0.06330841982362692, "bottom_radius": 0.04265065814516625, "length": 0.060185922418210004, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008476639861617, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169561368489332, "upper_button_position": 0.08389152713722847}], "rail_length": 5, "inclination": 84.70446683693059, "heading": 54.28762601905839} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349711096837975, "mass": 15.03210383539266, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33379677036064, "I_33_without_motor": 0.01764639095556262, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009191725721827, "trigger": 800, "sampling_rate": 105, "lag": 1.5897425102686207, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.03219146003171, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3833819117825716, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5826.070673825718, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0334240441030738, "grain_number": 5, "grain_density": 1816.3688335420493, "grain_outer_radius": 0.03262811584032336, "grain_initial_inner_radius": 0.015302842064245682, "grain_initial_height": 0.1213180991873626, "grain_separation": 0.0065520907447367575, "grains_center_of_mass_position": 0.3974184886053044, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008046784748404235, "throat_radius": 0.01077273723468044, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542938661396537}], "aerodynamic_surfaces": [{"length": 0.5601472906532674, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350534875471128}, {"n": 4, "root_chord": 0.1202123906778639, "tip_chord": 0.0605517130066149, "span": 0.10951298982901891, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488802701141342}, {"top_radius": 0.06416305846723055, "bottom_radius": 0.04444658338551936, "length": 0.06140446646493925, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980649642102426, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163048791084976, "upper_button_position": 0.08176008510174493}], "rail_length": 5, "inclination": 84.23903866514462, "heading": 53.020509564306955} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350613924156898, "mass": 15.380895311369246, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3287758179192615, "I_33_without_motor": 0.043183055126476105, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.205723541973892, "trigger": 800, "sampling_rate": 105, "lag": 1.5464855336341523, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9180293166772363, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6980625926751665, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4730.928143326893, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329394996980202, "grain_number": 5, "grain_density": 1729.4392935600813, "grain_outer_radius": 0.03300341254471014, "grain_initial_inner_radius": 0.014921502434137701, "grain_initial_height": 0.12066145221215871, "grain_separation": 0.004861095632584449, "grains_center_of_mass_position": 0.39771700637993973, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008465156326518704, "throat_radius": 0.011127863673016727, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254738144860624}], "aerodynamic_surfaces": [{"length": 0.558207338348122, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134729313176093}, {"n": 4, "root_chord": 0.1195759823765354, "tip_chord": 0.05896480651587163, "span": 0.11002136104542148, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495702939961034}, {"top_radius": 0.06469499285206591, "bottom_radius": 0.04415835475011454, "length": 0.060900446104351594, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997879308569798, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187835127755565, "upper_button_position": 0.08100441808142322}], "rail_length": 5, "inclination": 84.10697126626643, "heading": 49.576635702887636} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0634832513945436, "mass": 15.048098827615092, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3243748729651745, "I_33_without_motor": 0.034012680923907, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.910826123646421, "trigger": 800, "sampling_rate": 105, "lag": 1.2778100474517764, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8251013498778856, "trigger": "apogee", "sampling_rate": 105, "lag": 1.155747725247527, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5837.767892037376, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033660976476048945, "grain_number": 5, "grain_density": 1768.1090253141067, "grain_outer_radius": 0.032666227790670514, "grain_initial_inner_radius": 0.014814118678720156, "grain_initial_height": 0.1187964794283409, "grain_separation": 0.005083005023331062, "grains_center_of_mass_position": 0.3958866756217604, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0026302218221701304, "throat_radius": 0.010557126863845658, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553945878026074}], "aerodynamic_surfaces": [{"length": 0.5584087671548356, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344836050911788}, {"n": 4, "root_chord": 0.12038586653564957, "tip_chord": 0.061071270606076734, "span": 0.11050078440379378, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499280669419895}, {"top_radius": 0.06047422894112123, "bottom_radius": 0.044146497627561836, "length": 0.05950732089274506, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000879573435692, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174736453607387, "upper_button_position": 0.08261431198283054}], "rail_length": 5, "inclination": 84.32314713138247, "heading": 51.959639538748526} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350142006845737, "mass": 14.71054887066392, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308843010621504, "I_33_without_motor": 0.02528973143869381, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.044725293903099, "trigger": 800, "sampling_rate": 105, "lag": 1.4258332695610483, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9394431243890877, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5508325849990312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6352.066167310222, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291377385274274, "grain_number": 5, "grain_density": 1817.1354401115707, "grain_outer_radius": 0.03340514900059857, "grain_initial_inner_radius": 0.015193870370266403, "grain_initial_height": 0.12034975201631515, "grain_separation": 0.005086053063610478, "grains_center_of_mass_position": 0.39713695297329693, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010790239960795256, "throat_radius": 0.010622119372788218, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547687337389521}], "aerodynamic_surfaces": [{"length": 0.5593096116502887, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1358267377682099}, {"n": 4, "root_chord": 0.12013974953533493, "tip_chord": 0.060413590767021144, "span": 0.11055032461908959, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049095833042514}, {"top_radius": 0.06444521702335865, "bottom_radius": 0.04277635688889077, "length": 0.06167881610108609, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003161856541422, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175448327830584, "upper_button_position": 0.08277135287108384}], "rail_length": 5, "inclination": 84.65437549378765, "heading": 54.86380478153061} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634947348687884, "mass": 14.969866212339864, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316768160858847, "I_33_without_motor": 0.042662942646228844, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038560974819553, "trigger": 800, "sampling_rate": 105, "lag": 1.2743614166976194, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.95846616711702, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3567014949056189, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5692.627175661335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032899813372967206, "grain_number": 5, "grain_density": 1789.8405038779151, "grain_outer_radius": 0.033305993372464184, "grain_initial_inner_radius": 0.014710829930117053, "grain_initial_height": 0.11948885275738713, "grain_separation": 0.004885741949445905, "grains_center_of_mass_position": 0.39710442153058434, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000816059787693553, "throat_radius": 0.010824816823169322, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556985755476677}], "aerodynamic_surfaces": [{"length": 0.5568211007562287, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343200515709289}, {"n": 4, "root_chord": 0.11976422683349494, "tip_chord": 0.05938574991556341, "span": 0.1114598902616429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490194431194448}, {"top_radius": 0.06441534661202164, "bottom_radius": 0.040672872152638706, "length": 0.05874618397480601, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997614895084363, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178482855010577, "upper_button_position": 0.08191320400737856}], "rail_length": 5, "inclination": 84.11119317735833, "heading": 52.17449897773988} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06351400547701855, "mass": 15.044473927137904, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323987138403483, "I_33_without_motor": 0.018664367373433688, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.903497832276983, "trigger": 800, "sampling_rate": 105, "lag": 1.3719487201686924, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0138251996884955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.478651305684268, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5424.281589681876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263773651338122, "grain_number": 5, "grain_density": 1758.379118090105, "grain_outer_radius": 0.03319388630966312, "grain_initial_inner_radius": 0.014746548722921136, "grain_initial_height": 0.12012556126578831, "grain_separation": 0.005811086287409149, "grains_center_of_mass_position": 0.3977006294004835, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013984713918795161, "throat_radius": 0.011784247673576002, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254464881297225}], "aerodynamic_surfaces": [{"length": 0.5570769629027249, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134137742819479}, {"n": 4, "root_chord": 0.12090434829433058, "tip_chord": 0.059085647091110215, "span": 0.11028657344037888, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049257268465392}, {"top_radius": 0.0633246685780479, "bottom_radius": 0.043235213099504975, "length": 0.0591900949962753, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984437038427694, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190952611426465, "upper_button_position": 0.07934844270012298}], "rail_length": 5, "inclination": 84.08537942845484, "heading": 54.226691979549926} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0635050950991887, "mass": 15.362863983259585, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309835088775819, "I_33_without_motor": 0.03239504922232731, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015657472069574, "trigger": 800, "sampling_rate": 105, "lag": 1.465992473342992, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9638111127022362, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4469941216481699, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7714.33218654551, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033231059214191054, "grain_number": 5, "grain_density": 1751.921617017024, "grain_outer_radius": 0.032417557058243146, "grain_initial_inner_radius": 0.014800667637076798, "grain_initial_height": 0.12015704233324956, "grain_separation": 0.00455992282617099, "grains_center_of_mass_position": 0.39734245526734707, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000634289635229165, "throat_radius": 0.010587332406347613, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254508241300363}], "aerodynamic_surfaces": [{"length": 0.5584637304433551, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133912783497941}, {"n": 4, "root_chord": 0.12038442656077006, "tip_chord": 0.05973142232929534, "span": 0.11052861066550804, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050179645055106}, {"top_radius": 0.06368903801782183, "bottom_radius": 0.04432515376741317, "length": 0.06001692559735523, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991940840598139, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189785750050383, "upper_button_position": 0.08021550905477559}], "rail_length": 5, "inclination": 84.22846757074609, "heading": 55.25300723857388} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0634938183472916, "mass": 15.69997065603085, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318255731418751, "I_33_without_motor": 0.03644826601028492, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.972396031044353, "trigger": 800, "sampling_rate": 105, "lag": 1.4231310035140128, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9369774390862975, "trigger": "apogee", "sampling_rate": 105, "lag": 1.429874421928843, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7188.43120140282, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0334269589051035, "grain_number": 5, "grain_density": 1843.934335754612, "grain_outer_radius": 0.03334832096188433, "grain_initial_inner_radius": 0.0156504911713441, "grain_initial_height": 0.11895136796752567, "grain_separation": 0.004812598967724225, "grains_center_of_mass_position": 0.3975299168134912, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016986371894676675, "throat_radius": 0.011587608602915547, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556784333419693}], "aerodynamic_surfaces": [{"length": 0.5567222810010711, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333200010734337}, {"n": 4, "root_chord": 0.11895383192421438, "tip_chord": 0.06033772945646821, "span": 0.11000797209101922, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050693467633359}, {"top_radius": 0.062011859797197894, "bottom_radius": 0.04416544759363625, "length": 0.06028411691817589, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013848186974845, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166076967847193, "upper_button_position": 0.08477712191276521}], "rail_length": 5, "inclination": 84.46077891194983, "heading": 54.87470626956474} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349686128109948, "mass": 14.624769066556546, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32890243560388, "I_33_without_motor": 0.033064979261176616, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.048948432624277, "trigger": 800, "sampling_rate": 105, "lag": 1.403639016837547, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9759136399519865, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5152307411715156, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6776.866369032028, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033013562634537086, "grain_number": 5, "grain_density": 1842.874527379815, "grain_outer_radius": 0.03262263963925159, "grain_initial_inner_radius": 0.015397164752524858, "grain_initial_height": 0.1204533775159004, "grain_separation": 0.004183815730744153, "grains_center_of_mass_position": 0.39644138107030336, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010920131077576604, "throat_radius": 0.011020321911016467, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253893201150964}], "aerodynamic_surfaces": [{"length": 0.5584681520006335, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335546840991273}, {"n": 4, "root_chord": 0.11938564224358142, "tip_chord": 0.06053088541146046, "span": 0.11036742236592093, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049571333193469}, {"top_radius": 0.06424609833336424, "bottom_radius": 0.04536732010333195, "length": 0.06018772845709719, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992128566322015, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173739414329349, "upper_button_position": 0.08183891519926656}], "rail_length": 5, "inclination": 83.05566536538295, "heading": 50.19823307001139} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350379909408158, "mass": 15.69669963390737, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3193896663449065, "I_33_without_motor": 0.06465257137842878, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110244259183167, "trigger": 800, "sampling_rate": 105, "lag": 1.4745485041617257, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0086118755280977, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3436892163538212, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7410.648516925462, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242757761832297, "grain_number": 5, "grain_density": 1835.7456234093133, "grain_outer_radius": 0.03347377831737611, "grain_initial_inner_radius": 0.014805769910060967, "grain_initial_height": 0.11929775984846681, "grain_separation": 0.0029468280502456543, "grains_center_of_mass_position": 0.396263938151805, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007116755066309777, "throat_radius": 0.010638606661627985, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255016808198101}], "aerodynamic_surfaces": [{"length": 0.5588514889069994, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325416374295645}, {"n": 4, "root_chord": 0.12071607305228171, "tip_chord": 0.060464649443047615, "span": 0.10981842219311694, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485414051091537}, {"top_radius": 0.06383280775629162, "bottom_radius": 0.044005586764809, "length": 0.05877704830033507, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992649142220189, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161812802380008, "upper_button_position": 0.08308363398401808}], "rail_length": 5, "inclination": 84.34211936552163, "heading": 53.73906805751767} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349723542747453, "mass": 15.204455170366924, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302147367960756, "I_33_without_motor": 0.029392143638201813, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983613992154798, "trigger": 800, "sampling_rate": 105, "lag": 1.6463329482736224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9139875940158135, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3636358467163467, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6826.746055789936, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334427305346481, "grain_number": 5, "grain_density": 1822.0284689962236, "grain_outer_radius": 0.032611648593216226, "grain_initial_inner_radius": 0.014744208045340313, "grain_initial_height": 0.11979260407474725, "grain_separation": 0.004818883102470949, "grains_center_of_mass_position": 0.3965393779121263, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006670484904673512, "throat_radius": 0.011504519549832037, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538256022887064}], "aerodynamic_surfaces": [{"length": 0.5600259079605161, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328759805386308}, {"n": 4, "root_chord": 0.12013189791922728, "tip_chord": 0.060642016791940805, "span": 0.10998883541739425, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477639790413655}, {"top_radius": 0.06476039289064865, "bottom_radius": 0.04372919460133439, "length": 0.06038391906503534, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996036454299974, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177292844186675, "upper_button_position": 0.08187436101132994}], "rail_length": 5, "inclination": 85.61769333060633, "heading": 53.92365326233282} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.063509265465576, "mass": 15.978749867189448, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3275881285592765, "I_33_without_motor": 0.03018163748822481, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.181661181248382, "trigger": 800, "sampling_rate": 105, "lag": 1.6033030119473242, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0317545642050692, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4952050644403878, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7339.031478786417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032834361748561434, "grain_number": 5, "grain_density": 1797.0772716808237, "grain_outer_radius": 0.03268309730712248, "grain_initial_inner_radius": 0.015466134916366581, "grain_initial_height": 0.11971626182048378, "grain_separation": 0.00459066484976273, "grains_center_of_mass_position": 0.3977323602983902, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005810705450448398, "throat_radius": 0.011418970710111479, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255286276906535}], "aerodynamic_surfaces": [{"length": 0.5598593544172344, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332000020305322}, {"n": 4, "root_chord": 0.11943275791338785, "tip_chord": 0.06004235797242676, "span": 0.10918011044486586, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515062109591506}, {"top_radius": 0.06362178620067807, "bottom_radius": 0.04234051647560475, "length": 0.061410416974593665, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699503873830462, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617271878983037, "upper_button_position": 0.08223199484742494}], "rail_length": 5, "inclination": 83.3558300048156, "heading": 48.995850356917934} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350019119857984, "mass": 15.43736847821827, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305346501801296, "I_33_without_motor": 0.02628394585195107, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.277280053546027, "trigger": 800, "sampling_rate": 105, "lag": 1.5031314675598486, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0781116554193042, "trigger": "apogee", "sampling_rate": 105, "lag": 1.321643442754, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6142.6549694738915, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274829457953482, "grain_number": 5, "grain_density": 1828.943731015582, "grain_outer_radius": 0.03333946102460736, "grain_initial_inner_radius": 0.014921891560742322, "grain_initial_height": 0.12039167819990186, "grain_separation": 0.00624503677932642, "grains_center_of_mass_position": 0.3974081694281022, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014020316529172025, "throat_radius": 0.010796494053577629, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564163743186456}], "aerodynamic_surfaces": [{"length": 0.5582543535862727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342380246045711}, {"n": 4, "root_chord": 0.1197843584287959, "tip_chord": 0.06003977298666314, "span": 0.1094988323453071, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504608274263374}, {"top_radius": 0.06405169982298678, "bottom_radius": 0.044067337178654555, "length": 0.060806372535697206, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699554530088371, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164524065581874, "upper_button_position": 0.08310212353018354}], "rail_length": 5, "inclination": 84.20868937978811, "heading": 55.07255996147667} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349305990873466, "mass": 15.403280923024564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323743598532528, "I_33_without_motor": 0.03440558468633475, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125753347564329, "trigger": 800, "sampling_rate": 105, "lag": 1.5230962521771783, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.008649595586342, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3910370654460178, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6353.121703265636, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033211988872501375, "grain_number": 5, "grain_density": 1877.997953352214, "grain_outer_radius": 0.03296602222008422, "grain_initial_inner_radius": 0.015233803357795816, "grain_initial_height": 0.12094085473004021, "grain_separation": 0.004489677931948859, "grains_center_of_mass_position": 0.39789016347052447, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001696521153705673, "throat_radius": 0.01065229559088213, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540085650152213}], "aerodynamic_surfaces": [{"length": 0.5571191403968259, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334403095250432}, {"n": 4, "root_chord": 0.12012201496493394, "tip_chord": 0.06006049371187148, "span": 0.10930059308430437, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501756102650484}, {"top_radius": 0.06251177410576933, "bottom_radius": 0.04359429310811754, "length": 0.05918232211497686, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014950482271656, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184383493931087, "upper_button_position": 0.08305669883405686}], "rail_length": 5, "inclination": 85.40598991733857, "heading": 53.57499305561169} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349536259674826, "mass": 16.0229124606822, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331657634619161, "I_33_without_motor": 0.04130756899555723, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.946876976391508, "trigger": 800, "sampling_rate": 105, "lag": 1.557581523700636, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0495249022669535, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5352032754921208, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6126.588117499772, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306736318432371, "grain_number": 5, "grain_density": 1852.5261151636143, "grain_outer_radius": 0.0327206154965279, "grain_initial_inner_radius": 0.014745565416206101, "grain_initial_height": 0.11910347699841084, "grain_separation": 0.004604973616995321, "grains_center_of_mass_position": 0.397178205584807, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0022405714516620275, "throat_radius": 0.010668649846480242, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569730140327446}], "aerodynamic_surfaces": [{"length": 0.5578535322910108, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355085797552944}, {"n": 4, "root_chord": 0.12006466852330812, "tip_chord": 0.06025137464586665, "span": 0.11032785501391901, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492885280647317}, {"top_radius": 0.06336823799428944, "bottom_radius": 0.0442914053637676, "length": 0.06078938929291779, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997913806980058, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184335653230586, "upper_button_position": 0.08135781537494724}], "rail_length": 5, "inclination": 85.15406221971159, "heading": 52.040874531704816} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349502480324505, "mass": 15.25479289237247, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333912146376728, "I_33_without_motor": 0.025401135529161158, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014034942444768, "trigger": 800, "sampling_rate": 105, "lag": 1.3674775132084551, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9283601281617107, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4541780332385736, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5599.402854654524, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03232978485402549, "grain_number": 5, "grain_density": 1743.5653432152174, "grain_outer_radius": 0.0324397681211921, "grain_initial_inner_radius": 0.015010835471398474, "grain_initial_height": 0.12049202561821035, "grain_separation": 0.005944249942651576, "grains_center_of_mass_position": 0.39869659717428296, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013732262992271317, "throat_radius": 0.011431670761291216, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254888417885095}], "aerodynamic_surfaces": [{"length": 0.5564875030253161, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340419220991689}, {"n": 4, "root_chord": 0.12058725227614776, "tip_chord": 0.06004907781621054, "span": 0.10974261638129214, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0474551597386803}, {"top_radius": 0.06333145506029704, "bottom_radius": 0.04201343292644843, "length": 0.060052717922708776, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008497909141644, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181215797229066, "upper_button_position": 0.08272821119125784}], "rail_length": 5, "inclination": 82.93250896727318, "heading": 55.269436779866524} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634873866558452, "mass": 14.765591797736164, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307585882039246, "I_33_without_motor": 0.023396051401426435, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08293797629299, "trigger": 800, "sampling_rate": 105, "lag": 1.4664677161737811, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9824431417277306, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6007225844076347, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5260.598861136998, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364293298183267, "grain_number": 5, "grain_density": 1763.8664744937196, "grain_outer_radius": 0.032615344338260174, "grain_initial_inner_radius": 0.015147015093806752, "grain_initial_height": 0.12076986138600422, "grain_separation": 0.005470238220051956, "grains_center_of_mass_position": 0.39544208877717657, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004464993118346355, "throat_radius": 0.010639335187735079, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541359116034296}], "aerodynamic_surfaces": [{"length": 0.5577730355267627, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339513139104}, {"n": 4, "root_chord": 0.12042031618403033, "tip_chord": 0.05964285410605401, "span": 0.10975361545161862, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502653773416881}, {"top_radius": 0.06480234996839832, "bottom_radius": 0.045483719485222285, "length": 0.059916415614276325, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994077473951039, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187670685564867, "upper_button_position": 0.08064067883861725}], "rail_length": 5, "inclination": 85.67515333057098, "heading": 54.71447513218567} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350167611118515, "mass": 15.691413434257054, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318551896306441, "I_33_without_motor": 0.02140523189181915, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.140986986131994, "trigger": 800, "sampling_rate": 105, "lag": 1.4157081819764907, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9040992797822461, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4675012302327177, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6650.541766115145, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288955473452853, "grain_number": 5, "grain_density": 1840.6785081767748, "grain_outer_radius": 0.03309102448897561, "grain_initial_inner_radius": 0.015024639850702185, "grain_initial_height": 0.12142782303106735, "grain_separation": 0.00614046564932989, "grains_center_of_mass_position": 0.39547382447076307, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010511926075007642, "throat_radius": 0.01141639759200875, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553816964190776}], "aerodynamic_surfaces": [{"length": 0.5594656817523959, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338531103852583}, {"n": 4, "root_chord": 0.12059602645568687, "tip_chord": 0.05993488756792007, "span": 0.11065030766414218, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484409800949293}, {"top_radius": 0.06388687652633718, "bottom_radius": 0.04269122903324586, "length": 0.06069879249234471, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003754226072619, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181790894809982, "upper_button_position": 0.08219633312626373}], "rail_length": 5, "inclination": 85.01401570239562, "heading": 53.79692659440499} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349890353143746, "mass": 16.51785068034796, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324034780949371, "I_33_without_motor": 0.03904441516022769, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996211468013145, "trigger": 800, "sampling_rate": 105, "lag": 1.4363681430620743, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.039401605304203, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4537103115173315, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6240.571730294795, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03319314899835559, "grain_number": 5, "grain_density": 1871.3623053537149, "grain_outer_radius": 0.03353700303591712, "grain_initial_inner_radius": 0.014873329081787389, "grain_initial_height": 0.12003151085500247, "grain_separation": 0.003772598966574232, "grains_center_of_mass_position": 0.3956743847173408, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001859143837743852, "throat_radius": 0.010721653743014401, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557526212708416}], "aerodynamic_surfaces": [{"length": 0.5584303948954823, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332197787302105}, {"n": 4, "root_chord": 0.12002910553760747, "tip_chord": 0.05958838578735422, "span": 0.11030452026349122, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496368563834297}, {"top_radius": 0.061532892927882075, "bottom_radius": 0.04190657457812349, "length": 0.05889392010516822, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012228561567602, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182257627433315, "upper_button_position": 0.08299709341342865}], "rail_length": 5, "inclination": 84.69193276495439, "heading": 52.382890672780945} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348767170932651, "mass": 15.645451999243333, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325412934009174, "I_33_without_motor": 0.0422167316670923, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971812765853251, "trigger": 800, "sampling_rate": 105, "lag": 1.3568569089480338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0554602621489615, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1079381322021755, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4900.803201223859, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254593592508007, "grain_number": 5, "grain_density": 1811.0773297511203, "grain_outer_radius": 0.033057965834853376, "grain_initial_inner_radius": 0.015663715326918872, "grain_initial_height": 0.12045320736925423, "grain_separation": 0.0017515324218900577, "grains_center_of_mass_position": 0.39668230553100436, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007657366351936618, "throat_radius": 0.010887114317493255, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543109520686002}], "aerodynamic_surfaces": [{"length": 0.5583639305032627, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334638643140156}, {"n": 4, "root_chord": 0.12024552890972087, "tip_chord": 0.05944071851776514, "span": 0.10992218298491196, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492289259639078}, {"top_radius": 0.06345737059677496, "bottom_radius": 0.042199085921058636, "length": 0.05897027053818226, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003086276352958, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177282340348137, "upper_button_position": 0.08258039360048208}], "rail_length": 5, "inclination": 86.49066599567364, "heading": 56.540205267916015} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350077426740859, "mass": 15.565681189106202, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318813410642317, "I_33_without_motor": 0.03198554305387237, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070934016021358, "trigger": 800, "sampling_rate": 105, "lag": 1.4806086910682037, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0256621288334256, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3138491526306517, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5960.2607948606765, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033114901286711525, "grain_number": 5, "grain_density": 1852.271492811715, "grain_outer_radius": 0.03327367441970133, "grain_initial_inner_radius": 0.015379173816296105, "grain_initial_height": 0.1210830966986223, "grain_separation": 0.0052297570100240266, "grains_center_of_mass_position": 0.3969982530307727, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005837976225453578, "throat_radius": 0.011217715163808855, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255539652224316}], "aerodynamic_surfaces": [{"length": 0.556190933481551, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322803985554277}, {"n": 4, "root_chord": 0.12095918348947805, "tip_chord": 0.059754765081928944, "span": 0.11019679863864026, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04980394175476}, {"top_radius": 0.06296948270634861, "bottom_radius": 0.04412698744202864, "length": 0.060945784995651404, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701484672819658, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186311036726136, "upper_button_position": 0.08285356914704434}], "rail_length": 5, "inclination": 85.49069127814047, "heading": 55.78553694951617} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349870303130703, "mass": 15.38448843404694, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306828779643969, "I_33_without_motor": 0.053144303850853655, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.936469685221224, "trigger": 800, "sampling_rate": 105, "lag": 1.4261262800979673, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0763080108299703, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2494465407111846, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5618.369517698713, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032585798735145534, "grain_number": 5, "grain_density": 1809.2402434086675, "grain_outer_radius": 0.03267518989437839, "grain_initial_inner_radius": 0.015294228964782268, "grain_initial_height": 0.12007994166492683, "grain_separation": 0.005033094359452676, "grains_center_of_mass_position": 0.39723371663132107, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008983654589858862, "throat_radius": 0.00992969146256575, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556483857512675}], "aerodynamic_surfaces": [{"length": 0.5581049522382646, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133507673146185}, {"n": 4, "root_chord": 0.119815299525341, "tip_chord": 0.060546130828901264, "span": 0.10969908574513922, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049497548161294}, {"top_radius": 0.06176240220641323, "bottom_radius": 0.044065730750230736, "length": 0.0609711474399795, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009040043470216, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179722417638381, "upper_button_position": 0.08293176258318347}], "rail_length": 5, "inclination": 84.01520120720399, "heading": 50.0199880246989} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350035439216228, "mass": 15.67086160891571, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3292889666526415, "I_33_without_motor": 0.04756085366746566, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.133569696347665, "trigger": 800, "sampling_rate": 105, "lag": 1.59275788415523, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0337234546759735, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1254708916162204, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6475.617057684456, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281913287700369, "grain_number": 5, "grain_density": 1906.601488582664, "grain_outer_radius": 0.033336013301014, "grain_initial_inner_radius": 0.014997216942452868, "grain_initial_height": 0.11985304989946578, "grain_separation": 0.005377557042614143, "grains_center_of_mass_position": 0.3942269338560685, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.556143580065558e-05, "throat_radius": 0.010777380221288194, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253119485620062}], "aerodynamic_surfaces": [{"length": 0.5581335557461398, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339719194877096}, {"n": 4, "root_chord": 0.11986783745706552, "tip_chord": 0.060060818520299, "span": 0.10962212316215537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498548060336605}, {"top_radius": 0.06196568848955075, "bottom_radius": 0.04222373515358444, "length": 0.06002067071488401, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992373024818365, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167242552951622, "upper_button_position": 0.0825130471866743}], "rail_length": 5, "inclination": 85.94152476544876, "heading": 52.46638795516508} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350326552717678, "mass": 15.2673074010989, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322187343073773, "I_33_without_motor": 0.025608412275926345, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.87295205538092, "trigger": 800, "sampling_rate": 105, "lag": 1.621419339454042, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9962638392038836, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2560062216745607, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7617.08920145513, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343336054018466, "grain_number": 5, "grain_density": 1806.8396971536476, "grain_outer_radius": 0.03331085173604919, "grain_initial_inner_radius": 0.014855988795661438, "grain_initial_height": 0.11999730589366922, "grain_separation": 0.005242529369570998, "grains_center_of_mass_position": 0.39624848894875386, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009437817031490022, "throat_radius": 0.011261812535312289, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2570493416372102}], "aerodynamic_surfaces": [{"length": 0.5578280020514657, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1358079899441633}, {"n": 4, "root_chord": 0.11978169302569101, "tip_chord": 0.059834709033928284, "span": 0.10989391446480877, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515762985271475}, {"top_radius": 0.0623748408743533, "bottom_radius": 0.04465675872349746, "length": 0.057663275114062836, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000034939265776, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185645240673255, "upper_button_position": 0.08143896985925203}], "rail_length": 5, "inclination": 84.30350106447472, "heading": 55.479892195901016} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349174118211577, "mass": 14.64014038357896, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312764982410756, "I_33_without_motor": 0.05663425254155782, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.903867542886603, "trigger": 800, "sampling_rate": 105, "lag": 1.5188029850174893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0145325499610023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.455256066495185, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6604.813727817142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348987363206193, "grain_number": 5, "grain_density": 1836.0769025194024, "grain_outer_radius": 0.03299967633551503, "grain_initial_inner_radius": 0.015377457594771677, "grain_initial_height": 0.1184467042748153, "grain_separation": 0.004328064630149635, "grains_center_of_mass_position": 0.39557267386936773, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001370308477721853, "throat_radius": 0.011139234416220004, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541598126101858}], "aerodynamic_surfaces": [{"length": 0.5567540526538425, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133565417282897}, {"n": 4, "root_chord": 0.11995627216354812, "tip_chord": 0.05996931580132147, "span": 0.10987571558459916, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488773821685877}, {"top_radius": 0.06277058567601473, "bottom_radius": 0.042778815126809776, "length": 0.0593594686920005, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997591682017977, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178695791495473, "upper_button_position": 0.08188958905225041}], "rail_length": 5, "inclination": 84.82392453078897, "heading": 57.09183376533322} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349350484377414, "mass": 15.723621947164432, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325884622380136, "I_33_without_motor": 0.02079271664093472, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.982216709143177, "trigger": 800, "sampling_rate": 105, "lag": 1.6819467207680363, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0242507929131677, "trigger": "apogee", "sampling_rate": 105, "lag": 1.385570998716254, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6884.568458028876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271756526158588, "grain_number": 5, "grain_density": 1789.433277659547, "grain_outer_radius": 0.03325405161998109, "grain_initial_inner_radius": 0.015053425503354334, "grain_initial_height": 0.11948531710762751, "grain_separation": 0.0065173694605077034, "grains_center_of_mass_position": 0.39762389458096115, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013215938085711228, "throat_radius": 0.011075072220533699, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553978727264368}], "aerodynamic_surfaces": [{"length": 0.5607302831847792, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351383393371268}, {"n": 4, "root_chord": 0.11952799892947699, "tip_chord": 0.05949509564540629, "span": 0.11064123169916469, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0512863414567235}, {"top_radius": 0.06357808870884671, "bottom_radius": 0.04410498972781525, "length": 0.05865149396477653, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6977363548024035, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180239257031611, "upper_button_position": 0.07971242909924237}], "rail_length": 5, "inclination": 83.88697224863424, "heading": 48.606821110315764} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350244731018086, "mass": 14.705502987685783, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336990402198163, "I_33_without_motor": 0.03804480105733661, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911518193978749, "trigger": 800, "sampling_rate": 105, "lag": 1.4613379371673596, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8723629452049396, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6080300918304404, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5235.184549887588, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034041172155213725, "grain_number": 5, "grain_density": 1786.0566908455328, "grain_outer_radius": 0.03346340050678174, "grain_initial_inner_radius": 0.014848351952806387, "grain_initial_height": 0.11925921799008966, "grain_separation": 0.004799962601403472, "grains_center_of_mass_position": 0.39544917622969306, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006456258450549053, "throat_radius": 0.011189768626740227, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255256469144372}], "aerodynamic_surfaces": [{"length": 0.5564792238752267, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333392380270086}, {"n": 4, "root_chord": 0.11969171447006487, "tip_chord": 0.06008554344254644, "span": 0.10964280426803173, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05004973052447}, {"top_radius": 0.06359949565107005, "bottom_radius": 0.043534560571763546, "length": 0.05939831104290818, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007681838880335, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178680345614014, "upper_button_position": 0.08290014932663214}], "rail_length": 5, "inclination": 84.13056379673779, "heading": 54.66959364839122} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349724314830382, "mass": 15.418686712464234, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315497137375325, "I_33_without_motor": 0.04277559984441729, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.142521360632555, "trigger": 800, "sampling_rate": 105, "lag": 1.4043032334975452, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0987414035751393, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6702264383603302, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7510.312132930943, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263387049822802, "grain_number": 5, "grain_density": 1774.5448749938166, "grain_outer_radius": 0.03304792740277957, "grain_initial_inner_radius": 0.01529085467418283, "grain_initial_height": 0.11951846443361015, "grain_separation": 0.004153490770107161, "grains_center_of_mass_position": 0.3975584085914306, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009348913918655516, "throat_radius": 0.01075772897753441, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554176935897492}], "aerodynamic_surfaces": [{"length": 0.5599632409059542, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341871543436302}, {"n": 4, "root_chord": 0.11992700228504978, "tip_chord": 0.05984855072090616, "span": 0.11013171165421567, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050001274264357}, {"top_radius": 0.062098595867252575, "bottom_radius": 0.042688804591061495, "length": 0.06029406758063419, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002094980998916, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618668371081138, "upper_button_position": 0.0815411270187536}], "rail_length": 5, "inclination": 85.17995290417848, "heading": 48.488226524052266} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350234007233821, "mass": 15.47221421642735, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322501282522405, "I_33_without_motor": 0.03960016581886199, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.914067280529821, "trigger": 800, "sampling_rate": 105, "lag": 1.497632190084036, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9551415682933729, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2855464991206547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6729.495376193264, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308810724789914, "grain_number": 5, "grain_density": 1793.7844140369666, "grain_outer_radius": 0.03344776897917896, "grain_initial_inner_radius": 0.01552570470275016, "grain_initial_height": 0.12040818705888749, "grain_separation": 0.004459717137734782, "grains_center_of_mass_position": 0.39582425135563404, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013510923270674477, "throat_radius": 0.011311312590942976, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562824914973487}], "aerodynamic_surfaces": [{"length": 0.5584508655876581, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338594010420437}, {"n": 4, "root_chord": 0.1198612317647413, "tip_chord": 0.060436354353167326, "span": 0.11089154933486953, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499929504567418}, {"top_radius": 0.0640922780126903, "bottom_radius": 0.0424323861801836, "length": 0.05936358903818295, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001182819840689, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617234851175475, "upper_button_position": 0.08288343080859384}], "rail_length": 5, "inclination": 84.34725072668236, "heading": 51.2003261177499} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350811032349865, "mass": 15.4760306927862, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323516429689422, "I_33_without_motor": 0.039468692874073376, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913388101655498, "trigger": 800, "sampling_rate": 105, "lag": 1.482015450209436, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8663631720202598, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6472606678401687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8128.675529846263, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333036912512413, "grain_number": 5, "grain_density": 1851.4340902380825, "grain_outer_radius": 0.03316608795021878, "grain_initial_inner_radius": 0.015175091339158458, "grain_initial_height": 0.11915226111576765, "grain_separation": 0.003073686692309032, "grains_center_of_mass_position": 0.39767782318893674, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000602104609367832, "throat_radius": 0.012028184221192886, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561792193541346}], "aerodynamic_surfaces": [{"length": 0.5573196877588416, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352277981298788}, {"n": 4, "root_chord": 0.11970449543244535, "tip_chord": 0.060145006128763966, "span": 0.11054430497456923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048513601515096}, {"top_radius": 0.06463029240622206, "bottom_radius": 0.042288599622551146, "length": 0.05962327850594417, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988105548708694, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181301501664362, "upper_button_position": 0.08068040470443316}], "rail_length": 5, "inclination": 83.27924519942732, "heading": 54.05072046925732} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06348971928484005, "mass": 15.354723607214574, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326400002778917, "I_33_without_motor": 0.03724891305675373, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983453528026953, "trigger": 800, "sampling_rate": 105, "lag": 1.5807039418979496, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.039340133008518, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3167987897300653, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6094.929976209383, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033026723028661685, "grain_number": 5, "grain_density": 1833.5923353177, "grain_outer_radius": 0.03267998309828716, "grain_initial_inner_radius": 0.015645437628844103, "grain_initial_height": 0.11895462861978705, "grain_separation": 0.003916902347278414, "grains_center_of_mass_position": 0.3971105527626256, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008619137878133399, "throat_radius": 0.01057543369518194, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558442528224496}], "aerodynamic_surfaces": [{"length": 0.557579929159698, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337723347514739}, {"n": 4, "root_chord": 0.11996416154622368, "tip_chord": 0.060173847934357046, "span": 0.10999996656476858, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491168439695762}, {"top_radius": 0.06315307581932536, "bottom_radius": 0.044369791051731146, "length": 0.06041338800657722, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005888420291901, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202927693214292, "upper_button_position": 0.08029607270776096}], "rail_length": 5, "inclination": 86.30011927322695, "heading": 53.19373820403035} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350087154211127, "mass": 15.358674332522948, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330196942564027, "I_33_without_motor": 0.019071254691685753, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.078911548167541, "trigger": 800, "sampling_rate": 105, "lag": 1.4212628655689843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8788914916196561, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1973541068213005, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7360.151723514422, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03378291497524439, "grain_number": 5, "grain_density": 1688.7712751910249, "grain_outer_radius": 0.03227381709253332, "grain_initial_inner_radius": 0.01572377377223372, "grain_initial_height": 0.12039262965961979, "grain_separation": 0.004425036291018674, "grains_center_of_mass_position": 0.3969811906558581, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006993639206432747, "throat_radius": 0.010792826523370144, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561228419525026}], "aerodynamic_surfaces": [{"length": 0.5585649826299302, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335792000321119}, {"n": 4, "root_chord": 0.12012288751510149, "tip_chord": 0.05996133865356137, "span": 0.11096154008402796, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508452260463028}, {"top_radius": 0.06413760940409172, "bottom_radius": 0.04278353827727689, "length": 0.060902259554455905, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003425918008737, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165872849715451, "upper_button_position": 0.08375530682932852}], "rail_length": 5, "inclination": 85.20530715181705, "heading": 50.668730141809895} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350770051156322, "mass": 15.63489750923073, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312559663876291, "I_33_without_motor": 0.027111591083579245, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.858759735195102, "trigger": 800, "sampling_rate": 105, "lag": 1.5362984962613193, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9823817592234756, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4659774140600645, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8448.58593379768, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249748814274752, "grain_number": 5, "grain_density": 1764.8230371337963, "grain_outer_radius": 0.03333363447549524, "grain_initial_inner_radius": 0.01488366909452622, "grain_initial_height": 0.1211867360782152, "grain_separation": 0.004482842499869128, "grains_center_of_mass_position": 0.3969920326861679, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018537442106237592, "throat_radius": 0.011482454629742934, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553790770838014}], "aerodynamic_surfaces": [{"length": 0.5592609510236312, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334019143212732}, {"n": 4, "root_chord": 0.11940993969344152, "tip_chord": 0.059938030980603144, "span": 0.10924572506956032, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049920514654257}, {"top_radius": 0.06266807038494661, "bottom_radius": 0.04376973107076817, "length": 0.05828193195512912, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995462182338054, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171256925561832, "upper_button_position": 0.08242052567762215}], "rail_length": 5, "inclination": 85.0691145505915, "heading": 54.26698818733579} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350546188887615, "mass": 15.125666551616442, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317349704769793, "I_33_without_motor": 0.0133786245782859, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971020556332189, "trigger": 800, "sampling_rate": 105, "lag": 1.554737717964965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0417029272960037, "trigger": "apogee", "sampling_rate": 105, "lag": 2.0087221493276393, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8471.073756122167, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033518213413515, "grain_number": 5, "grain_density": 1818.3032731972264, "grain_outer_radius": 0.032874047582221136, "grain_initial_inner_radius": 0.014810175099094134, "grain_initial_height": 0.1194738351553228, "grain_separation": 0.004804412589363126, "grains_center_of_mass_position": 0.39697650817829006, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007018204918579598, "throat_radius": 0.010976194197416784, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25534436464649}], "aerodynamic_surfaces": [{"length": 0.557227988324782, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133280769041557}, {"n": 4, "root_chord": 0.12080887415523774, "tip_chord": 0.06095129289682157, "span": 0.11049748955675473, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487208421569558}, {"top_radius": 0.0647353707216888, "bottom_radius": 0.04410187185032783, "length": 0.05964735981298754, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007787706972558, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191476418299297, "upper_button_position": 0.08163112886732615}], "rail_length": 5, "inclination": 83.55589977674664, "heading": 48.60252738047754} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06351104554296531, "mass": 15.182470572902186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325224985034823, "I_33_without_motor": 0.040816802099292476, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.73943911467462, "trigger": 800, "sampling_rate": 105, "lag": 1.5390933567877538, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9490960929732905, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6018345916666599, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7523.724703197756, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268271737790642, "grain_number": 5, "grain_density": 1809.8377780953522, "grain_outer_radius": 0.03279239894444021, "grain_initial_inner_radius": 0.014554170296335798, "grain_initial_height": 0.11884635835608867, "grain_separation": 0.0045572635091048206, "grains_center_of_mass_position": 0.3983906716043488, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006347584220114732, "throat_radius": 0.011190813695327205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555421164712364}], "aerodynamic_surfaces": [{"length": 0.5575305889576145, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344210687069403}, {"n": 4, "root_chord": 0.12026781004916733, "tip_chord": 0.05985422568104371, "span": 0.11028147393288464, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513315867795}, {"top_radius": 0.06500768501828508, "bottom_radius": 0.04469223315814243, "length": 0.058894883578190414, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989263534479435, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6150349816061857, "upper_button_position": 0.08389137184175777}], "rail_length": 5, "inclination": 86.50814345796474, "heading": 52.65406359492323} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06348854987524111, "mass": 14.24193697699642, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33271253744683, "I_33_without_motor": 0.01317964348401848, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.13328792580955, "trigger": 800, "sampling_rate": 105, "lag": 1.4319857832374907, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.031280555880892, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5083239730788145, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4386.768192042035, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252079553604693, "grain_number": 5, "grain_density": 1865.8272962095498, "grain_outer_radius": 0.033334922956407186, "grain_initial_inner_radius": 0.015033295176073505, "grain_initial_height": 0.12073023880813316, "grain_separation": 0.005937360362519275, "grains_center_of_mass_position": 0.3960110899362081, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004361717052449689, "throat_radius": 0.01079742092207303, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25462593029086}], "aerodynamic_surfaces": [{"length": 0.5567445603887589, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333650554608643}, {"n": 4, "root_chord": 0.12006622582825723, "tip_chord": 0.06123172994439784, "span": 0.11025782985238461, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506063531849}, {"top_radius": 0.06325905135007508, "bottom_radius": 0.04317057465266469, "length": 0.060341596076914424, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000934254069231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179757368491055, "upper_button_position": 0.08211768855781765}], "rail_length": 5, "inclination": 85.51435347827137, "heading": 50.06179074153878} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0634911467322659, "mass": 15.751172049430231, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3200100071488094, "I_33_without_motor": 0.041363091983347186, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93989823179242, "trigger": 800, "sampling_rate": 105, "lag": 1.5448742674825575, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9130784752822957, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3340061615017698, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7245.7501760157065, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288444069396469, "grain_number": 5, "grain_density": 1830.8280471511416, "grain_outer_radius": 0.03348355534935683, "grain_initial_inner_radius": 0.014987183379244725, "grain_initial_height": 0.11802980417211922, "grain_separation": 0.0037152005978157, "grains_center_of_mass_position": 0.39555556386249274, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007630104435663273, "throat_radius": 0.010641819165371796, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537460489167767}], "aerodynamic_surfaces": [{"length": 0.558840169281861, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357489175879043}, {"n": 4, "root_chord": 0.11984844253342718, "tip_chord": 0.06026684272303295, "span": 0.10986782696933842, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049185491235989}, {"top_radius": 0.06358163485525144, "bottom_radius": 0.043432787161989346, "length": 0.0587404094846286, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016258783983252, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184961816868717, "upper_button_position": 0.08312969671145354}], "rail_length": 5, "inclination": 84.698173844458, "heading": 54.44016436154273} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635123893580924, "mass": 15.53944348950175, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327156580779696, "I_33_without_motor": 0.031246187201139437, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.078563919190412, "trigger": 800, "sampling_rate": 105, "lag": 1.4378604500503758, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9431085811937016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.676966472869112, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6661.356112581088, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295480352534396, "grain_number": 5, "grain_density": 1745.2325619859344, "grain_outer_radius": 0.03309710745337967, "grain_initial_inner_radius": 0.014949042334654373, "grain_initial_height": 0.12147461939162704, "grain_separation": 0.005167301342004907, "grains_center_of_mass_position": 0.3965628261756536, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024747279159237237, "throat_radius": 0.010442359925660165, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558164195411925}], "aerodynamic_surfaces": [{"length": 0.5609313246405986, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335984907265417}, {"n": 4, "root_chord": 0.12002058363148704, "tip_chord": 0.060073784427709546, "span": 0.11024876400650138, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0475356027294611}, {"top_radius": 0.0627926134111912, "bottom_radius": 0.04301890681799316, "length": 0.05878777391883453, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008822171142303, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160879436780335, "upper_button_position": 0.08479427343619672}], "rail_length": 5, "inclination": 84.50737277065306, "heading": 54.92991054810808} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349850137060067, "mass": 14.997960648752896, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328898635164285, "I_33_without_motor": 0.03667070342692684, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.012407870180464, "trigger": 800, "sampling_rate": 105, "lag": 1.548837362467367, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9843962681652418, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5467879092677617, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5191.579214245643, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263419491628402, "grain_number": 5, "grain_density": 1822.5451732181946, "grain_outer_radius": 0.03274163691574777, "grain_initial_inner_radius": 0.015144595102169348, "grain_initial_height": 0.11869103075411852, "grain_separation": 0.004322702249434978, "grains_center_of_mass_position": 0.3966226369766585, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004427068128890421, "throat_radius": 0.010360479101918209, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562060990266921}], "aerodynamic_surfaces": [{"length": 0.5572440688077949, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350637075638745}, {"n": 4, "root_chord": 0.1198742436890926, "tip_chord": 0.059094673628740726, "span": 0.10989734202840236, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494419518641267}, {"top_radius": 0.0618710713824633, "bottom_radius": 0.043681832095597825, "length": 0.060165619560054596, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009766612029882, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175866356092762, "upper_button_position": 0.083390025593712}], "rail_length": 5, "inclination": 85.48271443231734, "heading": 54.13586854570537} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349600301313785, "mass": 15.389134729580315, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3249566944444595, "I_33_without_motor": 0.05490444472487371, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.818913156246248, "trigger": 800, "sampling_rate": 105, "lag": 1.4622011801957135, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.986793856516204, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5991065735813084, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5837.491205092488, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03369834154411105, "grain_number": 5, "grain_density": 1799.205555963707, "grain_outer_radius": 0.03340885326500611, "grain_initial_inner_radius": 0.014827628181452016, "grain_initial_height": 0.12027694871835631, "grain_separation": 0.0037461819092688125, "grains_center_of_mass_position": 0.3982917337257236, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007641413572080838, "throat_radius": 0.01126659572310463, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557433969639689}], "aerodynamic_surfaces": [{"length": 0.5577878562988428, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134770936215184}, {"n": 4, "root_chord": 0.11979683635533336, "tip_chord": 0.06004681247901814, "span": 0.11053921283053145, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516979861912636}, {"top_radius": 0.06371173657253819, "bottom_radius": 0.0428557036492793, "length": 0.05918816824989603, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988000251542531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184820993157116, "upper_button_position": 0.08031792583854147}], "rail_length": 5, "inclination": 84.07377520008552, "heading": 55.439009295604485} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349630807350283, "mass": 15.685935159420099, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33302187653083, "I_33_without_motor": 0.035392883130882964, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.882319744894845, "trigger": 800, "sampling_rate": 105, "lag": 1.574627090794807, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0784680947926366, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6168312543336105, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8308.818576179674, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033052783205827836, "grain_number": 5, "grain_density": 1909.8899833585626, "grain_outer_radius": 0.03310686735242907, "grain_initial_inner_radius": 0.015132158898190457, "grain_initial_height": 0.119814500622311, "grain_separation": 0.004688845524638316, "grains_center_of_mass_position": 0.39685756402393835, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00048500380232417527, "throat_radius": 0.011374314110856454, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564532752562592}], "aerodynamic_surfaces": [{"length": 0.5579703295347501, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344234759572465}, {"n": 4, "root_chord": 0.11987424314702948, "tip_chord": 0.0599970668342935, "span": 0.11064029967018506, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497783323572822}, {"top_radius": 0.06493564356817565, "bottom_radius": 0.04338624827609633, "length": 0.05963817813109301, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985421757422781, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165818632444336, "upper_button_position": 0.08196031249784441}], "rail_length": 5, "inclination": 87.97919836136192, "heading": 51.62183927148612} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350875962360827, "mass": 15.692067771747253, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324897158236283, "I_33_without_motor": 0.038787975661571446, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10274368311906, "trigger": 800, "sampling_rate": 105, "lag": 1.4486949757051322, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.116137963415956, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3103759047549715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5293.7008060754815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304832180436958, "grain_number": 5, "grain_density": 1711.7493584281826, "grain_outer_radius": 0.033640061469846654, "grain_initial_inner_radius": 0.014923842834384601, "grain_initial_height": 0.11991654718803628, "grain_separation": 0.004797898426525291, "grains_center_of_mass_position": 0.3965180032856115, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001389596734711267, "throat_radius": 0.01128001882629764, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547512019859672}], "aerodynamic_surfaces": [{"length": 0.5591464201011584, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335082015106086}, {"n": 4, "root_chord": 0.11976302260787786, "tip_chord": 0.05946583902829252, "span": 0.11058960803559063, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498884235963046}, {"top_radius": 0.06309112643532082, "bottom_radius": 0.042962769759381056, "length": 0.061834781084951225, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010019997269202, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163688763983085, "upper_button_position": 0.08463312332861173}], "rail_length": 5, "inclination": 83.46836098506253, "heading": 54.269221148490075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349497323401689, "mass": 14.439769237745475, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308553291729496, "I_33_without_motor": 0.041291643950644094, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986887169410505, "trigger": 800, "sampling_rate": 105, "lag": 1.4469783869206934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8339413166967837, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2038982248916217, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6881.28291154314, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033197185545597446, "grain_number": 5, "grain_density": 1856.4698307550912, "grain_outer_radius": 0.032557129550607404, "grain_initial_inner_radius": 0.015679234656416217, "grain_initial_height": 0.1189292073708636, "grain_separation": 0.005497614939116373, "grains_center_of_mass_position": 0.39644583533994854, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008088488448910067, "throat_radius": 0.01141716102049241, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548331876991083}], "aerodynamic_surfaces": [{"length": 0.5577919746393412, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349897173412042}, {"n": 4, "root_chord": 0.12024929500981393, "tip_chord": 0.06011947149185047, "span": 0.1095735872193891, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488627956737333}, {"top_radius": 0.06424725279000199, "bottom_radius": 0.0440203737921011, "length": 0.05877261366807631, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994193240149681, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174409524515609, "upper_button_position": 0.08197837156340715}], "rail_length": 5, "inclination": 83.75602456311869, "heading": 53.830481940978586} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349507896792057, "mass": 15.495896212939112, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322284308493831, "I_33_without_motor": 0.04796290830020687, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.048278394004074, "trigger": 800, "sampling_rate": 105, "lag": 1.5043559278458727, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0434365628216153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6337527833553462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6400.451148536898, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033284257313515246, "grain_number": 5, "grain_density": 1812.595058776051, "grain_outer_radius": 0.0327202732022719, "grain_initial_inner_radius": 0.01534741065488536, "grain_initial_height": 0.1209324504044812, "grain_separation": 0.0054534068663227644, "grains_center_of_mass_position": 0.3975575252839558, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013719707368465731, "throat_radius": 0.011245109522942, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540876523126478}], "aerodynamic_surfaces": [{"length": 0.558738113742724, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332323784389537}, {"n": 4, "root_chord": 0.11925485528760284, "tip_chord": 0.059471648499017246, "span": 0.10970820504823278, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0478440194178882}, {"top_radius": 0.06454507601423708, "bottom_radius": 0.045216439561630496, "length": 0.0597113723937048, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996598034423201, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170307254176052, "upper_button_position": 0.08262907802471497}], "rail_length": 5, "inclination": 84.66007241350964, "heading": 50.986793320067946} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349198536828447, "mass": 15.303617342873466, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3240832170325865, "I_33_without_motor": 0.04195389435882031, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.173910639060006, "trigger": 800, "sampling_rate": 105, "lag": 1.5984248686538796, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.24068751545938, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9718690994603183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6837.479122589809, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296343413287848, "grain_number": 5, "grain_density": 1898.2739246827591, "grain_outer_radius": 0.03293869941371809, "grain_initial_inner_radius": 0.015172339256880642, "grain_initial_height": 0.11805644124714489, "grain_separation": 0.005374527688505693, "grains_center_of_mass_position": 0.3976488061863011, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.278245485098872e-05, "throat_radius": 0.011577529513327404, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547293331202025}], "aerodynamic_surfaces": [{"length": 0.5570245795371085, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337120270157626}, {"n": 4, "root_chord": 0.11962227001299865, "tip_chord": 0.05973644366268506, "span": 0.1102395921705849, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498650714369002}, {"top_radius": 0.06333568862639986, "bottom_radius": 0.04245374689540764, "length": 0.05885861691118503, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000872612423871, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182070299684409, "upper_button_position": 0.08188023127394617}], "rail_length": 5, "inclination": 86.78601158702115, "heading": 51.92321248138281} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350375783951767, "mass": 15.394136773605156, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316169011338232, "I_33_without_motor": 0.021368571538373973, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98211273155081, "trigger": 800, "sampling_rate": 105, "lag": 1.4039213107494315, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0376762647192346, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4329718804437022, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7110.396854565508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276664036504306, "grain_number": 5, "grain_density": 1817.7838485500781, "grain_outer_radius": 0.03342038756938807, "grain_initial_inner_radius": 0.014533477445506747, "grain_initial_height": 0.11902498516212065, "grain_separation": 0.004561930027423998, "grains_center_of_mass_position": 0.39676295649600585, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009713106523206621, "throat_radius": 0.010956622356473229, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544096202967863}], "aerodynamic_surfaces": [{"length": 0.5585478183257279, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1358098187846362}, {"n": 4, "root_chord": 0.12050420952200787, "tip_chord": 0.05973274589964288, "span": 0.10998679052926617, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498712313568646}, {"top_radius": 0.06410946297272534, "bottom_radius": 0.045939405343366234, "length": 0.05979671426411343, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986917151622549, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166613554274976, "upper_button_position": 0.08203035973475736}], "rail_length": 5, "inclination": 83.63061523971616, "heading": 50.664770577261585} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349915581432553, "mass": 15.48563957303023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322686617331327, "I_33_without_motor": 0.03513767493759711, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.130741256687797, "trigger": 800, "sampling_rate": 105, "lag": 1.513232408038436, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9050256114538437, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6979088666953455, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6366.793324462122, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033896823490451734, "grain_number": 5, "grain_density": 1785.797954556346, "grain_outer_radius": 0.03324621653186296, "grain_initial_inner_radius": 0.01532401056048189, "grain_initial_height": 0.11987860888818556, "grain_separation": 0.004356354157901937, "grains_center_of_mass_position": 0.397136564956269, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005373594155065019, "throat_radius": 0.011723821685372756, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544873768951668}], "aerodynamic_surfaces": [{"length": 0.5567768642941324, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336570677203976}, {"n": 4, "root_chord": 0.11977693320543527, "tip_chord": 0.05958913149725346, "span": 0.10948290084962076, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048534554814947}, {"top_radius": 0.06359868584204056, "bottom_radius": 0.04411269752011565, "length": 0.06025034014850573, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002924151704241, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618328297464372, "upper_button_position": 0.08196411770605205}], "rail_length": 5, "inclination": 84.60431895696381, "heading": 54.42835225541384} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349398487378742, "mass": 14.42708213663822, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316388602245863, "I_33_without_motor": 0.04263292650685012, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.706490882388726, "trigger": 800, "sampling_rate": 105, "lag": 1.658669822850117, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.871409982642557, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8392035161828115, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6177.295965658586, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032033447094621366, "grain_number": 5, "grain_density": 1792.073821754074, "grain_outer_radius": 0.03328688949338708, "grain_initial_inner_radius": 0.015746061735208466, "grain_initial_height": 0.11823442359461166, "grain_separation": 0.006425526562363492, "grains_center_of_mass_position": 0.3965720062164375, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0020784592430898633, "throat_radius": 0.011542832061913337, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541447653757452}], "aerodynamic_surfaces": [{"length": 0.5594615325414357, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351302742382563}, {"n": 4, "root_chord": 0.1198203314289907, "tip_chord": 0.06037610601948815, "span": 0.10992651351921448, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04824478575265}, {"top_radius": 0.0636729747952994, "bottom_radius": 0.041245056523785795, "length": 0.060098523997173324, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701258280128911, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170100706182045, "upper_button_position": 0.08424820951070655}], "rail_length": 5, "inclination": 84.57593806245366, "heading": 52.75572884175983} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.0634939508510192, "mass": 15.17269281242824, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303270718201608, "I_33_without_motor": 0.023113998097397517, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.012349224681122, "trigger": 800, "sampling_rate": 105, "lag": 1.4453126907549487, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9032390272422354, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5677387146050081, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6093.322536742014, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345415367190319, "grain_number": 5, "grain_density": 1841.1795251521062, "grain_outer_radius": 0.03294121650539466, "grain_initial_inner_radius": 0.014929891991882825, "grain_initial_height": 0.1179533927321555, "grain_separation": 0.005127985781581913, "grains_center_of_mass_position": 0.39606262815241927, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00027631269133529464, "throat_radius": 0.011160308666714481, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550869864076668}], "aerodynamic_surfaces": [{"length": 0.5574701093101009, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135120198399009}, {"n": 4, "root_chord": 0.12072279225810925, "tip_chord": 0.060011626872472135, "span": 0.10985987941527806, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505007285664574}, {"top_radius": 0.06268705684117977, "bottom_radius": 0.04245807152570618, "length": 0.0609766099806465, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994498947712579, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168927844112718, "upper_button_position": 0.08255711035998603}], "rail_length": 5, "inclination": 85.32513419112186, "heading": 52.7422720277829} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349432321256503, "mass": 15.016371678141265, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3081624687362545, "I_33_without_motor": 0.033946448308746914, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929559030430717, "trigger": 800, "sampling_rate": 105, "lag": 1.6730610034007278, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8735433355397622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1607025495883652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6614.038925923116, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338767030089956, "grain_number": 5, "grain_density": 1756.3515001643402, "grain_outer_radius": 0.032827880628174266, "grain_initial_inner_radius": 0.015339500418298332, "grain_initial_height": 0.12107730050355885, "grain_separation": 0.003752293744019657, "grains_center_of_mass_position": 0.3969952050547179, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007061450667747679, "throat_radius": 0.010641571304787423, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533570120825417}], "aerodynamic_surfaces": [{"length": 0.5599728004503408, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349034671188152}, {"n": 4, "root_chord": 0.12028186593000452, "tip_chord": 0.06060017230336508, "span": 0.10868804066276283, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499161965114767}, {"top_radius": 0.06254277640761034, "bottom_radius": 0.04337495539534292, "length": 0.06266201721586596, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004683856947701, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182622258896169, "upper_button_position": 0.08220615980515322}], "rail_length": 5, "inclination": 84.85745926402701, "heading": 50.754737607857166} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350585585876015, "mass": 15.357578918977188, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307417188393179, "I_33_without_motor": 0.04675082185150046, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.832803738317153, "trigger": 800, "sampling_rate": 105, "lag": 1.6869568559643162, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9718384286641735, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2658963034363768, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5445.421416521826, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307596256288967, "grain_number": 5, "grain_density": 1741.9938477148169, "grain_outer_radius": 0.03275495302874719, "grain_initial_inner_radius": 0.014710406091713488, "grain_initial_height": 0.11904957996444086, "grain_separation": 0.006358039028741366, "grains_center_of_mass_position": 0.39615790165918735, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017410212131732088, "throat_radius": 0.010472672379943572, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560620254963946}], "aerodynamic_surfaces": [{"length": 0.5583869961968964, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133082782486237}, {"n": 4, "root_chord": 0.11992087397106199, "tip_chord": 0.0600378916463661, "span": 0.10991444982747754, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049987080157917}, {"top_radius": 0.0644704700828347, "bottom_radius": 0.04448080268476124, "length": 0.06087435693160371, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989913180558361, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176102028616907, "upper_button_position": 0.08138111519414548}], "rail_length": 5, "inclination": 83.68537823287836, "heading": 55.02321569741402} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350496817681066, "mass": 14.744171183026364, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334216785722321, "I_33_without_motor": 0.040253963023971134, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99284028661731, "trigger": 800, "sampling_rate": 105, "lag": 1.6305635138766805, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9908480412739846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.550487895708995, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5896.638590965102, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03240248581145963, "grain_number": 5, "grain_density": 1887.1850497129137, "grain_outer_radius": 0.033105063451047745, "grain_initial_inner_radius": 0.015180004586399433, "grain_initial_height": 0.12019073901478207, "grain_separation": 0.005739242957925057, "grains_center_of_mass_position": 0.3974514419208463, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00032437012670743495, "throat_radius": 0.010993154651170772, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551440356707237}], "aerodynamic_surfaces": [{"length": 0.5566897080874513, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338674073402832}, {"n": 4, "root_chord": 0.11961769388010668, "tip_chord": 0.059666458107043976, "span": 0.10990732919155163, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504437284248318}, {"top_radius": 0.06397504743330314, "bottom_radius": 0.04262701315973191, "length": 0.060803132607477904, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983095031995906, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199653916065829, "upper_button_position": 0.07834411159300769}], "rail_length": 5, "inclination": 84.04021124188644, "heading": 52.99528894077424} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349180940745529, "mass": 14.79659226769349, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325548559640044, "I_33_without_motor": 0.03168872741345656, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.219387281748334, "trigger": 800, "sampling_rate": 105, "lag": 1.3571329112159536, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.972995998459806, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2809046728596152, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6480.137552775794, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281125636249697, "grain_number": 5, "grain_density": 1763.4703110751175, "grain_outer_radius": 0.03325548925440575, "grain_initial_inner_radius": 0.015623685712864925, "grain_initial_height": 0.12069560232701543, "grain_separation": 0.004985758578997547, "grains_center_of_mass_position": 0.39720730221139006, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001886078167304539, "throat_radius": 0.011179749361662718, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561243251936227}], "aerodynamic_surfaces": [{"length": 0.5572834237294895, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134438693613586}, {"n": 4, "root_chord": 0.12039224786630567, "tip_chord": 0.05976103005693293, "span": 0.10960218021622273, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502903867706765}, {"top_radius": 0.0636352204948447, "bottom_radius": 0.04301538687372144, "length": 0.06071542231313799, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018424249795362, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619309161198176, "upper_button_position": 0.08253326378136017}], "rail_length": 5, "inclination": 84.00231951403032, "heading": 54.8630814292233} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349842230205585, "mass": 15.007995280863726, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331631536376104, "I_33_without_motor": 0.03028633003413306, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.010546767237999, "trigger": 800, "sampling_rate": 105, "lag": 1.2779800858011492, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0240493920599334, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6068071922717904, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4674.107301131788, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033102456735509725, "grain_number": 5, "grain_density": 1716.2887541640305, "grain_outer_radius": 0.0331007960245727, "grain_initial_inner_radius": 0.015334510526175932, "grain_initial_height": 0.11949664872895155, "grain_separation": 0.003858456875641122, "grains_center_of_mass_position": 0.39694188982268486, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002230148513336828, "throat_radius": 0.010902598451207664, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574701678323887}], "aerodynamic_surfaces": [{"length": 0.5578432465634803, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338189617220118}, {"n": 4, "root_chord": 0.12038232656923933, "tip_chord": 0.060364405161261375, "span": 0.11003071512546851, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507475115775424}, {"top_radius": 0.06331728099161048, "bottom_radius": 0.04463870408993009, "length": 0.059503521378207094, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004954357134223, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187879527406667, "upper_button_position": 0.08170748297275565}], "rail_length": 5, "inclination": 84.64963806581889, "heading": 52.668510911921246} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350101161936732, "mass": 15.15739639374442, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311707755489963, "I_33_without_motor": 0.042349462794724124, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071395679887905, "trigger": 800, "sampling_rate": 105, "lag": 1.565912957785951, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9583564700544878, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4775661852324355, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5643.752409156785, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304725460673849, "grain_number": 5, "grain_density": 1842.730890879521, "grain_outer_radius": 0.03373978083612409, "grain_initial_inner_radius": 0.014976396259558955, "grain_initial_height": 0.12011230061650305, "grain_separation": 0.005120621991617067, "grains_center_of_mass_position": 0.39758718580452296, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010745692264860075, "throat_radius": 0.011452828898735385, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254782167836285}], "aerodynamic_surfaces": [{"length": 0.5570092497758781, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354831822998324}, {"n": 4, "root_chord": 0.11926486644720904, "tip_chord": 0.060365895697292206, "span": 0.11046501405340992, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487976041465148}, {"top_radius": 0.06367572384755048, "bottom_radius": 0.04346448126533229, "length": 0.05827740954173332, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992619316391435, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192504369969709, "upper_button_position": 0.08001149464217261}], "rail_length": 5, "inclination": 83.58935884672995, "heading": 52.63419429845957} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349205482253059, "mass": 15.311845403563694, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325917637534862, "I_33_without_motor": 0.027664460545076305, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.965937839777611, "trigger": 800, "sampling_rate": 105, "lag": 1.1978625978366544, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1107042983296636, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6993288559034574, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6274.367896863118, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033282154102854636, "grain_number": 5, "grain_density": 1816.1127945979417, "grain_outer_radius": 0.03316980546771267, "grain_initial_inner_radius": 0.014966317358822475, "grain_initial_height": 0.11896564490454886, "grain_separation": 0.004683316117860946, "grains_center_of_mass_position": 0.3969700070240555, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008052813149320652, "throat_radius": 0.010781248402647567, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253306995026414}], "aerodynamic_surfaces": [{"length": 0.5583036861522462, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350382886789512}, {"n": 4, "root_chord": 0.1202918169376074, "tip_chord": 0.0604449829033214, "span": 0.11046205738112169, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499931755788199}, {"top_radius": 0.0629403077612936, "bottom_radius": 0.041021152391016294, "length": 0.06250717850008491, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998971358823838, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175311620081427, "upper_button_position": 0.08236597387424105}], "rail_length": 5, "inclination": 86.82877141246485, "heading": 53.708259840167976} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349868486206613, "mass": 14.839546849283016, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308586121201744, "I_33_without_motor": 0.04098882860492227, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.934159540076777, "trigger": 800, "sampling_rate": 105, "lag": 1.481376788290357, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9423477226236278, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3421743784267381, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6536.6749402031855, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033546761472463243, "grain_number": 5, "grain_density": 1797.2212620510975, "grain_outer_radius": 0.03308217976085634, "grain_initial_inner_radius": 0.01456553105440868, "grain_initial_height": 0.12108372371642862, "grain_separation": 0.004039561166895736, "grains_center_of_mass_position": 0.39628513633744766, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008313711164891962, "throat_radius": 0.010492945882996563, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541037490252123}], "aerodynamic_surfaces": [{"length": 0.5592482324227623, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332681504051767}, {"n": 4, "root_chord": 0.11963905019806591, "tip_chord": 0.061161194534938575, "span": 0.11001138499471368, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495606295262547}, {"top_radius": 0.06458179228131616, "bottom_radius": 0.04485380773648246, "length": 0.05802191693333726, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994293258831821, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179255538212095, "upper_button_position": 0.08150377206197257}], "rail_length": 5, "inclination": 84.57445122070546, "heading": 50.6629339844415} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350264607943595, "mass": 15.12196144781764, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325554074097654, "I_33_without_motor": 0.04055631821502203, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96463999642534, "trigger": 800, "sampling_rate": 105, "lag": 1.6550287478328987, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9837648837478693, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5296344567315079, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8187.189013477737, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297296107088241, "grain_number": 5, "grain_density": 1819.9077359659188, "grain_outer_radius": 0.03301930145819908, "grain_initial_inner_radius": 0.015420997364838637, "grain_initial_height": 0.1196025611283164, "grain_separation": 0.0022120210154826536, "grains_center_of_mass_position": 0.39566861198876624, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003493221621440418, "throat_radius": 0.011424123791049111, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548051756471656}], "aerodynamic_surfaces": [{"length": 0.5591680083582776, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322476911599142}, {"n": 4, "root_chord": 0.11989278721476758, "tip_chord": 0.05928657147945246, "span": 0.11100869084337972, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488142817034105}, {"top_radius": 0.06375891623141791, "bottom_radius": 0.04297430746877303, "length": 0.05989475590110876, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006659194772042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165756663943748, "upper_button_position": 0.08409025308282947}], "rail_length": 5, "inclination": 86.75443103495992, "heading": 54.54216188800341} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350662615868446, "mass": 15.295728245469995, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325979574287153, "I_33_without_motor": 0.02696755426113514, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.086320733561703, "trigger": 800, "sampling_rate": 105, "lag": 1.3744730080723149, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0814162803023128, "trigger": "apogee", "sampling_rate": 105, "lag": 1.686722938749924, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7219.240110598332, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032663656551178956, "grain_number": 5, "grain_density": 1844.114588106829, "grain_outer_radius": 0.03313276967870983, "grain_initial_inner_radius": 0.014706653838455812, "grain_initial_height": 0.11923254096091047, "grain_separation": 0.003982310501749053, "grains_center_of_mass_position": 0.3963723246670095, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00118925583052224, "throat_radius": 0.011212692434992049, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544667224708652}], "aerodynamic_surfaces": [{"length": 0.5590346556371247, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132035350151431}, {"n": 4, "root_chord": 0.12000470285458605, "tip_chord": 0.059817779220247856, "span": 0.11052583612216736, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488724827120621}, {"top_radius": 0.06298947229872735, "bottom_radius": 0.04350664944924711, "length": 0.05648014849568718, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995312919788409, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169409442271433, "upper_button_position": 0.0825903477516976}], "rail_length": 5, "inclination": 84.98584708547212, "heading": 55.256119384273376} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349930025595495, "mass": 15.745335764129495, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322429843459944, "I_33_without_motor": 0.04068080293248972, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.879606688202912, "trigger": 800, "sampling_rate": 105, "lag": 1.5635638035533954, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0216789366889512, "trigger": "apogee", "sampling_rate": 105, "lag": 1.656801117136833, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5420.9158532286265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033310191042268344, "grain_number": 5, "grain_density": 1723.2997934134946, "grain_outer_radius": 0.032957490100156105, "grain_initial_inner_radius": 0.014720451124588457, "grain_initial_height": 0.12014425354174514, "grain_separation": 0.00618580685034813, "grains_center_of_mass_position": 0.396247173236689, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001237603898072341, "throat_radius": 0.010747778537963359, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567933309969026}], "aerodynamic_surfaces": [{"length": 0.5581608687668557, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331805237685144}, {"n": 4, "root_chord": 0.12011212594956833, "tip_chord": 0.06023552037186392, "span": 0.1099858211923616, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503413974337765}, {"top_radius": 0.06131831836028913, "bottom_radius": 0.044182171387960746, "length": 0.060403300021494896, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700762283510234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162991006990565, "upper_button_position": 0.08446318281117748}], "rail_length": 5, "inclination": 81.98169394170378, "heading": 52.16536246483892} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349224955994404, "mass": 15.048976695678073, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336482927030952, "I_33_without_motor": 0.052627421532092954, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039976456733719, "trigger": 800, "sampling_rate": 105, "lag": 1.488047103272551, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0474743875247114, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4029403554219289, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6672.126906606444, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262495140846551, "grain_number": 5, "grain_density": 1781.6281357147955, "grain_outer_radius": 0.03295436524915291, "grain_initial_inner_radius": 0.01553388148185808, "grain_initial_height": 0.12191840686456767, "grain_separation": 0.006431981261136546, "grains_center_of_mass_position": 0.3989348391659477, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00045754609965809235, "throat_radius": 0.010819301497534479, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543662256883947}], "aerodynamic_surfaces": [{"length": 0.5584866218189449, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132376790037265}, {"n": 4, "root_chord": 0.12034789054165783, "tip_chord": 0.05972111466435942, "span": 0.10972713704023378, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500560215267913}, {"top_radius": 0.06561415376542801, "bottom_radius": 0.043645220790768144, "length": 0.05958951485188901, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997133610047124, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167781326969356, "upper_button_position": 0.08293522830777678}], "rail_length": 5, "inclination": 84.04042301637574, "heading": 57.508269175016125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0634959776326248, "mass": 15.896721037079367, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328221285239953, "I_33_without_motor": 0.03335440306362914, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.056345455236197, "trigger": 800, "sampling_rate": 105, "lag": 1.6307874358804302, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9887069920566496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5168135332460146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6068.146547822189, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033415876574691104, "grain_number": 5, "grain_density": 1861.9315502062843, "grain_outer_radius": 0.03341656747103794, "grain_initial_inner_radius": 0.01475115912337184, "grain_initial_height": 0.11913959232514501, "grain_separation": 0.005459981969020785, "grains_center_of_mass_position": 0.3966956036954033, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007851296697542073, "throat_radius": 0.011457604902359579, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253530349810106}], "aerodynamic_surfaces": [{"length": 0.5585667032879739, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134558574995039}, {"n": 4, "root_chord": 0.11920255230208784, "tip_chord": 0.059903678634767754, "span": 0.10919083277790496, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.052413596518781}, {"top_radius": 0.06336200414002663, "bottom_radius": 0.04229862073754228, "length": 0.06014306688092846, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011071765897076, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192157070737373, "upper_button_position": 0.08189146951597026}], "rail_length": 5, "inclination": 84.66111264446023, "heading": 55.03356303872318} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350220706793949, "mass": 15.45954980514104, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33879620710433, "I_33_without_motor": 0.026493095004860395, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873319966872835, "trigger": 800, "sampling_rate": 105, "lag": 1.3997345173716904, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9489446778446837, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2782726916636347, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5285.797828088143, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244957904371062, "grain_number": 5, "grain_density": 1874.549465356365, "grain_outer_radius": 0.032932022498347605, "grain_initial_inner_radius": 0.01524703236368783, "grain_initial_height": 0.12103256354162849, "grain_separation": 0.006136448239173517, "grains_center_of_mass_position": 0.3968180871476016, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007127447701188001, "throat_radius": 0.010845827814169713, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550988963042768}], "aerodynamic_surfaces": [{"length": 0.5597554526009499, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335156106754332}, {"n": 4, "root_chord": 0.11947050670816477, "tip_chord": 0.059952257580457476, "span": 0.110020918080691, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511743301766614}, {"top_radius": 0.06465705038177942, "bottom_radius": 0.044972521447290054, "length": 0.06055454427911726, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996368717644267, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180011453641358, "upper_button_position": 0.08163572640029093}], "rail_length": 5, "inclination": 84.57721246723268, "heading": 53.49863149525037} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0635038437380659, "mass": 15.514661550358332, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314302038210722, "I_33_without_motor": 0.03333781812344433, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.064299809979099, "trigger": 800, "sampling_rate": 105, "lag": 1.4567334943868562, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.024833137018543, "trigger": "apogee", "sampling_rate": 105, "lag": 1.729200138799233, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6818.524145483798, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032899102966789, "grain_number": 5, "grain_density": 1846.517415708759, "grain_outer_radius": 0.03307956779471869, "grain_initial_inner_radius": 0.014839171465483946, "grain_initial_height": 0.12095491950687846, "grain_separation": 0.006116951048401664, "grains_center_of_mass_position": 0.39675833478329353, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005698510341182462, "throat_radius": 0.010494474107652111, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546276765110262}], "aerodynamic_surfaces": [{"length": 0.5577789293723457, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135300347256547}, {"n": 4, "root_chord": 0.12020336306066563, "tip_chord": 0.05908511121225869, "span": 0.1090763369925366, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488419324999585}, {"top_radius": 0.06296757150425333, "bottom_radius": 0.04374901140418655, "length": 0.06016081537165426, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993069875309744, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162708514825092, "upper_button_position": 0.08303613604846527}], "rail_length": 5, "inclination": 84.84263511484372, "heading": 54.26498680792081} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350183436068543, "mass": 15.001966010971184, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321790915018387, "I_33_without_motor": 0.030689563949113704, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92882899243688, "trigger": 800, "sampling_rate": 105, "lag": 1.5157813933190556, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9110522075934963, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8621752850654507, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7386.520950019479, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262304860283062, "grain_number": 5, "grain_density": 1827.8657748230282, "grain_outer_radius": 0.033373424432636675, "grain_initial_inner_radius": 0.015569809804027623, "grain_initial_height": 0.11925222675282074, "grain_separation": 0.005383625244947304, "grains_center_of_mass_position": 0.3952667636128601, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002955498024047859, "throat_radius": 0.010949851193357634, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558315384717191}], "aerodynamic_surfaces": [{"length": 0.5593846241464121, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1315754031496368}, {"n": 4, "root_chord": 0.12065459966706397, "tip_chord": 0.060275036740583716, "span": 0.11048814277818443, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506706024944497}, {"top_radius": 0.06256761328981994, "bottom_radius": 0.044216203543672644, "length": 0.059939194099918026, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006149278156109, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182189457645277, "upper_button_position": 0.08239598205108312}], "rail_length": 5, "inclination": 83.97975184501446, "heading": 56.158530439522956} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0634995071816778, "mass": 15.213130343717072, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304731833181135, "I_33_without_motor": 0.03224593585167263, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99991036541061, "trigger": 800, "sampling_rate": 105, "lag": 1.528569980686481, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9529788199533612, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6056884248676475, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5243.204725664993, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032475554072276765, "grain_number": 5, "grain_density": 1799.4805998565018, "grain_outer_radius": 0.03273952122130942, "grain_initial_inner_radius": 0.01587765850920264, "grain_initial_height": 0.11967483791396206, "grain_separation": 0.004622513173060879, "grains_center_of_mass_position": 0.39653508633419754, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.1923497440003086e-05, "throat_radius": 0.010624561558041524, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550369109631978}], "aerodynamic_surfaces": [{"length": 0.5582688754765255, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340083824144582}, {"n": 4, "root_chord": 0.11999531895202713, "tip_chord": 0.06101669110929768, "span": 0.11064792825279533, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495507593594435}, {"top_radius": 0.06429538252457531, "bottom_radius": 0.04408405421320343, "length": 0.05934706218347634, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006155210383574, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176484892222559, "upper_button_position": 0.08296703181610154}], "rail_length": 5, "inclination": 83.99490268115875, "heading": 56.607726463985024} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349610971285834, "mass": 15.852583452936454, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342194993709462, "I_33_without_motor": 0.05384978381918918, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90398205113927, "trigger": 800, "sampling_rate": 105, "lag": 1.3302230317374892, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0441181648108084, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1724850550369474, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7555.079763999686, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033335489010927546, "grain_number": 5, "grain_density": 1712.9574259591493, "grain_outer_radius": 0.03355193719394208, "grain_initial_inner_radius": 0.01493152297074546, "grain_initial_height": 0.12088011724698788, "grain_separation": 0.005582171044894181, "grains_center_of_mass_position": 0.3973140703030239, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000965467927648314, "throat_radius": 0.010877368735610396, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2526114728409028}], "aerodynamic_surfaces": [{"length": 0.5580442233561724, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338703454222714}, {"n": 4, "root_chord": 0.11974880032105897, "tip_chord": 0.06065804833448065, "span": 0.110334755120462, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507401565346848}, {"top_radius": 0.06291393315189507, "bottom_radius": 0.042969133950654916, "length": 0.05989143124284839, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005099596030683, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177278365721375, "upper_button_position": 0.0827821230309308}], "rail_length": 5, "inclination": 85.57968545693242, "heading": 56.18657972894595} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349515777174614, "mass": 16.19526616962936, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313427524015567, "I_33_without_motor": 0.04444079535602212, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079023973344249, "trigger": 800, "sampling_rate": 105, "lag": 1.4810159004440753, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9599666720123068, "trigger": "apogee", "sampling_rate": 105, "lag": 1.483421272814841, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7654.650790210413, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03233569709769544, "grain_number": 5, "grain_density": 1742.9621093559897, "grain_outer_radius": 0.03297661935582267, "grain_initial_inner_radius": 0.0150960941292917, "grain_initial_height": 0.1208432030838873, "grain_separation": 0.004291966688364559, "grains_center_of_mass_position": 0.39854275371401204, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00034579196601626397, "throat_radius": 0.010836678381947972, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569623732598192}], "aerodynamic_surfaces": [{"length": 0.5558470304438081, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331525750079765}, {"n": 4, "root_chord": 0.11980239445121336, "tip_chord": 0.060245422758652675, "span": 0.10984884628271938, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502401517654851}, {"top_radius": 0.06396505589411763, "bottom_radius": 0.0424364844344228, "length": 0.061294161855709656, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698031841513282, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193519431178707, "upper_button_position": 0.07867989839541134}], "rail_length": 5, "inclination": 86.59784558811185, "heading": 55.58338979692357} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350371364578283, "mass": 16.147404721196462, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31314421164324, "I_33_without_motor": 0.02801148114968365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848444419407862, "trigger": 800, "sampling_rate": 105, "lag": 1.5146473263232754, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9462283106589462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4658789596312307, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6482.714365819804, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329243199348897, "grain_number": 5, "grain_density": 1849.238021151635, "grain_outer_radius": 0.032807010219828424, "grain_initial_inner_radius": 0.015281443542451131, "grain_initial_height": 0.11743272995644496, "grain_separation": 0.005727732327044836, "grains_center_of_mass_position": 0.3984650303726128, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003638728484526221, "throat_radius": 0.010766931598336488, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25571987145922}], "aerodynamic_surfaces": [{"length": 0.5572733149522011, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344469087966236}, {"n": 4, "root_chord": 0.12038368440472633, "tip_chord": 0.06043628061659391, "span": 0.11034095350660825, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04975772853562}, {"top_radius": 0.06339225748264875, "bottom_radius": 0.044137044945029, "length": 0.0592906024928907, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005754048079599, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185714243118239, "upper_button_position": 0.082003980496136}], "rail_length": 5, "inclination": 85.96849614024849, "heading": 53.38349886180805} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349610262024782, "mass": 15.192228056781236, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31610022418878, "I_33_without_motor": 0.04377460129611212, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.80296247631131, "trigger": 800, "sampling_rate": 105, "lag": 1.5292837320943051, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9727574997431774, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5582743532800833, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6582.146946766394, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247416347728956, "grain_number": 5, "grain_density": 1854.574700817677, "grain_outer_radius": 0.03240538985943482, "grain_initial_inner_radius": 0.01450445248381794, "grain_initial_height": 0.11962390519428473, "grain_separation": 0.004811314751900801, "grains_center_of_mass_position": 0.397029441860552, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001077897901265722, "throat_radius": 0.010592526586537464, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550212973223749}], "aerodynamic_surfaces": [{"length": 0.5580633531181131, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324679797827004}, {"n": 4, "root_chord": 0.12065050201100486, "tip_chord": 0.05981806214654625, "span": 0.10962957044715473, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496994150566703}, {"top_radius": 0.06168983794733377, "bottom_radius": 0.04340960518361425, "length": 0.06008010379935411, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996012712050077, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198946206865337, "upper_button_position": 0.07970665051847403}], "rail_length": 5, "inclination": 84.67504788803582, "heading": 56.47733204461268} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06348598563474486, "mass": 14.789329908091114, "I_11_without_motor": 6.321, "I_22_without_motor": 6.297571510408648, "I_33_without_motor": 0.03977525852064482, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.855516255612574, "trigger": 800, "sampling_rate": 105, "lag": 1.2469163507818306, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9024682442597491, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4620339952876666, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7254.572278824089, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364752505006356, "grain_number": 5, "grain_density": 1831.8419631237828, "grain_outer_radius": 0.03334366966124083, "grain_initial_inner_radius": 0.014754819352955246, "grain_initial_height": 0.12006348884530733, "grain_separation": 0.003640118336158445, "grains_center_of_mass_position": 0.3963434377158179, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007395266685222451, "throat_radius": 0.010992724114832562, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545541860117622}], "aerodynamic_surfaces": [{"length": 0.5585979580943219, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342532690897142}, {"n": 4, "root_chord": 0.12008543406767662, "tip_chord": 0.05951429272388627, "span": 0.10984310155427897, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492744154314662}, {"top_radius": 0.06475019810141006, "bottom_radius": 0.04291246490797511, "length": 0.06074373189399274, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000723194050886, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189875757204748, "upper_button_position": 0.08108474368461382}], "rail_length": 5, "inclination": 83.70389155882728, "heading": 49.09377810126849} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350722707006239, "mass": 15.268912267107563, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325472916266043, "I_33_without_motor": 0.03723300673960119, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.894522035506427, "trigger": 800, "sampling_rate": 105, "lag": 1.5495036781864915, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8519067488233073, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7922865736385722, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6632.187181641841, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031666500023911345, "grain_number": 5, "grain_density": 1791.8977289799761, "grain_outer_radius": 0.03308650654377671, "grain_initial_inner_radius": 0.014978945289772545, "grain_initial_height": 0.12003638343728609, "grain_separation": 0.004920141380360861, "grains_center_of_mass_position": 0.396274529413366, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0026233003665117405, "throat_radius": 0.011984456798046057, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558717223743154}], "aerodynamic_surfaces": [{"length": 0.5593768177754621, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132659424407733}, {"n": 4, "root_chord": 0.11959963565392989, "tip_chord": 0.05911438264819552, "span": 0.11016732437909244, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496807977464144}, {"top_radius": 0.06313448749091133, "bottom_radius": 0.04344903500415502, "length": 0.06105568637276558, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008600535132146, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165349303516957, "upper_button_position": 0.08432512316151886}], "rail_length": 5, "inclination": 84.9846083754554, "heading": 55.113891537341985} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351172202188371, "mass": 16.19094307639501, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315235633254369, "I_33_without_motor": 0.020965786819856627, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06820441133414, "trigger": 800, "sampling_rate": 105, "lag": 1.414633760329006, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1292966467956496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2424513286214955, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5802.799517621977, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281978542468546, "grain_number": 5, "grain_density": 1853.4042759931326, "grain_outer_radius": 0.033079692675633036, "grain_initial_inner_radius": 0.01424287648954714, "grain_initial_height": 0.12034561124290552, "grain_separation": 0.004833925163427912, "grains_center_of_mass_position": 0.3972265800172386, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001169494505364187, "throat_radius": 0.011531062920790112, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543131361590205}], "aerodynamic_surfaces": [{"length": 0.5564234757309744, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333307673113986}, {"n": 4, "root_chord": 0.11947719599421489, "tip_chord": 0.060024670146667056, "span": 0.11042473892240494, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0478472850637863}, {"top_radius": 0.06403683417753386, "bottom_radius": 0.043008529887560064, "length": 0.059754364073000735, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987614833513535, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619132512650647, "upper_button_position": 0.07962897070070651}], "rail_length": 5, "inclination": 84.57571988754306, "heading": 52.46992704038151} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350724756534247, "mass": 15.455163321967571, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317943525770431, "I_33_without_motor": 0.0370266720034997, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.047683442973549, "trigger": 800, "sampling_rate": 105, "lag": 1.421333623638077, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9920968525059872, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4485526307242809, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6650.459332611616, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033058209193112656, "grain_number": 5, "grain_density": 1771.6928577334907, "grain_outer_radius": 0.03274124556576851, "grain_initial_inner_radius": 0.01544471569739165, "grain_initial_height": 0.12012769705843494, "grain_separation": 0.004523977978385772, "grains_center_of_mass_position": 0.3960254772055918, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006103981175938933, "throat_radius": 0.01163064209404319, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254852156281384}], "aerodynamic_surfaces": [{"length": 0.5575294775730681, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336591477709577}, {"n": 4, "root_chord": 0.1203522733413681, "tip_chord": 0.059816737990628685, "span": 0.11022414029968991, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489429807436053}, {"top_radius": 0.06541012664810009, "bottom_radius": 0.04356950099586153, "length": 0.06151912084380141, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004913937208533, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190497288388094, "upper_button_position": 0.08144166488204396}], "rail_length": 5, "inclination": 87.09788437833649, "heading": 55.3001801926252} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349699838877906, "mass": 15.771936623717886, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311252661959014, "I_33_without_motor": 0.039075050248034114, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141719397495281, "trigger": 800, "sampling_rate": 105, "lag": 1.4554409911754191, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8803935821656542, "trigger": "apogee", "sampling_rate": 105, "lag": 1.391547890085943, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6847.025257659784, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033116023140871316, "grain_number": 5, "grain_density": 1908.5531713961493, "grain_outer_radius": 0.03329447582935545, "grain_initial_inner_radius": 0.01577447494643038, "grain_initial_height": 0.11997085438758662, "grain_separation": 0.00592493986441675, "grains_center_of_mass_position": 0.3969168573681827, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018867776996492752, "throat_radius": 0.011863622289446724, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539940054036063}], "aerodynamic_surfaces": [{"length": 0.5582999901353833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133867048261623}, {"n": 4, "root_chord": 0.1211590360700821, "tip_chord": 0.060107196165183514, "span": 0.10960296098021882, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050139067188027}, {"top_radius": 0.06347259962104095, "bottom_radius": 0.04263012638557255, "length": 0.06132897877574569, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010631685218408, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188303971489167, "upper_button_position": 0.08223277137292406}], "rail_length": 5, "inclination": 83.69527328587003, "heading": 52.75276405729193} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350460983003259, "mass": 15.29379828399051, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320113714556326, "I_33_without_motor": 0.045483686482317806, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.880878990164021, "trigger": 800, "sampling_rate": 105, "lag": 1.483074821542245, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1324814860981072, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5207125738481018, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6395.722894930653, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252069948499178, "grain_number": 5, "grain_density": 1818.7885932009515, "grain_outer_radius": 0.033305063538976325, "grain_initial_inner_radius": 0.01576091843879225, "grain_initial_height": 0.11967234105643759, "grain_separation": 0.0047118841596579825, "grains_center_of_mass_position": 0.3961804027134727, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00047327689409047225, "throat_radius": 0.00998119009890885, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551821038552053}], "aerodynamic_surfaces": [{"length": 0.5591898256030506, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334109145212294}, {"n": 4, "root_chord": 0.11978081189815207, "tip_chord": 0.05910844106383568, "span": 0.10991493175973582, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048281337220746}, {"top_radius": 0.0619837585554657, "bottom_radius": 0.046160420823374626, "length": 0.061913856100261955, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997678557015042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188520417059661, "upper_button_position": 0.08091581399553816}], "rail_length": 5, "inclination": 84.71392350374265, "heading": 53.23785079447127} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349923193491036, "mass": 15.195980614778707, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342693937764655, "I_33_without_motor": 0.0266053632365793, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.148194552571658, "trigger": 800, "sampling_rate": 105, "lag": 1.5468407189111213, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9606596405104719, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5200137245302403, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6350.45495909123, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249902270358147, "grain_number": 5, "grain_density": 1786.2221242131027, "grain_outer_radius": 0.032972069025106666, "grain_initial_inner_radius": 0.015403301153355909, "grain_initial_height": 0.11853182456645091, "grain_separation": 0.005223368069672612, "grains_center_of_mass_position": 0.3980978919375402, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007348950659875098, "throat_radius": 0.009935744954119554, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546225348878348}], "aerodynamic_surfaces": [{"length": 0.5592380459197107, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325749234885933}, {"n": 4, "root_chord": 0.11846006398912802, "tip_chord": 0.059756945996276345, "span": 0.1097788602510736, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498118440013007}, {"top_radius": 0.06426170203758078, "bottom_radius": 0.044485568367773655, "length": 0.06088129408463796, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981209148853217, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202048693626271, "upper_button_position": 0.0779160455226946}], "rail_length": 5, "inclination": 84.11126262827351, "heading": 55.25714073151439} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349537988658124, "mass": 16.26374135203292, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303351448110985, "I_33_without_motor": 0.017839905333541937, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89867301899434, "trigger": 800, "sampling_rate": 105, "lag": 1.3847765461009958, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9225048518841692, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5139432572114524, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4918.616916531067, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277529480682551, "grain_number": 5, "grain_density": 1824.2705911174592, "grain_outer_radius": 0.032605972659981476, "grain_initial_inner_radius": 0.015012021683530998, "grain_initial_height": 0.12195864350944396, "grain_separation": 0.004866462856190829, "grains_center_of_mass_position": 0.3969714716302039, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0021494987763222297, "throat_radius": 0.01042825504483397, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566173268326155}], "aerodynamic_surfaces": [{"length": 0.5583781137408227, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338234504554212}, {"n": 4, "root_chord": 0.12055643263667175, "tip_chord": 0.060325514322774526, "span": 0.10978833370832987, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0481175900746778}, {"top_radius": 0.06340660322558261, "bottom_radius": 0.043706873009453674, "length": 0.059879816334756385, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994096007225356, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619073890733449, "upper_button_position": 0.08033570998908657}], "rail_length": 5, "inclination": 83.60171998439714, "heading": 55.82584170230985} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349494149238588, "mass": 15.01305461448774, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314858758952018, "I_33_without_motor": 0.032154191186308, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.004196919481192, "trigger": 800, "sampling_rate": 105, "lag": 1.4881632378461045, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0511313484305176, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2331635081231802, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5985.468869599625, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032834235529981985, "grain_number": 5, "grain_density": 1735.8037572542898, "grain_outer_radius": 0.033180357988911086, "grain_initial_inner_radius": 0.014441082333702107, "grain_initial_height": 0.12052823064097949, "grain_separation": 0.005638189831803413, "grains_center_of_mass_position": 0.3964809583489835, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003611609797540852, "throat_radius": 0.010468505765663445, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542782887127162}], "aerodynamic_surfaces": [{"length": 0.5587790934774709, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343843974606513}, {"n": 4, "root_chord": 0.12017747658041177, "tip_chord": 0.05975219177546138, "span": 0.10983261999079516, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500213665721072}, {"top_radius": 0.06259154857378489, "bottom_radius": 0.04416851792437637, "length": 0.06124332607469345, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018088081875593, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181474410533125, "upper_button_position": 0.08366136713424677}], "rail_length": 5, "inclination": 84.4005297881544, "heading": 51.906393751198614} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349853859512308, "mass": 15.787308837790986, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308904532732252, "I_33_without_motor": 0.03331761007846047, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8992233598215, "trigger": 800, "sampling_rate": 105, "lag": 1.7083996918974775, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.031518764464439, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4960662000307794, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5860.600994966373, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033293976075638894, "grain_number": 5, "grain_density": 1819.7881636937036, "grain_outer_radius": 0.03256955373721875, "grain_initial_inner_radius": 0.015716900800483286, "grain_initial_height": 0.12024064073295922, "grain_separation": 0.004911614816968704, "grains_center_of_mass_position": 0.3968059923997527, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016701355038136378, "throat_radius": 0.010933981507380116, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535183161683021}], "aerodynamic_surfaces": [{"length": 0.5580822876032374, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334178046159757}, {"n": 4, "root_chord": 0.11992794558189494, "tip_chord": 0.06058168200238201, "span": 0.10974690145361204, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484585919740324}, {"top_radius": 0.06316690615427781, "bottom_radius": 0.043329010910647246, "length": 0.06140122449718552, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997266180290098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618533851394257, "upper_button_position": 0.08119276663475283}], "rail_length": 5, "inclination": 83.43469139984246, "heading": 50.2429063382575} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349982085176221, "mass": 15.29488638086733, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315991100238828, "I_33_without_motor": 0.03600664255205628, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.84035461382088, "trigger": 800, "sampling_rate": 105, "lag": 1.507102868258484, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0567616577701244, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4929580500227773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8256.41372327983, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309141757813683, "grain_number": 5, "grain_density": 1764.1899256386403, "grain_outer_radius": 0.03182502890987087, "grain_initial_inner_radius": 0.014164112404096853, "grain_initial_height": 0.12148635235078142, "grain_separation": 0.004864775898147198, "grains_center_of_mass_position": 0.3981921297853889, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002402432818617748, "throat_radius": 0.010885896011297413, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559299860818156}], "aerodynamic_surfaces": [{"length": 0.5584312913837125, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329550612639492}, {"n": 4, "root_chord": 0.12020133970815369, "tip_chord": 0.06050313461932483, "span": 0.11005690024852065, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502835727810889}, {"top_radius": 0.06067560572872469, "bottom_radius": 0.04163580830320951, "length": 0.05944077817495907, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989922590892839, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618751053801871, "upper_button_position": 0.08024120528741285}], "rail_length": 5, "inclination": 84.30081045175338, "heading": 52.65961430115898} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349616512602754, "mass": 15.118079425225778, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323209228764236, "I_33_without_motor": 0.03417190852046105, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963599001743926, "trigger": 800, "sampling_rate": 105, "lag": 1.5014572762153209, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0648257413865079, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6548475932192113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8496.291542773162, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03319623769144776, "grain_number": 5, "grain_density": 1900.3621118873314, "grain_outer_radius": 0.032893440454943516, "grain_initial_inner_radius": 0.015291475594203338, "grain_initial_height": 0.12025327702492482, "grain_separation": 0.004916041819981492, "grains_center_of_mass_position": 0.39546802309883317, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00017148178158446354, "throat_radius": 0.011787461946555418, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254097989652451}], "aerodynamic_surfaces": [{"length": 0.5584735061521029, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344961386663952}, {"n": 4, "root_chord": 0.12041576394931994, "tip_chord": 0.059467915000298494, "span": 0.10874406879718486, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491875998573608}, {"top_radius": 0.06381896845269465, "bottom_radius": 0.043904318398045254, "length": 0.05898765771748379, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001158728180814, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618100697555111, "upper_button_position": 0.08201517526297042}], "rail_length": 5, "inclination": 85.9511610026528, "heading": 53.43548339232129} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0635152811390649, "mass": 14.862801601311357, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323288660630336, "I_33_without_motor": 0.04283714879907476, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98172335850171, "trigger": 800, "sampling_rate": 105, "lag": 1.3998808500147404, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.021921286958937, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7925438942382972, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7988.195056230656, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330235155281681, "grain_number": 5, "grain_density": 1793.6134168622832, "grain_outer_radius": 0.03362421512312968, "grain_initial_inner_radius": 0.014491559614253626, "grain_initial_height": 0.12095641209797019, "grain_separation": 0.005183397275410621, "grains_center_of_mass_position": 0.39695429957058104, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.073219491131023e-05, "throat_radius": 0.011993529351778321, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557460265946314}], "aerodynamic_surfaces": [{"length": 0.5588006064265622, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343655015960572}, {"n": 4, "root_chord": 0.1201380076346752, "tip_chord": 0.05996713648964409, "span": 0.1098912615439165, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490038577876415}, {"top_radius": 0.06188084136664016, "bottom_radius": 0.043176427988210385, "length": 0.05963936969063795, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009375523228915, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187220213280306, "upper_button_position": 0.0822155309948609}], "rail_length": 5, "inclination": 82.61447955115804, "heading": 51.94720441162299} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350471300742475, "mass": 16.480343097193007, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3395602484686755, "I_33_without_motor": 0.03406280364779896, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945010411533472, "trigger": 800, "sampling_rate": 105, "lag": 1.6892874714904558, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9743473340911023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6371015797000195, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4973.8027204040845, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324093562657875, "grain_number": 5, "grain_density": 1890.0344453128337, "grain_outer_radius": 0.03305883137940185, "grain_initial_inner_radius": 0.01453628100688679, "grain_initial_height": 0.11870350085565316, "grain_separation": 0.005375430449758044, "grains_center_of_mass_position": 0.3968298528353384, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009001275086650626, "throat_radius": 0.010913916713669968, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549752631679227}], "aerodynamic_surfaces": [{"length": 0.5573977288863133, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133218213003287}, {"n": 4, "root_chord": 0.12000022569486708, "tip_chord": 0.059812288454947404, "span": 0.10975192563130479, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489448921853608}, {"top_radius": 0.06143499444059913, "bottom_radius": 0.04344308067468935, "length": 0.06056440589567823, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980740292485023, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186059950187415, "upper_button_position": 0.07946803422976079}], "rail_length": 5, "inclination": 85.20957603544649, "heading": 54.342300454649966} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0634973233141038, "mass": 14.967689740238663, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31730334624879, "I_33_without_motor": 0.04377955415022293, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.120088690171153, "trigger": 800, "sampling_rate": 105, "lag": 1.4461820353087718, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9055606690418597, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4622652264294653, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5678.143110000759, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300219558060007, "grain_number": 5, "grain_density": 1798.1287025199158, "grain_outer_radius": 0.032506150006404985, "grain_initial_inner_radius": 0.015368912505634099, "grain_initial_height": 0.11803272104155392, "grain_separation": 0.005808445041256864, "grains_center_of_mass_position": 0.396749544134057, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010491136257095906, "throat_radius": 0.011207164796189068, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556026906597708}], "aerodynamic_surfaces": [{"length": 0.5585095263042695, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326431128968686}, {"n": 4, "root_chord": 0.12033021412334881, "tip_chord": 0.06032367158828958, "span": 0.11007096229803176, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495884620288718}, {"top_radius": 0.06280226532147308, "bottom_radius": 0.042538818315526826, "length": 0.06112055335304214, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996345321764816, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163724601440188, "upper_button_position": 0.08326207203246283}], "rail_length": 5, "inclination": 83.12383357083715, "heading": 53.15874440149642} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349017003535677, "mass": 15.543102462466564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311563014720127, "I_33_without_motor": 0.026070838024514757, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959071030192867, "trigger": 800, "sampling_rate": 105, "lag": 1.5698184625552347, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1134633662860989, "trigger": "apogee", "sampling_rate": 105, "lag": 1.60403768660643, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6761.617915884184, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274957838002784, "grain_number": 5, "grain_density": 1908.023002889608, "grain_outer_radius": 0.03255641477224033, "grain_initial_inner_radius": 0.015181982348081434, "grain_initial_height": 0.12117855238335679, "grain_separation": 0.004879099272172178, "grains_center_of_mass_position": 0.3964836024062002, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015669496265975653, "throat_radius": 0.011989029795113982, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558276845991962}], "aerodynamic_surfaces": [{"length": 0.5588008884272933, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350502189980551}, {"n": 4, "root_chord": 0.11944380242654165, "tip_chord": 0.05898330978036383, "span": 0.10961272991539509, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049108282310341}, {"top_radius": 0.06395445516470476, "bottom_radius": 0.04253940307092263, "length": 0.061205599128798555, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002126847226492, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177419177967224, "upper_button_position": 0.08247076692592681}], "rail_length": 5, "inclination": 84.33066306610105, "heading": 53.34318986411872} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349200283421967, "mass": 15.958798397277338, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307117003764123, "I_33_without_motor": 0.00875462789122387, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.982693719258489, "trigger": 800, "sampling_rate": 105, "lag": 1.4865693940555726, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.045130871256927, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6703139119054662, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8147.869304455308, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300073260889325, "grain_number": 5, "grain_density": 1839.7028539678295, "grain_outer_radius": 0.033178753394888606, "grain_initial_inner_radius": 0.015042619195813907, "grain_initial_height": 0.12039158199587156, "grain_separation": 0.005972811781241412, "grains_center_of_mass_position": 0.39774521121263234, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001866407252519501, "throat_radius": 0.011109612786372292, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531589303607114}], "aerodynamic_surfaces": [{"length": 0.556790229546409, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337015691340384}, {"n": 4, "root_chord": 0.11958115822817343, "tip_chord": 0.059400858721933826, "span": 0.10963404586231121, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048840920523501}, {"top_radius": 0.06364778937696922, "bottom_radius": 0.043916589073276294, "length": 0.06054116710381818, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699218768833248, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173242726178828, "upper_button_position": 0.08189449621536515}], "rail_length": 5, "inclination": 84.23881079858674, "heading": 53.92781903515243} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349927549744334, "mass": 15.050157374770693, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323192183277348, "I_33_without_motor": 0.056999040233342235, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.028628076279785, "trigger": 800, "sampling_rate": 105, "lag": 1.5837734567015138, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9828075792319033, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5603029874085457, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4915.046886994323, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033099792636448126, "grain_number": 5, "grain_density": 1820.2313081395812, "grain_outer_radius": 0.03325792756866057, "grain_initial_inner_radius": 0.014927236251675718, "grain_initial_height": 0.11950275039038635, "grain_separation": 0.0036433185886059058, "grains_center_of_mass_position": 0.3962082155323089, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017933270271264674, "throat_radius": 0.011918980746968804, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563315696767252}], "aerodynamic_surfaces": [{"length": 0.5566994927475896, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348454849695886}, {"n": 4, "root_chord": 0.1209254406117129, "tip_chord": 0.05945726544932495, "span": 0.11018886141387405, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0481099711506823}, {"top_radius": 0.06380618208696238, "bottom_radius": 0.044502045185904525, "length": 0.059827494399055714, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000651110330319, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193161130530526, "upper_button_position": 0.08074899797997936}], "rail_length": 5, "inclination": 85.32983101570152, "heading": 53.059028248424575} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350754945183625, "mass": 15.12833552552987, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317241894803342, "I_33_without_motor": 0.028107975155907246, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928828083684952, "trigger": 800, "sampling_rate": 105, "lag": 1.4046168618538926, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9752976861771672, "trigger": "apogee", "sampling_rate": 105, "lag": 1.773048358026448, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5312.719913388796, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03349618929580263, "grain_number": 5, "grain_density": 1811.4274166790694, "grain_outer_radius": 0.03351628060651079, "grain_initial_inner_radius": 0.014644169756017235, "grain_initial_height": 0.11862065410359422, "grain_separation": 0.0035163868937797, "grains_center_of_mass_position": 0.3975841566018082, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003116628287303818, "throat_radius": 0.010778986081061821, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254406024831486}], "aerodynamic_surfaces": [{"length": 0.5563053759139859, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354383730098965}, {"n": 4, "root_chord": 0.11968252890977116, "tip_chord": 0.06052551517378043, "span": 0.1097007481181437, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492294435734988}, {"top_radius": 0.06254309577452463, "bottom_radius": 0.043532311932876336, "length": 0.060397781594124705, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982647593424978, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181547751793527, "upper_button_position": 0.08010998416314508}], "rail_length": 5, "inclination": 84.33789106756856, "heading": 52.927511449141086} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634947812777825, "mass": 15.28807650870888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324321602200763, "I_33_without_motor": 0.02076708214970599, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033307760367196, "trigger": 800, "sampling_rate": 105, "lag": 1.4928374781708076, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0984461992473118, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7944954877531198, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4386.01187256167, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032840208809213345, "grain_number": 5, "grain_density": 1895.3069647282673, "grain_outer_radius": 0.03372666697614016, "grain_initial_inner_radius": 0.015427822919293245, "grain_initial_height": 0.1196024195185117, "grain_separation": 0.004907552028675734, "grains_center_of_mass_position": 0.39809093442548243, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011250210844371365, "throat_radius": 0.010245858472253698, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561069110385108}], "aerodynamic_surfaces": [{"length": 0.5577611929451916, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348388312794118}, {"n": 4, "root_chord": 0.12035336457025388, "tip_chord": 0.06021361610755809, "span": 0.11008095675659227, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491062755069633}, {"top_radius": 0.0638645468487233, "bottom_radius": 0.044032979003716485, "length": 0.06059965268730237, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002640033109004, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184378447442657, "upper_button_position": 0.08182615856663478}], "rail_length": 5, "inclination": 87.12032979997944, "heading": 53.750707151842} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349108920424094, "mass": 14.452535353262366, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3182771017265065, "I_33_without_motor": 0.024470155012674973, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.257280246386724, "trigger": 800, "sampling_rate": 105, "lag": 1.413149246409777, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0006153359257497, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0074719974705981, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5572.785350478398, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297537397636088, "grain_number": 5, "grain_density": 1850.1961010849325, "grain_outer_radius": 0.03366218061425911, "grain_initial_inner_radius": 0.01436067409587392, "grain_initial_height": 0.12070628512077172, "grain_separation": 0.004917855694759658, "grains_center_of_mass_position": 0.39527646237765046, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006777598565807823, "throat_radius": 0.01087210294085323, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557631748327291}], "aerodynamic_surfaces": [{"length": 0.5577931466468391, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329397821032736}, {"n": 4, "root_chord": 0.11922922265092331, "tip_chord": 0.06006307156468806, "span": 0.11015706885951516, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498264716652064}, {"top_radius": 0.06356420184881419, "bottom_radius": 0.04612808006044819, "length": 0.06080824503594015, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008138320402337, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6156325924474467, "upper_button_position": 0.085181239592787}], "rail_length": 5, "inclination": 83.51674237357577, "heading": 55.17845665357266} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06348963877389892, "mass": 15.351677991398944, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326588274257431, "I_33_without_motor": 0.02642569750375266, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848360020676923, "trigger": 800, "sampling_rate": 105, "lag": 1.5118735633295222, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9535359551983719, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7393385681661442, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6053.387988376577, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03279906070249059, "grain_number": 5, "grain_density": 1766.6343083155973, "grain_outer_radius": 0.03359974595907306, "grain_initial_inner_radius": 0.01555694272326292, "grain_initial_height": 0.1202965484672649, "grain_separation": 0.002771317357240836, "grains_center_of_mass_position": 0.3977846713600439, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006388576856720412, "throat_radius": 0.01082997696296886, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555420227952103}], "aerodynamic_surfaces": [{"length": 0.5584160194745709, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350665505153785}, {"n": 4, "root_chord": 0.11980017024529606, "tip_chord": 0.05905490300057638, "span": 0.11046840519418145, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485159979104828}, {"top_radius": 0.06156491233299402, "bottom_radius": 0.04479942518843693, "length": 0.06006070100257932, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992473969805098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184443127746585, "upper_button_position": 0.08080308420585125}], "rail_length": 5, "inclination": 84.8626346345562, "heading": 52.720190998677154} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.0635034532619633, "mass": 15.606276564378973, "I_11_without_motor": 6.321, "I_22_without_motor": 6.344977649148894, "I_33_without_motor": 0.04146778643025491, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00342100389553, "trigger": 800, "sampling_rate": 105, "lag": 1.3951613445154236, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0947875267071792, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7058932980205819, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6060.498473911103, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033660999878606844, "grain_number": 5, "grain_density": 1881.733810035849, "grain_outer_radius": 0.03255192772858074, "grain_initial_inner_radius": 0.014699795552078695, "grain_initial_height": 0.11990144739669024, "grain_separation": 0.005850437662708443, "grains_center_of_mass_position": 0.39794931917233933, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011283836645789593, "throat_radius": 0.011300191014774214, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551036934012774}], "aerodynamic_surfaces": [{"length": 0.5590621970031532, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339150227039294}, {"n": 4, "root_chord": 0.12014034866888727, "tip_chord": 0.06025845139196951, "span": 0.10959915652608854, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491156090727367}, {"top_radius": 0.06325389426745616, "bottom_radius": 0.0439608485046019, "length": 0.0605825763702596, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012434749248974, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182474072419585, "upper_button_position": 0.08299606768293888}], "rail_length": 5, "inclination": 85.65580923150746, "heading": 50.02808535903316} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350207947184935, "mass": 15.554257887104779, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317255236538053, "I_33_without_motor": 0.04160516069740268, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01518898373035, "trigger": 800, "sampling_rate": 105, "lag": 1.4164471240377432, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9612580702551964, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8284674420057114, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6545.8878470546615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313745501217345, "grain_number": 5, "grain_density": 1820.7460321741348, "grain_outer_radius": 0.03222991508711555, "grain_initial_inner_radius": 0.015533831313035552, "grain_initial_height": 0.11964825838561402, "grain_separation": 0.0035838519550020573, "grains_center_of_mass_position": 0.39813124459284543, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006669006865050889, "throat_radius": 0.011652976443532807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554530114079403}], "aerodynamic_surfaces": [{"length": 0.5566495106659247, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1320828166359915}, {"n": 4, "root_chord": 0.12045957975983555, "tip_chord": 0.060302364506758015, "span": 0.109923371402033, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496765252425795}, {"top_radius": 0.06245346304224564, "bottom_radius": 0.04426778764599313, "length": 0.06122524279826642, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997987471279589, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181295254360404, "upper_button_position": 0.08166922169191848}], "rail_length": 5, "inclination": 83.9421748399357, "heading": 51.509365074511834} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350424392324987, "mass": 15.299892465770174, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318057191717741, "I_33_without_motor": 0.03905163043382641, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.106708717116163, "trigger": 800, "sampling_rate": 105, "lag": 1.5739562884577416, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0658863818981388, "trigger": "apogee", "sampling_rate": 105, "lag": 1.513242020288938, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6271.211137677866, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297654226652107, "grain_number": 5, "grain_density": 1843.522611505391, "grain_outer_radius": 0.03289604263541268, "grain_initial_inner_radius": 0.015137655852026657, "grain_initial_height": 0.12075700431040794, "grain_separation": 0.004950134319486263, "grains_center_of_mass_position": 0.3975090817328619, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001827489651990213, "throat_radius": 0.010397761705073848, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549910132428344}], "aerodynamic_surfaces": [{"length": 0.5586438420815019, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354245768925013}, {"n": 4, "root_chord": 0.11985566502526121, "tip_chord": 0.058912614733335915, "span": 0.11025019857369989, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480636607499632}, {"top_radius": 0.061925001652875275, "bottom_radius": 0.04301585199918904, "length": 0.05908596726674793, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001406977229149, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176069208902156, "upper_button_position": 0.08253377683269925}], "rail_length": 5, "inclination": 84.84274200128134, "heading": 53.53100934640582} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06351501437896052, "mass": 16.018443529087342, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3216936420188174, "I_33_without_motor": 0.04862779055309598, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.855487361592772, "trigger": 800, "sampling_rate": 105, "lag": 1.3446858093365557, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0879464648125754, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7099476343745492, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7213.648389536178, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03246162410082121, "grain_number": 5, "grain_density": 1877.8398278276334, "grain_outer_radius": 0.033381254663716886, "grain_initial_inner_radius": 0.014788825690508201, "grain_initial_height": 0.12028379045102983, "grain_separation": 0.005488655791308597, "grains_center_of_mass_position": 0.3961004005401672, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005271132430990217, "throat_radius": 0.010848621250359887, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556290500516825}], "aerodynamic_surfaces": [{"length": 0.5578183034200304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341044713148292}, {"n": 4, "root_chord": 0.11988458246529127, "tip_chord": 0.0600406937335629, "span": 0.1091763722456597, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490094732583637}, {"top_radius": 0.06285882192127029, "bottom_radius": 0.044268769746879016, "length": 0.059173162763654856, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994256242790864, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171669919223982, "upper_button_position": 0.08225863235668818}], "rail_length": 5, "inclination": 84.03912679387601, "heading": 50.56161039746238} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350325601508333, "mass": 15.497822506741601, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324585948129122, "I_33_without_motor": 0.04015585644880575, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.194430149744626, "trigger": 800, "sampling_rate": 105, "lag": 1.6560360353830876, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0401719908830176, "trigger": "apogee", "sampling_rate": 105, "lag": 1.363301712811827, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5088.067999401366, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263348892708334, "grain_number": 5, "grain_density": 1808.2113341482786, "grain_outer_radius": 0.0328156325387645, "grain_initial_inner_radius": 0.015183066863570748, "grain_initial_height": 0.11872084296693734, "grain_separation": 0.005911092527175958, "grains_center_of_mass_position": 0.3969607159195042, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013425869497228457, "throat_radius": 0.010965552428758655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255451899489472}], "aerodynamic_surfaces": [{"length": 0.5566657937083002, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345946835929737}, {"n": 4, "root_chord": 0.11959515279996188, "tip_chord": 0.06086934870321517, "span": 0.1093854538741885, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489011958712415}, {"top_radius": 0.06273176419741278, "bottom_radius": 0.043493762222887006, "length": 0.06047505802109551, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988839591339969, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191762948639344, "upper_button_position": 0.07970766427006248}], "rail_length": 5, "inclination": 85.46078298280686, "heading": 53.823713752810406} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349084567146121, "mass": 15.86845775640349, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32717862060212, "I_33_without_motor": 0.034676947234082794, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.149655239382026, "trigger": 800, "sampling_rate": 105, "lag": 1.4162843867925976, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9142435529892494, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7708033517572592, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7007.133631249058, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03354822657985984, "grain_number": 5, "grain_density": 1845.5229684048488, "grain_outer_radius": 0.03274914305241965, "grain_initial_inner_radius": 0.01539698734367867, "grain_initial_height": 0.11931786194065057, "grain_separation": 0.004120812576135866, "grains_center_of_mass_position": 0.39744563634127344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001898473895539015, "throat_radius": 0.01151679985868403, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2527556916581921}], "aerodynamic_surfaces": [{"length": 0.5588743838139801, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348227511117983}, {"n": 4, "root_chord": 0.12021630938682194, "tip_chord": 0.05973365605180967, "span": 0.11022613057639055, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487408591830218}, {"top_radius": 0.0627175583225241, "bottom_radius": 0.04297173839514501, "length": 0.0587631024004354, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999225027737394, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178230148635436, "upper_button_position": 0.08209948791019572}], "rail_length": 5, "inclination": 84.50134254810472, "heading": 54.53541008195894} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349983453893217, "mass": 16.027321705964873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325631199790536, "I_33_without_motor": 0.02832509345816396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079529138584109, "trigger": 800, "sampling_rate": 105, "lag": 1.4912000800118124, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0588739040598316, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8356078520163694, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6409.031577779554, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032822958096195384, "grain_number": 5, "grain_density": 1773.8667820542883, "grain_outer_radius": 0.03347442537697957, "grain_initial_inner_radius": 0.015289058514257308, "grain_initial_height": 0.12018616129803363, "grain_separation": 0.00498761784567759, "grains_center_of_mass_position": 0.3977405289210172, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003409641535046202, "throat_radius": 0.01090561116758768, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552921542442717}], "aerodynamic_surfaces": [{"length": 0.5592310094971343, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349458334404003}, {"n": 4, "root_chord": 0.11938703835745101, "tip_chord": 0.059933113594755005, "span": 0.1099312126187654, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048107734154796}, {"top_radius": 0.06304646343370875, "bottom_radius": 0.04325372681032008, "length": 0.060576844952404854, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700109113830869, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175435073011535, "upper_button_position": 0.08256560652971556}], "rail_length": 5, "inclination": 85.7997146633603, "heading": 53.02409609241188} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349438625923676, "mass": 15.806720820727863, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324415523403156, "I_33_without_motor": 0.03857527813644896, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.966883016250657, "trigger": 800, "sampling_rate": 105, "lag": 1.4076297515415297, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8857259262328373, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1034818255857064, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5307.248649991723, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03209497091158163, "grain_number": 5, "grain_density": 1749.5049291403398, "grain_outer_radius": 0.03311338065697084, "grain_initial_inner_radius": 0.015032147061847191, "grain_initial_height": 0.12018554485192295, "grain_separation": 0.007319750345758207, "grains_center_of_mass_position": 0.3954376317526405, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024581048267119756, "throat_radius": 0.011367392648551064, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253001195019059}], "aerodynamic_surfaces": [{"length": 0.5578027833736338, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134619829136552}, {"n": 4, "root_chord": 0.12051758186288028, "tip_chord": 0.06031702159661888, "span": 0.10908153573593239, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516117986627267}, {"top_radius": 0.06410141303417642, "bottom_radius": 0.04456282456844341, "length": 0.05716079174056432, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981707140797184, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189008388680826, "upper_button_position": 0.07926987521163587}], "rail_length": 5, "inclination": 84.9342233072949, "heading": 55.962399365616044} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06348533660867994, "mass": 15.44540679415529, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313800326145033, "I_33_without_motor": 0.05446438442941786, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9619186716257, "trigger": 800, "sampling_rate": 105, "lag": 1.5199469647157484, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0802266590490792, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3502666059147805, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6205.380835985963, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327644273584579, "grain_number": 5, "grain_density": 1820.9265535297009, "grain_outer_radius": 0.032820810110991215, "grain_initial_inner_radius": 0.01436363988042566, "grain_initial_height": 0.11729203182844644, "grain_separation": 0.004790634553859138, "grains_center_of_mass_position": 0.3969095831522606, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008743295100587912, "throat_radius": 0.009531012254984917, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555402815137062}], "aerodynamic_surfaces": [{"length": 0.5582767566646298, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332504011585693}, {"n": 4, "root_chord": 0.120236646740299, "tip_chord": 0.06043666618853284, "span": 0.10936472338300941, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510603322048344}, {"top_radius": 0.06346801966227171, "bottom_radius": 0.04259645233390924, "length": 0.06158769797053411, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981499587684686, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171572705802562, "upper_button_position": 0.08099268818821248}], "rail_length": 5, "inclination": 85.01510865026668, "heading": 51.54896691065473} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350825984071563, "mass": 15.232022871991024, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327728349563887, "I_33_without_motor": 0.026329397374523056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033169769633234, "trigger": 800, "sampling_rate": 105, "lag": 1.3604472472023224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0371409815234955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5021351204721058, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6745.808167033112, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03227079964048307, "grain_number": 5, "grain_density": 1820.4384290530782, "grain_outer_radius": 0.03347073297591924, "grain_initial_inner_radius": 0.01485979056515416, "grain_initial_height": 0.12201438440197969, "grain_separation": 0.0046413297332656405, "grains_center_of_mass_position": 0.3962088047849918, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020470024057335752, "throat_radius": 0.011532312781242117, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255193476014883}], "aerodynamic_surfaces": [{"length": 0.5586528845664067, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338917979082797}, {"n": 4, "root_chord": 0.11996038117502092, "tip_chord": 0.060232875041679235, "span": 0.10955701888108209, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499158625062426}, {"top_radius": 0.06371172963176451, "bottom_radius": 0.04405169620063626, "length": 0.059569905837968944, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998459345532895, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183317754980059, "upper_button_position": 0.08151415905528359}], "rail_length": 5, "inclination": 83.86889308015505, "heading": 55.505170488089526} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634933007992269, "mass": 15.525338287256192, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3213545166329785, "I_33_without_motor": 0.04382944531962043, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.870792970538353, "trigger": 800, "sampling_rate": 105, "lag": 1.458830504087765, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9918513379687934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5783260087512558, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6230.560903032368, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343983063493339, "grain_number": 5, "grain_density": 1837.8189358535424, "grain_outer_radius": 0.03241850439637484, "grain_initial_inner_radius": 0.014731626427782016, "grain_initial_height": 0.11948485312907965, "grain_separation": 0.005871409835043996, "grains_center_of_mass_position": 0.39839796818888984, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006627930389849343, "throat_radius": 0.010430812050256845, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553693871736187}], "aerodynamic_surfaces": [{"length": 0.5582849815218686, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349543010983905}, {"n": 4, "root_chord": 0.11964406209260751, "tip_chord": 0.059330720127380644, "span": 0.10961240876140954, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487454497189064}, {"top_radius": 0.06315122772901409, "bottom_radius": 0.043621579080081255, "length": 0.060953229922057484, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999582726867061, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160562005908833, "upper_button_position": 0.08390207209582279}], "rail_length": 5, "inclination": 82.70015148460124, "heading": 56.34583085252619} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349036732861295, "mass": 15.94976522610942, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307821789258293, "I_33_without_motor": 0.023449400781282777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045707698775262, "trigger": 800, "sampling_rate": 105, "lag": 1.3653974228572974, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9678895590898569, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5950311948237714, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6941.01950243132, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337187897831499, "grain_number": 5, "grain_density": 1923.2676297520636, "grain_outer_radius": 0.03275648319801732, "grain_initial_inner_radius": 0.014892395576403678, "grain_initial_height": 0.12154207084192671, "grain_separation": 0.0043410492425568735, "grains_center_of_mass_position": 0.3975797982529467, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.01721110025437e-05, "throat_radius": 0.010673902274223303, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552077523239016}], "aerodynamic_surfaces": [{"length": 0.5590257383487479, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134069797180483}, {"n": 4, "root_chord": 0.11993276780715607, "tip_chord": 0.061139806250765955, "span": 0.11050375801871294, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496752098791222}, {"top_radius": 0.06375860006022306, "bottom_radius": 0.043932678131460234, "length": 0.06264074979725877, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000731917414709, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179882889751874, "upper_button_position": 0.08208490276628344}], "rail_length": 5, "inclination": 84.04307796409765, "heading": 49.27476102887201} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349921363043723, "mass": 15.489920552976937, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324773614852415, "I_33_without_motor": 0.026369146461181547, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08307259964426, "trigger": 800, "sampling_rate": 105, "lag": 1.330380772575097, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.966180494113819, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3939182562271866, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5549.5642289684865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310934054576974, "grain_number": 5, "grain_density": 1801.9748958297453, "grain_outer_radius": 0.033046974212921174, "grain_initial_inner_radius": 0.015640812919078897, "grain_initial_height": 0.1190591060541381, "grain_separation": 0.005050887035205096, "grains_center_of_mass_position": 0.3972583875882808, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006615019292538533, "throat_radius": 0.012337322452661758, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256224292262594}], "aerodynamic_surfaces": [{"length": 0.5579310215163756, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337416923846002}, {"n": 4, "root_chord": 0.11997513189721183, "tip_chord": 0.06001165413974848, "span": 0.10989758136280114, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049949647801785}, {"top_radius": 0.06340124354961821, "bottom_radius": 0.043384446031373015, "length": 0.059496467804073104, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991329945135356, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183197570705296, "upper_button_position": 0.08081323744300606}], "rail_length": 5, "inclination": 87.50978146354488, "heading": 50.8009801396673} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349025114756375, "mass": 15.17262258107802, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332948436806594, "I_33_without_motor": 0.03351156270882792, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.18587663519354, "trigger": 800, "sampling_rate": 105, "lag": 1.41189608953462, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9257787919530149, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2669896032988925, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5649.456139295493, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327931282182546, "grain_number": 5, "grain_density": 1782.4015289059223, "grain_outer_radius": 0.03271277053503499, "grain_initial_inner_radius": 0.015043464650016112, "grain_initial_height": 0.1196109086356385, "grain_separation": 0.006243010682863875, "grains_center_of_mass_position": 0.39762640099581853, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.328758536906149e-05, "throat_radius": 0.010947581222437117, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547225053405138}], "aerodynamic_surfaces": [{"length": 0.5588585184795972, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340484903635888}, {"n": 4, "root_chord": 0.12093079776124803, "tip_chord": 0.06070266761451561, "span": 0.1092121219874828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505295794651788}, {"top_radius": 0.0638222258295541, "bottom_radius": 0.042154770840801076, "length": 0.059235489551679454, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993608579556833, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179650354455555, "upper_button_position": 0.08139582251012778}], "rail_length": 5, "inclination": 83.95113590655026, "heading": 50.495487706807396} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350622731817415, "mass": 16.12447011546899, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321346493542939, "I_33_without_motor": 0.02873048224707594, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.882155494212553, "trigger": 800, "sampling_rate": 105, "lag": 1.459231169611105, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9713446607595032, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5106784873123797, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5940.362794741284, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033536939376807205, "grain_number": 5, "grain_density": 1829.8042466741776, "grain_outer_radius": 0.03328734380374411, "grain_initial_inner_radius": 0.015194444899427671, "grain_initial_height": 0.11969695069511278, "grain_separation": 0.0031395336053774417, "grains_center_of_mass_position": 0.3965080874178773, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004971346239816415, "throat_radius": 0.010862126727033905, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529586336173566}], "aerodynamic_surfaces": [{"length": 0.5578545640917114, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354309522005055}, {"n": 4, "root_chord": 0.11987665479203162, "tip_chord": 0.06005683179339713, "span": 0.1103739623623476, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489014652711655}, {"top_radius": 0.06229347421580721, "bottom_radius": 0.04472776297212934, "length": 0.0596117513414169, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001313107061486, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170972092621895, "upper_button_position": 0.08303410144395917}], "rail_length": 5, "inclination": 84.18636973066924, "heading": 49.94807205844317} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.0635031338041261, "mass": 14.606634783112423, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32734187518923, "I_33_without_motor": 0.026304687438228305, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110544118700949, "trigger": 800, "sampling_rate": 105, "lag": 1.4347192693696995, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.01870201389441, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6366364797319959, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6669.248143444147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264059225370643, "grain_number": 5, "grain_density": 1775.53273986416, "grain_outer_radius": 0.033015067085017544, "grain_initial_inner_radius": 0.014899544855418362, "grain_initial_height": 0.1201960508976459, "grain_separation": 0.0072372954147266345, "grains_center_of_mass_position": 0.39477814026581753, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00017610702094297305, "throat_radius": 0.01153258334670428, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552679287446689}], "aerodynamic_surfaces": [{"length": 0.5578840377696145, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1321664557948745}, {"n": 4, "root_chord": 0.12051759968982971, "tip_chord": 0.0597440023734221, "span": 0.11068206411212342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492224787886897}, {"top_radius": 0.064089633993183, "bottom_radius": 0.04276242587864574, "length": 0.06114078868844641, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984074430542443, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189854691144324, "upper_button_position": 0.07942197393981187}], "rail_length": 5, "inclination": 83.67711993821155, "heading": 54.05940289668247} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349632933372391, "mass": 15.502614378865285, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3099899038204015, "I_33_without_motor": 0.04645197037809586, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.991242826143019, "trigger": 800, "sampling_rate": 105, "lag": 1.6278479507206287, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0795358934503547, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5035167628638306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7087.243456623895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03356017470005421, "grain_number": 5, "grain_density": 1787.1612024703486, "grain_outer_radius": 0.03301089555713679, "grain_initial_inner_radius": 0.014739790292994161, "grain_initial_height": 0.11908505571378616, "grain_separation": 0.006086084850940619, "grains_center_of_mass_position": 0.39632463055958833, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001227951183182499, "throat_radius": 0.011158926349196916, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555195212509476}], "aerodynamic_surfaces": [{"length": 0.5586025336890527, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326151299378335}, {"n": 4, "root_chord": 0.11994846217249028, "tip_chord": 0.05991155053429546, "span": 0.11038390027928875, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508147563114727}, {"top_radius": 0.06447455691073255, "bottom_radius": 0.04266562886001691, "length": 0.06050152940413862, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999000084867559, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194435243141371, "upper_button_position": 0.08045648417261886}], "rail_length": 5, "inclination": 84.71038174584028, "heading": 51.37505275652177} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635034464507089, "mass": 15.282477360326606, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324639046812634, "I_33_without_motor": 0.024325471010518084, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.085521700972429, "trigger": 800, "sampling_rate": 105, "lag": 1.5911996845610974, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9780870514106126, "trigger": "apogee", "sampling_rate": 105, "lag": 1.430813743737128, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6118.891250636791, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032865713317047414, "grain_number": 5, "grain_density": 1797.9068147888884, "grain_outer_radius": 0.03260520670973047, "grain_initial_inner_radius": 0.01535445064450258, "grain_initial_height": 0.12119282195724454, "grain_separation": 0.005529908872658831, "grains_center_of_mass_position": 0.3962558638343665, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00018223594872243383, "throat_radius": 0.011377519163840888, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557027880433584}], "aerodynamic_surfaces": [{"length": 0.5594568891311295, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347067629744465}, {"n": 4, "root_chord": 0.12014534616191244, "tip_chord": 0.06040676816290365, "span": 0.11027424498277581, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506728645265417}, {"top_radius": 0.0614441701785624, "bottom_radius": 0.043789103358859764, "length": 0.06065337303560928, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984386087651157, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183641001996626, "upper_button_position": 0.08007450856545306}], "rail_length": 5, "inclination": 82.93857848095887, "heading": 54.557621644075844} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349657504264826, "mass": 15.114289288423521, "I_11_without_motor": 6.321, "I_22_without_motor": 6.349352504510757, "I_33_without_motor": 0.0355272121798868, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974836612893874, "trigger": 800, "sampling_rate": 105, "lag": 1.581767986875106, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9835898220286261, "trigger": "apogee", "sampling_rate": 105, "lag": 1.507126798903866, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6259.408175889075, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032864354156849816, "grain_number": 5, "grain_density": 1793.0743890156573, "grain_outer_radius": 0.03289774391826492, "grain_initial_inner_radius": 0.014291336266402254, "grain_initial_height": 0.12020255646755813, "grain_separation": 0.004632927329517939, "grains_center_of_mass_position": 0.3966891456363382, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009611302411505955, "throat_radius": 0.011466928391710145, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546713801606506}], "aerodynamic_surfaces": [{"length": 0.557976662431237, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345465024243595}, {"n": 4, "root_chord": 0.11987479804916246, "tip_chord": 0.05980728712497474, "span": 0.10995837648140049, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492473584231592}, {"top_radius": 0.06262531901196147, "bottom_radius": 0.043458405745948954, "length": 0.06043319539985702, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995664439963921, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169447336518378, "upper_button_position": 0.08262171034455434}], "rail_length": 5, "inclination": 84.34042356378284, "heading": 54.69690100358937} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350135475597933, "mass": 14.97418279303863, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316688571231345, "I_33_without_motor": 0.029265487989574623, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.970595111558614, "trigger": 800, "sampling_rate": 105, "lag": 1.5860695736006198, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9448851040042876, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6251726201588923, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6939.132448524769, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338397945049034, "grain_number": 5, "grain_density": 1824.5415070545466, "grain_outer_radius": 0.03305460780888691, "grain_initial_inner_radius": 0.014578545574255832, "grain_initial_height": 0.12019358031335667, "grain_separation": 0.00394136380300872, "grains_center_of_mass_position": 0.3967249980815391, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001526709164326855, "throat_radius": 0.010697211326998694, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542836811153346}], "aerodynamic_surfaces": [{"length": 0.5573942714194838, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133158195414022}, {"n": 4, "root_chord": 0.11955711142506595, "tip_chord": 0.060443853543581554, "span": 0.1096199841223479, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050100676124317}, {"top_radius": 0.06456382400222165, "bottom_radius": 0.041561405269797944, "length": 0.05927666131424373, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008001475583788, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193517026079051, "upper_button_position": 0.08144844495047376}], "rail_length": 5, "inclination": 84.3047565545644, "heading": 54.023505023987} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349190699453638, "mass": 15.968929551277308, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3219777920429285, "I_33_without_motor": 0.038456279428158394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.133901956909718, "trigger": 800, "sampling_rate": 105, "lag": 1.3337570327504558, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1268243300763503, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3388640733164885, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7401.325932711116, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034169719252538, "grain_number": 5, "grain_density": 1761.1232537704473, "grain_outer_radius": 0.03239080358882668, "grain_initial_inner_radius": 0.014540422077489403, "grain_initial_height": 0.11984712313557322, "grain_separation": 0.005538292789411523, "grains_center_of_mass_position": 0.3965678041259441, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0028130820853035283, "throat_radius": 0.011788143316017387, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542333614737335}], "aerodynamic_surfaces": [{"length": 0.5596995214984137, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335504336337985}, {"n": 4, "root_chord": 0.1197466763916709, "tip_chord": 0.059266156572787984, "span": 0.10892529714084623, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04895650887169}, {"top_radius": 0.0640321520971979, "bottom_radius": 0.044795421743558245, "length": 0.060357426907486536, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986094596906045, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185066164350802, "upper_button_position": 0.0801028432555243}], "rail_length": 5, "inclination": 84.32656163965265, "heading": 52.56977058231966} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.0634996360228357, "mass": 15.054288168526336, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316330191936034, "I_33_without_motor": 0.033459823068554835, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.112686159973917, "trigger": 800, "sampling_rate": 105, "lag": 1.377164214627476, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0517900054515348, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4369367690213986, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5744.709623808972, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300601793432633, "grain_number": 5, "grain_density": 1825.7996169150192, "grain_outer_radius": 0.03266493880325587, "grain_initial_inner_radius": 0.014738071733032643, "grain_initial_height": 0.11990863085768687, "grain_separation": 0.006594925598969506, "grains_center_of_mass_position": 0.39701304708675994, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.8987495411488584e-05, "throat_radius": 0.011809792363427964, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538951260979898}], "aerodynamic_surfaces": [{"length": 0.5563576034453782, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345641360158087}, {"n": 4, "root_chord": 0.1202686589543235, "tip_chord": 0.05895655767565988, "span": 0.10987958840951156, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505757827823627}, {"top_radius": 0.06229868001949689, "bottom_radius": 0.04304970678127948, "length": 0.05821272529800022, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992545970792513, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202629368250168, "upper_button_position": 0.07899166025423454}], "rail_length": 5, "inclination": 84.85363894022396, "heading": 50.873937414100006} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349925072737142, "mass": 14.871615832953587, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32152817973551, "I_33_without_motor": 0.03445047442123275, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885431340480062, "trigger": 800, "sampling_rate": 105, "lag": 1.4732478627138113, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0298470453026112, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4017894060702139, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7973.557133653716, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286320366991285, "grain_number": 5, "grain_density": 1802.1723627440247, "grain_outer_radius": 0.033303024662376335, "grain_initial_inner_radius": 0.014974999935797859, "grain_initial_height": 0.11886676185234622, "grain_separation": 0.005345380022138561, "grains_center_of_mass_position": 0.3956774289486449, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000414943056781037, "throat_radius": 0.010545233081284692, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558720176497364}], "aerodynamic_surfaces": [{"length": 0.5576072979182739, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133403936558236}, {"n": 4, "root_chord": 0.11949289699419208, "tip_chord": 0.059838943316850364, "span": 0.10930809897920953, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507839607736176}, {"top_radius": 0.0627606829851377, "bottom_radius": 0.04407353890669054, "length": 0.060160060248155844, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996646970546216, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188997362813433, "upper_button_position": 0.08076496077327833}], "rail_length": 5, "inclination": 83.53304334873896, "heading": 52.783418853262795} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350849943697023, "mass": 15.230671029839478, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328026272613601, "I_33_without_motor": 0.029150019999328782, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963049045357446, "trigger": 800, "sampling_rate": 105, "lag": 1.475965734932519, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0451576502956914, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9434796681262065, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5209.958807873756, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264218814921788, "grain_number": 5, "grain_density": 1852.704946325329, "grain_outer_radius": 0.03398196589508175, "grain_initial_inner_radius": 0.015160643291554978, "grain_initial_height": 0.11874837998445573, "grain_separation": 0.006875483705806205, "grains_center_of_mass_position": 0.39803851534080403, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006254594970207602, "throat_radius": 0.009938433557073353, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559412804795764}], "aerodynamic_surfaces": [{"length": 0.5586777326426189, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332455177627083}, {"n": 4, "root_chord": 0.12016126261519423, "tip_chord": 0.05948732552854826, "span": 0.11042236294505565, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497885318968119}, {"top_radius": 0.06355749946238806, "bottom_radius": 0.04405729217442792, "length": 0.06063352326374219, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997268339495235, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181868559965836, "upper_button_position": 0.08153997795293988}], "rail_length": 5, "inclination": 84.86205538776943, "heading": 56.1118503795753} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350132778927028, "mass": 15.20127475873394, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30516801244612, "I_33_without_motor": 0.048772128545124346, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90658818345721, "trigger": 800, "sampling_rate": 105, "lag": 1.4622590345349211, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0880782481122957, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2819238791991845, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6788.067153487487, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03289175622075242, "grain_number": 5, "grain_density": 1842.9458672350738, "grain_outer_radius": 0.03279485803280285, "grain_initial_inner_radius": 0.01481767297515482, "grain_initial_height": 0.11968552307875528, "grain_separation": 0.004477010066858066, "grains_center_of_mass_position": 0.39517515044859564, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017509886344914028, "throat_radius": 0.01097114164955882, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253416475183144}], "aerodynamic_surfaces": [{"length": 0.5579848017461555, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346410524184758}, {"n": 4, "root_chord": 0.11918157230038562, "tip_chord": 0.05971271775636275, "span": 0.1107894619322452, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487155757267217}, {"top_radius": 0.06364089642285108, "bottom_radius": 0.04463528348552203, "length": 0.06177015519486408, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699706070756126, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183824469741644, "upper_button_position": 0.08132362378196156}], "rail_length": 5, "inclination": 83.56351817508599, "heading": 52.51899901204176} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350016752148314, "mass": 14.12048026742757, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309574335905319, "I_33_without_motor": 0.041867950579245444, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.899710319355838, "trigger": 800, "sampling_rate": 105, "lag": 1.6346625573969744, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8182354078013183, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8552792043472703, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7834.234144059534, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033169123799478006, "grain_number": 5, "grain_density": 1858.922451672255, "grain_outer_radius": 0.03330002739646517, "grain_initial_inner_radius": 0.015279958253645412, "grain_initial_height": 0.11994638182790494, "grain_separation": 0.004758754593388076, "grains_center_of_mass_position": 0.3972922507221746, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012223744597533485, "throat_radius": 0.01098588357076915, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255524191216678}], "aerodynamic_surfaces": [{"length": 0.5589458577327, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134384102054614}, {"n": 4, "root_chord": 0.11899231093541297, "tip_chord": 0.05955332231072178, "span": 0.11002803050003403, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050201743083689}, {"top_radius": 0.063700811898613, "bottom_radius": 0.04357873830422084, "length": 0.06124494661383669, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004357125443085, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165215243703457, "upper_button_position": 0.08391418817396279}], "rail_length": 5, "inclination": 84.90704222886316, "heading": 52.607646894150975} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06348920620832259, "mass": 15.746333093311351, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325074202161137, "I_33_without_motor": 0.03934579420729866, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06031500940937, "trigger": 800, "sampling_rate": 105, "lag": 1.396398145635392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8550604470918368, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4245080149906333, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6516.810028575157, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03223790300562796, "grain_number": 5, "grain_density": 1778.7433688987053, "grain_outer_radius": 0.032869854355376295, "grain_initial_inner_radius": 0.01520805594049359, "grain_initial_height": 0.1195513712121278, "grain_separation": 0.0046838529338625095, "grains_center_of_mass_position": 0.39690119570993326, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009829456662454035, "throat_radius": 0.012037539095900909, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545085284224184}], "aerodynamic_surfaces": [{"length": 0.5590916083005547, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326188085212576}, {"n": 4, "root_chord": 0.11957848969216162, "tip_chord": 0.06006915958000823, "span": 0.11011149228100922, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500869316275223}, {"top_radius": 0.06291229911517211, "bottom_radius": 0.04364431430139453, "length": 0.05911022070873, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018036178101407, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176572667421306, "upper_button_position": 0.08414635106801005}], "rail_length": 5, "inclination": 84.85545566343903, "heading": 54.99761878435834} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349817049889549, "mass": 15.177886690836376, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3001061869044, "I_33_without_motor": 0.058218433089098534, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.139581713880418, "trigger": 800, "sampling_rate": 105, "lag": 1.5781586688486158, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9699126926076715, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7535078066930643, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8053.266102846709, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03279286315965787, "grain_number": 5, "grain_density": 1811.8372853551425, "grain_outer_radius": 0.03262938732633531, "grain_initial_inner_radius": 0.015194251750073056, "grain_initial_height": 0.11975061656839334, "grain_separation": 0.003818777263326979, "grains_center_of_mass_position": 0.3967421297977423, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005889284989798757, "throat_radius": 0.010946774226497032, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549807895370635}], "aerodynamic_surfaces": [{"length": 0.5586303167277881, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133668824865989}, {"n": 4, "root_chord": 0.11958812376884992, "tip_chord": 0.06039222329399512, "span": 0.10995181767419472, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490588824785758}, {"top_radius": 0.06181170696272146, "bottom_radius": 0.043483991727389225, "length": 0.059971089350384255, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001834269732808, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180778120990688, "upper_button_position": 0.08210561487421209}], "rail_length": 5, "inclination": 84.28697382396409, "heading": 54.24826830120246} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350743445048317, "mass": 15.836434962963065, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327932953487889, "I_33_without_motor": 0.01936358772756007, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15625679445662, "trigger": 800, "sampling_rate": 105, "lag": 1.6210798138208797, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9972323604497154, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2168104346335136, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5815.238991642262, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301381710622384, "grain_number": 5, "grain_density": 1903.4150797055258, "grain_outer_radius": 0.03344933308598883, "grain_initial_inner_radius": 0.015076371074692847, "grain_initial_height": 0.12146833204775079, "grain_separation": 0.004000099603347351, "grains_center_of_mass_position": 0.3973272795379458, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00048689728236963605, "throat_radius": 0.010447688699461026, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25496208451407}], "aerodynamic_surfaces": [{"length": 0.5574545867253531, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339560857292181}, {"n": 4, "root_chord": 0.12048167887523105, "tip_chord": 0.059634752019969844, "span": 0.11025294999175571, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501578367804474}, {"top_radius": 0.06317346730767806, "bottom_radius": 0.04341314903656893, "length": 0.06084190770019391, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700432387102218, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181449390230161, "upper_button_position": 0.08228744807920185}], "rail_length": 5, "inclination": 83.56081204890975, "heading": 53.21268543616435} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350087594285315, "mass": 15.393298034907533, "I_11_without_motor": 6.321, "I_22_without_motor": 6.296359526274848, "I_33_without_motor": 0.028004854840680278, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94786755527132, "trigger": 800, "sampling_rate": 105, "lag": 1.6058655807427047, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8937912388561079, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5580785479167072, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6499.629217959339, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260556483851819, "grain_number": 5, "grain_density": 2012.7756878955026, "grain_outer_radius": 0.03243874890058858, "grain_initial_inner_radius": 0.014773616299792547, "grain_initial_height": 0.12008914217206144, "grain_separation": 0.004262066137882039, "grains_center_of_mass_position": 0.3937939441060211, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006774047242855747, "throat_radius": 0.010990471745547336, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543625466642394}], "aerodynamic_surfaces": [{"length": 0.5587098730999022, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.136219120603121}, {"n": 4, "root_chord": 0.12023617051025143, "tip_chord": 0.059363809502847135, "span": 0.11045474759323394, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494944694216517}, {"top_radius": 0.06352399648431373, "bottom_radius": 0.04369488730852297, "length": 0.05940869321468203, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003425445440421, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199849213742179, "upper_button_position": 0.0803576231698242}], "rail_length": 5, "inclination": 83.80142821987937, "heading": 51.645687964792025} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349794209961417, "mass": 15.606311434337924, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317100173711364, "I_33_without_motor": 0.03199408597099158, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.074736808251703, "trigger": 800, "sampling_rate": 105, "lag": 1.2986967899100366, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.026118832559291, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5647102983034555, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6582.712167701001, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03270419605648988, "grain_number": 5, "grain_density": 1817.8493975124761, "grain_outer_radius": 0.033389126811767825, "grain_initial_inner_radius": 0.014894764083050824, "grain_initial_height": 0.11890352468088279, "grain_separation": 0.0032804632784511154, "grains_center_of_mass_position": 0.3983055563350273, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010313792741255352, "throat_radius": 0.01105382966528014, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550338141491193}], "aerodynamic_surfaces": [{"length": 0.5595306541208843, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133758928686013}, {"n": 4, "root_chord": 0.1198327100150463, "tip_chord": 0.05965276305274638, "span": 0.11106987000008586, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497450870245757}, {"top_radius": 0.0630130028477229, "bottom_radius": 0.04506746499126461, "length": 0.06118524020210999, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989562587604858, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179643514472087, "upper_button_position": 0.0809919073132771}], "rail_length": 5, "inclination": 84.78144608455948, "heading": 54.182707251942304} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06348962430364823, "mass": 15.13905797318864, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323987714391303, "I_33_without_motor": 0.0502551944142625, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.943705975398153, "trigger": 800, "sampling_rate": 105, "lag": 1.4581333895938646, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0458964827582304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4669080878207792, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5860.385543075366, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033309931698879164, "grain_number": 5, "grain_density": 1869.9672008710609, "grain_outer_radius": 0.032616075447899524, "grain_initial_inner_radius": 0.015240821162052992, "grain_initial_height": 0.11964991170884612, "grain_separation": 0.0066923978255778345, "grains_center_of_mass_position": 0.3961658387938428, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006889636528320151, "throat_radius": 0.011059892852611384, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548856578144256}], "aerodynamic_surfaces": [{"length": 0.5581494298081221, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344061885112549}, {"n": 4, "root_chord": 0.12056319636100786, "tip_chord": 0.05984004664860697, "span": 0.10982735508313715, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047948297879724}, {"top_radius": 0.06504305405190591, "bottom_radius": 0.042844150162744864, "length": 0.05962540307272057, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007072937681893, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195063844430708, "upper_button_position": 0.08120090932511848}], "rail_length": 5, "inclination": 85.22038797792666, "heading": 53.5322169540698} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349874315317584, "mass": 14.652241727545183, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314811659934046, "I_33_without_motor": 0.03019378270031845, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.105993269465229, "trigger": 800, "sampling_rate": 105, "lag": 1.4049133325942331, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9321589926374241, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6056873268023584, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5946.715799425818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032918973190414605, "grain_number": 5, "grain_density": 1745.206146065736, "grain_outer_radius": 0.033299699448357666, "grain_initial_inner_radius": 0.014980602315765024, "grain_initial_height": 0.12052190667998448, "grain_separation": 0.004476894703084695, "grains_center_of_mass_position": 0.396155224757896, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000951065541896633, "throat_radius": 0.011129610334939281, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254136436342904}], "aerodynamic_surfaces": [{"length": 0.5578975660608151, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338540767868603}, {"n": 4, "root_chord": 0.12030302486541444, "tip_chord": 0.059393388230900054, "span": 0.11043892142639858, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490296314356713}, {"top_radius": 0.06356653233437526, "bottom_radius": 0.04305826099846182, "length": 0.05989471712322597, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992752548695181, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186491889490531, "upper_button_position": 0.08062606592046506}], "rail_length": 5, "inclination": 85.3529040989576, "heading": 50.86970628237559} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349548077877873, "mass": 15.840407952540545, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315677664491833, "I_33_without_motor": 0.03642340238882699, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15502131754219, "trigger": 800, "sampling_rate": 105, "lag": 1.4935203242265964, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9150626300626595, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5726583464020965, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6936.647658322365, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285841196685973, "grain_number": 5, "grain_density": 1747.2235179780873, "grain_outer_radius": 0.033319161148939236, "grain_initial_inner_radius": 0.015337605054707215, "grain_initial_height": 0.1211664552516523, "grain_separation": 0.005040102004178331, "grains_center_of_mass_position": 0.3959858035565423, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016707652522404104, "throat_radius": 0.011182036782213856, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548112228919495}], "aerodynamic_surfaces": [{"length": 0.5567818909867152, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348540555077191}, {"n": 4, "root_chord": 0.12024588181887451, "tip_chord": 0.058849236543651436, "span": 0.10992444103019262, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510499697903048}, {"top_radius": 0.06356488363205601, "bottom_radius": 0.04494870095776874, "length": 0.05995849134881029, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013456504773956, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180482985227668, "upper_button_position": 0.08329735195462884}], "rail_length": 5, "inclination": 82.81945390444955, "heading": 50.69507537795817} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06348516865737039, "mass": 16.033729831916126, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325453984405447, "I_33_without_motor": 0.04672757739898821, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.922810720845455, "trigger": 800, "sampling_rate": 105, "lag": 1.6175055163312286, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0533506916398787, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6179445296154051, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6287.916050216538, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03226316764160728, "grain_number": 5, "grain_density": 1819.8495615108886, "grain_outer_radius": 0.03264549744396601, "grain_initial_inner_radius": 0.015377023581296941, "grain_initial_height": 0.12060879694850865, "grain_separation": 0.004131019980956167, "grains_center_of_mass_position": 0.3960683717403745, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006348371051847984, "throat_radius": 0.010791379076920063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555094673951541}], "aerodynamic_surfaces": [{"length": 0.5592228964960669, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350630160115716}, {"n": 4, "root_chord": 0.11959723160166481, "tip_chord": 0.06012335817414715, "span": 0.10920786266914864, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503570374953268}, {"top_radius": 0.06315656637476956, "bottom_radius": 0.04469014137423017, "length": 0.06052747081284805, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002440478562433, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190292673036184, "upper_button_position": 0.08121478055262488}], "rail_length": 5, "inclination": 85.16872703757606, "heading": 55.01753746318724} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351233140634825, "mass": 15.587601731483755, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30472319012351, "I_33_without_motor": 0.025588663742500614, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00001833206232, "trigger": 800, "sampling_rate": 105, "lag": 1.5554246516300292, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9851538227450417, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8042966664670175, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6974.202697281869, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316024565831346, "grain_number": 5, "grain_density": 1868.3759389416712, "grain_outer_radius": 0.033179519965889304, "grain_initial_inner_radius": 0.015237654472595636, "grain_initial_height": 0.12147670363225241, "grain_separation": 0.0059009270119425045, "grains_center_of_mass_position": 0.3956894460413464, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004799279640571303, "throat_radius": 0.01047001300523201, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528208058161614}], "aerodynamic_surfaces": [{"length": 0.558343483257092, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134436482316639}, {"n": 4, "root_chord": 0.12055658758163874, "tip_chord": 0.05954078212342797, "span": 0.11003880691655359, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487897557150394}, {"top_radius": 0.06291726048263893, "bottom_radius": 0.04464256799522131, "length": 0.058765507696002396, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994094695925489, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618106444088957, "upper_button_position": 0.08130302550359192}], "rail_length": 5, "inclination": 82.97315812978498, "heading": 53.64704561199186} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350096329477405, "mass": 15.865550700840457, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3307111351986505, "I_33_without_motor": 0.0249864461898521, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.864994797113447, "trigger": 800, "sampling_rate": 105, "lag": 1.4020681888133837, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8923308286214314, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4826217927544791, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5977.666020484142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348665062119659, "grain_number": 5, "grain_density": 1895.8224114502516, "grain_outer_radius": 0.03317608548733257, "grain_initial_inner_radius": 0.015493644905167801, "grain_initial_height": 0.12166418051029702, "grain_separation": 0.004259016005686557, "grains_center_of_mass_position": 0.3989345772957465, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000688253901209901, "throat_radius": 0.011893595028278008, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546905498296694}], "aerodynamic_surfaces": [{"length": 0.5578067565033359, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134296923941648}, {"n": 4, "root_chord": 0.11948208242248994, "tip_chord": 0.06042167227386532, "span": 0.10942744169224215, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496502578313665}, {"top_radius": 0.0628255721971663, "bottom_radius": 0.04335216372067893, "length": 0.059962380142370125, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009416858638894, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173895765149982, "upper_button_position": 0.08355210934889123}], "rail_length": 5, "inclination": 82.95603911393367, "heading": 50.404374576742576} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349727650617062, "mass": 15.649987962649023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318099943982064, "I_33_without_motor": 0.03292094098842744, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.064308616385185, "trigger": 800, "sampling_rate": 105, "lag": 1.4164688604800646, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0831735117086143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3830185316253076, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6486.958592327761, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320755334262816, "grain_number": 5, "grain_density": 1862.4498574505587, "grain_outer_radius": 0.03257370090794061, "grain_initial_inner_radius": 0.014752961379955312, "grain_initial_height": 0.12041570442020832, "grain_separation": 0.005223594616544148, "grains_center_of_mass_position": 0.3971304439184476, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016162204895583783, "throat_radius": 0.009848118702334648, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552307300305474}], "aerodynamic_surfaces": [{"length": 0.5578099183369777, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332807800635445}, {"n": 4, "root_chord": 0.11994466052998472, "tip_chord": 0.06009905693050543, "span": 0.10928414277564148, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477382831097628}, {"top_radius": 0.06229909738003436, "bottom_radius": 0.04388169558961799, "length": 0.05967924282199785, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997509820462589, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162869679417368, "upper_button_position": 0.08346401410452209}], "rail_length": 5, "inclination": 83.39679663104066, "heading": 52.41763513634295} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06348972714684775, "mass": 15.722049706157652, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32258386928854, "I_33_without_motor": 0.04379538705995986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97456122572028, "trigger": 800, "sampling_rate": 105, "lag": 1.5349841658431056, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9597026336991807, "trigger": "apogee", "sampling_rate": 105, "lag": 1.427867769066781, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7820.613561382294, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032881136891741096, "grain_number": 5, "grain_density": 1798.4602602429732, "grain_outer_radius": 0.03310093247307809, "grain_initial_inner_radius": 0.014337464074275028, "grain_initial_height": 0.12054480908109312, "grain_separation": 0.004216845939450247, "grains_center_of_mass_position": 0.3978618085265344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007553996882799306, "throat_radius": 0.010748553871532871, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550913766589114}], "aerodynamic_surfaces": [{"length": 0.5577292336562747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135941448301246}, {"n": 4, "root_chord": 0.11959617299123154, "tip_chord": 0.05945804343340691, "span": 0.11039752455682725, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049876885197375}, {"top_radius": 0.06304742755943642, "bottom_radius": 0.04462290278469477, "length": 0.059372125939590015, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013650833589757, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618406092109708, "upper_button_position": 0.08295899124926776}], "rail_length": 5, "inclination": 83.70662974654819, "heading": 52.617708967892085} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349832281588268, "mass": 14.544954189070017, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3083625219557025, "I_33_without_motor": 0.040776314791105814, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96408784400719, "trigger": 800, "sampling_rate": 105, "lag": 1.5518101912655373, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9559344270050569, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5529919152231613, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5308.390802209454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033105622210921344, "grain_number": 5, "grain_density": 1763.714239612703, "grain_outer_radius": 0.03256436839961012, "grain_initial_inner_radius": 0.014993078666479696, "grain_initial_height": 0.12080685578100575, "grain_separation": 0.005334010795706874, "grains_center_of_mass_position": 0.39731430661525813, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006489820773722327, "throat_radius": 0.01100766770589038, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25446916705538}], "aerodynamic_surfaces": [{"length": 0.5581778073890744, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339741715750755}, {"n": 4, "root_chord": 0.12028377808463446, "tip_chord": 0.059275584948501436, "span": 0.1100874101698363, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493382414749979}, {"top_radius": 0.06451587804591685, "bottom_radius": 0.0455634150441846, "length": 0.06109441145985955, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982567077021363, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185903644862711, "upper_button_position": 0.07966634321586519}], "rail_length": 5, "inclination": 83.01742972159848, "heading": 50.3110264113387} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350673991243515, "mass": 15.530864506693229, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3202737159724265, "I_33_without_motor": 0.014885675044445174, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.892743181234824, "trigger": 800, "sampling_rate": 105, "lag": 1.456181334893158, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0049462310469202, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4470943365064481, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6120.036055065709, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294251035206937, "grain_number": 5, "grain_density": 1815.5655133776384, "grain_outer_radius": 0.03287329146764567, "grain_initial_inner_radius": 0.015218055966374449, "grain_initial_height": 0.12034840496645376, "grain_separation": 0.004962667011145611, "grains_center_of_mass_position": 0.39561596114125397, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00015029837882039204, "throat_radius": 0.010593411592817433, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559339472412703}], "aerodynamic_surfaces": [{"length": 0.5586417468266716, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343324757973114}, {"n": 4, "root_chord": 0.12031990328003118, "tip_chord": 0.059202073234774555, "span": 0.10901782994041828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495825301841666}, {"top_radius": 0.06568843111629256, "bottom_radius": 0.04381826829144187, "length": 0.05833937163655786, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981344451340252, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166824314896827, "upper_button_position": 0.08145201364434251}], "rail_length": 5, "inclination": 84.9401715229735, "heading": 55.04522286124997} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06351569755391512, "mass": 15.743973105381503, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312978748581268, "I_33_without_motor": 0.03676096773028224, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.918787715407529, "trigger": 800, "sampling_rate": 105, "lag": 1.5089620920390518, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0563849378451147, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5432701206274437, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6256.266492353275, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297912956100647, "grain_number": 5, "grain_density": 1818.3631173978629, "grain_outer_radius": 0.03286690662940898, "grain_initial_inner_radius": 0.015047261348076163, "grain_initial_height": 0.11993958952035229, "grain_separation": 0.006861898720601461, "grains_center_of_mass_position": 0.39787471133282526, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014436463751153303, "throat_radius": 0.010401903061906565, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553763210645177}], "aerodynamic_surfaces": [{"length": 0.5575539210533575, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133881234370625}, {"n": 4, "root_chord": 0.11931622239620901, "tip_chord": 0.060432444107450606, "span": 0.108653311139985, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051391154736938}, {"top_radius": 0.062228152719029664, "bottom_radius": 0.044023653530132864, "length": 0.058559357580787987, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005944940799101, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173424053341654, "upper_button_position": 0.08325208874574475}], "rail_length": 5, "inclination": 85.74359818645226, "heading": 53.975620022421815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349858528050777, "mass": 15.458043711477002, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316239768983142, "I_33_without_motor": 0.027314850496922973, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932546165560822, "trigger": 800, "sampling_rate": 105, "lag": 1.5685663957201577, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9475960142275749, "trigger": "apogee", "sampling_rate": 105, "lag": 1.450897724385663, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5955.335085653564, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260019218755661, "grain_number": 5, "grain_density": 1774.5368429729765, "grain_outer_radius": 0.032924872650014245, "grain_initial_inner_radius": 0.014308631721946094, "grain_initial_height": 0.12081181816889862, "grain_separation": 0.0043557161438984495, "grains_center_of_mass_position": 0.3969199160157594, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001042404521778268, "throat_radius": 0.011292119775666382, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558062967900447}], "aerodynamic_surfaces": [{"length": 0.5573966279140513, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131086717999559}, {"n": 4, "root_chord": 0.12086006532346001, "tip_chord": 0.059596237877116695, "span": 0.10983777181807601, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0514491149641705}, {"top_radius": 0.06296127823990143, "bottom_radius": 0.045388133256293005, "length": 0.06113653888854578, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991961980580667, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186454889878564, "upper_button_position": 0.08055070907021022}], "rail_length": 5, "inclination": 84.62768614178513, "heading": 55.54654096733596} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350236489203333, "mass": 15.126289413526296, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324116490393524, "I_33_without_motor": 0.03377217955998945, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.096818089417805, "trigger": 800, "sampling_rate": 105, "lag": 1.5596091710863151, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0433851080162448, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2296376326564333, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5489.431252232216, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329254711325327, "grain_number": 5, "grain_density": 1827.6933985869025, "grain_outer_radius": 0.033453299440178164, "grain_initial_inner_radius": 0.014961320395382538, "grain_initial_height": 0.11826517772917483, "grain_separation": 0.0063815966909630244, "grains_center_of_mass_position": 0.39870682044443795, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00013515059889180318, "throat_radius": 0.01071900062951169, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254185498180967}], "aerodynamic_surfaces": [{"length": 0.5584335879673, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1314961588463235}, {"n": 4, "root_chord": 0.11940506949819944, "tip_chord": 0.06003938747192547, "span": 0.11056201617307834, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492901013787364}, {"top_radius": 0.06424597446349918, "bottom_radius": 0.04397729185015121, "length": 0.060310939767357324, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699188600972776, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617256780464249, "upper_button_position": 0.08193182050852699}], "rail_length": 5, "inclination": 85.12315760770794, "heading": 53.459830647719116} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06351209520820374, "mass": 14.49741537462233, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34022894385905, "I_33_without_motor": 0.033786562720369194, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.116593611397215, "trigger": 800, "sampling_rate": 105, "lag": 1.547794526170647, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9580792813151509, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7490485708088086, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7957.53456661061, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03257758741329537, "grain_number": 5, "grain_density": 1827.716519806968, "grain_outer_radius": 0.03306896758169974, "grain_initial_inner_radius": 0.015097961069004174, "grain_initial_height": 0.11896112767694149, "grain_separation": 0.004550544970326026, "grains_center_of_mass_position": 0.3972680143779473, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0019417539694442508, "throat_radius": 0.010724655828514082, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551849769851435}], "aerodynamic_surfaces": [{"length": 0.5602887548349118, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327070946484084}, {"n": 4, "root_chord": 0.12059629931981584, "tip_chord": 0.06043828914780875, "span": 0.11037256417035528, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497626061902001}, {"top_radius": 0.0629648341716482, "bottom_radius": 0.04452140984794776, "length": 0.06235576319109677, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997022263025341, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6152878702929713, "upper_button_position": 0.08441435600956282}], "rail_length": 5, "inclination": 85.45973256169033, "heading": 52.34165807279846} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06351020326936796, "mass": 15.377285105052628, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321219211325442, "I_33_without_motor": 0.017942629523801865, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035096883792722, "trigger": 800, "sampling_rate": 105, "lag": 1.4843496729686687, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9661440116400911, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3091490048300019, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7207.570025261934, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032655936735892385, "grain_number": 5, "grain_density": 1819.7516372786727, "grain_outer_radius": 0.03341104872824085, "grain_initial_inner_radius": 0.014971053909368714, "grain_initial_height": 0.12079479400770991, "grain_separation": 0.005537357442271374, "grains_center_of_mass_position": 0.39717133445901864, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005470964926756115, "throat_radius": 0.011408921172764357, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563849954756166}], "aerodynamic_surfaces": [{"length": 0.5595875434740156, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350334461805267}, {"n": 4, "root_chord": 0.11981116592378063, "tip_chord": 0.06088834927022846, "span": 0.10986941618844423, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485201726057534}, {"top_radius": 0.06477803659357467, "bottom_radius": 0.04225974576615072, "length": 0.06068200104710456, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988341160423469, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187551959703493, "upper_button_position": 0.08007892007199757}], "rail_length": 5, "inclination": 86.58277702584606, "heading": 53.69473586369847} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349859995079757, "mass": 15.2515571813641, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311671741393209, "I_33_without_motor": 0.03916279833184479, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929220561836434, "trigger": 800, "sampling_rate": 105, "lag": 1.6603439630802566, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9444134770985024, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4704006443091482, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5564.598731068235, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317169529195774, "grain_number": 5, "grain_density": 1818.6439601788968, "grain_outer_radius": 0.03275814739554841, "grain_initial_inner_radius": 0.014477589571942511, "grain_initial_height": 0.1203200414852669, "grain_separation": 0.005588865878133561, "grains_center_of_mass_position": 0.3967340309285258, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007849217292743566, "throat_radius": 0.011723193629158211, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562618327080417}], "aerodynamic_surfaces": [{"length": 0.5580329726192264, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332974098235484}, {"n": 4, "root_chord": 0.11966489556103219, "tip_chord": 0.06127766825066505, "span": 0.11006823155894056, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507803116595764}, {"top_radius": 0.0648175664137422, "bottom_radius": 0.043853346305062595, "length": 0.05958278717345538, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002575919616195, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182676383697264, "upper_button_position": 0.0819899535918931}], "rail_length": 5, "inclination": 83.63378704567934, "heading": 52.4740492955128} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349766852323463, "mass": 14.916742368502515, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325895268545149, "I_33_without_motor": 0.010603322866416989, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.867124981533602, "trigger": 800, "sampling_rate": 105, "lag": 1.659471848345269, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.985586792574934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5841896414568704, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6674.778442446778, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03397862841124132, "grain_number": 5, "grain_density": 1797.8510863222452, "grain_outer_radius": 0.03320137682367923, "grain_initial_inner_radius": 0.015475963636910938, "grain_initial_height": 0.12047821675867273, "grain_separation": 0.005510967365180964, "grains_center_of_mass_position": 0.39737536036045806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008422763841854761, "throat_radius": 0.011624878544951317, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529552458605604}], "aerodynamic_surfaces": [{"length": 0.5593657944361512, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352682165809875}, {"n": 4, "root_chord": 0.1192638894077303, "tip_chord": 0.06075382660133571, "span": 0.1094185217383055, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482504230673177}, {"top_radius": 0.06417168532574491, "bottom_radius": 0.043416858204248635, "length": 0.06105681467689879, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998187512321022, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185821533045994, "upper_button_position": 0.08123659792750282}], "rail_length": 5, "inclination": 86.27856760415706, "heading": 53.54078626240016} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349690471136625, "mass": 15.837782274048799, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325368834821732, "I_33_without_motor": 0.033804432691779095, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.210947136389317, "trigger": 800, "sampling_rate": 105, "lag": 1.3610853830472758, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8540160100283694, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4501901506471297, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6964.320619006575, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247956348187253, "grain_number": 5, "grain_density": 1879.0196717427918, "grain_outer_radius": 0.03225482652190375, "grain_initial_inner_radius": 0.015371046835091105, "grain_initial_height": 0.11853844606753938, "grain_separation": 0.003869740564742254, "grains_center_of_mass_position": 0.3963757122008391, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007388416942118948, "throat_radius": 0.010377698311561415, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543853218636578}], "aerodynamic_surfaces": [{"length": 0.5557296194554144, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327805227995988}, {"n": 4, "root_chord": 0.1204069445732591, "tip_chord": 0.05954866395558791, "span": 0.10955386039623892, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048150710672945}, {"top_radius": 0.06398058744509799, "bottom_radius": 0.04277604835232771, "length": 0.06063161043647512, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7017266463122084, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169988818178817, "upper_button_position": 0.08472776449432673}], "rail_length": 5, "inclination": 82.83045962853114, "heading": 51.33405965825877} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349133550303661, "mass": 14.290123648481215, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330603388360902, "I_33_without_motor": 0.039489965399193444, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873504376074015, "trigger": 800, "sampling_rate": 105, "lag": 1.6858072834617939, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.125625355106523, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0696917120322067, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8910.09085719757, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032469250974483305, "grain_number": 5, "grain_density": 1796.8374948370881, "grain_outer_radius": 0.03303016815434886, "grain_initial_inner_radius": 0.014725235393795721, "grain_initial_height": 0.12038982246705315, "grain_separation": 0.005044473463467666, "grains_center_of_mass_position": 0.3961718396637277, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009585884484145843, "throat_radius": 0.010515901358733194, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543216296035142}], "aerodynamic_surfaces": [{"length": 0.5572961383361693, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1313629300341554}, {"n": 4, "root_chord": 0.1205404573049585, "tip_chord": 0.06055738806812491, "span": 0.11018861673320762, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506859863662632}, {"top_radius": 0.06421686662106244, "bottom_radius": 0.042568867472686095, "length": 0.05951221212623494, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699740925215526, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179811446413893, "upper_button_position": 0.08175978057413669}], "rail_length": 5, "inclination": 85.9099343695258, "heading": 51.081727754009876} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350231985334542, "mass": 15.726492596424567, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309570669592668, "I_33_without_motor": 0.03752753792579646, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88654918132032, "trigger": 800, "sampling_rate": 105, "lag": 1.412039863149024, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9361242991135797, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3901324166785183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5579.621099785614, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033535585841438245, "grain_number": 5, "grain_density": 1806.8669116029612, "grain_outer_radius": 0.033219108638038584, "grain_initial_inner_radius": 0.015506070493821897, "grain_initial_height": 0.12036055063159543, "grain_separation": 0.003512476219878947, "grains_center_of_mass_position": 0.39620199799882777, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.6404068927816038e-05, "throat_radius": 0.010842106647754712, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542141827830156}], "aerodynamic_surfaces": [{"length": 0.5574201816216522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333325227689064}, {"n": 4, "root_chord": 0.12004661486823555, "tip_chord": 0.059325303763457474, "span": 0.1108938085646315, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483585178818335}, {"top_radius": 0.0631171147734823, "bottom_radius": 0.04237254603816607, "length": 0.06064442640487009, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985299463218705, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174246673092221, "upper_button_position": 0.08110527901264841}], "rail_length": 5, "inclination": 83.68274732238127, "heading": 52.14642626797328} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350415770351825, "mass": 14.540174147133808, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309194244144909, "I_33_without_motor": 0.03316939034829799, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.116243738996717, "trigger": 800, "sampling_rate": 105, "lag": 1.613024966525921, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9963562649273209, "trigger": "apogee", "sampling_rate": 105, "lag": 1.293098424597983, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5949.834496619184, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03203551151150436, "grain_number": 5, "grain_density": 1773.493810689159, "grain_outer_radius": 0.03306153249336634, "grain_initial_inner_radius": 0.015021893956667547, "grain_initial_height": 0.11782580431965842, "grain_separation": 0.005034975517657508, "grains_center_of_mass_position": 0.398785918904402, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009520089728166735, "throat_radius": 0.010493305597037674, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556636463974384}], "aerodynamic_surfaces": [{"length": 0.5599729092929324, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347227164504063}, {"n": 4, "root_chord": 0.12031634584489041, "tip_chord": 0.06089890303547466, "span": 0.11053086975731857, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505545553326632}, {"top_radius": 0.06453109391955499, "bottom_radius": 0.043970713961893525, "length": 0.060232021685047946, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008513626808829, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190929075980476, "upper_button_position": 0.0817584550828353}], "rail_length": 5, "inclination": 84.14907367856581, "heading": 52.060396969820836} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349682642096274, "mass": 15.048897804085733, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314410367138354, "I_33_without_motor": 0.026009642595833195, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.161663821228956, "trigger": 800, "sampling_rate": 105, "lag": 1.431138656525656, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0268229955036827, "trigger": "apogee", "sampling_rate": 105, "lag": 1.624853135176642, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5771.623149483542, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032754229509928484, "grain_number": 5, "grain_density": 1832.060911351859, "grain_outer_radius": 0.03291638344970771, "grain_initial_inner_radius": 0.015443185603766918, "grain_initial_height": 0.11942991913252181, "grain_separation": 0.0048585259083426015, "grains_center_of_mass_position": 0.396365170537966, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024907697326642913, "throat_radius": 0.011586529254253655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549742285611272}], "aerodynamic_surfaces": [{"length": 0.5599901808342366, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1314422857136939}, {"n": 4, "root_chord": 0.1200857337010703, "tip_chord": 0.060281841066614154, "span": 0.10989218211626926, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515336061796652}, {"top_radius": 0.06390463470614699, "bottom_radius": 0.044212093036835834, "length": 0.06056203309862811, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7023784637004082, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190357212113708, "upper_button_position": 0.08334274248903739}], "rail_length": 5, "inclination": 85.98495481954043, "heading": 55.009517592957145} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0634947861100298, "mass": 15.537529588041755, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312055816632504, "I_33_without_motor": 0.03366080267052382, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.907460161617339, "trigger": 800, "sampling_rate": 105, "lag": 1.6667537955530054, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0372644168854808, "trigger": "apogee", "sampling_rate": 105, "lag": 1.365479645780866, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7723.925698641424, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297268646151785, "grain_number": 5, "grain_density": 1721.1341779120262, "grain_outer_radius": 0.033150278402147175, "grain_initial_inner_radius": 0.01476435243806534, "grain_initial_height": 0.11955853158261022, "grain_separation": 0.005147417894111122, "grains_center_of_mass_position": 0.39816888135042927, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00048209216265764825, "throat_radius": 0.011500358896374295, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545520945921143}], "aerodynamic_surfaces": [{"length": 0.5573911080252074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133605493315379}, {"n": 4, "root_chord": 0.11906227970351603, "tip_chord": 0.05961922506474256, "span": 0.1105132263093174, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496653432214986}, {"top_radius": 0.06272578198617045, "bottom_radius": 0.04182587968777869, "length": 0.05874870434107303, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700188460907279, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185205755943146, "upper_button_position": 0.08166788531296443}], "rail_length": 5, "inclination": 83.92063936705732, "heading": 56.58664164488745} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349823707478329, "mass": 15.257197334384873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299696458238883, "I_33_without_motor": 0.03392405078327739, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.190234363722796, "trigger": 800, "sampling_rate": 105, "lag": 1.4112689514692005, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9794719756753636, "trigger": "apogee", "sampling_rate": 105, "lag": 1.628260751905229, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7661.972428307455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.030878141443339606, "grain_number": 5, "grain_density": 1789.0112486806422, "grain_outer_radius": 0.03360444952077982, "grain_initial_inner_radius": 0.01462849201404991, "grain_initial_height": 0.11808737902504755, "grain_separation": 0.004390603175916435, "grains_center_of_mass_position": 0.39738682694019545, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003872559115958882, "throat_radius": 0.010907630560684807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539179962693456}], "aerodynamic_surfaces": [{"length": 0.5584196140088881, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343152580604539}, {"n": 4, "root_chord": 0.11992692795470514, "tip_chord": 0.06013867299403783, "span": 0.1107148004996123, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499145484066414}, {"top_radius": 0.06362204630591353, "bottom_radius": 0.043299538782144875, "length": 0.059180643526047697, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011581625429093, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198088380521484, "upper_button_position": 0.08134932449076093}], "rail_length": 5, "inclination": 85.01059055064586, "heading": 54.93201573609698} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349754240930802, "mass": 16.163581234608632, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330077789615244, "I_33_without_motor": 0.03131184207573471, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.877389719923961, "trigger": 800, "sampling_rate": 105, "lag": 1.516470657089342, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0160883872387734, "trigger": "apogee", "sampling_rate": 105, "lag": 1.618287019448364, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5783.059571378923, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032992854416340874, "grain_number": 5, "grain_density": 1832.5882153301334, "grain_outer_radius": 0.03294209965280307, "grain_initial_inner_radius": 0.015243618103180045, "grain_initial_height": 0.1212727503450929, "grain_separation": 0.0052876779468531395, "grains_center_of_mass_position": 0.3993716136477827, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003508471906176326, "throat_radius": 0.011773207492500002, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543140104103558}], "aerodynamic_surfaces": [{"length": 0.5577168563908007, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351849662907074}, {"n": 4, "root_chord": 0.11988155283300238, "tip_chord": 0.059594335428941055, "span": 0.11016464709861852, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488504436324395}, {"top_radius": 0.06432028413644938, "bottom_radius": 0.043765377730179536, "length": 0.060439720606550285, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699952393954388, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162038151769528, "upper_button_position": 0.08374857877743525}], "rail_length": 5, "inclination": 84.18986397182005, "heading": 52.484270892921266} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350554601942299, "mass": 15.568539833723328, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32480037385916, "I_33_without_motor": 0.02947257423175496, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.250031371393344, "trigger": 800, "sampling_rate": 105, "lag": 1.541233287989247, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.061250543119047, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6807946194290917, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5390.807566888918, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302313446868003, "grain_number": 5, "grain_density": 1908.448540860294, "grain_outer_radius": 0.033617277395624964, "grain_initial_inner_radius": 0.014690892104185477, "grain_initial_height": 0.11890944586971562, "grain_separation": 0.005993037497771057, "grains_center_of_mass_position": 0.39742570485100076, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002663244443329265, "throat_radius": 0.010687560574787858, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544556094589345}], "aerodynamic_surfaces": [{"length": 0.5588514758753764, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327323291980773}, {"n": 4, "root_chord": 0.11970098406215901, "tip_chord": 0.05941230933296394, "span": 0.10931437664491624, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050216601772045}, {"top_radius": 0.06408060564373758, "bottom_radius": 0.04372913791773418, "length": 0.05961145187128607, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996093119013107, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176695588154737, "upper_button_position": 0.08193975308583701}], "rail_length": 5, "inclination": 85.44705636821718, "heading": 54.214296242069125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350965361767233, "mass": 14.782796034623628, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309444684501296, "I_33_without_motor": 0.04331220093479832, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025833149768118, "trigger": 800, "sampling_rate": 105, "lag": 1.5505376345435358, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.7836363830039814, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6166702957827412, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6078.834670732002, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032664969320557236, "grain_number": 5, "grain_density": 1708.8175680612733, "grain_outer_radius": 0.03323642810747023, "grain_initial_inner_radius": 0.01457960801895112, "grain_initial_height": 0.1198470093402908, "grain_separation": 0.00467115885629336, "grains_center_of_mass_position": 0.39740525889741496, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019166521227730704, "throat_radius": 0.011339066695207282, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561600335381542}], "aerodynamic_surfaces": [{"length": 0.5589752911230091, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339692483767692}, {"n": 4, "root_chord": 0.12019558329813862, "tip_chord": 0.0605140081991008, "span": 0.10981697144428604, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490918327178016}, {"top_radius": 0.06291042055686405, "bottom_radius": 0.04279789914533393, "length": 0.05982752022546454, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699774121161205, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195168339145504, "upper_button_position": 0.0802572872466546}], "rail_length": 5, "inclination": 83.5234212290046, "heading": 56.172026127084436} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350486096002309, "mass": 15.824182055599952, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341873199454264, "I_33_without_motor": 0.03560179400037714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.870237978610744, "trigger": 800, "sampling_rate": 105, "lag": 1.5497941760639122, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.031284436689058, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4800740086499917, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6676.966314516843, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359441012731878, "grain_number": 5, "grain_density": 1748.5480854259022, "grain_outer_radius": 0.033030756050632534, "grain_initial_inner_radius": 0.014441290811313828, "grain_initial_height": 0.11917944864914114, "grain_separation": 0.004287057642480514, "grains_center_of_mass_position": 0.398124806978242, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010984617636151709, "throat_radius": 0.010978588616783316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558935710751802}], "aerodynamic_surfaces": [{"length": 0.55944304575267, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135244443402896}, {"n": 4, "root_chord": 0.11932508584852378, "tip_chord": 0.06047847610691061, "span": 0.11024884183389862, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484493653526121}, {"top_radius": 0.06253225239298246, "bottom_radius": 0.044206349267917236, "length": 0.0585743273429554, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012345214652612, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171800401117582, "upper_button_position": 0.08405448135350302}], "rail_length": 5, "inclination": 85.37810133797514, "heading": 54.94406195176243} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349703786910592, "mass": 15.345311748248575, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331049125503439, "I_33_without_motor": 0.04791298913673907, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.881792780676403, "trigger": 800, "sampling_rate": 105, "lag": 1.4660953791347573, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0093694837083484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5851687399441448, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6530.160691497194, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03221946172046619, "grain_number": 5, "grain_density": 1878.842858841299, "grain_outer_radius": 0.032360290998711794, "grain_initial_inner_radius": 0.01485545036233146, "grain_initial_height": 0.1191938474628577, "grain_separation": 0.004057711884637454, "grains_center_of_mass_position": 0.39736775226915294, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007405878148858998, "throat_radius": 0.009754515310973004, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552946342184634}], "aerodynamic_surfaces": [{"length": 0.5575833022008333, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131783937152178}, {"n": 4, "root_chord": 0.11991172618589026, "tip_chord": 0.060528485401647125, "span": 0.11000952898836323, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498233074603398}, {"top_radius": 0.0640755033323988, "bottom_radius": 0.04387996904526081, "length": 0.059528468943346485, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998208483405612, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160294694002216, "upper_button_position": 0.08379137894033961}], "rail_length": 5, "inclination": 85.0302170596407, "heading": 54.21041578214032} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349631698948045, "mass": 14.746622424025398, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316991856999594, "I_33_without_motor": 0.03893287336238039, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.870282048657856, "trigger": 800, "sampling_rate": 105, "lag": 1.499456965982523, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9943065937890389, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6138399899250429, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6510.430375537583, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033577623617331624, "grain_number": 5, "grain_density": 1753.2984881944171, "grain_outer_radius": 0.03267097679363165, "grain_initial_inner_radius": 0.014969909707553894, "grain_initial_height": 0.12014223607981475, "grain_separation": 0.005171821211793007, "grains_center_of_mass_position": 0.3971129831364424, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.5473656345035272e-05, "throat_radius": 0.010930263479483926, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254645313596881}], "aerodynamic_surfaces": [{"length": 0.557745425210896, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134631040669634}, {"n": 4, "root_chord": 0.12012248099700722, "tip_chord": 0.05981264417431058, "span": 0.11078191207267211, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497263921766768}, {"top_radius": 0.06342649596422233, "bottom_radius": 0.0441353289739942, "length": 0.05982954762171333, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6974168269230848, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185623305545978, "upper_button_position": 0.07885449636848707}], "rail_length": 5, "inclination": 86.19394006795214, "heading": 51.03007977984398} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0634966313991326, "mass": 15.237441117124739, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322473154744871, "I_33_without_motor": 0.024511238560376923, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029219950801046, "trigger": 800, "sampling_rate": 105, "lag": 1.5292644878712016, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9025127026852423, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6343393168946336, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6185.917531664461, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03195498816149164, "grain_number": 5, "grain_density": 1818.4828227970854, "grain_outer_radius": 0.03321615810773136, "grain_initial_inner_radius": 0.015020396936479519, "grain_initial_height": 0.12026669374871167, "grain_separation": 0.004239153742920905, "grains_center_of_mass_position": 0.3952657570292581, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008253993233891, "throat_radius": 0.010723024888789477, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561345835591364}], "aerodynamic_surfaces": [{"length": 0.558151495852548, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339322677279786}, {"n": 4, "root_chord": 0.11939013047035076, "tip_chord": 0.059428484301712645, "span": 0.11038773993000843, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493183174397225}, {"top_radius": 0.06308116600817915, "bottom_radius": 0.04274413181087621, "length": 0.05931163077978402, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987754455034669, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191229528028563, "upper_button_position": 0.07965249270061059}], "rail_length": 5, "inclination": 83.7210549514607, "heading": 52.49823300652739} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349974031086811, "mass": 15.636564420712212, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320027277151748, "I_33_without_motor": 0.03049532564307433, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960203490375788, "trigger": 800, "sampling_rate": 105, "lag": 1.60556041352724, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1091756392087122, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4852658335907423, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6763.8933274662395, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032407562043018284, "grain_number": 5, "grain_density": 1869.8474818249067, "grain_outer_radius": 0.0326107735037332, "grain_initial_inner_radius": 0.015405434545118819, "grain_initial_height": 0.12023470455268769, "grain_separation": 0.004301609786073756, "grains_center_of_mass_position": 0.39733143272433596, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017672776438328736, "throat_radius": 0.010344172199761595, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544162391593805}], "aerodynamic_surfaces": [{"length": 0.558134229854187, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133943032162958}, {"n": 4, "root_chord": 0.12101542449580986, "tip_chord": 0.059969009178448884, "span": 0.10922550530960996, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506808705548252}, {"top_radius": 0.06323420320730958, "bottom_radius": 0.043563364569342254, "length": 0.05998918917028297, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996977050362149, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186405595567922, "upper_button_position": 0.08105714547942267}], "rail_length": 5, "inclination": 85.55133183242135, "heading": 52.88986744359244} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06351217892324873, "mass": 14.446869528529051, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323677339832384, "I_33_without_motor": 0.03477540940791528, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057769641475168, "trigger": 800, "sampling_rate": 105, "lag": 1.4436321044059237, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9628902480757469, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4000074585562001, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5752.984724650252, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271084069708242, "grain_number": 5, "grain_density": 1742.039902651837, "grain_outer_radius": 0.033258412214201304, "grain_initial_inner_radius": 0.015299349527386994, "grain_initial_height": 0.11832572431891748, "grain_separation": 0.0039800585624905835, "grains_center_of_mass_position": 0.39669562518333307, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005646864328507434, "throat_radius": 0.010069871240219613, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254450943087181}], "aerodynamic_surfaces": [{"length": 0.5597598939371492, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339828688135605}, {"n": 4, "root_chord": 0.11914576138112944, "tip_chord": 0.059536123208618556, "span": 0.11007399852005277, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502392303308288}, {"top_radius": 0.06439095098588099, "bottom_radius": 0.044571293384133376, "length": 0.06203186213151825, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995967047612949, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197876015646658, "upper_button_position": 0.07980910319662904}], "rail_length": 5, "inclination": 84.51219745314467, "heading": 55.978394983407156} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350581094569702, "mass": 16.18486961275943, "I_11_without_motor": 6.321, "I_22_without_motor": 6.2998780733396735, "I_33_without_motor": 0.027051273754921196, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.739823229025607, "trigger": 800, "sampling_rate": 105, "lag": 1.5327147973311155, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1090821384572718, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4282475876384504, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6175.350563092936, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03213248365494992, "grain_number": 5, "grain_density": 1778.6861466747382, "grain_outer_radius": 0.03300348504101139, "grain_initial_inner_radius": 0.01514972362590356, "grain_initial_height": 0.1207908736265408, "grain_separation": 0.007502253131598276, "grains_center_of_mass_position": 0.3966083130676022, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.359612887628606e-06, "throat_radius": 0.01073210127906881, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547818706306588}], "aerodynamic_surfaces": [{"length": 0.5592753210626771, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350399925207841}, {"n": 4, "root_chord": 0.11978395278057305, "tip_chord": 0.05999707002860758, "span": 0.10914673272757695, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504569570258657}, {"top_radius": 0.06422037791713538, "bottom_radius": 0.04317713518718147, "length": 0.05905386542415005, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6978769486620876, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193155852481285, "upper_button_position": 0.07856136341395914}], "rail_length": 5, "inclination": 86.23534489182265, "heading": 53.27130289430641} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350694834169356, "mass": 15.083063887885247, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318364436534976, "I_33_without_motor": 0.038607361887869736, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.838800170654888, "trigger": 800, "sampling_rate": 105, "lag": 1.3829793407227597, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1137335150482761, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8419726515969939, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5970.767387334446, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316474385755819, "grain_number": 5, "grain_density": 1869.6419848126923, "grain_outer_radius": 0.033136646802558935, "grain_initial_inner_radius": 0.015546054819783056, "grain_initial_height": 0.12031222116256371, "grain_separation": 0.004988244306200486, "grains_center_of_mass_position": 0.3970691192871826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039451183056818146, "throat_radius": 0.011288450178111878, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547582280034875}], "aerodynamic_surfaces": [{"length": 0.5572306530974208, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344900659635515}, {"n": 4, "root_chord": 0.12060374366554175, "tip_chord": 0.058973697596180374, "span": 0.11035755264056732, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495421001672747}, {"top_radius": 0.0637747014637732, "bottom_radius": 0.04288211124153655, "length": 0.05859729325850806, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013348590399032, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169877180292452, "upper_button_position": 0.08434714101065799}], "rail_length": 5, "inclination": 83.56098731635488, "heading": 52.1242705303199} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06351093347423467, "mass": 15.043990851842365, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324457202102019, "I_33_without_motor": 0.03046840032759055, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.779607691972187, "trigger": 800, "sampling_rate": 105, "lag": 1.6100898071144756, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9925193585337765, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5070085616145246, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4844.3258833927075, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304667920059677, "grain_number": 5, "grain_density": 1836.5901813711098, "grain_outer_radius": 0.03288003811034673, "grain_initial_inner_radius": 0.014634894519606811, "grain_initial_height": 0.12002044827799957, "grain_separation": 0.005765145507815811, "grains_center_of_mass_position": 0.3965335145080563, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009460651174729193, "throat_radius": 0.010367943097792518, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531943592064565}], "aerodynamic_surfaces": [{"length": 0.5580506911382657, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133225278323197}, {"n": 4, "root_chord": 0.11970167565237261, "tip_chord": 0.060985382378798074, "span": 0.10982513385217478, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049069435886286}, {"top_radius": 0.06363792958244717, "bottom_radius": 0.04522130522976666, "length": 0.05844489060661292, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989385761294498, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180193310923842, "upper_button_position": 0.0809192450370656}], "rail_length": 5, "inclination": 85.9845355326607, "heading": 54.22928513559535} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349865496513821, "mass": 15.624819275323727, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309172642379964, "I_33_without_motor": 0.02674318631424971, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04068109241636, "trigger": 800, "sampling_rate": 105, "lag": 1.4411134539040338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0809639108780214, "trigger": "apogee", "sampling_rate": 105, "lag": 1.502163650942952, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7519.402934271568, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033005099405919704, "grain_number": 5, "grain_density": 1900.1312354708848, "grain_outer_radius": 0.033276546183568165, "grain_initial_inner_radius": 0.01479066734516458, "grain_initial_height": 0.11743420877739263, "grain_separation": 0.006451518626997641, "grains_center_of_mass_position": 0.39792045042941826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004531914617531788, "throat_radius": 0.010574799020721592, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547834907489295}], "aerodynamic_surfaces": [{"length": 0.5588330109114769, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336372114509028}, {"n": 4, "root_chord": 0.11923270892213335, "tip_chord": 0.060099723772535425, "span": 0.10984915081106324, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050786590842216}, {"top_radius": 0.06256765676519077, "bottom_radius": 0.04266584460039513, "length": 0.059362921665439064, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008286800624276, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183367533915749, "upper_button_position": 0.0824919266708527}], "rail_length": 5, "inclination": 84.87776307009692, "heading": 50.12372552413165} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06348932500538224, "mass": 15.256247095051355, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331723808880637, "I_33_without_motor": 0.04535945701657215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.866273801753355, "trigger": 800, "sampling_rate": 105, "lag": 1.5049851985694718, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.191350514780632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1836077933171238, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4861.537179118207, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348651691108317, "grain_number": 5, "grain_density": 1832.0005717810834, "grain_outer_radius": 0.03265521433757938, "grain_initial_inner_radius": 0.015339113987137542, "grain_initial_height": 0.11925467188935414, "grain_separation": 0.006694595307476054, "grains_center_of_mass_position": 0.3948140146773474, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015051198204045699, "throat_radius": 0.011562547109440121, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560613203983835}], "aerodynamic_surfaces": [{"length": 0.5582418345963591, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1369142239332577}, {"n": 4, "root_chord": 0.11882859644601013, "tip_chord": 0.060246931985879694, "span": 0.11058417825676052, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051474815263939}, {"top_radius": 0.06355240301764574, "bottom_radius": 0.04436242410285387, "length": 0.06092018260611602, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999641046743229, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169008298598744, "upper_button_position": 0.08306327481444853}], "rail_length": 5, "inclination": 81.69910706141695, "heading": 49.173079173057026} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349055767259167, "mass": 15.36220417524387, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325042425642376, "I_33_without_motor": 0.0370129613277018, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.163585504342135, "trigger": 800, "sampling_rate": 105, "lag": 1.639344829879217, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8763692905791739, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3257331064692912, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6607.557692217586, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220269499140277, "grain_number": 5, "grain_density": 1769.9333407421361, "grain_outer_radius": 0.03360525777867885, "grain_initial_inner_radius": 0.015066807009584595, "grain_initial_height": 0.11855704858884457, "grain_separation": 0.004243938785090411, "grains_center_of_mass_position": 0.396580085193052, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.97619929460221e-05, "throat_radius": 0.010165491305805135, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256033105021723}], "aerodynamic_surfaces": [{"length": 0.559156927798286, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340189968105443}, {"n": 4, "root_chord": 0.11892577490098726, "tip_chord": 0.060359977081363134, "span": 0.10937140948537366, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049271332562284}, {"top_radius": 0.0641282571440706, "bottom_radius": 0.042237208713970076, "length": 0.05977777201292265, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002230905688849, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173980745956443, "upper_button_position": 0.08282501597324055}], "rail_length": 5, "inclination": 87.19072149683885, "heading": 46.54927077952309} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350051272734598, "mass": 15.591022094939436, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311519437282122, "I_33_without_motor": 0.04636167848792583, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895089900102143, "trigger": 800, "sampling_rate": 105, "lag": 1.4835226800311978, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9731752642246077, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4404663177828392, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6051.344313249382, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359131801691446, "grain_number": 5, "grain_density": 1811.1062245370288, "grain_outer_radius": 0.032950571188660835, "grain_initial_inner_radius": 0.014918272404084635, "grain_initial_height": 0.12017797597498578, "grain_separation": 0.004360534731446871, "grains_center_of_mass_position": 0.3964764793083489, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000222565682083932, "throat_radius": 0.011129533514124098, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549834552458787}], "aerodynamic_surfaces": [{"length": 0.559073920724909, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134840020566116}, {"n": 4, "root_chord": 0.11986662491132781, "tip_chord": 0.06011042306326359, "span": 0.11034421883014171, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492307734581885}, {"top_radius": 0.06362146091427598, "bottom_radius": 0.04258837023180935, "length": 0.060085192083523566, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981448310129689, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182148750554178, "upper_button_position": 0.07992995595755104}], "rail_length": 5, "inclination": 84.54939628558519, "heading": 53.97532849593583} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349407768860132, "mass": 16.03218814364775, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319817782015031, "I_33_without_motor": 0.04560950021124821, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.131569008929974, "trigger": 800, "sampling_rate": 105, "lag": 1.4849582240850348, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0608857039698973, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4705553991910545, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6886.939033581345, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0325879164124094, "grain_number": 5, "grain_density": 1811.3353658637675, "grain_outer_radius": 0.033102427076454326, "grain_initial_inner_radius": 0.016197866487044577, "grain_initial_height": 0.12178083157662951, "grain_separation": 0.004464184187375718, "grains_center_of_mass_position": 0.3962196092743575, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024105343125826678, "throat_radius": 0.010533304524874321, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537119252641762}], "aerodynamic_surfaces": [{"length": 0.557742374473775, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333065821599668}, {"n": 4, "root_chord": 0.11939970516199565, "tip_chord": 0.059434691911739196, "span": 0.10972804968220665, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500623405706702}, {"top_radius": 0.06510459496588075, "bottom_radius": 0.04228720070102198, "length": 0.06131241682776579, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699234005305851, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618160520492431, "upper_button_position": 0.08107348481342003}], "rail_length": 5, "inclination": 85.67323593283646, "heading": 50.694436505149895} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350474600784727, "mass": 15.890028641047593, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318422633078678, "I_33_without_motor": 0.03274031518391282, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.11237362273179, "trigger": 800, "sampling_rate": 105, "lag": 1.4397979193894588, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1145947450987057, "trigger": "apogee", "sampling_rate": 105, "lag": 1.774609303747469, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5667.283076468193, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336208529006031, "grain_number": 5, "grain_density": 1856.961070446682, "grain_outer_radius": 0.03310898585859302, "grain_initial_inner_radius": 0.01433964652117428, "grain_initial_height": 0.1205291461673239, "grain_separation": 0.0033083506027263765, "grains_center_of_mass_position": 0.3976135442156507, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000288286380548155, "throat_radius": 0.011261255397736643, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544329391430236}], "aerodynamic_surfaces": [{"length": 0.5572923284883483, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338173245900915}, {"n": 4, "root_chord": 0.11995483597297933, "tip_chord": 0.060049569545244624, "span": 0.1094223165295896, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502562344135613}, {"top_radius": 0.06400608936822624, "bottom_radius": 0.043554968904960266, "length": 0.06037412137602556, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012775463568297, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191549583749976, "upper_button_position": 0.08212258798183214}], "rail_length": 5, "inclination": 84.3305921000078, "heading": 50.53013154141619} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349995702379373, "mass": 15.946748854707652, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325348967478942, "I_33_without_motor": 0.03108324646461954, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.982713699660213, "trigger": 800, "sampling_rate": 105, "lag": 1.4046883613241956, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9508797435341811, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5549277707020812, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4281.405279763221, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032512303370148855, "grain_number": 5, "grain_density": 1765.3183579764177, "grain_outer_radius": 0.03209551241569909, "grain_initial_inner_radius": 0.01496394733861158, "grain_initial_height": 0.11802234899201046, "grain_separation": 0.004443329090482471, "grains_center_of_mass_position": 0.39773066607285545, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007138597781316189, "throat_radius": 0.010730203533324392, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551956815112397}], "aerodynamic_surfaces": [{"length": 0.5589441689669438, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346766830452675}, {"n": 4, "root_chord": 0.11921279057708153, "tip_chord": 0.05906581904060807, "span": 0.11018360578852307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508019528307535}, {"top_radius": 0.06479616462150364, "bottom_radius": 0.041749837300462056, "length": 0.06084727667710305, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992017946577398, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191250969624311, "upper_button_position": 0.08007669769530867}], "rail_length": 5, "inclination": 85.11642934508109, "heading": 50.26466615945956} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349712759165632, "mass": 15.577433575146976, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299997344767244, "I_33_without_motor": 0.03332326486210267, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985285709359042, "trigger": 800, "sampling_rate": 105, "lag": 1.4670348072445707, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9043798386409474, "trigger": "apogee", "sampling_rate": 105, "lag": 1.594655813781454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5920.375817589377, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348946745307725, "grain_number": 5, "grain_density": 1797.1269830808621, "grain_outer_radius": 0.033602080984735244, "grain_initial_inner_radius": 0.015577873475788331, "grain_initial_height": 0.12019935099089006, "grain_separation": 0.004925950460869939, "grains_center_of_mass_position": 0.39514124969343434, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006018283720169804, "throat_radius": 0.011181508938288906, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545937978286736}], "aerodynamic_surfaces": [{"length": 0.5593483252400303, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134668226166139}, {"n": 4, "root_chord": 0.12049192391833165, "tip_chord": 0.06004188817262556, "span": 0.10917813441705028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511425748655918}, {"top_radius": 0.06409755365303393, "bottom_radius": 0.045008256715797314, "length": 0.059369516604621336, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004958144466819, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178708345661008, "upper_button_position": 0.08262497988058104}], "rail_length": 5, "inclination": 83.77855664483307, "heading": 47.891794042601916} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350488187452413, "mass": 15.100282443800914, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319239299389962, "I_33_without_motor": 0.024902526708689823, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952809758456437, "trigger": 800, "sampling_rate": 105, "lag": 1.4508719418839795, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.7882005928490625, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4070038424382472, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6840.8354258475165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366520606985804, "grain_number": 5, "grain_density": 1790.370275920536, "grain_outer_radius": 0.03331611399462018, "grain_initial_inner_radius": 0.014657220607018562, "grain_initial_height": 0.11854016940315901, "grain_separation": 0.005351365905420767, "grains_center_of_mass_position": 0.39643649579780493, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000611653666966348, "throat_radius": 0.010928934637277829, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255107336851132}], "aerodynamic_surfaces": [{"length": 0.5576826468709679, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133093546170905}, {"n": 4, "root_chord": 0.11921536002096485, "tip_chord": 0.0590301079891033, "span": 0.11028463002214504, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491498658170406}, {"top_radius": 0.06316422590694461, "bottom_radius": 0.04493570652759348, "length": 0.05881828984015665, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991373923446845, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193117088851622, "upper_button_position": 0.07982568345952235}], "rail_length": 5, "inclination": 84.91323669273895, "heading": 56.66298444297152} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349615396447462, "mass": 15.459612984818898, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317177088720182, "I_33_without_motor": 0.036399568762551335, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.966035219803091, "trigger": 800, "sampling_rate": 105, "lag": 1.4885958736627873, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.071532690533395, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6917327443804997, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7430.890370206638, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033634295449381985, "grain_number": 5, "grain_density": 1739.8851487493123, "grain_outer_radius": 0.03285912149068704, "grain_initial_inner_radius": 0.014890809241688167, "grain_initial_height": 0.11783016267673097, "grain_separation": 0.0039969903900475365, "grains_center_of_mass_position": 0.398286652024177, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011341376038695214, "throat_radius": 0.010754611868626696, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554658974009643}], "aerodynamic_surfaces": [{"length": 0.559343861087148, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343369179143992}, {"n": 4, "root_chord": 0.1187817377406206, "tip_chord": 0.05988704780240973, "span": 0.10945292979516832, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504068648867044}, {"top_radius": 0.06262518557557933, "bottom_radius": 0.044799110328766316, "length": 0.059619234753412506, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989545082699935, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178037388822177, "upper_button_position": 0.08115076938777577}], "rail_length": 5, "inclination": 83.57271480050521, "heading": 53.42449116858653} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350377652631128, "mass": 15.69350352777596, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319606335066485, "I_33_without_motor": 0.02505702461657204, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957558223673784, "trigger": 800, "sampling_rate": 105, "lag": 1.6417271646584704, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0490021673765662, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4475014585863102, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7311.627036393336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032708601070825356, "grain_number": 5, "grain_density": 1866.3888408381085, "grain_outer_radius": 0.03346546552927321, "grain_initial_inner_radius": 0.014536531854651577, "grain_initial_height": 0.11913821238854938, "grain_separation": 0.003961023150486754, "grains_center_of_mass_position": 0.39699112819803534, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007066547514634949, "throat_radius": 0.01121740456075649, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557643402754461}], "aerodynamic_surfaces": [{"length": 0.5581266705392449, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134566800890944}, {"n": 4, "root_chord": 0.11980738670446457, "tip_chord": 0.060481998038841966, "span": 0.10982790413764719, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047033146263989}, {"top_radius": 0.06380719870530155, "bottom_radius": 0.0426856792469156, "length": 0.06082751239076889, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010265456868536, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172311704073314, "upper_button_position": 0.08379537527952219}], "rail_length": 5, "inclination": 86.86471139992125, "heading": 54.462050513129284} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350547090401888, "mass": 15.323110367806121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336332105574704, "I_33_without_motor": 0.026842155366886663, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.019882133920664, "trigger": 800, "sampling_rate": 105, "lag": 1.5711740463568904, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9696306479507324, "trigger": "apogee", "sampling_rate": 105, "lag": 1.509612197969567, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7583.349839725002, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03344179020134566, "grain_number": 5, "grain_density": 1834.9177289510055, "grain_outer_radius": 0.0332604013144221, "grain_initial_inner_radius": 0.014817942547593537, "grain_initial_height": 0.12046432400347665, "grain_separation": 0.004437217798476593, "grains_center_of_mass_position": 0.3978006015570326, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010454290402054899, "throat_radius": 0.010975755691530866, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255497728453779}], "aerodynamic_surfaces": [{"length": 0.5583558121305727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336666555473662}, {"n": 4, "root_chord": 0.12040751977736162, "tip_chord": 0.06052664573720726, "span": 0.11043044783286013, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049308797990144}, {"top_radius": 0.06275718964195647, "bottom_radius": 0.0435748122472049, "length": 0.0591279983418276, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004346962507696, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182023362373885, "upper_button_position": 0.08223236001338108}], "rail_length": 5, "inclination": 82.25459435145062, "heading": 53.52875187567687} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350007474136907, "mass": 15.522124391026153, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309879748825669, "I_33_without_motor": 0.02544647339921456, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034345270568108, "trigger": 800, "sampling_rate": 105, "lag": 1.5271972555040971, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9018967054912931, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4034257806062764, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6892.861570613833, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252338674158174, "grain_number": 5, "grain_density": 1757.851073286715, "grain_outer_radius": 0.03183590102992795, "grain_initial_inner_radius": 0.015232585057702145, "grain_initial_height": 0.12092511426712806, "grain_separation": 0.004919942591989368, "grains_center_of_mass_position": 0.3977638584177035, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.5728443446818724e-05, "throat_radius": 0.011718148721002178, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559509088492764}], "aerodynamic_surfaces": [{"length": 0.5580920718461183, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341734855728594}, {"n": 4, "root_chord": 0.12040870272366772, "tip_chord": 0.05952666873270946, "span": 0.10935791708116482, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048083448181806}, {"top_radius": 0.06355235039026164, "bottom_radius": 0.044346044228698894, "length": 0.05860666962666074, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000952148754715, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178675092798345, "upper_button_position": 0.08222770559563708}], "rail_length": 5, "inclination": 84.64010304426019, "heading": 51.50813363941698} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350209398886913, "mass": 16.016669780121415, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3348629781444545, "I_33_without_motor": 0.03712204589496796, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.168363083976512, "trigger": 800, "sampling_rate": 105, "lag": 1.4337885207423682, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9348314922180531, "trigger": "apogee", "sampling_rate": 105, "lag": 1.352425669741473, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6961.801638961213, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293559410686044, "grain_number": 5, "grain_density": 1769.9355562257042, "grain_outer_radius": 0.033272360254296696, "grain_initial_inner_radius": 0.015081314323499363, "grain_initial_height": 0.11956453055416477, "grain_separation": 0.005117242655996022, "grains_center_of_mass_position": 0.39614860697550724, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001259022355317871, "throat_radius": 0.010437254601605179, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559056232489099}], "aerodynamic_surfaces": [{"length": 0.5595573309557147, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334444337528025}, {"n": 4, "root_chord": 0.11984820911242354, "tip_chord": 0.059837407091113244, "span": 0.11050904617989432, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482833837423924}, {"top_radius": 0.06453553987841514, "bottom_radius": 0.043728859717293775, "length": 0.05959874820865983, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698666291006067, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166864460237688, "upper_button_position": 0.08197984498229827}], "rail_length": 5, "inclination": 85.6467387810047, "heading": 55.08988316005795} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348957159853424, "mass": 15.406269972476624, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312954588668192, "I_33_without_motor": 0.024353827466028488, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.948701390132463, "trigger": 800, "sampling_rate": 105, "lag": 1.371001970529293, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9374556027414954, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4987329654905945, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7463.186293205752, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034013210140973804, "grain_number": 5, "grain_density": 1695.0793460476527, "grain_outer_radius": 0.03298196745504314, "grain_initial_inner_radius": 0.014269856776004137, "grain_initial_height": 0.11892228498374986, "grain_separation": 0.0058768882967602885, "grains_center_of_mass_position": 0.3953120598540211, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006162291607299041, "throat_radius": 0.01124255711701587, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546386573594275}], "aerodynamic_surfaces": [{"length": 0.5584654112150688, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336627756877995}, {"n": 4, "root_chord": 0.120171818736901, "tip_chord": 0.06027188289612869, "span": 0.1104634909525317, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506209919545983}, {"top_radius": 0.0651596409690265, "bottom_radius": 0.043428491254785206, "length": 0.05864762518353655, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699153745678418, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188978545283157, "upper_button_position": 0.08025589115010234}], "rail_length": 5, "inclination": 85.10666606364279, "heading": 53.13917718584236} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349202144230684, "mass": 15.262961469817185, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319107816638387, "I_33_without_motor": 0.028863751347802395, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.073037666084646, "trigger": 800, "sampling_rate": 105, "lag": 1.3788313592600194, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9778963794932637, "trigger": "apogee", "sampling_rate": 105, "lag": 1.522703938055318, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6722.16285147142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033053238562288347, "grain_number": 5, "grain_density": 1817.5955095443737, "grain_outer_radius": 0.032758584050554124, "grain_initial_inner_radius": 0.015452985155805404, "grain_initial_height": 0.12083347629075769, "grain_separation": 0.005040285266628733, "grains_center_of_mass_position": 0.39800043116738004, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001273085005996207, "throat_radius": 0.010847109531479143, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548095014347616}], "aerodynamic_surfaces": [{"length": 0.5580856906422482, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332891887516852}, {"n": 4, "root_chord": 0.12009718246405587, "tip_chord": 0.06079608976873686, "span": 0.10986118217490726, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496389392351475}, {"top_radius": 0.06350389488387426, "bottom_radius": 0.043490318661945755, "length": 0.060166937406188066, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018118300426995, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172316265179661, "upper_button_position": 0.08458020352473339}], "rail_length": 5, "inclination": 86.41244697434868, "heading": 51.93649255457852} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350167702303919, "mass": 14.487464081863365, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315459735637915, "I_33_without_motor": 0.026687723107607635, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.843588058831124, "trigger": 800, "sampling_rate": 105, "lag": 1.4889342477039156, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0023212595337132, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4099064352712036, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4898.912622163001, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0325601916936164, "grain_number": 5, "grain_density": 1825.9729103776588, "grain_outer_radius": 0.03296704191808269, "grain_initial_inner_radius": 0.014702255235616425, "grain_initial_height": 0.12038329409750174, "grain_separation": 0.003546556978407446, "grains_center_of_mass_position": 0.39585801799525755, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001546181246496369, "throat_radius": 0.010058435757136455, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543471175972856}], "aerodynamic_surfaces": [{"length": 0.5605761340086096, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336921792855053}, {"n": 4, "root_chord": 0.11992697734457938, "tip_chord": 0.06001517850886959, "span": 0.10923308320724139, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049001301719511}, {"top_radius": 0.06405946493981025, "bottom_radius": 0.04308667945350631, "length": 0.060620898621949304, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998464658039305, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173374754726464, "upper_button_position": 0.08250899033128412}], "rail_length": 5, "inclination": 85.04977929306457, "heading": 50.878643436749975} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0635013657989484, "mass": 16.085399388079573, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316658880133358, "I_33_without_motor": 0.039689490043063824, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070202625206948, "trigger": 800, "sampling_rate": 105, "lag": 1.4398980648823443, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0122730872664498, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5442252771368352, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5641.997892503301, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032384664708322596, "grain_number": 5, "grain_density": 1813.1030460661586, "grain_outer_radius": 0.033182574367330166, "grain_initial_inner_radius": 0.015501312989508055, "grain_initial_height": 0.11779994516370759, "grain_separation": 0.006103497082683177, "grains_center_of_mass_position": 0.39748061268408597, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031197485089530513, "throat_radius": 0.010357243999249078, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574079304409087}], "aerodynamic_surfaces": [{"length": 0.5591827807392122, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357441376948176}, {"n": 4, "root_chord": 0.11948501799543444, "tip_chord": 0.06089435585225639, "span": 0.109610599743881, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496811171850955}, {"top_radius": 0.06394452874749133, "bottom_radius": 0.043150251002622944, "length": 0.06058227556589982, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000201421739876, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178805939119704, "upper_button_position": 0.08213954826201719}], "rail_length": 5, "inclination": 83.40202957295385, "heading": 55.10484818293911} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350157238664385, "mass": 15.08117835042102, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316596011876793, "I_33_without_motor": 0.029365146215041764, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038259428499323, "trigger": 800, "sampling_rate": 105, "lag": 1.4146400046793084, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9683641103887141, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6679366191333689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6247.017231623306, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316717897524098, "grain_number": 5, "grain_density": 1808.34350847734, "grain_outer_radius": 0.03306564574956415, "grain_initial_inner_radius": 0.014922061618609869, "grain_initial_height": 0.12032023883906287, "grain_separation": 0.0045269550385583935, "grains_center_of_mass_position": 0.39620269287848, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001510469549409821, "throat_radius": 0.010630700297379492, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557874852282798}], "aerodynamic_surfaces": [{"length": 0.5585814916055447, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346783293397782}, {"n": 4, "root_chord": 0.12058935264852681, "tip_chord": 0.060428067963513354, "span": 0.110369514741665, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049440379810345}, {"top_radius": 0.06239645056298996, "bottom_radius": 0.04292230296409385, "length": 0.05958061065957821, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004839030924946, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164377362077238, "upper_button_position": 0.08404616688477085}], "rail_length": 5, "inclination": 83.664784020319, "heading": 52.888982660924306} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350137693418205, "mass": 15.512335663320506, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330549685557392, "I_33_without_motor": 0.03714847876146351, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035734000388713, "trigger": 800, "sampling_rate": 105, "lag": 1.5744617906293465, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0683651473491493, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8106572366733389, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6852.317934383302, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033281540913631315, "grain_number": 5, "grain_density": 1751.7951024202384, "grain_outer_radius": 0.033396450621665914, "grain_initial_inner_radius": 0.015417742966644728, "grain_initial_height": 0.12001656471982543, "grain_separation": 0.00486453263560085, "grains_center_of_mass_position": 0.396510564490341, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015959928811951757, "throat_radius": 0.010581248246568486, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549090385751172}], "aerodynamic_surfaces": [{"length": 0.5577983255310824, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340542779762552}, {"n": 4, "root_chord": 0.1206289883186214, "tip_chord": 0.060227582544844886, "span": 0.11072920139906192, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501955259851714}, {"top_radius": 0.0632442872324841, "bottom_radius": 0.04500908491400271, "length": 0.06051946103309236, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700411575959902, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171184592511968, "upper_button_position": 0.0832931167087052}], "rail_length": 5, "inclination": 85.26231260437278, "heading": 53.83647077040558} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349296636592502, "mass": 15.340924715726503, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317230722933874, "I_33_without_motor": 0.03572674923514217, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997611410856761, "trigger": 800, "sampling_rate": 105, "lag": 1.4446887176990142, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9828441300526276, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3848526763872153, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7243.179118519805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03203851124641578, "grain_number": 5, "grain_density": 1875.13139960867, "grain_outer_radius": 0.03291054606887855, "grain_initial_inner_radius": 0.015174733466026746, "grain_initial_height": 0.12028368675684101, "grain_separation": 0.005843727803460456, "grains_center_of_mass_position": 0.3967880496716222, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016277931117908032, "throat_radius": 0.012101797250054776, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560360428107404}], "aerodynamic_surfaces": [{"length": 0.5579035712723586, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134997366663939}, {"n": 4, "root_chord": 0.11990912203409893, "tip_chord": 0.05964620874772434, "span": 0.11019237477614817, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049040081173618}, {"top_radius": 0.06495099805367809, "bottom_radius": 0.04095062223740016, "length": 0.0599971242588257, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990680358818258, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185586785983085, "upper_button_position": 0.08050935728351727}], "rail_length": 5, "inclination": 84.88097893780078, "heading": 53.54482658377133} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349681734376343, "mass": 15.766592814196935, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31498849525034, "I_33_without_motor": 0.028078689304101352, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924150607439314, "trigger": 800, "sampling_rate": 105, "lag": 1.4517264093551934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9707972286672625, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5636293383638147, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6568.187224691757, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326426124034553, "grain_number": 5, "grain_density": 1801.1007325686883, "grain_outer_radius": 0.03254828942809719, "grain_initial_inner_radius": 0.014775588297209503, "grain_initial_height": 0.11909565994014046, "grain_separation": 0.005677259858799717, "grains_center_of_mass_position": 0.39622798142970256, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012692958487480429, "throat_radius": 0.010246066779224173, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555112118177405}], "aerodynamic_surfaces": [{"length": 0.5582329643763991, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133189351900571}, {"n": 4, "root_chord": 0.12046964480898986, "tip_chord": 0.060012972205597565, "span": 0.1099302700388722, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505848485059393}, {"top_radius": 0.06371209086925142, "bottom_radius": 0.04436173814572444, "length": 0.05837538468839107, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998173751224943, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176466718357077, "upper_button_position": 0.08217070328678666}], "rail_length": 5, "inclination": 84.55300401297119, "heading": 57.97574309254533} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.0634987692446557, "mass": 16.97368694062696, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32442369753771, "I_33_without_motor": 0.025330308741041443, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.048793506605906, "trigger": 800, "sampling_rate": 105, "lag": 1.411202616386591, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9842110958992112, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5525290190758811, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5312.476346400859, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293817365338702, "grain_number": 5, "grain_density": 1884.0604340611987, "grain_outer_radius": 0.03294951686930828, "grain_initial_inner_radius": 0.015196544390346536, "grain_initial_height": 0.12016382249628506, "grain_separation": 0.004647801573885449, "grains_center_of_mass_position": 0.39733513736944986, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005196346755937931, "throat_radius": 0.011086599319165696, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554973954890174}], "aerodynamic_surfaces": [{"length": 0.5591508171610019, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345888300208344}, {"n": 4, "root_chord": 0.11988127154000645, "tip_chord": 0.06040458724879639, "span": 0.1105602810953175, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049001220447702}, {"top_radius": 0.06378284379854042, "bottom_radius": 0.041989026480996214, "length": 0.05966159425335224, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982327063671788, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616735167563916, "upper_button_position": 0.08149753880326283}], "rail_length": 5, "inclination": 84.65294795272759, "heading": 52.32428395571539} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350228538363403, "mass": 15.705409184806344, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312769436251853, "I_33_without_motor": 0.034884078840996265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025497412413431, "trigger": 800, "sampling_rate": 105, "lag": 1.5264571990925513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0613604082196657, "trigger": "apogee", "sampling_rate": 105, "lag": 1.779528774660481, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4583.6930627266975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264508955151794, "grain_number": 5, "grain_density": 1890.1671273026614, "grain_outer_radius": 0.032727294876205855, "grain_initial_inner_radius": 0.014164226304140912, "grain_initial_height": 0.11931499153830084, "grain_separation": 0.005315538988298266, "grains_center_of_mass_position": 0.39636853638184316, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006729125966078402, "throat_radius": 0.011746424312357293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543010003826036}], "aerodynamic_surfaces": [{"length": 0.5574431587875129, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1359398144365316}, {"n": 4, "root_chord": 0.12034815392494465, "tip_chord": 0.06008267627467589, "span": 0.11026123664720543, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510436984838747}, {"top_radius": 0.06405274524954957, "bottom_radius": 0.04466584000781264, "length": 0.05922339929870534, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003861390088059, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169608374023834, "upper_button_position": 0.08342530160642248}], "rail_length": 5, "inclination": 85.12423763681387, "heading": 51.1763493848132} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350290143397348, "mass": 15.758086589494882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308887752779464, "I_33_without_motor": 0.034120374399778164, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.79764625218628, "trigger": 800, "sampling_rate": 105, "lag": 1.381988591446271, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9467804737435613, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6715243968164637, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5328.438523174048, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033901914468509035, "grain_number": 5, "grain_density": 1746.8620717868243, "grain_outer_radius": 0.033020274108433535, "grain_initial_inner_radius": 0.015053599347346156, "grain_initial_height": 0.1190895429527894, "grain_separation": 0.00414712907740487, "grains_center_of_mass_position": 0.3972413692194759, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009595452122305038, "throat_radius": 0.011196721509379746, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561283784216035}], "aerodynamic_surfaces": [{"length": 0.5584915011558673, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352113330394775}, {"n": 4, "root_chord": 0.11995504159298223, "tip_chord": 0.0604913054607807, "span": 0.11021137556047488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505843823175274}, {"top_radius": 0.06289604333691472, "bottom_radius": 0.043027530828170034, "length": 0.059730949558813896, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001080588264265, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184924649918468, "upper_button_position": 0.08161559383457961}], "rail_length": 5, "inclination": 84.2083410191523, "heading": 55.55426278248614} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350696547350364, "mass": 15.466401145396533, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324118861608966, "I_33_without_motor": 0.05280967594192104, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.146722220318866, "trigger": 800, "sampling_rate": 105, "lag": 1.5617195153083396, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.011133150814834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7147622377616227, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4877.2471664317345, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329927494347902, "grain_number": 5, "grain_density": 1701.7515171285654, "grain_outer_radius": 0.03245987107723081, "grain_initial_inner_radius": 0.015450259055600666, "grain_initial_height": 0.11953711267785953, "grain_separation": 0.005190418369162322, "grains_center_of_mass_position": 0.3956906195402757, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00045552696913908337, "throat_radius": 0.010584947638096882, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561483470913044}], "aerodynamic_surfaces": [{"length": 0.5584711853291983, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134775236229935}, {"n": 4, "root_chord": 0.1205219845796234, "tip_chord": 0.05982643781920558, "span": 0.1102252362578016, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485449931486193}, {"top_radius": 0.06351429088751356, "bottom_radius": 0.04176633048333491, "length": 0.06009698244694228, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699668302582398, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177550896060627, "upper_button_position": 0.08191321297633525}], "rail_length": 5, "inclination": 84.81181778854396, "heading": 50.75966283159398} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06348755928866338, "mass": 15.257611732947742, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326447413857802, "I_33_without_motor": 0.04517479938105116, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083711285905402, "trigger": 800, "sampling_rate": 105, "lag": 1.5649033692831387, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0657515163739704, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5586372632846377, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8342.299191038743, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032925964715719465, "grain_number": 5, "grain_density": 1851.4075191629872, "grain_outer_radius": 0.03323966256071448, "grain_initial_inner_radius": 0.015655230157076667, "grain_initial_height": 0.12090240105652389, "grain_separation": 0.003661384888979828, "grains_center_of_mass_position": 0.3957439147515537, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010857483393837853, "throat_radius": 0.010785115130340327, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565026505312138}], "aerodynamic_surfaces": [{"length": 0.5605822325661314, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134643740706082}, {"n": 4, "root_chord": 0.12064584370541243, "tip_chord": 0.0595092140302254, "span": 0.11005382453830449, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048570182461024}, {"top_radius": 0.06428079089115629, "bottom_radius": 0.04284098792797187, "length": 0.06208514113766514, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698292306783537, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617247911869701, "upper_button_position": 0.08104439491383608}], "rail_length": 5, "inclination": 84.4689174961941, "heading": 54.65977655039449} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350357475507651, "mass": 16.689926316812457, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308970517737831, "I_33_without_motor": 0.03781185489999326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.870823192577086, "trigger": 800, "sampling_rate": 105, "lag": 1.5635534002971863, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0465156869221173, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6156232205318777, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6845.984957208321, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276909072331368, "grain_number": 5, "grain_density": 1676.281766157346, "grain_outer_radius": 0.03234735994118011, "grain_initial_inner_radius": 0.01477865377301863, "grain_initial_height": 0.1192497385670505, "grain_separation": 0.0032826291531355186, "grains_center_of_mass_position": 0.39515581707295994, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003640391302169081, "throat_radius": 0.011652935991129655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553772274778188}], "aerodynamic_surfaces": [{"length": 0.5583929550723054, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340824570398733}, {"n": 4, "root_chord": 0.11919836571060001, "tip_chord": 0.06050550690142848, "span": 0.1097711895004718, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495103259923675}, {"top_radius": 0.0632290370934175, "bottom_radius": 0.04323216776344932, "length": 0.059042382491971496, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992812981983818, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200380353896119, "upper_button_position": 0.07924326280876992}], "rail_length": 5, "inclination": 85.2068788967425, "heading": 51.99296846343764} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349717699605964, "mass": 15.618671363554043, "I_11_without_motor": 6.321, "I_22_without_motor": 6.298177099484315, "I_33_without_motor": 0.03512809796188113, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.152429665905, "trigger": 800, "sampling_rate": 105, "lag": 1.493915244877969, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0411274519333082, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2335384047915092, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6689.292943304064, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03346168258088304, "grain_number": 5, "grain_density": 1666.8589540867488, "grain_outer_radius": 0.03351077244633966, "grain_initial_inner_radius": 0.015234925898305015, "grain_initial_height": 0.11860065854513324, "grain_separation": 0.005530333061524271, "grains_center_of_mass_position": 0.39525135846816817, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016018434752854577, "throat_radius": 0.010515195367478988, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559249696700483}], "aerodynamic_surfaces": [{"length": 0.5588121405956282, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328209075284659}, {"n": 4, "root_chord": 0.12035878646908944, "tip_chord": 0.05997104755996715, "span": 0.110314663595284, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485434082333558}, {"top_radius": 0.06360132037324884, "bottom_radius": 0.043760179037606525, "length": 0.05983142311359758, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014221293368131, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190089183437096, "upper_button_position": 0.0824132109931035}], "rail_length": 5, "inclination": 85.21923206252228, "heading": 52.23716865993396} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349129345479206, "mass": 15.831022294533506, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31524242932552, "I_33_without_motor": 0.04316021074947988, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93278299975294, "trigger": 800, "sampling_rate": 105, "lag": 1.4843227908139238, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0453626811670353, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5841070134778379, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7129.720877591925, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350497916572157, "grain_number": 5, "grain_density": 1804.5631157721525, "grain_outer_radius": 0.03301968012410501, "grain_initial_inner_radius": 0.0150170532250886, "grain_initial_height": 0.11907282185393767, "grain_separation": 0.0044390404674056975, "grains_center_of_mass_position": 0.39681247263730424, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00045053351757863683, "throat_radius": 0.011697096915348643, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255123416573501}], "aerodynamic_surfaces": [{"length": 0.5587864338418755, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335640218639456}, {"n": 4, "root_chord": 0.11920498462630075, "tip_chord": 0.05948874823340418, "span": 0.11013013171768456, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486756329758604}, {"top_radius": 0.06335115808858349, "bottom_radius": 0.04239755545595803, "length": 0.059881654957503055, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701106433644235, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176524760497839, "upper_button_position": 0.08345395759445107}], "rail_length": 5, "inclination": 84.94476159276391, "heading": 54.59923091616019} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06351310331996525, "mass": 14.763407165218867, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33335659185533, "I_33_without_motor": 0.033672538275707244, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03262871235539, "trigger": 800, "sampling_rate": 105, "lag": 1.1293196362957085, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.045668173728712, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3961352763857284, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5905.247230562609, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03376058730001181, "grain_number": 5, "grain_density": 1925.8568639438438, "grain_outer_radius": 0.033313725914368944, "grain_initial_inner_radius": 0.014888021604491247, "grain_initial_height": 0.11970263956415848, "grain_separation": 0.006190165675601439, "grains_center_of_mass_position": 0.3965984410909763, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007990242561814674, "throat_radius": 0.011263339966255524, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551708962696542}], "aerodynamic_surfaces": [{"length": 0.559365016597583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335962290964225}, {"n": 4, "root_chord": 0.1195176465596305, "tip_chord": 0.05964058578341736, "span": 0.1090338650070292, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484793356283018}, {"top_radius": 0.06263813030077738, "bottom_radius": 0.04467254849344418, "length": 0.05996769073890974, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998659841219577, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179626553986327, "upper_button_position": 0.08190332872332495}], "rail_length": 5, "inclination": 83.88970914955488, "heading": 54.03139111070011} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349256628022551, "mass": 15.597560794486576, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299563710469419, "I_33_without_motor": 0.029489123130719233, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040231064519539, "trigger": 800, "sampling_rate": 105, "lag": 1.386868499408994, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0601617785409658, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5091210049305073, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6272.6726081481775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032793537847419174, "grain_number": 5, "grain_density": 1854.8696762741636, "grain_outer_radius": 0.033711630030652126, "grain_initial_inner_radius": 0.015263112512156222, "grain_initial_height": 0.12127785527804555, "grain_separation": 0.004330004953990712, "grains_center_of_mass_position": 0.39632913482666515, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008734891604894577, "throat_radius": 0.011156256827056973, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254512882363575}], "aerodynamic_surfaces": [{"length": 0.5588674720201682, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343269178109943}, {"n": 4, "root_chord": 0.11979227643784614, "tip_chord": 0.05975062328826376, "span": 0.1107094232156657, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488487781859366}, {"top_radius": 0.06411060494330047, "bottom_radius": 0.04366367229354467, "length": 0.06101195168465724, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700568765977277, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199709173504019, "upper_button_position": 0.08059784862687513}], "rail_length": 5, "inclination": 87.5875382488349, "heading": 50.62575830612078} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635157784397906, "mass": 14.974641825740061, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308111211559839, "I_33_without_motor": 0.033595700542696644, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.806079537716816, "trigger": 800, "sampling_rate": 105, "lag": 1.307895641648233, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0041536725701885, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4344589588474612, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6278.396976644766, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03413897198446675, "grain_number": 5, "grain_density": 1802.6905022829633, "grain_outer_radius": 0.03225132984899075, "grain_initial_inner_radius": 0.015120686124050044, "grain_initial_height": 0.11942297901045944, "grain_separation": 0.005405533608374906, "grains_center_of_mass_position": 0.39552262674718325, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008475048193877121, "throat_radius": 0.010919234486688871, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560580928701557}], "aerodynamic_surfaces": [{"length": 0.5598721260207001, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13292425281404}, {"n": 4, "root_chord": 0.11993866858567614, "tip_chord": 0.05975709149413548, "span": 0.1096261665077716, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508228835768445}, {"top_radius": 0.06284451205983692, "bottom_radius": 0.04220104922991816, "length": 0.05994676487262951, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999836244459109, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195610493936249, "upper_button_position": 0.080422575052286}], "rail_length": 5, "inclination": 85.52702552992659, "heading": 52.76708158435969} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349663088094369, "mass": 16.20478566855188, "I_11_without_motor": 6.321, "I_22_without_motor": 6.344312020271661, "I_33_without_motor": 0.030574746109307188, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.982222552758353, "trigger": 800, "sampling_rate": 105, "lag": 1.3676229419786847, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0554137136822397, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8806831374042352, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6367.652646820397, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033586352328557306, "grain_number": 5, "grain_density": 1689.3502704920863, "grain_outer_radius": 0.03316872051181839, "grain_initial_inner_radius": 0.014608931238005378, "grain_initial_height": 0.1182062393031935, "grain_separation": 0.006222846656940004, "grains_center_of_mass_position": 0.3965489423844883, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006581260433946185, "throat_radius": 0.011635202336574191, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540373760037973}], "aerodynamic_surfaces": [{"length": 0.5595679054656498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348928256697697}, {"n": 4, "root_chord": 0.11957551824638392, "tip_chord": 0.059102032514026674, "span": 0.11064620497677775, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499900613415503}, {"top_radius": 0.06302914235550092, "bottom_radius": 0.043635376237642805, "length": 0.059565668950171874, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002418634615558, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173528053648654, "upper_button_position": 0.08288905809669045}], "rail_length": 5, "inclination": 85.60127755633995, "heading": 52.829070525059244} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350144133243339, "mass": 15.30149595990272, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319711601633666, "I_33_without_motor": 0.026806725216759288, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958862532287862, "trigger": 800, "sampling_rate": 105, "lag": 1.2914276658914345, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0750879968688996, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7199677086236969, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6043.205893769219, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033540560248181785, "grain_number": 5, "grain_density": 1774.276446303522, "grain_outer_radius": 0.032782005516441275, "grain_initial_inner_radius": 0.014789700800910351, "grain_initial_height": 0.1203934150810241, "grain_separation": 0.007588155067879077, "grains_center_of_mass_position": 0.3967471312298821, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.848639784452812e-06, "throat_radius": 0.01037157147594891, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559963526474436}], "aerodynamic_surfaces": [{"length": 0.5574367389778107, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13396452496992}, {"n": 4, "root_chord": 0.12031021090003231, "tip_chord": 0.06024129752027695, "span": 0.11008284791066643, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496247643888998}, {"top_radius": 0.062096865985058244, "bottom_radius": 0.04274906793364883, "length": 0.061059244568750115, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008013127856576, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618014620790613, "upper_button_position": 0.08278669199504463}], "rail_length": 5, "inclination": 85.7117572236709, "heading": 53.99365145248338} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635145782589108, "mass": 14.822583113743942, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330451259217041, "I_33_without_motor": 0.03857568283973537, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.972940184050207, "trigger": 800, "sampling_rate": 105, "lag": 1.5557715957761984, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8957364291716351, "trigger": "apogee", "sampling_rate": 105, "lag": 1.574587736946676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6114.408856211508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033755261268792636, "grain_number": 5, "grain_density": 1769.2735962817903, "grain_outer_radius": 0.033627635322945305, "grain_initial_inner_radius": 0.015046965202338327, "grain_initial_height": 0.12074015344717869, "grain_separation": 0.002963685465455641, "grains_center_of_mass_position": 0.39834192559111387, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006291765956208457, "throat_radius": 0.011878106612249603, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549810862877604}], "aerodynamic_surfaces": [{"length": 0.5572535785144274, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133891061837737}, {"n": 4, "root_chord": 0.11953920414869669, "tip_chord": 0.060323582296663056, "span": 0.11035727230089777, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494588448478572}, {"top_radius": 0.06459548210829377, "bottom_radius": 0.043831330814096424, "length": 0.06061740025103523, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001767649272562, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174084841738842, "upper_button_position": 0.08276828075337206}], "rail_length": 5, "inclination": 85.75466402828042, "heading": 56.72022636756114} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350506209557569, "mass": 14.898418851062377, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329968484995397, "I_33_without_motor": 0.03310333701392943, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.135539820158254, "trigger": 800, "sampling_rate": 105, "lag": 1.4853211756154394, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9865003653834785, "trigger": "apogee", "sampling_rate": 105, "lag": 1.585165578818771, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6043.7520454634405, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032716110813848426, "grain_number": 5, "grain_density": 1767.1970612845917, "grain_outer_radius": 0.03315159110748083, "grain_initial_inner_radius": 0.01590582769516279, "grain_initial_height": 0.11997202560818394, "grain_separation": 0.005257231307700788, "grains_center_of_mass_position": 0.39625452176974696, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013924398946077148, "throat_radius": 0.010980579446796219, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2571033781829082}], "aerodynamic_surfaces": [{"length": 0.5565498987996124, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1363459716500723}, {"n": 4, "root_chord": 0.120008779320132, "tip_chord": 0.060421665407793694, "span": 0.11085538916868828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487363262756269}, {"top_radius": 0.06231531996983568, "bottom_radius": 0.04311488783237104, "length": 0.05971926254163737, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6975606959243439, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189355372777492, "upper_button_position": 0.0786251586465947}], "rail_length": 5, "inclination": 84.03128253929366, "heading": 50.3277391452374} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635043455274096, "mass": 15.247253825852768, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327035029418128, "I_33_without_motor": 0.035560837087631976, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15125618587279, "trigger": 800, "sampling_rate": 105, "lag": 1.504337802225032, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0531162960130154, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2796598943349073, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5763.395689396736, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033607762094589655, "grain_number": 5, "grain_density": 1815.921951521073, "grain_outer_radius": 0.03297439309872805, "grain_initial_inner_radius": 0.015001109364164104, "grain_initial_height": 0.12047053873487391, "grain_separation": 0.004426976055113142, "grains_center_of_mass_position": 0.3960365636715542, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00038877219378283663, "throat_radius": 0.010676985990957562, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255210515327976}], "aerodynamic_surfaces": [{"length": 0.5585088241168895, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334877557294178}, {"n": 4, "root_chord": 0.11997375171992239, "tip_chord": 0.060204120105546606, "span": 0.1101404289336286, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502513798378563}, {"top_radius": 0.06451401400757006, "bottom_radius": 0.044172252896480975, "length": 0.059502393808494085, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993049571123746, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168976857466419, "upper_button_position": 0.08240727136573267}], "rail_length": 5, "inclination": 83.20590059403567, "heading": 52.571799192704766} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349296093994629, "mass": 15.698216038691141, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316729205900789, "I_33_without_motor": 0.05154615230160263, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925820392294769, "trigger": 800, "sampling_rate": 105, "lag": 1.4396910091107065, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.004475456277444, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0823640179937486, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8836.984591956265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307826484744295, "grain_number": 5, "grain_density": 1823.2031151153371, "grain_outer_radius": 0.032394218958106145, "grain_initial_inner_radius": 0.015426988434305353, "grain_initial_height": 0.1199224656145187, "grain_separation": 0.004916458490326118, "grains_center_of_mass_position": 0.3984166191174955, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001871721379650755, "throat_radius": 0.010575094552270145, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564380827595945}], "aerodynamic_surfaces": [{"length": 0.5598369856570582, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353600003937907}, {"n": 4, "root_chord": 0.11931374833667174, "tip_chord": 0.05976325878237935, "span": 0.10999535941091336, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484527461043867}, {"top_radius": 0.06271658759335873, "bottom_radius": 0.04283726776417548, "length": 0.06050424625621147, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992489153367883, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171708801378154, "upper_button_position": 0.08207803519897294}], "rail_length": 5, "inclination": 84.17383317575052, "heading": 54.14852898650575} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350993316196826, "mass": 15.09690383126804, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322151885286892, "I_33_without_motor": 0.04195808340224186, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090481219042118, "trigger": 800, "sampling_rate": 105, "lag": 1.5095890656303892, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9715775402601161, "trigger": "apogee", "sampling_rate": 105, "lag": 1.515247897847589, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5347.849330701422, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032748589681147966, "grain_number": 5, "grain_density": 1785.977327608245, "grain_outer_radius": 0.03307109912508156, "grain_initial_inner_radius": 0.015670958676165185, "grain_initial_height": 0.1196973265876975, "grain_separation": 0.006727678200248785, "grains_center_of_mass_position": 0.39701393130975093, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003641319538088578, "throat_radius": 0.010867525672815532, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547306059933805}], "aerodynamic_surfaces": [{"length": 0.5592599144404677, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133204004082055}, {"n": 4, "root_chord": 0.11980037509036962, "tip_chord": 0.06067566554370064, "span": 0.11039093539469734, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047495799162345}, {"top_radius": 0.06310559161977138, "bottom_radius": 0.043827937245132516, "length": 0.05948516122959677, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701119816214332, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166268836691845, "upper_button_position": 0.08449293254514745}], "rail_length": 5, "inclination": 82.96854215984835, "heading": 49.369172309475005} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349250072206206, "mass": 15.236182782636245, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309910271073082, "I_33_without_motor": 0.011145345563029915, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.872640881951437, "trigger": 800, "sampling_rate": 105, "lag": 1.4154755186807677, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.029931264421024, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5104902565180556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8422.630519560615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033521224636611065, "grain_number": 5, "grain_density": 1796.3887065985182, "grain_outer_radius": 0.032482858333342544, "grain_initial_inner_radius": 0.014731310761361197, "grain_initial_height": 0.11947372034943397, "grain_separation": 0.003167599468066601, "grains_center_of_mass_position": 0.3958659894196117, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.798218344912802e-05, "throat_radius": 0.010979430774619051, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254726897304367}], "aerodynamic_surfaces": [{"length": 0.5573780506197088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338157126656443}, {"n": 4, "root_chord": 0.11987318071373512, "tip_chord": 0.059887351427063605, "span": 0.11030777551210964, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493247454120367}, {"top_radius": 0.06273053375261163, "bottom_radius": 0.042725412818293146, "length": 0.060960836963878905, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007612096127847, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186259151504543, "upper_button_position": 0.08213529446233037}], "rail_length": 5, "inclination": 83.71031228771388, "heading": 52.585060773304654} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350706013762827, "mass": 16.040287944356912, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3327664382048585, "I_33_without_motor": 0.030383872393116098, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997985343538815, "trigger": 800, "sampling_rate": 105, "lag": 1.6929914147963192, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.069160489442433, "trigger": "apogee", "sampling_rate": 105, "lag": 1.296261656799952, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5891.746472275262, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375846431077999, "grain_number": 5, "grain_density": 1822.2966332358278, "grain_outer_radius": 0.03385369697113193, "grain_initial_inner_radius": 0.015458326910994321, "grain_initial_height": 0.11999982475100339, "grain_separation": 0.006236924947157777, "grains_center_of_mass_position": 0.3982251553458356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016159089344275407, "throat_radius": 0.011842268080621932, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536621411558908}], "aerodynamic_surfaces": [{"length": 0.5573274965104176, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1317354555880925}, {"n": 4, "root_chord": 0.1203976657917205, "tip_chord": 0.06086772632694415, "span": 0.10991395783910528, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494764088522155}, {"top_radius": 0.06477620286736073, "bottom_radius": 0.044241014605112525, "length": 0.06114082488521554, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000807847277151, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176953270767681, "upper_button_position": 0.08238545765094696}], "rail_length": 5, "inclination": 84.53938013512332, "heading": 52.80163496776792} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349865497499482, "mass": 15.987419450864962, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32029874994712, "I_33_without_motor": 0.05310576677329307, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.867463281942584, "trigger": 800, "sampling_rate": 105, "lag": 1.359920338717056, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0749823974103339, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5667320127801054, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4842.206234221754, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305323950428233, "grain_number": 5, "grain_density": 1844.2782295463094, "grain_outer_radius": 0.032432910260252884, "grain_initial_inner_radius": 0.014765293820121523, "grain_initial_height": 0.12005757150211287, "grain_separation": 0.005746575453063726, "grains_center_of_mass_position": 0.39638040904110733, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.678709716914499e-05, "throat_radius": 0.011339312403346088, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558841345696867}], "aerodynamic_surfaces": [{"length": 0.560110881489798, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354244798777582}, {"n": 4, "root_chord": 0.11953507814345175, "tip_chord": 0.06071365433659327, "span": 0.11051138308670928, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486853985900633}, {"top_radius": 0.06282278169845747, "bottom_radius": 0.042795756466071526, "length": 0.061197294689722265, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002603814998755, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174121250224585, "upper_button_position": 0.082848256477417}], "rail_length": 5, "inclination": 84.39882556678968, "heading": 51.41447079729374} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349484114069241, "mass": 15.004268572238333, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313422694764082, "I_33_without_motor": 0.044843719207480426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.028282983615611, "trigger": 800, "sampling_rate": 105, "lag": 1.472275561118572, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9654794158267908, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7860979020286463, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6551.59594839594, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03233029801546781, "grain_number": 5, "grain_density": 1703.9494786692521, "grain_outer_radius": 0.0327705229865888, "grain_initial_inner_radius": 0.015118295972759606, "grain_initial_height": 0.1189173019186228, "grain_separation": 0.005694034905452166, "grains_center_of_mass_position": 0.3969584081589519, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00036892512753668264, "throat_radius": 0.011750500782650502, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568561306437709}], "aerodynamic_surfaces": [{"length": 0.5580769378069325, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335980933553411}, {"n": 4, "root_chord": 0.12017587280835271, "tip_chord": 0.05950264519826752, "span": 0.110392832187358, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493467789567152}, {"top_radius": 0.0630626340550642, "bottom_radius": 0.041605046599807086, "length": 0.05879461942017686, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998414255238044, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182959490124497, "upper_button_position": 0.08154547651135469}], "rail_length": 5, "inclination": 85.35049511209564, "heading": 52.31544116674326} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349646412861731, "mass": 15.105311642703159, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320999466349699, "I_33_without_motor": 0.047857785706578955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.100206384680156, "trigger": 800, "sampling_rate": 105, "lag": 1.4250085588093526, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9326320694982834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4085450575817076, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6498.336359765771, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03253827704428723, "grain_number": 5, "grain_density": 1779.2530581130607, "grain_outer_radius": 0.03280166420288363, "grain_initial_inner_radius": 0.01525313295080789, "grain_initial_height": 0.12013775798294597, "grain_separation": 0.005387901691089173, "grains_center_of_mass_position": 0.3959642260881282, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008862104627981797, "throat_radius": 0.01084790636977796, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547085827661026}], "aerodynamic_surfaces": [{"length": 0.5581029574287037, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335730769189487}, {"n": 4, "root_chord": 0.12027580501044195, "tip_chord": 0.05985577511264863, "span": 0.11001537301003463, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500743484815087}, {"top_radius": 0.06482570118173986, "bottom_radius": 0.04275521737767051, "length": 0.06095126047556633, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996688373881564, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182666609225779, "upper_button_position": 0.08140217646557857}], "rail_length": 5, "inclination": 86.42008800540026, "heading": 52.61441285212911} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349879099369615, "mass": 15.130519292611378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327494262597919, "I_33_without_motor": 0.03636571441230872, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.832073978054234, "trigger": 800, "sampling_rate": 105, "lag": 1.6576268047813651, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.083609606931902, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3502153590594876, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4633.306704454064, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03342276756426559, "grain_number": 5, "grain_density": 1840.1453817767106, "grain_outer_radius": 0.03290903198954227, "grain_initial_inner_radius": 0.015490766720880815, "grain_initial_height": 0.11950122412945297, "grain_separation": 0.0038748890964034445, "grains_center_of_mass_position": 0.39703317210276945, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008904503445570383, "throat_radius": 0.01066802558203703, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562192835625143}], "aerodynamic_surfaces": [{"length": 0.5563890192487898, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328711847105095}, {"n": 4, "root_chord": 0.11983229227723838, "tip_chord": 0.06021176595096258, "span": 0.1103097098680457, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493348105996696}, {"top_radius": 0.06315870121576071, "bottom_radius": 0.041810956315890914, "length": 0.05985900714053718, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986261101165038, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165865575363606, "upper_button_position": 0.08203955258014317}], "rail_length": 5, "inclination": 86.20174952892901, "heading": 50.590716620768035} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635090086737144, "mass": 15.639803989489307, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323336528499906, "I_33_without_motor": 0.046358791878699374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037090547296712, "trigger": 800, "sampling_rate": 105, "lag": 1.4518176780043965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9987747963751726, "trigger": "apogee", "sampling_rate": 105, "lag": 1.437256202674161, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6234.940068575804, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03357157808484879, "grain_number": 5, "grain_density": 1866.485943869153, "grain_outer_radius": 0.0335887412799817, "grain_initial_inner_radius": 0.014384603305419658, "grain_initial_height": 0.12242800511528376, "grain_separation": 0.0038145871958654262, "grains_center_of_mass_position": 0.3968246020847351, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00027954872824153464, "throat_radius": 0.012019889212395971, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544601847176193}], "aerodynamic_surfaces": [{"length": 0.5596493865965045, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329510510730934}, {"n": 4, "root_chord": 0.11919408031660847, "tip_chord": 0.059930248994827656, "span": 0.10965389355764206, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499346514655528}, {"top_radius": 0.06514975734143111, "bottom_radius": 0.04442441092041345, "length": 0.060219133822580595, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004105726538611, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167126673007903, "upper_button_position": 0.08369790535307076}], "rail_length": 5, "inclination": 85.36499491751923, "heading": 53.285999494633266} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350183878823809, "mass": 14.868349138923463, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326102505211725, "I_33_without_motor": 0.02750639960986706, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961656213251374, "trigger": 800, "sampling_rate": 105, "lag": 1.4362388925899805, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9786849999924221, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2991660752094298, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5814.586386343618, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272079755557644, "grain_number": 5, "grain_density": 1809.521976380178, "grain_outer_radius": 0.03241026337206685, "grain_initial_inner_radius": 0.01515172194420851, "grain_initial_height": 0.1206394828163323, "grain_separation": 0.004143160630905464, "grains_center_of_mass_position": 0.39710122044206425, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.813780008939492e-05, "throat_radius": 0.010522261818187151, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550442785046716}], "aerodynamic_surfaces": [{"length": 0.5590958718006738, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329615464883374}, {"n": 4, "root_chord": 0.11953875304580622, "tip_chord": 0.06024662110730143, "span": 0.11049969642484923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051637926478165}, {"top_radius": 0.06450010290485533, "bottom_radius": 0.04264260803723131, "length": 0.0598880374631229, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002571861043174, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618003930999886, "upper_button_position": 0.08225325510443138}], "rail_length": 5, "inclination": 84.75623893443574, "heading": 52.65514553280906} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06348869894392951, "mass": 15.559369042702418, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3275982691154296, "I_33_without_motor": 0.04533985811066024, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.195798599738293, "trigger": 800, "sampling_rate": 105, "lag": 1.3024101874222012, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.044704529025333, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5172748468388095, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6697.904282626865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309594220831424, "grain_number": 5, "grain_density": 1809.6039320888544, "grain_outer_radius": 0.03285697485188301, "grain_initial_inner_radius": 0.015231800857847684, "grain_initial_height": 0.11946587812892155, "grain_separation": 0.0054924783156906146, "grains_center_of_mass_position": 0.3962089550805687, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005033681607310565, "throat_radius": 0.011589490395361357, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546154515684291}], "aerodynamic_surfaces": [{"length": 0.5598852164420858, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357597519216862}, {"n": 4, "root_chord": 0.1206211734547386, "tip_chord": 0.060490022879705244, "span": 0.11007649573443051, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496145528277832}, {"top_radius": 0.06012166339724554, "bottom_radius": 0.042874086020616146, "length": 0.06011103745775715, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700240472042231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190052600948136, "upper_button_position": 0.08123521194741745}], "rail_length": 5, "inclination": 84.28343449908004, "heading": 47.47279538797064} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350040693031082, "mass": 15.29991631659731, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299702786463771, "I_33_without_motor": 0.043215094426615336, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933362160265588, "trigger": 800, "sampling_rate": 105, "lag": 1.432884730292243, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0374695420123472, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9852850011503033, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6258.761932219957, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03369207217953206, "grain_number": 5, "grain_density": 1852.584170058988, "grain_outer_radius": 0.03314935335776865, "grain_initial_inner_radius": 0.015128844194134823, "grain_initial_height": 0.12009583290586391, "grain_separation": 0.004243434542231692, "grains_center_of_mass_position": 0.39681019544853313, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002177295111205054, "throat_radius": 0.010911270578783558, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25249011954368}], "aerodynamic_surfaces": [{"length": 0.55884336566115, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132799445925905}, {"n": 4, "root_chord": 0.11965289120553867, "tip_chord": 0.060150022495700735, "span": 0.10955192733759019, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498311001454925}, {"top_radius": 0.06381741844052924, "bottom_radius": 0.04334014227760103, "length": 0.061017757336674444, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988421673877997, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191477709468001, "upper_button_position": 0.07969439644099963}], "rail_length": 5, "inclination": 84.30924821221662, "heading": 53.444693884694765} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350815649154021, "mass": 15.326881644416625, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312810248139529, "I_33_without_motor": 0.025583597485961763, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.069024126537501, "trigger": 800, "sampling_rate": 105, "lag": 1.6564773711682221, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8990351870556206, "trigger": "apogee", "sampling_rate": 105, "lag": 1.558026617043349, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5572.5540303842, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033288442699142225, "grain_number": 5, "grain_density": 1810.004901893089, "grain_outer_radius": 0.033924368495554566, "grain_initial_inner_radius": 0.014835253806590879, "grain_initial_height": 0.11942442345830338, "grain_separation": 0.0053470073193171465, "grains_center_of_mass_position": 0.39664135802714023, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003364196450515038, "throat_radius": 0.011130079196306352, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559707216548603}], "aerodynamic_surfaces": [{"length": 0.5598919571264916, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347970365361184}, {"n": 4, "root_chord": 0.12003995620313625, "tip_chord": 0.06048489088096799, "span": 0.11019186385708475, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487106917714355}, {"top_radius": 0.06339709490200107, "bottom_radius": 0.0431465675284212, "length": 0.058059633381551325, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992749554211152, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177132027087413, "upper_button_position": 0.08156175271237387}], "rail_length": 5, "inclination": 83.8930231648764, "heading": 50.23878338578684} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349892592890084, "mass": 15.164496768808526, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31899561612787, "I_33_without_motor": 0.030070109859709815, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958972303881463, "trigger": 800, "sampling_rate": 105, "lag": 1.4741577580807848, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0586969992419752, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3628804856626577, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5762.819079471822, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303434390394296, "grain_number": 5, "grain_density": 1676.619189088941, "grain_outer_radius": 0.03320979630819546, "grain_initial_inner_radius": 0.014946419328665644, "grain_initial_height": 0.12014066606559813, "grain_separation": 0.004847082567286224, "grains_center_of_mass_position": 0.39516080073614923, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011703198104706636, "throat_radius": 0.011101964362529816, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255999148841109}], "aerodynamic_surfaces": [{"length": 0.5591624945984992, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347593221876144}, {"n": 4, "root_chord": 0.12041842204571085, "tip_chord": 0.060004793558377754, "span": 0.11031787498456135, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497534591140063}, {"top_radius": 0.06334298799782817, "bottom_radius": 0.044472986560534916, "length": 0.06264216640294189, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996068419867584, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193874568006678, "upper_button_position": 0.08021938518609062}], "rail_length": 5, "inclination": 83.31619689270623, "heading": 52.95933894945707} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350313290547015, "mass": 16.10039026419902, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330130499175332, "I_33_without_motor": 0.0344111112996521, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.170556240600108, "trigger": 800, "sampling_rate": 105, "lag": 1.6196435125207915, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0433328738349643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.501903618870637, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7375.807039566225, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032765611318426445, "grain_number": 5, "grain_density": 1857.6616878614295, "grain_outer_radius": 0.03326001558079134, "grain_initial_inner_radius": 0.014790903437322863, "grain_initial_height": 0.12029202123769245, "grain_separation": 0.00435827685151444, "grains_center_of_mass_position": 0.396063265688173, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000712539678188759, "throat_radius": 0.011140479352698383, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254951069125292}], "aerodynamic_surfaces": [{"length": 0.5581454260709576, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348637131539807}, {"n": 4, "root_chord": 0.12061590344297898, "tip_chord": 0.06059141981820696, "span": 0.10961865837371465, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491322620218528}, {"top_radius": 0.06432093910072487, "bottom_radius": 0.04337171848209466, "length": 0.05968697118754806, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995360743668931, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171334254307632, "upper_button_position": 0.08240264893612992}], "rail_length": 5, "inclination": 84.44277336174414, "heading": 52.37431893725815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350347121130123, "mass": 15.70262799834762, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316692997922637, "I_33_without_motor": 0.04287956863250094, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.068315214244512, "trigger": 800, "sampling_rate": 105, "lag": 1.4304421281108692, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9185061225669691, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5332561672181375, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6505.341597833676, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032438340165034975, "grain_number": 5, "grain_density": 1820.7688325876452, "grain_outer_radius": 0.032846709403209724, "grain_initial_inner_radius": 0.014578349210305541, "grain_initial_height": 0.11887196044880298, "grain_separation": 0.004218046369658905, "grains_center_of_mass_position": 0.39761286069058216, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.213002722327763e-05, "throat_radius": 0.011238854505608811, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254470662302863}], "aerodynamic_surfaces": [{"length": 0.5585415851533323, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346134792186382}, {"n": 4, "root_chord": 0.120679612192658, "tip_chord": 0.059969666981425904, "span": 0.11007791858423444, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490900755466817}, {"top_radius": 0.06457696011316102, "bottom_radius": 0.04341063194758055, "length": 0.05932079520047622, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987053265894784, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177339803858817, "upper_button_position": 0.0809713462035967}], "rail_length": 5, "inclination": 85.6601416274476, "heading": 53.801461002715364} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349370249149273, "mass": 15.827251608970922, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303284260118605, "I_33_without_motor": 0.037977657101634255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.839406924366754, "trigger": 800, "sampling_rate": 105, "lag": 1.3780899750344198, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0121665687924761, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3233228632452796, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8363.480633355015, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03358290155874624, "grain_number": 5, "grain_density": 1773.0427368365717, "grain_outer_radius": 0.03295886748020807, "grain_initial_inner_radius": 0.014546351222902015, "grain_initial_height": 0.11915855286943992, "grain_separation": 0.0026301521053535564, "grains_center_of_mass_position": 0.3969112214823211, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004413480179007616, "throat_radius": 0.011226708195936224, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548023167883327}], "aerodynamic_surfaces": [{"length": 0.5589935818156294, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345389322426893}, {"n": 4, "root_chord": 0.12110283369238625, "tip_chord": 0.060036618006892604, "span": 0.1102337479060304, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049913674522621}, {"top_radius": 0.06293649176489796, "bottom_radius": 0.04484693482296695, "length": 0.05823166112736871, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993575867817342, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176231433995849, "upper_button_position": 0.0817344433821493}], "rail_length": 5, "inclination": 83.64283774203824, "heading": 54.89105306677308} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350492673608388, "mass": 15.37195941923643, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317459676756895, "I_33_without_motor": 0.02684343381992892, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93174938110769, "trigger": 800, "sampling_rate": 105, "lag": 1.4746917602304375, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9679131980346792, "trigger": "apogee", "sampling_rate": 105, "lag": 1.592821442937369, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6305.325963719266, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296863332512421, "grain_number": 5, "grain_density": 1813.4431542218163, "grain_outer_radius": 0.03370610826835887, "grain_initial_inner_radius": 0.01564690588809191, "grain_initial_height": 0.11845683043805529, "grain_separation": 0.0052297257814080764, "grains_center_of_mass_position": 0.3979759634716261, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007091083607321994, "throat_radius": 0.010671265955733701, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533892665497801}], "aerodynamic_surfaces": [{"length": 0.5580870029881658, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133088937197884}, {"n": 4, "root_chord": 0.12011799133367512, "tip_chord": 0.05969181102525103, "span": 0.11046549472744861, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049805627109839}, {"top_radius": 0.061874642824958206, "bottom_radius": 0.043831838481316346, "length": 0.05992420819924053, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995703519221683, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184739831976797, "upper_button_position": 0.08109636872448867}], "rail_length": 5, "inclination": 83.611419150386, "heading": 54.18974031765612} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349870395606622, "mass": 15.714170862084064, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306026416629446, "I_33_without_motor": 0.04319545522899576, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.088799096452204, "trigger": 800, "sampling_rate": 105, "lag": 1.704942791592241, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1102795733405553, "trigger": "apogee", "sampling_rate": 105, "lag": 1.736547557321492, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5488.362001567039, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033046934082462245, "grain_number": 5, "grain_density": 1783.8707325301896, "grain_outer_radius": 0.03338213180491817, "grain_initial_inner_radius": 0.015179535620613065, "grain_initial_height": 0.11934926210689166, "grain_separation": 0.005554882536565949, "grains_center_of_mass_position": 0.39698906708051174, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007647347758377431, "throat_radius": 0.010331395023091272, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556566081732374}], "aerodynamic_surfaces": [{"length": 0.5572995727910659, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1321940430813515}, {"n": 4, "root_chord": 0.12031713467407208, "tip_chord": 0.06048578844080526, "span": 0.11071056714341365, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049112215806383}, {"top_radius": 0.06198397131309136, "bottom_radius": 0.04429013545902245, "length": 0.05950168676061341, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980786735569765, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177054033947129, "upper_button_position": 0.08037327016226359}], "rail_length": 5, "inclination": 83.7182432275498, "heading": 56.69024457280942} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06348894159160963, "mass": 15.443224397212777, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316621657944479, "I_33_without_motor": 0.030440814518453027, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.172700416708441, "trigger": 800, "sampling_rate": 105, "lag": 1.4550350807473122, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9688617984858819, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4009491353352548, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7216.394236597182, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03403704944484845, "grain_number": 5, "grain_density": 1861.28885297484, "grain_outer_radius": 0.03299925601871134, "grain_initial_inner_radius": 0.01546562002548939, "grain_initial_height": 0.12084168575472039, "grain_separation": 0.006255795411471284, "grains_center_of_mass_position": 0.39788289556367673, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0028315183452558633, "throat_radius": 0.011108259979991484, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557668270666897}], "aerodynamic_surfaces": [{"length": 0.5589091411484087, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352800151605023}, {"n": 4, "root_chord": 0.12008936479700898, "tip_chord": 0.05969662461327232, "span": 0.11013972681256338, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499606345233494}, {"top_radius": 0.06475435268396897, "bottom_radius": 0.04322282617859966, "length": 0.06273746979888938, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003743605472832, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179167414122605, "upper_button_position": 0.0824576191350227}], "rail_length": 5, "inclination": 84.19082985513785, "heading": 53.7840891237499} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349353932240265, "mass": 15.217636653450723, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310708016366995, "I_33_without_motor": 0.022912309496126174, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956406104466213, "trigger": 800, "sampling_rate": 105, "lag": 1.607608015895121, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0532206906620618, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3974931778287294, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6676.967272218776, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032643426605329734, "grain_number": 5, "grain_density": 1892.3146480831233, "grain_outer_radius": 0.03357989584179527, "grain_initial_inner_radius": 0.015106885554629666, "grain_initial_height": 0.11949882800453113, "grain_separation": 0.0030193284575172137, "grains_center_of_mass_position": 0.3964147323358289, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005712109865311248, "throat_radius": 0.01063135574717632, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555174524979678}], "aerodynamic_surfaces": [{"length": 0.5567758907971102, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335947950224605}, {"n": 4, "root_chord": 0.12051821196212245, "tip_chord": 0.059876024343286774, "span": 0.10901945712170442, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04972110400367}, {"top_radius": 0.06412390408238992, "bottom_radius": 0.043650944554483526, "length": 0.05985680648362139, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999938797841142, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190365278607592, "upper_button_position": 0.08095735192335496}], "rail_length": 5, "inclination": 85.20199642027347, "heading": 53.51864614037308} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350169671918073, "mass": 15.436412383844115, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330061671728754, "I_33_without_motor": 0.03629225156698474, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.066988884700743, "trigger": 800, "sampling_rate": 105, "lag": 1.4655272587060606, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.082814256176604, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8062378900151705, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8270.76207210444, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03299479059166721, "grain_number": 5, "grain_density": 1752.0801715895875, "grain_outer_radius": 0.03381443585504186, "grain_initial_inner_radius": 0.01441995445418806, "grain_initial_height": 0.1199735890256075, "grain_separation": 0.005723305709293718, "grains_center_of_mass_position": 0.39825734512521144, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001357725809195965, "throat_radius": 0.010497071477645985, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566392581279542}], "aerodynamic_surfaces": [{"length": 0.5581907601685024, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133428351643044}, {"n": 4, "root_chord": 0.12054051093438269, "tip_chord": 0.05861037665463574, "span": 0.11036911764580361, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507721030974302}, {"top_radius": 0.0631905648318602, "bottom_radius": 0.04458939037962417, "length": 0.061255070405083815, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699267210722644, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160625392782292, "upper_button_position": 0.08320467144441479}], "rail_length": 5, "inclination": 84.60219979226731, "heading": 49.61438478987941} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349800989334023, "mass": 14.914943114808874, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324411951134358, "I_33_without_motor": 0.04515073218803434, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.11449235035551, "trigger": 800, "sampling_rate": 105, "lag": 1.3044168439043191, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9414026963415754, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1906867098584377, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6789.319183616694, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033700090346935024, "grain_number": 5, "grain_density": 1801.254460111863, "grain_outer_radius": 0.03351306961777636, "grain_initial_inner_radius": 0.015008325638336702, "grain_initial_height": 0.11960366424076696, "grain_separation": 0.005815008001814942, "grains_center_of_mass_position": 0.3967661963408357, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003908100324132978, "throat_radius": 0.011622060483970315, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536278021286467}], "aerodynamic_surfaces": [{"length": 0.5590759502743302, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133560432881365}, {"n": 4, "root_chord": 0.11981003152714102, "tip_chord": 0.0596008060477033, "span": 0.10990832272968984, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050786203206685}, {"top_radius": 0.06590177215376405, "bottom_radius": 0.042968166544998604, "length": 0.05990569839114822, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6978791741465095, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184317687527786, "upper_button_position": 0.07944740539373085}], "rail_length": 5, "inclination": 86.02106474919182, "heading": 55.254093189170675} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350283913977398, "mass": 15.958726481408748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3331104853131395, "I_33_without_motor": 0.02391973512565149, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.123801830315646, "trigger": 800, "sampling_rate": 105, "lag": 1.4765499886552218, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9016523059608973, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4815667422746812, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5327.907647530278, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262824537635882, "grain_number": 5, "grain_density": 1751.3705526176204, "grain_outer_radius": 0.03279806979976658, "grain_initial_inner_radius": 0.014901068723914503, "grain_initial_height": 0.12063928978784672, "grain_separation": 0.00370695590722452, "grains_center_of_mass_position": 0.3983136955495192, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000990245875661046, "throat_radius": 0.011389279888273613, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547174004207595}], "aerodynamic_surfaces": [{"length": 0.5583460259465819, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338687366874016}, {"n": 4, "root_chord": 0.11958130251385693, "tip_chord": 0.060756547659343185, "span": 0.11071365402303539, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508077664157676}, {"top_radius": 0.06371592671450754, "bottom_radius": 0.043652030418915834, "length": 0.060962779116389365, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699959728174868, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168552822572134, "upper_button_position": 0.08310444591765453}], "rail_length": 5, "inclination": 84.44788794745392, "heading": 49.94357757431476} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349428753095399, "mass": 15.108742833399356, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312565470677323, "I_33_without_motor": 0.0344507441552103, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090841516504062, "trigger": 800, "sampling_rate": 105, "lag": 1.6317506404627709, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.034296863052648, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7146611497649413, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7160.441114237248, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032734781403769855, "grain_number": 5, "grain_density": 1775.1033342926478, "grain_outer_radius": 0.032707716968169855, "grain_initial_inner_radius": 0.015296227424347325, "grain_initial_height": 0.11964591508095472, "grain_separation": 0.005279221741532125, "grains_center_of_mass_position": 0.3977113851506663, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013772759175306383, "throat_radius": 0.0113673654845344, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564829924451357}], "aerodynamic_surfaces": [{"length": 0.5588833995967364, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135025595425597}, {"n": 4, "root_chord": 0.11909773614438242, "tip_chord": 0.060344383996531664, "span": 0.1107014956741648, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488168652710321}, {"top_radius": 0.06431976442094334, "bottom_radius": 0.04270344843235191, "length": 0.059872658606607954, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996537442894147, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181530893691654, "upper_button_position": 0.08150065492024938}], "rail_length": 5, "inclination": 84.97961791258113, "heading": 52.36103137951007} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349500343036915, "mass": 15.808660360313144, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316974694594612, "I_33_without_motor": 0.020026127117376995, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.987112164736319, "trigger": 800, "sampling_rate": 105, "lag": 1.6094809728238795, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9622490982543772, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4637715642084739, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5771.19098282863, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032920892948714496, "grain_number": 5, "grain_density": 1737.5434103197679, "grain_outer_radius": 0.03256924876008994, "grain_initial_inner_radius": 0.015212039286436663, "grain_initial_height": 0.12187324123652937, "grain_separation": 0.0050487173841268825, "grains_center_of_mass_position": 0.3973212164795021, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002812771204723559, "throat_radius": 0.010911660242252673, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255947342960723}], "aerodynamic_surfaces": [{"length": 0.5573690006078513, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345535526793353}, {"n": 4, "root_chord": 0.11930147673468555, "tip_chord": 0.060614789165917886, "span": 0.10977312683000152, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499454912415964}, {"top_radius": 0.06364480515446769, "bottom_radius": 0.042191444446339335, "length": 0.059905169293309544, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699621754840778, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182364023292761, "upper_button_position": 0.08138535251150192}], "rail_length": 5, "inclination": 83.43413149101329, "heading": 52.04258062666797} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350703423298536, "mass": 15.127151486834109, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324965036673605, "I_33_without_motor": 0.03799351080881276, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015400211400419, "trigger": 800, "sampling_rate": 105, "lag": 1.5226508284027522, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9860874347247122, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4014156106899687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6616.939819079277, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263562126865434, "grain_number": 5, "grain_density": 1870.6264348695613, "grain_outer_radius": 0.03346489637446622, "grain_initial_inner_radius": 0.014683630319277554, "grain_initial_height": 0.12052066118860524, "grain_separation": 0.005935304018936149, "grains_center_of_mass_position": 0.3985022600457093, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014185853059623676, "throat_radius": 0.011473602596211684, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254061465706233}], "aerodynamic_surfaces": [{"length": 0.5581628065146649, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348476464461552}, {"n": 4, "root_chord": 0.11937498905243343, "tip_chord": 0.05955648014004544, "span": 0.10972780460191149, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488475845254424}, {"top_radius": 0.06516832935883451, "bottom_radius": 0.04397332700563043, "length": 0.06020398613093928, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003022397726539, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177502698594487, "upper_button_position": 0.08255196991320524}], "rail_length": 5, "inclination": 84.82788072526937, "heading": 52.89237134187711} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349923084192922, "mass": 15.740240659989627, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324385344852869, "I_33_without_motor": 0.03891324875955279, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.165672300812567, "trigger": 800, "sampling_rate": 105, "lag": 1.4914134801568444, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0899421489520627, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8896016306808836, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6447.828065657982, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03387245758261119, "grain_number": 5, "grain_density": 1771.3096417500055, "grain_outer_radius": 0.032559319081065054, "grain_initial_inner_radius": 0.01515977472675672, "grain_initial_height": 0.12033521046012079, "grain_separation": 0.004387035693564115, "grains_center_of_mass_position": 0.3965780438902023, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012759080598322011, "throat_radius": 0.0111551751200604, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254809893251277}], "aerodynamic_surfaces": [{"length": 0.5575552342857294, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133556894634734}, {"n": 4, "root_chord": 0.11972641580491776, "tip_chord": 0.06105273717996148, "span": 0.10963163448048106, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486013597650516}, {"top_radius": 0.06238283887606613, "bottom_radius": 0.04241559052961375, "length": 0.06091915791323657, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013988066315718, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6208962346010756, "upper_button_position": 0.08050257203049627}], "rail_length": 5, "inclination": 84.59090415782023, "heading": 52.14109017290528} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350404786500229, "mass": 16.137269014738774, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330991517495053, "I_33_without_motor": 0.025172625689002838, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.137354148113344, "trigger": 800, "sampling_rate": 105, "lag": 1.5453107713794363, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1447609876114382, "trigger": "apogee", "sampling_rate": 105, "lag": 1.407767286731803, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4710.6971331659415, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033258247942796276, "grain_number": 5, "grain_density": 1808.0064540191117, "grain_outer_radius": 0.03323132409812556, "grain_initial_inner_radius": 0.01479327175608937, "grain_initial_height": 0.12116584012496566, "grain_separation": 0.003821824101384891, "grains_center_of_mass_position": 0.3971088128559651, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009046714123341989, "throat_radius": 0.009664779461818943, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535185551599506}], "aerodynamic_surfaces": [{"length": 0.557478558587545, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346322005625}, {"n": 4, "root_chord": 0.11989855167935383, "tip_chord": 0.061090142842349066, "span": 0.11099931679331465, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493958230210252}, {"top_radius": 0.06245464543779375, "bottom_radius": 0.04214134679977992, "length": 0.06104152200358167, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986189726434836, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195539941749884, "upper_button_position": 0.07906497846849525}], "rail_length": 5, "inclination": 85.18571381594013, "heading": 55.579683380956176} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350515383876143, "mass": 15.559336418774802, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315198876813853, "I_33_without_motor": 0.036364884214033874, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958491608089297, "trigger": 800, "sampling_rate": 105, "lag": 1.56990633407898, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9961482990363594, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5373057666033854, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6222.2359119502225, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335692751588762, "grain_number": 5, "grain_density": 1867.5839329677208, "grain_outer_radius": 0.03322278400658547, "grain_initial_inner_radius": 0.014460434239338392, "grain_initial_height": 0.12061296459219305, "grain_separation": 0.003922258497484831, "grains_center_of_mass_position": 0.39684867563494947, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00016637180259345056, "throat_radius": 0.011352594879715926, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254570329316982}], "aerodynamic_surfaces": [{"length": 0.5553817872320977, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339700569111457}, {"n": 4, "root_chord": 0.12152357151899802, "tip_chord": 0.06041622534194668, "span": 0.11001645551238104, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049671035404961}, {"top_radius": 0.0634479800604837, "bottom_radius": 0.042518078835201235, "length": 0.05940793360121503, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994089961656181, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187742592579244, "upper_button_position": 0.08063473690769374}], "rail_length": 5, "inclination": 85.63657926896805, "heading": 53.27982615501605} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350769299756744, "mass": 15.662911357191982, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336593463696791, "I_33_without_motor": 0.03347954107080942, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.810141349176964, "trigger": 800, "sampling_rate": 105, "lag": 1.5852898586737019, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9626060939174025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5629032144004003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5453.768667327067, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263241183927821, "grain_number": 5, "grain_density": 1905.3890089242384, "grain_outer_radius": 0.032893919103242394, "grain_initial_inner_radius": 0.015131904608470283, "grain_initial_height": 0.11975435056080232, "grain_separation": 0.004532235903512014, "grains_center_of_mass_position": 0.3988317262081042, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016114785076305513, "throat_radius": 0.011084806245850818, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547803173532772}], "aerodynamic_surfaces": [{"length": 0.5594293318552851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335865602827764}, {"n": 4, "root_chord": 0.1201750704341565, "tip_chord": 0.059147159055340244, "span": 0.10905516043933107, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511508888600174}, {"top_radius": 0.06381113644760991, "bottom_radius": 0.04349125206880764, "length": 0.060576454225214, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983073705501224, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172799976801797, "upper_button_position": 0.08102737286994266}], "rail_length": 5, "inclination": 83.2754900103111, "heading": 54.150583531825326} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350450327207896, "mass": 15.960505778843357, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316198091580501, "I_33_without_motor": 0.02536193574725029, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.837931879781575, "trigger": 800, "sampling_rate": 105, "lag": 1.5786231698368196, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1297338911860404, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5056563473760312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8478.169990484077, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03346652329719885, "grain_number": 5, "grain_density": 1754.7114268168416, "grain_outer_radius": 0.03242182987718196, "grain_initial_inner_radius": 0.014750035674767622, "grain_initial_height": 0.12032122899919237, "grain_separation": 0.005318279932237406, "grains_center_of_mass_position": 0.3971543071855383, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001089653995377986, "throat_radius": 0.011581685444457167, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255773450282957}], "aerodynamic_surfaces": [{"length": 0.5566390530214999, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331730962213438}, {"n": 4, "root_chord": 0.12050431498031904, "tip_chord": 0.060507359845978916, "span": 0.10981649654675209, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491080888800328}, {"top_radius": 0.0638051902364772, "bottom_radius": 0.044045626841589795, "length": 0.059164097879854306, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015446196115337, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197637563638787, "upper_button_position": 0.08178086324765499}], "rail_length": 5, "inclination": 85.04615946617915, "heading": 50.7997573823334} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350105961500647, "mass": 15.678036322050135, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322830435678733, "I_33_without_motor": 0.032747148924568495, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.898969020904802, "trigger": 800, "sampling_rate": 105, "lag": 1.475609860907886, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9727924118107287, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5669184970176644, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5166.607078220946, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03380849513216736, "grain_number": 5, "grain_density": 1754.5449464962953, "grain_outer_radius": 0.032323786460780435, "grain_initial_inner_radius": 0.014880274736735331, "grain_initial_height": 0.12047410760289992, "grain_separation": 0.005534490597536312, "grains_center_of_mass_position": 0.3964320997759306, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014551160580240907, "throat_radius": 0.01191637048178563, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558097150332612}], "aerodynamic_surfaces": [{"length": 0.5584758567040524, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1360328433798204}, {"n": 4, "root_chord": 0.11887039607534329, "tip_chord": 0.06056669272399835, "span": 0.11055714538656916, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494654639401186}, {"top_radius": 0.0640819142369023, "bottom_radius": 0.04407606660485711, "length": 0.059993307897778306, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997782623695784, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190317858668656, "upper_button_position": 0.08074647650271283}], "rail_length": 5, "inclination": 83.97577113536926, "heading": 53.769362490716894} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350121868577298, "mass": 15.262450469131322, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314634831974658, "I_33_without_motor": 0.03716972950560464, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.872091504101958, "trigger": 800, "sampling_rate": 105, "lag": 1.5480795510333196, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9833020679548939, "trigger": "apogee", "sampling_rate": 105, "lag": 1.045241266034858, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5281.483630686826, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338888621252778, "grain_number": 5, "grain_density": 1843.116061901209, "grain_outer_radius": 0.03339333240860431, "grain_initial_inner_radius": 0.014874433063879443, "grain_initial_height": 0.11966478175036223, "grain_separation": 0.003918162614533852, "grains_center_of_mass_position": 0.3984152120562469, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012993227674673972, "throat_radius": 0.010890188805990327, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558248563259238}], "aerodynamic_surfaces": [{"length": 0.5578251464091522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338631558451788}, {"n": 4, "root_chord": 0.12000611041219586, "tip_chord": 0.059325692698378736, "span": 0.10941849668172379, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0512037215901116}, {"top_radius": 0.06317233459046101, "bottom_radius": 0.0430419350084772, "length": 0.060049774181081525, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012454084303376, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183897825150217, "upper_button_position": 0.08285562591531581}], "rail_length": 5, "inclination": 84.97288370209186, "heading": 52.31002541725072} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348660390791891, "mass": 15.47092089594817, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3204561676986595, "I_33_without_motor": 0.040928835227954465, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961817863620825, "trigger": 800, "sampling_rate": 105, "lag": 1.465700548740836, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0120061715233213, "trigger": "apogee", "sampling_rate": 105, "lag": 0.8189804004651143, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6470.4849041185535, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260069013830882, "grain_number": 5, "grain_density": 1804.942359868739, "grain_outer_radius": 0.03290740275807399, "grain_initial_inner_radius": 0.01524695072364522, "grain_initial_height": 0.11975194584478709, "grain_separation": 0.004335518465797023, "grains_center_of_mass_position": 0.3957298548425083, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00021407048700799693, "throat_radius": 0.010523704193671171, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566555603813734}], "aerodynamic_surfaces": [{"length": 0.5581520847234452, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340198342149053}, {"n": 4, "root_chord": 0.11937919372719148, "tip_chord": 0.060487288141135846, "span": 0.11070346473372725, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509343359879086}, {"top_radius": 0.0622238356506989, "bottom_radius": 0.04236691319670035, "length": 0.059645480508887995, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982258426549751, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6205811254028549, "upper_button_position": 0.07764471725212019}], "rail_length": 5, "inclination": 85.30876334916552, "heading": 53.01036444957632} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350783837040677, "mass": 15.863750072164514, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3136773071109165, "I_33_without_motor": 0.02721162674873785, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.976721980232009, "trigger": 800, "sampling_rate": 105, "lag": 1.5696734822728984, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0624180256685016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7146214449471802, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7328.858006290158, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033020102087206696, "grain_number": 5, "grain_density": 1793.800579954151, "grain_outer_radius": 0.03318152106851743, "grain_initial_inner_radius": 0.0142926173610234, "grain_initial_height": 0.12054967547934549, "grain_separation": 0.005547862076182036, "grains_center_of_mass_position": 0.3976642102259326, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006399575296127673, "throat_radius": 0.011230455617403445, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559982031254473}], "aerodynamic_surfaces": [{"length": 0.5585010085309152, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330779870364223}, {"n": 4, "root_chord": 0.1202843934051959, "tip_chord": 0.06003369520652572, "span": 0.1103091546895969, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487753956920167}, {"top_radius": 0.06439354463295176, "bottom_radius": 0.04249487795698444, "length": 0.061683983443856887, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699177934857415, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170231682919552, "upper_button_position": 0.08215476656545972}], "rail_length": 5, "inclination": 85.02111067784938, "heading": 52.41254192724875} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06348998617060858, "mass": 16.075110645896427, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32361434931757, "I_33_without_motor": 0.030796745630710637, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.104384190095931, "trigger": 800, "sampling_rate": 105, "lag": 1.4790098493952102, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0492640509320856, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3340655355961952, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7607.881322585493, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321999838123685, "grain_number": 5, "grain_density": 1784.7364556074335, "grain_outer_radius": 0.033645282768324264, "grain_initial_inner_radius": 0.015556588794079932, "grain_initial_height": 0.11834799822760227, "grain_separation": 0.00682979717695887, "grains_center_of_mass_position": 0.3979057604920125, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013159793650601736, "throat_radius": 0.011496534201175882, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254153227583068}], "aerodynamic_surfaces": [{"length": 0.55783213247001, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1364710132784195}, {"n": 4, "root_chord": 0.11902080614748865, "tip_chord": 0.059688832909200164, "span": 0.11008037266777221, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487887662195094}, {"top_radius": 0.06277777263492111, "bottom_radius": 0.044083939050483585, "length": 0.05955235496124502, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010170180407969, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171710626729376, "upper_button_position": 0.08384595536785922}], "rail_length": 5, "inclination": 83.40950770708254, "heading": 51.02327035019454} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349802590399706, "mass": 16.23452327221345, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319911295410113, "I_33_without_motor": 0.03649914169813383, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.027467301880234, "trigger": 800, "sampling_rate": 105, "lag": 1.568392868857753, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0702142142210807, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3132828548843847, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7565.616684545956, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033169659321921126, "grain_number": 5, "grain_density": 1818.7095997603506, "grain_outer_radius": 0.03278100011450876, "grain_initial_inner_radius": 0.015120708821299404, "grain_initial_height": 0.11998173973739125, "grain_separation": 0.0054709858676290435, "grains_center_of_mass_position": 0.39770126014665436, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013347735992692293, "throat_radius": 0.010824843747870442, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543085717325173}], "aerodynamic_surfaces": [{"length": 0.5584009385732011, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341309189912927}, {"n": 4, "root_chord": 0.12023496111239516, "tip_chord": 0.061330270752463, "span": 0.1097502600316637, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0517515556088288}, {"top_radius": 0.06416744129533275, "bottom_radius": 0.04474854230288919, "length": 0.06012440983657318, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700597732405117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178098717796787, "upper_button_position": 0.0827878606254383}], "rail_length": 5, "inclination": 84.6471313155174, "heading": 55.55650373587088} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349295388341362, "mass": 15.06540918631974, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314091185849668, "I_33_without_motor": 0.017800270580767687, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.147147349394483, "trigger": 800, "sampling_rate": 105, "lag": 1.4818088650020391, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.201345009995065, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5927730686275627, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8148.5019338372695, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032392991765499965, "grain_number": 5, "grain_density": 1787.6585310127703, "grain_outer_radius": 0.03238683523361526, "grain_initial_inner_radius": 0.015220816254615318, "grain_initial_height": 0.12143918994238434, "grain_separation": 0.006168316028402556, "grains_center_of_mass_position": 0.3983054752880235, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005158038308098603, "throat_radius": 0.011046067455513717, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549272326736345}], "aerodynamic_surfaces": [{"length": 0.5583491139034715, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341421728773475}, {"n": 4, "root_chord": 0.11943879760265129, "tip_chord": 0.05998793577443457, "span": 0.10943389671459172, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502412299286572}, {"top_radius": 0.06368753526979867, "bottom_radius": 0.04302809168464748, "length": 0.05814978872473538, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995108777993633, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190584446507308, "upper_button_position": 0.08045243314863249}], "rail_length": 5, "inclination": 84.90117075656005, "heading": 54.051996486542734} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350123883435298, "mass": 15.661520070661563, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322959868079923, "I_33_without_motor": 0.029970805006898457, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90149395660031, "trigger": 800, "sampling_rate": 105, "lag": 1.5282640199939093, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.112461776791831, "trigger": "apogee", "sampling_rate": 105, "lag": 1.90512174392554, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4566.330439338391, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032974900923760375, "grain_number": 5, "grain_density": 1928.2365577056592, "grain_outer_radius": 0.03280956019776218, "grain_initial_inner_radius": 0.01478828234009957, "grain_initial_height": 0.11902009193779911, "grain_separation": 0.005198550883380457, "grains_center_of_mass_position": 0.39705123042537593, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00029781838192464793, "throat_radius": 0.010904551788173218, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557066677924822}], "aerodynamic_surfaces": [{"length": 0.5570372120067163, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13451296546421}, {"n": 4, "root_chord": 0.11954624162454704, "tip_chord": 0.060186957945873115, "span": 0.1098799367013546, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486444818302034}, {"top_radius": 0.06442148125015061, "bottom_radius": 0.04363669804627557, "length": 0.058494457064462935, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005515121813767, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188499774038293, "upper_button_position": 0.08170153477754738}], "rail_length": 5, "inclination": 84.56037552133628, "heading": 53.02655938733294} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350936283237112, "mass": 14.891682947299362, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328041297505124, "I_33_without_motor": 0.03632940678808539, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.213904100064939, "trigger": 800, "sampling_rate": 105, "lag": 1.6053490598830493, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8919107727432881, "trigger": "apogee", "sampling_rate": 105, "lag": 1.673810222249271, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5990.928304124665, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032565953091055345, "grain_number": 5, "grain_density": 1824.353450715509, "grain_outer_radius": 0.03328753035561567, "grain_initial_inner_radius": 0.014488742622502887, "grain_initial_height": 0.12048629156520714, "grain_separation": 0.006939209386015668, "grains_center_of_mass_position": 0.3969607409751967, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00035809550254722335, "throat_radius": 0.01175960965536573, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565631254471061}], "aerodynamic_surfaces": [{"length": 0.5622632376714678, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348495147170563}, {"n": 4, "root_chord": 0.12051208879383117, "tip_chord": 0.05978129690974875, "span": 0.1095223900894023, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502954444116015}, {"top_radius": 0.06301764881971714, "bottom_radius": 0.043375511735461655, "length": 0.06098647538904652, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996486585928394, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180608715574805, "upper_button_position": 0.08158778703535896}], "rail_length": 5, "inclination": 84.30997578803472, "heading": 54.51658199548559} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349653146293449, "mass": 15.353536721669942, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317984993354678, "I_33_without_motor": 0.0465802163228131, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996178459567885, "trigger": 800, "sampling_rate": 105, "lag": 1.3903953880614692, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.039794775371932, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3072808474325013, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6482.699637966466, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307196033084735, "grain_number": 5, "grain_density": 1899.4125199993828, "grain_outer_radius": 0.031831723124635024, "grain_initial_inner_radius": 0.015130002218749012, "grain_initial_height": 0.1213064876254395, "grain_separation": 0.004297633968455045, "grains_center_of_mass_position": 0.3967096622937672, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013566252124776073, "throat_radius": 0.010989714382804902, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552642717332305}], "aerodynamic_surfaces": [{"length": 0.5588996143138134, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335919140995012}, {"n": 4, "root_chord": 0.11960670394785448, "tip_chord": 0.05990433389963756, "span": 0.10929788265603795, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484015451460509}, {"top_radius": 0.06329854050691795, "bottom_radius": 0.04308870004453832, "length": 0.05917815110225777, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6976150865016086, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175461221750218, "upper_button_position": 0.08006896432658683}], "rail_length": 5, "inclination": 87.23062339929918, "heading": 52.49163685088692} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350501524530588, "mass": 15.942798665251555, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3179610930898, "I_33_without_motor": 0.042817224634383214, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.184691268796522, "trigger": 800, "sampling_rate": 105, "lag": 1.4177029434549682, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0201012674906356, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5490792050550615, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7995.728316931134, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309120289829016, "grain_number": 5, "grain_density": 1779.9536880122912, "grain_outer_radius": 0.03239695008564381, "grain_initial_inner_radius": 0.015045732782829616, "grain_initial_height": 0.1185673371700413, "grain_separation": 0.0037185093015481433, "grains_center_of_mass_position": 0.39645290786984316, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010376644226853789, "throat_radius": 0.010988857971197245, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541614897968725}], "aerodynamic_surfaces": [{"length": 0.5587697244021678, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338022421620901}, {"n": 4, "root_chord": 0.12047474066262115, "tip_chord": 0.05933114484021907, "span": 0.11015550895018164, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504218164599495}, {"top_radius": 0.06476349259798837, "bottom_radius": 0.04421309444781026, "length": 0.05931891676239017, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699141666301877, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166190001396183, "upper_button_position": 0.08252266616225867}], "rail_length": 5, "inclination": 85.5333223366984, "heading": 50.69011672979223} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350371012933635, "mass": 15.1245112748953, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311293431773919, "I_33_without_motor": 0.040124165162110405, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14760640299584, "trigger": 800, "sampling_rate": 105, "lag": 1.5622542962774684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0553019249930722, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6903446489576919, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5756.376016740657, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304563426360844, "grain_number": 5, "grain_density": 1879.5399634849734, "grain_outer_radius": 0.03359148045484662, "grain_initial_inner_radius": 0.014684731716904464, "grain_initial_height": 0.12049136857295754, "grain_separation": 0.0066336555536088615, "grains_center_of_mass_position": 0.39543921626232015, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018951231819564162, "throat_radius": 0.010506159372840346, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545610781093472}], "aerodynamic_surfaces": [{"length": 0.5593841608085036, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342137562369017}, {"n": 4, "root_chord": 0.12008627938567581, "tip_chord": 0.060150979425264824, "span": 0.11062043232851869, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497004229828173}, {"top_radius": 0.06416780580135187, "bottom_radius": 0.042793045696680965, "length": 0.06043876787595695, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992676444473734, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199509832234711, "upper_button_position": 0.07931666122390235}], "rail_length": 5, "inclination": 85.14576088363222, "heading": 51.39297855480817} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06351079810476085, "mass": 15.204782668198838, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334639138410031, "I_33_without_motor": 0.03572898574120846, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.181592407698975, "trigger": 800, "sampling_rate": 105, "lag": 1.4342140194418491, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.024865527679235, "trigger": "apogee", "sampling_rate": 105, "lag": 1.446967291486794, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7369.012497810622, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03225941728380665, "grain_number": 5, "grain_density": 1920.223433744482, "grain_outer_radius": 0.03238798882593754, "grain_initial_inner_radius": 0.015440970260446283, "grain_initial_height": 0.12049246689359275, "grain_separation": 0.004991829586825256, "grains_center_of_mass_position": 0.39702148021948347, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006788873273367201, "throat_radius": 0.0113531411589989, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548822215950164}], "aerodynamic_surfaces": [{"length": 0.5567630381330501, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135016850408085}, {"n": 4, "root_chord": 0.12042177835145691, "tip_chord": 0.06066081507830222, "span": 0.11031181110663345, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480387358323173}, {"top_radius": 0.064004240138872, "bottom_radius": 0.043323264114207984, "length": 0.05992811426237308, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6975541417102279, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191956025527323, "upper_button_position": 0.07835853915749558}], "rail_length": 5, "inclination": 84.96492621094026, "heading": 54.71355210479887} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06348361951373317, "mass": 15.779111545723815, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322923252909344, "I_33_without_motor": 0.04191177458021657, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03750592251892, "trigger": 800, "sampling_rate": 105, "lag": 1.4983135612206175, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9710726803964689, "trigger": "apogee", "sampling_rate": 105, "lag": 1.548196690250414, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6073.962375037867, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033397632260515446, "grain_number": 5, "grain_density": 1737.4922869249567, "grain_outer_radius": 0.03297956524011285, "grain_initial_inner_radius": 0.015119695028738162, "grain_initial_height": 0.1181708962440501, "grain_separation": 0.004314377921399146, "grains_center_of_mass_position": 0.3956459569003373, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009171045887611718, "throat_radius": 0.011052260814030003, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255254740797622}], "aerodynamic_surfaces": [{"length": 0.5606061802522319, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350946208241919}, {"n": 4, "root_chord": 0.12096993319601741, "tip_chord": 0.06043096370761156, "span": 0.11021265546532294, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049560486087995}, {"top_radius": 0.06453888530335615, "bottom_radius": 0.04392614804325389, "length": 0.05902632839633312, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984562492137136, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174209368516109, "upper_button_position": 0.08103531236210271}], "rail_length": 5, "inclination": 86.61509371854154, "heading": 54.93083731765723} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350330866026976, "mass": 15.326329159074707, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325567174798042, "I_33_without_motor": 0.007289059728048393, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1753487805475, "trigger": 800, "sampling_rate": 105, "lag": 1.5686169274026986, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9476974634853635, "trigger": "apogee", "sampling_rate": 105, "lag": 1.363759266361294, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7125.286965708706, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341159107955456, "grain_number": 5, "grain_density": 1787.6080049520676, "grain_outer_radius": 0.03246295469321091, "grain_initial_inner_radius": 0.014747456696870448, "grain_initial_height": 0.121222013709392, "grain_separation": 0.003039045406527607, "grains_center_of_mass_position": 0.3975570705655549, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017924635314084405, "throat_radius": 0.01127861899060872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535011541900478}], "aerodynamic_surfaces": [{"length": 0.559040914648605, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342959329534055}, {"n": 4, "root_chord": 0.11982466497578774, "tip_chord": 0.05987376131353998, "span": 0.11060915918369112, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487802600388256}, {"top_radius": 0.06491798778844683, "bottom_radius": 0.04433401670227386, "length": 0.06073137983917948, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7017700948874563, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619265562727817, "upper_button_position": 0.08250453215963938}], "rail_length": 5, "inclination": 84.60680814893144, "heading": 52.378193925291406} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350640382561927, "mass": 15.026345725446497, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3160153556693315, "I_33_without_motor": 0.024353595994181017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.156440806326529, "trigger": 800, "sampling_rate": 105, "lag": 1.4800595694552392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.001476507557566, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7470025780742209, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5620.324596004424, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03389344982150161, "grain_number": 5, "grain_density": 1814.8680594996738, "grain_outer_radius": 0.03267670028689923, "grain_initial_inner_radius": 0.01539581109523742, "grain_initial_height": 0.12019966735027868, "grain_separation": 0.005850097102970081, "grains_center_of_mass_position": 0.3968878190836923, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001041671124718523, "throat_radius": 0.009990796737123235, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547291353651138}], "aerodynamic_surfaces": [{"length": 0.5585608051166921, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133619359971982}, {"n": 4, "root_chord": 0.11938091915491959, "tip_chord": 0.060599993063511104, "span": 0.10993040800068662, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497707672215708}, {"top_radius": 0.06350080123807432, "bottom_radius": 0.042074421747690265, "length": 0.059587594787646546, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005040810165265, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175904423893303, "upper_button_position": 0.08291363862719625}], "rail_length": 5, "inclination": 83.8924664549882, "heading": 50.61677176004225} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350260829932368, "mass": 16.85824848604514, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322920210503629, "I_33_without_motor": 0.024577458063146176, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077078409681693, "trigger": 800, "sampling_rate": 105, "lag": 1.5384020721577074, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0059044072085148, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2179498191524332, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6538.1344139972825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033378353096169926, "grain_number": 5, "grain_density": 1819.3616352840666, "grain_outer_radius": 0.03341322278823224, "grain_initial_inner_radius": 0.014839302519058675, "grain_initial_height": 0.11878236123327408, "grain_separation": 0.004294216021394971, "grains_center_of_mass_position": 0.3964689617556223, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006962831597324489, "throat_radius": 0.011437584856248052, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540357005822176}], "aerodynamic_surfaces": [{"length": 0.5584392505053967, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357453164276239}, {"n": 4, "root_chord": 0.11948150937973216, "tip_chord": 0.060092924427955816, "span": 0.10952162586473901, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506078340045293}, {"top_radius": 0.06414954860435064, "bottom_radius": 0.044582061808077215, "length": 0.05975749030087596, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000375717465624, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181780973286453, "upper_button_position": 0.08185947441791719}], "rail_length": 5, "inclination": 85.88682745922408, "heading": 50.9506243309805} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349260478742574, "mass": 15.985210462323312, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325362600952675, "I_33_without_motor": 0.02677963512571215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.132585587271372, "trigger": 800, "sampling_rate": 105, "lag": 1.4407859855212959, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9838763816299103, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4650758533887445, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5527.024837539215, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03222769499979612, "grain_number": 5, "grain_density": 1878.3961256335022, "grain_outer_radius": 0.033451830280308174, "grain_initial_inner_radius": 0.01476500118758513, "grain_initial_height": 0.12142972071587001, "grain_separation": 0.005159132209700492, "grains_center_of_mass_position": 0.3972867236738963, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014552053871885792, "throat_radius": 0.011134982969680967, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25435326425634}], "aerodynamic_surfaces": [{"length": 0.557178591345604, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349448009133876}, {"n": 4, "root_chord": 0.12040274212439453, "tip_chord": 0.061177759309502554, "span": 0.11021977364448857, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491914070132162}, {"top_radius": 0.06350242316295829, "bottom_radius": 0.04340146919003454, "length": 0.05966101300394326, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016167090183569, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168091780015744, "upper_button_position": 0.08480753101678251}], "rail_length": 5, "inclination": 83.70226170874375, "heading": 51.25393033662733} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350265950031143, "mass": 15.768972300266972, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325217007493812, "I_33_without_motor": 0.016987911185867576, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.052764556020563, "trigger": 800, "sampling_rate": 105, "lag": 1.4958486332701224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9723132196333271, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8664238896593293, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7657.7009633376265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033657030019141734, "grain_number": 5, "grain_density": 1839.4344020559518, "grain_outer_radius": 0.0331904508086706, "grain_initial_inner_radius": 0.015507134265071694, "grain_initial_height": 0.1187449520582447, "grain_separation": 0.004775540968941716, "grains_center_of_mass_position": 0.39479909026790055, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013404970886475337, "throat_radius": 0.011554472245820194, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554668409495882}], "aerodynamic_surfaces": [{"length": 0.5575341096987367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330645373665131}, {"n": 4, "root_chord": 0.11980785398538295, "tip_chord": 0.060016845353144485, "span": 0.10950258165172803, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495008048917955}, {"top_radius": 0.06355286545797825, "bottom_radius": 0.04232245828893425, "length": 0.060118061218237685, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004400906692405, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61646114526953, "upper_button_position": 0.08397894539971051}], "rail_length": 5, "inclination": 84.06871978760277, "heading": 50.364818697924925} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349396224041597, "mass": 15.35577650618249, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315561469594735, "I_33_without_motor": 0.046876496343808804, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.968771178880093, "trigger": 800, "sampling_rate": 105, "lag": 1.4860929128821558, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9619410572431822, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3974811522973358, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5417.3271368342375, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0325309410763025, "grain_number": 5, "grain_density": 1835.6772692263244, "grain_outer_radius": 0.03311344403462894, "grain_initial_inner_radius": 0.015198134299831675, "grain_initial_height": 0.12048892981178361, "grain_separation": 0.005933678345115735, "grains_center_of_mass_position": 0.39681559277010753, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011151913262306514, "throat_radius": 0.010397338577635223, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549801556015483}], "aerodynamic_surfaces": [{"length": 0.5586859658659623, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331720912561432}, {"n": 4, "root_chord": 0.12080242345276808, "tip_chord": 0.059707034006840756, "span": 0.11043485142112758, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488243499476364}, {"top_radius": 0.06416144393688154, "bottom_radius": 0.04420541240636748, "length": 0.06019635315574583, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997209333697708, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199119181526506, "upper_button_position": 0.07980901521712025}], "rail_length": 5, "inclination": 82.98301022890979, "heading": 51.09701983484521} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349910464561098, "mass": 15.806340145477918, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308880514981399, "I_33_without_motor": 0.05836527286821258, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.894935874853546, "trigger": 800, "sampling_rate": 105, "lag": 1.4840025567618893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0633861312819748, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3599383862988768, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3838.5928722333606, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032629370098409646, "grain_number": 5, "grain_density": 1792.5152102499696, "grain_outer_radius": 0.03278303476423578, "grain_initial_inner_radius": 0.014613154392013446, "grain_initial_height": 0.1205166469460215, "grain_separation": 0.005032980054937358, "grains_center_of_mass_position": 0.3974531957397004, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007362765914558896, "throat_radius": 0.010719722265220196, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255290957321383}], "aerodynamic_surfaces": [{"length": 0.5581163511214612, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134980602068245}, {"n": 4, "root_chord": 0.12018351079963864, "tip_chord": 0.06033620853726553, "span": 0.10985015919456825, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502739705485646}, {"top_radius": 0.06385355993242602, "bottom_radius": 0.04276851817471445, "length": 0.061005586725111, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992069898530464, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179926516491924, "upper_button_position": 0.08121433820385404}], "rail_length": 5, "inclination": 84.62689501158239, "heading": 54.4460273824529} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349605745056323, "mass": 15.343362882773029, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334510817052035, "I_33_without_motor": 0.043275994370085065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017697990350106, "trigger": 800, "sampling_rate": 105, "lag": 1.3140926718320072, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.030710347371391, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5442470162762376, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6811.354772237489, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03340099467642919, "grain_number": 5, "grain_density": 1857.086429745994, "grain_outer_radius": 0.03324607382933539, "grain_initial_inner_radius": 0.01577331202459219, "grain_initial_height": 0.11994463876227471, "grain_separation": 0.006323474733876438, "grains_center_of_mass_position": 0.3965804848661052, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005677326833137419, "throat_radius": 0.010472590535141353, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255757864738529}], "aerodynamic_surfaces": [{"length": 0.5572742605668941, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348717189250344}, {"n": 4, "root_chord": 0.11920172621796093, "tip_chord": 0.059356132496234136, "span": 0.10989522964329033, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480131473846022}, {"top_radius": 0.06603943312497015, "bottom_radius": 0.04430838840157536, "length": 0.05977304866452775, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994542099388923, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617651528096768, "upper_button_position": 0.08180268184212425}], "rail_length": 5, "inclination": 83.41184299692297, "heading": 56.92582834670624} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350379430845655, "mass": 14.695114055391965, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317652443707259, "I_33_without_motor": 0.044779663926957536, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93171615177102, "trigger": 800, "sampling_rate": 105, "lag": 1.6120828861237102, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9783221640402063, "trigger": "apogee", "sampling_rate": 105, "lag": 1.283078556475205, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5555.219947708453, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286122028569595, "grain_number": 5, "grain_density": 1787.9362677995719, "grain_outer_radius": 0.032866798835048956, "grain_initial_inner_radius": 0.01480042491513218, "grain_initial_height": 0.12088510636976427, "grain_separation": 0.003675022787758488, "grains_center_of_mass_position": 0.3960731599038825, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002402769250223529, "throat_radius": 0.011680374315571842, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543321916163856}], "aerodynamic_surfaces": [{"length": 0.559601201450398, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340704543758457}, {"n": 4, "root_chord": 0.12051108248831784, "tip_chord": 0.06011598163072342, "span": 0.10964934861021554, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516254223803327}, {"top_radius": 0.06396049508051967, "bottom_radius": 0.04275229928983752, "length": 0.060159654872922644, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011770981576851, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180950182032614, "upper_button_position": 0.08308207995442374}], "rail_length": 5, "inclination": 85.511384053556, "heading": 52.09022436930914} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634885036756918, "mass": 15.691145442647342, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3167463722022585, "I_33_without_motor": 0.04569254412532938, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072246617916814, "trigger": 800, "sampling_rate": 105, "lag": 1.304797669511129, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8987834615496662, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5996018383311534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7532.389689813401, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033716150389783754, "grain_number": 5, "grain_density": 1831.5168191052364, "grain_outer_radius": 0.033397588876439135, "grain_initial_inner_radius": 0.014973666953009217, "grain_initial_height": 0.12086094049049399, "grain_separation": 0.004459134837082344, "grains_center_of_mass_position": 0.39863336163292257, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021796396360350016, "throat_radius": 0.011183785088746977, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551211560296593}], "aerodynamic_surfaces": [{"length": 0.5592184387940534, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343442798086643}, {"n": 4, "root_chord": 0.12010374774908424, "tip_chord": 0.06029561587955794, "span": 0.10959311644404165, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491518144770056}, {"top_radius": 0.063477512500243, "bottom_radius": 0.044408802179008174, "length": 0.061739083153599966, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992682373582259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183136515860929, "upper_button_position": 0.08095458577213299}], "rail_length": 5, "inclination": 84.08247884141488, "heading": 52.86491410649383} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.063511228372317, "mass": 15.472182335667677, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306453367653746, "I_33_without_motor": 0.03731602625550105, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933938614329149, "trigger": 800, "sampling_rate": 105, "lag": 1.4938474019156889, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0747643191720928, "trigger": "apogee", "sampling_rate": 105, "lag": 1.156620536572225, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8051.6854454205695, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285175717587736, "grain_number": 5, "grain_density": 1837.6697156323062, "grain_outer_radius": 0.03298071938191814, "grain_initial_inner_radius": 0.01516346914765747, "grain_initial_height": 0.11891080273899274, "grain_separation": 0.004335649040722463, "grains_center_of_mass_position": 0.3972037273285452, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000714192978380616, "throat_radius": 0.010281215404020714, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254903176930993}], "aerodynamic_surfaces": [{"length": 0.5577604060829047, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354192761561628}, {"n": 4, "root_chord": 0.12054199560281816, "tip_chord": 0.05982101840153422, "span": 0.11025711988275327, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049129141971893}, {"top_radius": 0.06402994878669274, "bottom_radius": 0.04306095529934405, "length": 0.05958602050089994, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700263896124743, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618477710230755, "upper_button_position": 0.081786185893988}], "rail_length": 5, "inclination": 85.5676636458974, "heading": 48.88116020352909} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350928784645003, "mass": 15.21358239323218, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308326235209315, "I_33_without_motor": 0.030805407063044694, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.136154674390976, "trigger": 800, "sampling_rate": 105, "lag": 1.5087181469782949, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9550756333851197, "trigger": "apogee", "sampling_rate": 105, "lag": 1.514013177090707, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4940.890339140937, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0333168103137022, "grain_number": 5, "grain_density": 1842.2191235794262, "grain_outer_radius": 0.03306343714359641, "grain_initial_inner_radius": 0.01470982466971102, "grain_initial_height": 0.12035077592382949, "grain_separation": 0.003246561876174882, "grains_center_of_mass_position": 0.39723366158157697, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006369226316255113, "throat_radius": 0.010733153134318548, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539285261583761}], "aerodynamic_surfaces": [{"length": 0.5588157775223275, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346197421542654}, {"n": 4, "root_chord": 0.12022274978204488, "tip_chord": 0.060408061980070704, "span": 0.1096885780393746, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506417816638571}, {"top_radius": 0.0618968367197355, "bottom_radius": 0.042914457911585345, "length": 0.058652617957655424, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983536359451036, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181955185900546, "upper_button_position": 0.08015811735504896}], "rail_length": 5, "inclination": 86.17788533846942, "heading": 50.333771122164634} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350686035989815, "mass": 15.612697050177658, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315891767456465, "I_33_without_motor": 0.034629785242650354, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.148576735911957, "trigger": 800, "sampling_rate": 105, "lag": 1.4217203633684474, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9484177111283176, "trigger": "apogee", "sampling_rate": 105, "lag": 1.504699617117017, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6021.789115095118, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350939705684858, "grain_number": 5, "grain_density": 1767.9668769305172, "grain_outer_radius": 0.032435842434128725, "grain_initial_inner_radius": 0.014976132232933353, "grain_initial_height": 0.11885693919928274, "grain_separation": 0.004356471439539629, "grains_center_of_mass_position": 0.39933486562979686, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002744854070733941, "throat_radius": 0.011355265666663174, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548890590893516}], "aerodynamic_surfaces": [{"length": 0.5588415850446236, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338184485297156}, {"n": 4, "root_chord": 0.12011032666288307, "tip_chord": 0.05987028512222826, "span": 0.10959208091349083, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482251309492154}, {"top_radius": 0.06539343904414074, "bottom_radius": 0.04320711104312088, "length": 0.0599230458965954, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007843244802289, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193735455304137, "upper_button_position": 0.08141077894981519}], "rail_length": 5, "inclination": 83.45166821267235, "heading": 53.308209108591996} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350342890919998, "mass": 15.224423390297583, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326117281454026, "I_33_without_motor": 0.023246825012220827, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14375638085915, "trigger": 800, "sampling_rate": 105, "lag": 1.5984489967615305, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.925373599339081, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4387506626644337, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6935.947059317888, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311278531232787, "grain_number": 5, "grain_density": 1768.4236881751622, "grain_outer_radius": 0.03387062464491789, "grain_initial_inner_radius": 0.01538468473654771, "grain_initial_height": 0.11842168633911791, "grain_separation": 0.0051683758160971744, "grains_center_of_mass_position": 0.39878006574902025, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00029437796999325766, "throat_radius": 0.011684827696748352, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558605356051828}], "aerodynamic_surfaces": [{"length": 0.5566027402537546, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133692528115436}, {"n": 4, "root_chord": 0.1200824410723751, "tip_chord": 0.059449945315066, "span": 0.11002696264518837, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503176310490592}, {"top_radius": 0.06341944612937485, "bottom_radius": 0.04373507199940283, "length": 0.06141632070282319, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994724336573237, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185974778522563, "upper_button_position": 0.08087495580506743}], "rail_length": 5, "inclination": 86.11434370571953, "heading": 49.046252280871286} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350779860910023, "mass": 15.198375138902138, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325709788311851, "I_33_without_motor": 0.02977541738164446, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9830992671465, "trigger": 800, "sampling_rate": 105, "lag": 1.4880981806574225, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9712340175897993, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6118785037415952, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6870.492085154037, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03167896436803132, "grain_number": 5, "grain_density": 1766.2339299949115, "grain_outer_radius": 0.03268103162162464, "grain_initial_inner_radius": 0.014431730256177867, "grain_initial_height": 0.1199777290390739, "grain_separation": 0.005161730602323264, "grains_center_of_mass_position": 0.39943216537067294, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000522214669555996, "throat_radius": 0.010289258159416661, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563256583368982}], "aerodynamic_surfaces": [{"length": 0.5572319265300115, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336407267066824}, {"n": 4, "root_chord": 0.11956766843669837, "tip_chord": 0.06008128717086437, "span": 0.11016643972411307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507415779612637}, {"top_radius": 0.0632987328889707, "bottom_radius": 0.044868046723673075, "length": 0.05995779064305494, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996923152966995, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194402100807567, "upper_button_position": 0.08025210521594284}], "rail_length": 5, "inclination": 83.99241110255117, "heading": 52.78785369829278} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349640498129397, "mass": 15.098214833129923, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323873976247891, "I_33_without_motor": 0.044776665878017395, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.892797652672025, "trigger": 800, "sampling_rate": 105, "lag": 1.472587102435278, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9630083784498525, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4914372680823476, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6309.39049143344, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033068987936047005, "grain_number": 5, "grain_density": 1801.4071882966157, "grain_outer_radius": 0.03309797596072655, "grain_initial_inner_radius": 0.01480719267407672, "grain_initial_height": 0.11970810291208182, "grain_separation": 0.004491364551407899, "grains_center_of_mass_position": 0.39739689994965427, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007590728786458715, "throat_radius": 0.0119815859489794, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256719448093178}], "aerodynamic_surfaces": [{"length": 0.5580712009457008, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343879396212535}, {"n": 4, "root_chord": 0.119527175596041, "tip_chord": 0.05960657666601915, "span": 0.10950814886285833, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482557140061795}, {"top_radius": 0.06225570152058665, "bottom_radius": 0.04395888203370714, "length": 0.05997281750515127, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6969624877274424, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183847500455317, "upper_button_position": 0.07857773768191068}], "rail_length": 5, "inclination": 83.30535093421341, "heading": 58.69929110018498} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349021025692715, "mass": 15.932113170455667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331469665353434, "I_33_without_motor": 0.03214184321649474, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978352670073201, "trigger": 800, "sampling_rate": 105, "lag": 1.4028510763666922, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9194039037217191, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7240134148809296, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7377.2032161693405, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297479206641847, "grain_number": 5, "grain_density": 1808.8272908041788, "grain_outer_radius": 0.033455303262087975, "grain_initial_inner_radius": 0.014838850555277163, "grain_initial_height": 0.1202008693783451, "grain_separation": 0.003938533598783933, "grains_center_of_mass_position": 0.39652820953037154, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014438307116641132, "throat_radius": 0.011004206557873588, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555674924713451}], "aerodynamic_surfaces": [{"length": 0.5582726836140826, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323602191252986}, {"n": 4, "root_chord": 0.12013213180297855, "tip_chord": 0.05969072567712058, "span": 0.10988841732444277, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483266387367225}, {"top_radius": 0.06423074032461168, "bottom_radius": 0.045312391653369345, "length": 0.0596333396496871, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996736822043764, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179625491289451, "upper_button_position": 0.08171113307543132}], "rail_length": 5, "inclination": 82.63187908892387, "heading": 53.555949497815476} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350800295518584, "mass": 15.94640024315138, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324334323607525, "I_33_without_motor": 0.03723779625901363, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974604378400734, "trigger": 800, "sampling_rate": 105, "lag": 1.420221602376857, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9773048069219733, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2564613340469257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6840.027163999083, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03347154742796202, "grain_number": 5, "grain_density": 1807.2271495117345, "grain_outer_radius": 0.03279528336194349, "grain_initial_inner_radius": 0.014615858528089007, "grain_initial_height": 0.11966371093268735, "grain_separation": 0.005995247105957684, "grains_center_of_mass_position": 0.39690304085765593, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001872100586655317, "throat_radius": 0.011193028074176438, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542666893746408}], "aerodynamic_surfaces": [{"length": 0.5575414085322302, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134692743489933}, {"n": 4, "root_chord": 0.12006502963024807, "tip_chord": 0.05991028597137957, "span": 0.10999320501664579, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506226391370896}, {"top_radius": 0.06434568685139566, "bottom_radius": 0.04286395010514561, "length": 0.0608695359322088, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012766843304767, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161528035863412, "upper_button_position": 0.08512388074413557}], "rail_length": 5, "inclination": 84.48856400794455, "heading": 50.75332837031062} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349235939945383, "mass": 14.979130101607842, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330803423519109, "I_33_without_motor": 0.02482181842985952, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.892686591892685, "trigger": 800, "sampling_rate": 105, "lag": 1.3692339410727652, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9605343206837345, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6094731795039987, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7022.238102161219, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032757304127611346, "grain_number": 5, "grain_density": 1833.759196931038, "grain_outer_radius": 0.033191536478428214, "grain_initial_inner_radius": 0.01506403317918005, "grain_initial_height": 0.12041486786562729, "grain_separation": 0.00501041590249992, "grains_center_of_mass_position": 0.3958297925658032, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006477192194828059, "throat_radius": 0.010880417129398651, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544322571718967}], "aerodynamic_surfaces": [{"length": 0.5585838824128052, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340380502157879}, {"n": 4, "root_chord": 0.1202653261064654, "tip_chord": 0.06061321282635906, "span": 0.10948201929680247, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508658697695195}, {"top_radius": 0.06298657289832872, "bottom_radius": 0.044049411039887104, "length": 0.060527830887066814, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005507215699674, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617198244937796, "upper_button_position": 0.08335247663217149}], "rail_length": 5, "inclination": 84.14548045326556, "heading": 50.33251413822528} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349131521314529, "mass": 15.939154053066948, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30168781907469, "I_33_without_motor": 0.0263680886684734, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.902162930469075, "trigger": 800, "sampling_rate": 105, "lag": 1.4545563193375717, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0247385831163118, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6330795476526914, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7588.271487228456, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330546737741867, "grain_number": 5, "grain_density": 1812.827645759053, "grain_outer_radius": 0.03266199335225113, "grain_initial_inner_radius": 0.015674232130264584, "grain_initial_height": 0.12127218774712632, "grain_separation": 0.003580361849088218, "grains_center_of_mass_position": 0.3965198036572853, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015104032308789234, "throat_radius": 0.011172050933590565, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254501586102022}], "aerodynamic_surfaces": [{"length": 0.556961465962706, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351320121762865}, {"n": 4, "root_chord": 0.11992347295043433, "tip_chord": 0.05940708345908369, "span": 0.10998055474871742, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050931285146197}, {"top_radius": 0.06320185306004474, "bottom_radius": 0.043890387779057294, "length": 0.06034130367138201, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000041855272214, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187936927066483, "upper_button_position": 0.08121049282057313}], "rail_length": 5, "inclination": 83.38192831772778, "heading": 51.745264166027205} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0635081288141491, "mass": 14.96060318390966, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316192683975805, "I_33_without_motor": 0.041861530452804996, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977255038119091, "trigger": 800, "sampling_rate": 105, "lag": 1.5027389075601425, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.081190978765619, "trigger": "apogee", "sampling_rate": 105, "lag": 1.565101807311785, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4012.1116711819113, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277374939385824, "grain_number": 5, "grain_density": 1831.2017072773135, "grain_outer_radius": 0.0329205459583603, "grain_initial_inner_radius": 0.015402399565341321, "grain_initial_height": 0.12085510690327345, "grain_separation": 0.003052976140074021, "grains_center_of_mass_position": 0.39657588336153504, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007729660741870807, "throat_radius": 0.011324633585846724, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549787404973465}], "aerodynamic_surfaces": [{"length": 0.559871918582887, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134826836271087}, {"n": 4, "root_chord": 0.1195476988693598, "tip_chord": 0.06044357516346231, "span": 0.11048841050647822, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489966478605657}, {"top_radius": 0.061817981841085334, "bottom_radius": 0.04322715537607633, "length": 0.05959312405644224, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6972990403040478, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176317667522675, "upper_button_position": 0.07966727355178027}], "rail_length": 5, "inclination": 86.09406852378207, "heading": 52.350606706570815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350401038944899, "mass": 14.835531971119202, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3202135363132275, "I_33_without_motor": 0.008030999831093732, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141452493538527, "trigger": 800, "sampling_rate": 105, "lag": 1.5277466833046853, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9776195659827256, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7897078664371233, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6038.3453916290755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033096055031150075, "grain_number": 5, "grain_density": 1766.988056118113, "grain_outer_radius": 0.03275690619431792, "grain_initial_inner_radius": 0.014920851512800454, "grain_initial_height": 0.11842928883971533, "grain_separation": 0.0038461150168574453, "grains_center_of_mass_position": 0.3977646538525906, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015060078244405171, "throat_radius": 0.010255672431117049, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531894857505095}], "aerodynamic_surfaces": [{"length": 0.5584440503889943, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340458585039421}, {"n": 4, "root_chord": 0.1201680687068666, "tip_chord": 0.06131906395013559, "span": 0.11012834344085524, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484203449298666}, {"top_radius": 0.06316936585493574, "bottom_radius": 0.04201006200557071, "length": 0.05892926127810751, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993073781467288, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191183658733111, "upper_button_position": 0.08018901227341768}], "rail_length": 5, "inclination": 83.6826791565068, "heading": 57.16059794504958} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349771896574662, "mass": 15.433264833398585, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321100248769187, "I_33_without_motor": 0.0371710823618414, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014693071864231, "trigger": 800, "sampling_rate": 105, "lag": 1.588878555609521, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0852582355663782, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3454788019882993, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6621.476498728531, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03419364942227898, "grain_number": 5, "grain_density": 1806.1159306983718, "grain_outer_radius": 0.03320029629842948, "grain_initial_inner_radius": 0.015241870917903844, "grain_initial_height": 0.11970120592282124, "grain_separation": 0.004209744388110522, "grains_center_of_mass_position": 0.39617660326143533, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001377992402863524, "throat_radius": 0.011527661039370458, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539485801931238}], "aerodynamic_surfaces": [{"length": 0.5585771243468689, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341118074228047}, {"n": 4, "root_chord": 0.11975801274412298, "tip_chord": 0.06001606970860955, "span": 0.11011313627951783, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501972237811188}, {"top_radius": 0.06330515920019242, "bottom_radius": 0.04366023468616633, "length": 0.060375591104254334, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992467680362712, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170973751280061, "upper_button_position": 0.08214939290826506}], "rail_length": 5, "inclination": 83.41747147886753, "heading": 52.67153185755777} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350219415995369, "mass": 14.82867423765775, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302216220122196, "I_33_without_motor": 0.028354204994946508, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873390168376552, "trigger": 800, "sampling_rate": 105, "lag": 1.449008760340921, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9709895322214485, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7122098801402195, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8445.7673247871, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03202779183345381, "grain_number": 5, "grain_density": 1759.7896897536261, "grain_outer_radius": 0.0333538646648008, "grain_initial_inner_radius": 0.014884355842416869, "grain_initial_height": 0.12039856065813129, "grain_separation": 0.005666626874568251, "grains_center_of_mass_position": 0.3958333464523371, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018920862643050176, "throat_radius": 0.011291739431210696, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252830752389921}], "aerodynamic_surfaces": [{"length": 0.5598055847191673, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330999209384205}, {"n": 4, "root_chord": 0.11957425548269776, "tip_chord": 0.06011034197092218, "span": 0.1103294352345883, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049521434759516}, {"top_radius": 0.06564345958422402, "bottom_radius": 0.04369249688870634, "length": 0.0601217444444971, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007503423893088, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169257066418222, "upper_button_position": 0.08382463574748655}], "rail_length": 5, "inclination": 84.5610021660131, "heading": 54.18164798405854} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0635048265064137, "mass": 14.538602927900834, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32068994713858, "I_33_without_motor": 0.027852998802344705, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.115754879538487, "trigger": 800, "sampling_rate": 105, "lag": 1.5873574151170857, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9966381369845674, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6704695464947454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7032.280950104396, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032631881004244453, "grain_number": 5, "grain_density": 1836.9521284320056, "grain_outer_radius": 0.03344530667460695, "grain_initial_inner_radius": 0.015633506810687172, "grain_initial_height": 0.12084189734473649, "grain_separation": 0.004141642658837233, "grains_center_of_mass_position": 0.3980524702220024, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011193747077941202, "throat_radius": 0.010274841129744666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543691700897521}], "aerodynamic_surfaces": [{"length": 0.5591471257401373, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13217567240541}, {"n": 4, "root_chord": 0.12043838348274502, "tip_chord": 0.058777986224214235, "span": 0.10935201263808074, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509577990103676}, {"top_radius": 0.06300222197810446, "bottom_radius": 0.043472874604504344, "length": 0.06060794392967935, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990201724351286, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175837057398895, "upper_button_position": 0.08143646669523907}], "rail_length": 5, "inclination": 84.67988638094421, "heading": 52.07437383631214} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350756276581049, "mass": 15.216339733083512, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330822455282529, "I_33_without_motor": 0.04015436230194748, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06797747751594, "trigger": 800, "sampling_rate": 105, "lag": 1.521795816438008, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.070846000846109, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2790101350193135, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4837.3198818906385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266134593715967, "grain_number": 5, "grain_density": 1874.9150249005072, "grain_outer_radius": 0.03328211336313857, "grain_initial_inner_radius": 0.014760786191766252, "grain_initial_height": 0.11948158245063914, "grain_separation": 0.004435680541605572, "grains_center_of_mass_position": 0.3977328340305717, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009435446956189413, "throat_radius": 0.010518260824499972, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552575490381033}], "aerodynamic_surfaces": [{"length": 0.5573706762341788, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349482807052105}, {"n": 4, "root_chord": 0.1206889744558158, "tip_chord": 0.059405367993752047, "span": 0.11001465232393459, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497545642394293}, {"top_radius": 0.06236348830697331, "bottom_radius": 0.04312722866771036, "length": 0.05981258840040431, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993714304178872, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188195332374581, "upper_button_position": 0.0805518971804291}], "rail_length": 5, "inclination": 83.44195558632414, "heading": 51.14566805415591} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349891775113989, "mass": 14.902636347392722, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326054857838763, "I_33_without_motor": 0.01685721275308482, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.010361268941525, "trigger": 800, "sampling_rate": 105, "lag": 1.4469031742807117, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9758640968830995, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7508602276165917, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6949.442656107337, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032786305272806654, "grain_number": 5, "grain_density": 1860.471839976237, "grain_outer_radius": 0.03372910981216538, "grain_initial_inner_radius": 0.014946400828158317, "grain_initial_height": 0.12057499200041329, "grain_separation": 0.0063678601782009864, "grains_center_of_mass_position": 0.3968171056501607, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00027091550454050876, "throat_radius": 0.011813053271827502, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549268071089736}], "aerodynamic_surfaces": [{"length": 0.5579310960328158, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334953450172967}, {"n": 4, "root_chord": 0.11935555387946839, "tip_chord": 0.05922061659156307, "span": 0.11021567392483997, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495119382831652}, {"top_radius": 0.06255252851834524, "bottom_radius": 0.044265494313749355, "length": 0.060336046458044544, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992597767857042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193246765063114, "upper_button_position": 0.07993510027939277}], "rail_length": 5, "inclination": 84.17721942477073, "heading": 51.31178810880868} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350434745221607, "mass": 15.335743501776461, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312947138450665, "I_33_without_motor": 0.041016128286406765, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.127320674893163, "trigger": 800, "sampling_rate": 105, "lag": 1.612638726620884, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.972099051067492, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5948516883040185, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5982.0949058204105, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033662452366369174, "grain_number": 5, "grain_density": 1785.1415257330248, "grain_outer_radius": 0.03261511679435786, "grain_initial_inner_radius": 0.015272504469115739, "grain_initial_height": 0.1185529838304384, "grain_separation": 0.006199981535204793, "grains_center_of_mass_position": 0.39729179728170083, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015292421382642055, "throat_radius": 0.010922404320153846, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255810274740955}], "aerodynamic_surfaces": [{"length": 0.5584187638483686, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342745451325387}, {"n": 4, "root_chord": 0.12004143040979702, "tip_chord": 0.06094151571168754, "span": 0.11029582320134444, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491448202522884}, {"top_radius": 0.06399752633728471, "bottom_radius": 0.04427835731198832, "length": 0.05849972733615877, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985376467076578, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198281815769162, "upper_button_position": 0.07870946513074162}], "rail_length": 5, "inclination": 86.0126089904295, "heading": 53.91181240695403} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349486812686939, "mass": 15.013096430755843, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3462929462058995, "I_33_without_motor": 0.04420829389144476, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93985898877416, "trigger": 800, "sampling_rate": 105, "lag": 1.6113720003196454, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9066114852255525, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7353297265377274, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7931.89953173591, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032472896698275744, "grain_number": 5, "grain_density": 1830.0994556966025, "grain_outer_radius": 0.032866465724255445, "grain_initial_inner_radius": 0.014869210054625914, "grain_initial_height": 0.12073095343276251, "grain_separation": 0.005371276857996879, "grains_center_of_mass_position": 0.3976551908240405, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.56740855968179e-05, "throat_radius": 0.01064601578358965, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257712605596121}], "aerodynamic_surfaces": [{"length": 0.5594947168811193, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351065554381594}, {"n": 4, "root_chord": 0.1201426312618194, "tip_chord": 0.059782775581290616, "span": 0.10954738798559538, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493302316106337}, {"top_radius": 0.06311939932901926, "bottom_radius": 0.04393887374667705, "length": 0.058469227572803185, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996744599075599, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177792838655389, "upper_button_position": 0.08189517604202101}], "rail_length": 5, "inclination": 84.75161632196398, "heading": 52.558810084406154} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349066156868742, "mass": 14.789968392893064, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307544439517681, "I_33_without_motor": 0.037275434906600374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.012874511648084, "trigger": 800, "sampling_rate": 105, "lag": 1.5308447996295895, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8407752939479208, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5083399100056478, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7426.9727323515435, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032481871320966374, "grain_number": 5, "grain_density": 1861.7129059780284, "grain_outer_radius": 0.03270968671759269, "grain_initial_inner_radius": 0.014673974192011956, "grain_initial_height": 0.12002029217500512, "grain_separation": 0.003028529865602613, "grains_center_of_mass_position": 0.39652614113270357, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037973913273200863, "throat_radius": 0.010915624129229097, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541706958861205}], "aerodynamic_surfaces": [{"length": 0.5582570234868153, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133480800094611}, {"n": 4, "root_chord": 0.12023772864118967, "tip_chord": 0.06026063336469662, "span": 0.11032071543851993, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487014313792844}, {"top_radius": 0.06351288245583099, "bottom_radius": 0.04403168796928879, "length": 0.05884520717361641, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993898576727797, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.615887265864698, "upper_button_position": 0.08350259180808173}], "rail_length": 5, "inclination": 86.01181797424148, "heading": 56.42671078053111} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349363447299997, "mass": 16.439827948043632, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3137378413508705, "I_33_without_motor": 0.049699215937242164, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003621425945184, "trigger": 800, "sampling_rate": 105, "lag": 1.541834892020935, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0825100007687554, "trigger": "apogee", "sampling_rate": 105, "lag": 1.722749567122927, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8240.813424830607, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032577261754559064, "grain_number": 5, "grain_density": 1848.2666825316048, "grain_outer_radius": 0.03287603238322521, "grain_initial_inner_radius": 0.014760442546262903, "grain_initial_height": 0.1205474521459531, "grain_separation": 0.005915899197790791, "grains_center_of_mass_position": 0.39659152657674707, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005666049182078783, "throat_radius": 0.010810548743217541, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530928608613932}], "aerodynamic_surfaces": [{"length": 0.5589141704290221, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13376991120844}, {"n": 4, "root_chord": 0.11963165892336007, "tip_chord": 0.06007022102945674, "span": 0.10938204602092184, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500090064209795}, {"top_radius": 0.06303997774931214, "bottom_radius": 0.04312014111008118, "length": 0.05977464659811153, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990478229240147, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167835125643952, "upper_button_position": 0.08226431035961945}], "rail_length": 5, "inclination": 86.14327666142731, "heading": 51.33878344668106} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349263747906077, "mass": 14.360260785496195, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320287384644489, "I_33_without_motor": 0.028481847876503284, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059608976753843, "trigger": 800, "sampling_rate": 105, "lag": 1.4705196596428691, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9639832666648257, "trigger": "apogee", "sampling_rate": 105, "lag": 1.548111781447338, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6508.29782834066, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03322342455751606, "grain_number": 5, "grain_density": 1881.9352950441662, "grain_outer_radius": 0.033181547476736815, "grain_initial_inner_radius": 0.01533930338458371, "grain_initial_height": 0.12000093997904916, "grain_separation": 0.006593842376775149, "grains_center_of_mass_position": 0.3976246409867275, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003968411533046825, "throat_radius": 0.010881547769907733, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540573561123722}], "aerodynamic_surfaces": [{"length": 0.5572771245777167, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132574988855469}, {"n": 4, "root_chord": 0.12025252713841297, "tip_chord": 0.06031398721173829, "span": 0.10922808968844634, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515049989223662}, {"top_radius": 0.06298126540922706, "bottom_radius": 0.043235774367114746, "length": 0.057576854820416246, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000502340600627, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163636945263504, "upper_button_position": 0.0836865395337123}], "rail_length": 5, "inclination": 84.47123495534413, "heading": 53.025481933808265} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0635101273649843, "mass": 14.975037216892039, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3204627181796855, "I_33_without_motor": 0.05109802585900768, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.135522653883454, "trigger": 800, "sampling_rate": 105, "lag": 1.3030604198234468, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.104230795287927, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7569867205198881, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6603.993294758176, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300640793036525, "grain_number": 5, "grain_density": 1762.2792024788237, "grain_outer_radius": 0.03279963117858162, "grain_initial_inner_radius": 0.0148711861621728, "grain_initial_height": 0.12014374481551068, "grain_separation": 0.0028559013239633536, "grains_center_of_mass_position": 0.399212298197496, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002118406252284767, "throat_radius": 0.01095149994947274, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538593479720521}], "aerodynamic_surfaces": [{"length": 0.5597494766288665, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342464061518949}, {"n": 4, "root_chord": 0.11994270399321828, "tip_chord": 0.05996318950708715, "span": 0.11008528272580664, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493253606470077}, {"top_radius": 0.06285288903664403, "bottom_radius": 0.042922081440040054, "length": 0.05982044629851683, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6975939644383349, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617332649842342, "upper_button_position": 0.08026131459599284}], "rail_length": 5, "inclination": 84.64214144317168, "heading": 50.78216823148447} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350447525971789, "mass": 14.787673749001748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33040036415745, "I_33_without_motor": 0.030221899558435867, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945607693947967, "trigger": 800, "sampling_rate": 105, "lag": 1.547372118323447, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9238848114404137, "trigger": "apogee", "sampling_rate": 105, "lag": 1.265667693057647, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5488.66347595324, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304857217462667, "grain_number": 5, "grain_density": 1895.8591725864928, "grain_outer_radius": 0.033245658331431005, "grain_initial_inner_radius": 0.014859997661152001, "grain_initial_height": 0.12082702970176983, "grain_separation": 0.004300956649235881, "grains_center_of_mass_position": 0.39722222892606407, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004973303131255215, "throat_radius": 0.011609305905406231, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543554711940212}], "aerodynamic_surfaces": [{"length": 0.5596637084354406, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328125297883502}, {"n": 4, "root_chord": 0.11977299485990377, "tip_chord": 0.05999562274280797, "span": 0.1099656295337105, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502314660623207}, {"top_radius": 0.06456204055789456, "bottom_radius": 0.04333078688091007, "length": 0.06089332353463326, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997508841915118, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162930725757081, "upper_button_position": 0.08345781161580368}], "rail_length": 5, "inclination": 85.4958262383474, "heading": 51.50640736585222} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349728322783864, "mass": 15.538376257708787, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326810177580844, "I_33_without_motor": 0.025226821621429904, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05978792134536, "trigger": 800, "sampling_rate": 105, "lag": 1.312584978136137, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9196171134733611, "trigger": "apogee", "sampling_rate": 105, "lag": 1.47582878854046, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5159.127398600745, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032628314605927404, "grain_number": 5, "grain_density": 1861.1888665825852, "grain_outer_radius": 0.03218945429598011, "grain_initial_inner_radius": 0.01493977999578034, "grain_initial_height": 0.12020102353665617, "grain_separation": 0.004999326981798098, "grains_center_of_mass_position": 0.39652929474680604, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001398513093795333, "throat_radius": 0.01163545523295059, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254314695239989}], "aerodynamic_surfaces": [{"length": 0.558275163729471, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134616104869863}, {"n": 4, "root_chord": 0.1201387178656147, "tip_chord": 0.060401381184967275, "span": 0.11048907644851028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482810315049829}, {"top_radius": 0.06355323169966302, "bottom_radius": 0.04205174094453943, "length": 0.06082294437632026, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006676504182422, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618107916076958, "upper_button_position": 0.08255973434128416}], "rail_length": 5, "inclination": 84.9852835756946, "heading": 52.94515511463515} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349589284629953, "mass": 15.017386026993025, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327608197877545, "I_33_without_motor": 0.02636037377731489, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.888912253617995, "trigger": 800, "sampling_rate": 105, "lag": 1.48040392766725, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9485652217133429, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2940835824972106, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6449.256697982851, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033366474779837375, "grain_number": 5, "grain_density": 1889.8333575547085, "grain_outer_radius": 0.03219846766432236, "grain_initial_inner_radius": 0.01451569433631663, "grain_initial_height": 0.11934021050695381, "grain_separation": 0.003359283430422004, "grains_center_of_mass_position": 0.39784873665341336, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020060362411702458, "throat_radius": 0.010338684127089156, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543534452728688}], "aerodynamic_surfaces": [{"length": 0.5601453160917143, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345233147849187}, {"n": 4, "root_chord": 0.12022748220730639, "tip_chord": 0.060096227252727646, "span": 0.11113135906904943, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501178754554132}, {"top_radius": 0.06397209642290023, "bottom_radius": 0.042260899521877775, "length": 0.06055504889470199, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983039535320488, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174140547810574, "upper_button_position": 0.0808898987509914}], "rail_length": 5, "inclination": 84.29336538521474, "heading": 54.52452032632004} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349546256976549, "mass": 15.106255446757, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331060463413661, "I_33_without_motor": 0.020044063792983055, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.308995666931356, "trigger": 800, "sampling_rate": 105, "lag": 1.4075749246203333, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0874727445412744, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6816240551756603, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5759.785277685327, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033247721726138796, "grain_number": 5, "grain_density": 1848.3776385871147, "grain_outer_radius": 0.03360058571538412, "grain_initial_inner_radius": 0.015200102331157518, "grain_initial_height": 0.12090051431660462, "grain_separation": 0.004350723035709023, "grains_center_of_mass_position": 0.3979658745647359, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00038516332150033617, "throat_radius": 0.01045470398805587, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551785272380807}], "aerodynamic_surfaces": [{"length": 0.5588305911681167, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340797344956024}, {"n": 4, "root_chord": 0.12018967146366408, "tip_chord": 0.06040430398729995, "span": 0.10905702696977777, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488774795252875}, {"top_radius": 0.06271542144987498, "bottom_radius": 0.044308707892829105, "length": 0.05922051181272566, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991042659954966, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168312040221712, "upper_button_position": 0.0822730619733254}], "rail_length": 5, "inclination": 83.56595090884748, "heading": 53.15395334010201} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350281733288618, "mass": 15.241061820331089, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323758329770787, "I_33_without_motor": 0.03841647370842165, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.921337335613842, "trigger": 800, "sampling_rate": 105, "lag": 1.4290636881521057, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9993117969256469, "trigger": "apogee", "sampling_rate": 105, "lag": 1.480751938979652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5594.62335385205, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300335035246434, "grain_number": 5, "grain_density": 1844.560136331324, "grain_outer_radius": 0.032923122037016285, "grain_initial_inner_radius": 0.01518114013393605, "grain_initial_height": 0.12133727590015488, "grain_separation": 0.0045396421254772935, "grains_center_of_mass_position": 0.39875087063323167, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.326244083057688e-05, "throat_radius": 0.010900934532245795, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540197604678227}], "aerodynamic_surfaces": [{"length": 0.5571128625082649, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350893651939662}, {"n": 4, "root_chord": 0.11961812140688376, "tip_chord": 0.06044152849675295, "span": 0.1096596775819764, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507976509492007}, {"top_radius": 0.0640319726771433, "bottom_radius": 0.04375758164448853, "length": 0.06162180473968757, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996181634494953, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173625942785815, "upper_button_position": 0.08225556917091381}], "rail_length": 5, "inclination": 85.21854174824924, "heading": 52.73459284515232} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350277269291821, "mass": 15.145383252313433, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318688181868138, "I_33_without_motor": 0.036489539390460436, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.028631391734018, "trigger": 800, "sampling_rate": 105, "lag": 1.4976471584288256, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9794206484831022, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6117799443379681, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7099.534452359141, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271570316972228, "grain_number": 5, "grain_density": 1806.7037305677925, "grain_outer_radius": 0.03338525914247193, "grain_initial_inner_radius": 0.01512185053006328, "grain_initial_height": 0.12167992314433307, "grain_separation": 0.004400418303985578, "grains_center_of_mass_position": 0.39882057377093094, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016650624259475046, "throat_radius": 0.012069632862536733, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552622266778053}], "aerodynamic_surfaces": [{"length": 0.5584215394274854, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350417559542632}, {"n": 4, "root_chord": 0.11960105827636276, "tip_chord": 0.06005558205345652, "span": 0.11024147808227096, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049340477046595}, {"top_radius": 0.06358959421990824, "bottom_radius": 0.04235466227978859, "length": 0.0591943500423999, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701082833286258, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616427239217994, "upper_button_position": 0.08465559406826395}], "rail_length": 5, "inclination": 83.71006486254375, "heading": 57.7034331100587} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350330217546743, "mass": 15.152887968030802, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319123683298308, "I_33_without_motor": 0.03688854177345478, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.975952491488414, "trigger": 800, "sampling_rate": 105, "lag": 1.4540355110768113, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0364603158351378, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5079412803198986, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6747.868035630047, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306269841584104, "grain_number": 5, "grain_density": 1867.5868568319377, "grain_outer_radius": 0.03300672596822493, "grain_initial_inner_radius": 0.015595552685267099, "grain_initial_height": 0.12079258061114473, "grain_separation": 0.003907272193092786, "grains_center_of_mass_position": 0.39845273396570585, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001670001767664585, "throat_radius": 0.009879259899742863, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535005022585775}], "aerodynamic_surfaces": [{"length": 0.5586658866364708, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338752100386813}, {"n": 4, "root_chord": 0.11994647456478762, "tip_chord": 0.058952268390914324, "span": 0.11061201950702171, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050812791175363}, {"top_radius": 0.0632759863202964, "bottom_radius": 0.04401068607051002, "length": 0.05914222195711186, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989485675893792, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618741730533772, "upper_button_position": 0.08020683705560716}], "rail_length": 5, "inclination": 83.72692883876216, "heading": 54.60712787024742} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0634994448198842, "mass": 16.181819131653153, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314410157860133, "I_33_without_motor": 0.029622517663015407, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.862695113590375, "trigger": 800, "sampling_rate": 105, "lag": 1.418398866014787, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.042821635734529, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5275833413967768, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6699.4457003011075, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032060453512681074, "grain_number": 5, "grain_density": 1864.634948728372, "grain_outer_radius": 0.03298337319167624, "grain_initial_inner_radius": 0.014954803343598227, "grain_initial_height": 0.12175257475113604, "grain_separation": 0.005166226844330042, "grains_center_of_mass_position": 0.39678140678111157, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016190261740087536, "throat_radius": 0.011819501941184161, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558439046623355}], "aerodynamic_surfaces": [{"length": 0.5569516531003399, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1356358851793802}, {"n": 4, "root_chord": 0.1198390415326211, "tip_chord": 0.06005829258916815, "span": 0.11019392606616527, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493834062554748}, {"top_radius": 0.0645894405917549, "bottom_radius": 0.0424038232264818, "length": 0.059734514592803795, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012218216648064, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173283152670606, "upper_button_position": 0.08389350639774584}], "rail_length": 5, "inclination": 83.29292796913896, "heading": 52.116006919734566} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0635131467516006, "mass": 15.43201163928922, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326026187234933, "I_33_without_motor": 0.03810967812155634, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963253453657611, "trigger": 800, "sampling_rate": 105, "lag": 1.3858142979661372, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0580201345224578, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4487085268811104, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6752.704894051127, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252695421178498, "grain_number": 5, "grain_density": 1749.566641224544, "grain_outer_radius": 0.033334982230568105, "grain_initial_inner_radius": 0.014710683515722215, "grain_initial_height": 0.12063097994790455, "grain_separation": 0.005442176493827028, "grains_center_of_mass_position": 0.39716191877938634, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00013887389651303107, "throat_radius": 0.0102181727541091, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254635186600199}], "aerodynamic_surfaces": [{"length": 0.5563257052569537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341119276945402}, {"n": 4, "root_chord": 0.11930989613755182, "tip_chord": 0.059420094076093964, "span": 0.11051144301628385, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491015355202196}, {"top_radius": 0.06373937608431439, "bottom_radius": 0.04228749222313567, "length": 0.061420324418230955, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993885567373621, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191614996152741, "upper_button_position": 0.080227057122088}], "rail_length": 5, "inclination": 83.22104046385031, "heading": 50.58505363109118} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06348967641536551, "mass": 15.056482183483299, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314150387488077, "I_33_without_motor": 0.017052303293474572, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.894054444222556, "trigger": 800, "sampling_rate": 105, "lag": 1.4636622890679374, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9347114677919062, "trigger": "apogee", "sampling_rate": 105, "lag": 1.250652422390796, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5611.634281287346, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03397780607466035, "grain_number": 5, "grain_density": 1783.1206116211983, "grain_outer_radius": 0.03288938951570641, "grain_initial_inner_radius": 0.015364828507845282, "grain_initial_height": 0.11952677217005514, "grain_separation": 0.004947629348945131, "grains_center_of_mass_position": 0.39755517301384086, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012638693393530383, "throat_radius": 0.012085753280421267, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253966840511419}], "aerodynamic_surfaces": [{"length": 0.5582678406121709, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132949618578698}, {"n": 4, "root_chord": 0.11939315860785737, "tip_chord": 0.06073085377874063, "span": 0.11162872221462404, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484812047392404}, {"top_radius": 0.06413415209898923, "bottom_radius": 0.0418786820403312, "length": 0.05940459771539661, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986934861679782, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186827517831697, "upper_button_position": 0.08001073438480855}], "rail_length": 5, "inclination": 86.08033452779063, "heading": 53.27195589638007} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349050091169123, "mass": 15.367075562578176, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3258030682406154, "I_33_without_motor": 0.028418079314171896, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014495613950528, "trigger": 800, "sampling_rate": 105, "lag": 1.476215679388974, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0316018489574041, "trigger": "apogee", "sampling_rate": 105, "lag": 1.311456533180545, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4955.871595984392, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0331483867430818, "grain_number": 5, "grain_density": 1840.8858463182416, "grain_outer_radius": 0.0331997924371673, "grain_initial_inner_radius": 0.014675034670272433, "grain_initial_height": 0.11831192530791138, "grain_separation": 0.005953239186189013, "grains_center_of_mass_position": 0.39883385366445345, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.0826719143255274e-05, "throat_radius": 0.01107129101649455, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562574341562356}], "aerodynamic_surfaces": [{"length": 0.5595946874918774, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353079535472008}, {"n": 4, "root_chord": 0.12099808623281318, "tip_chord": 0.0605377364559693, "span": 0.10986383292587709, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510162881316996}, {"top_radius": 0.0635997179803191, "bottom_radius": 0.04290718582581375, "length": 0.061213757225099516, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988720625884001, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619786001719027, "upper_button_position": 0.07908606086937309}], "rail_length": 5, "inclination": 84.66710829590549, "heading": 54.17977306437834} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349764686220911, "mass": 15.101550577636033, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320726805629147, "I_33_without_motor": 0.03273971008360167, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.088856995188856, "trigger": 800, "sampling_rate": 105, "lag": 1.68221381615029, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.975833398249931, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4607407939275248, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5916.918828100968, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337377117062441, "grain_number": 5, "grain_density": 1756.2216553390735, "grain_outer_radius": 0.03270912213589508, "grain_initial_inner_radius": 0.014869557041370492, "grain_initial_height": 0.11938437701963395, "grain_separation": 0.005458700161946781, "grains_center_of_mass_position": 0.3959333240221566, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000749426507365162, "throat_radius": 0.010449959128160508, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553876094174}], "aerodynamic_surfaces": [{"length": 0.5603485594384728, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132480215185367}, {"n": 4, "root_chord": 0.12008196047948977, "tip_chord": 0.06043251026730365, "span": 0.10967663472701679, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498201358364314}, {"top_radius": 0.06364114879548333, "bottom_radius": 0.04247255102281454, "length": 0.05948818259256742, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991756570033222, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178932440903596, "upper_button_position": 0.08128241291296256}], "rail_length": 5, "inclination": 82.72183103025655, "heading": 50.69669349542764} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350168551896726, "mass": 15.55837406957969, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321141932759896, "I_33_without_motor": 0.048326440223802725, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.129099687182025, "trigger": 800, "sampling_rate": 105, "lag": 1.5947379559592536, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9028971416050159, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2047549146224519, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5309.761311770242, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03228133528677795, "grain_number": 5, "grain_density": 1922.22999576629, "grain_outer_radius": 0.03308467631514859, "grain_initial_inner_radius": 0.014679760395531047, "grain_initial_height": 0.12176715142710268, "grain_separation": 0.004893469697373873, "grains_center_of_mass_position": 0.3961697243317802, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.080760855107085e-05, "throat_radius": 0.01125800132872892, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555444353696592}], "aerodynamic_surfaces": [{"length": 0.558416866956828, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1315830468348722}, {"n": 4, "root_chord": 0.11982275758385458, "tip_chord": 0.060255193686512686, "span": 0.11049768508921015, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505795606070023}, {"top_radius": 0.06295120587877265, "bottom_radius": 0.042165574994677484, "length": 0.06021727279085985, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005905202265214, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173086430039314, "upper_button_position": 0.08328187722258995}], "rail_length": 5, "inclination": 84.07452221355389, "heading": 52.04946017589177} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635027511317633, "mass": 15.416065653868571, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324294718278276, "I_33_without_motor": 0.029735223712493365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071226936333057, "trigger": 800, "sampling_rate": 105, "lag": 1.5236608954509796, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1146197088678362, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6483559228022935, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7311.360978982917, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032518630198388056, "grain_number": 5, "grain_density": 1730.088403661866, "grain_outer_radius": 0.03247970987992187, "grain_initial_inner_radius": 0.01572966703102038, "grain_initial_height": 0.12003837743049872, "grain_separation": 0.004153372765453658, "grains_center_of_mass_position": 0.3949204903804296, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023981939059071526, "throat_radius": 0.011732681911991978, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547529491125382}], "aerodynamic_surfaces": [{"length": 0.5570333869419423, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333731610421605}, {"n": 4, "root_chord": 0.12056127215807726, "tip_chord": 0.0603459448563288, "span": 0.11013768704457173, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504616869016916}, {"top_radius": 0.06158935041039857, "bottom_radius": 0.04269141237260225, "length": 0.05959457686860339, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985894028648514, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174746993726294, "upper_button_position": 0.08111470349222194}], "rail_length": 5, "inclination": 83.42094415378229, "heading": 54.03636082277827} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350291820560336, "mass": 15.132997803643963, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329351343001667, "I_33_without_motor": 0.05012072779366357, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.103124542267837, "trigger": 800, "sampling_rate": 105, "lag": 1.463615179751395, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0154730809319767, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7492173455964424, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6310.6579687801195, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03312585352977444, "grain_number": 5, "grain_density": 1728.5135112211735, "grain_outer_radius": 0.031974705658892134, "grain_initial_inner_radius": 0.015160646621921481, "grain_initial_height": 0.11938937849588596, "grain_separation": 0.003747209921584743, "grains_center_of_mass_position": 0.39790034240528893, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001336006948791923, "throat_radius": 0.011231963257982378, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254729153871083}], "aerodynamic_surfaces": [{"length": 0.5586480670886809, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346243916661138}, {"n": 4, "root_chord": 0.11974694152581387, "tip_chord": 0.06063469878337959, "span": 0.1092262924685924, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498049770416598}, {"top_radius": 0.06538981971777924, "bottom_radius": 0.044294379940563684, "length": 0.06007865134483496, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998046029263165, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172635729711312, "upper_button_position": 0.08254102995518531}], "rail_length": 5, "inclination": 85.7338798270845, "heading": 52.11481846339171} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0635056825065002, "mass": 15.505104927240344, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341097251556163, "I_33_without_motor": 0.03142829257269074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980925349139389, "trigger": 800, "sampling_rate": 105, "lag": 1.4433106075896818, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0272735253447423, "trigger": "apogee", "sampling_rate": 105, "lag": 1.332782688239362, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6811.818036285662, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032697601553693674, "grain_number": 5, "grain_density": 1769.9341970927558, "grain_outer_radius": 0.032409391359725453, "grain_initial_inner_radius": 0.015463786400311878, "grain_initial_height": 0.12029191009604966, "grain_separation": 0.004956346170452297, "grains_center_of_mass_position": 0.3966122154706849, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000514595593435302, "throat_radius": 0.010497882155899797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253860300923329}], "aerodynamic_surfaces": [{"length": 0.5589453180215158, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331032010358333}, {"n": 4, "root_chord": 0.1201941077287441, "tip_chord": 0.06015893453780703, "span": 0.11001043417148104, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0476296254898292}, {"top_radius": 0.06274138525189385, "bottom_radius": 0.04278474214847574, "length": 0.06124641819287686, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986030296555102, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167217845543995, "upper_button_position": 0.08188124510111072}], "rail_length": 5, "inclination": 84.85291635724415, "heading": 53.08757879977224} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349905016437828, "mass": 15.563007400972637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326023999309103, "I_33_without_motor": 0.038171584419204097, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.724312310679936, "trigger": 800, "sampling_rate": 105, "lag": 1.6830120546684701, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9274898266149137, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5170157820074146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4808.409238014103, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263799205973911, "grain_number": 5, "grain_density": 1863.0658426671014, "grain_outer_radius": 0.0331950746945697, "grain_initial_inner_radius": 0.014956844162744131, "grain_initial_height": 0.11920319640649893, "grain_separation": 0.003717788258140395, "grains_center_of_mass_position": 0.3992314295738688, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011533648336126082, "throat_radius": 0.011907332524271905, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543517678993208}], "aerodynamic_surfaces": [{"length": 0.5580960003604634, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134395693689098}, {"n": 4, "root_chord": 0.11995772516665025, "tip_chord": 0.06032140687703805, "span": 0.11012703473932071, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049567439671176}, {"top_radius": 0.0639427768194001, "bottom_radius": 0.043662692170986554, "length": 0.060000209988339805, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003593150392847, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185669268477346, "upper_button_position": 0.0817923881915501}], "rail_length": 5, "inclination": 85.29019409850999, "heading": 54.638228155950635} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349370856078192, "mass": 15.491691844295755, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3138927310201955, "I_33_without_motor": 0.034707434851732555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88628867390684, "trigger": 800, "sampling_rate": 105, "lag": 1.4989346415327784, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0094210905973415, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6613145344361293, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6126.649366696249, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325866408676695, "grain_number": 5, "grain_density": 1827.4263984270979, "grain_outer_radius": 0.03224131747478449, "grain_initial_inner_radius": 0.014865123805342998, "grain_initial_height": 0.1213023434921588, "grain_separation": 0.005809229280145407, "grains_center_of_mass_position": 0.3956211841832924, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010945319494596127, "throat_radius": 0.011001970039080456, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550074785346306}], "aerodynamic_surfaces": [{"length": 0.5585371661572113, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339121132024026}, {"n": 4, "root_chord": 0.11894073135916074, "tip_chord": 0.05911031401997308, "span": 0.11000405397139774, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503260459742543}, {"top_radius": 0.06134301944481853, "bottom_radius": 0.044362816493097, "length": 0.05982041654165681, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003340317186548, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190834688752543, "upper_button_position": 0.08125056284340049}], "rail_length": 5, "inclination": 85.37328364468334, "heading": 55.16956955585852} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634963117252426, "mass": 16.50099457643536, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308471515538942, "I_33_without_motor": 0.009743551696637265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077941405131376, "trigger": 800, "sampling_rate": 105, "lag": 1.5031492831358964, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.025062449044107, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3439671862303137, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6926.188956543999, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032357088413883676, "grain_number": 5, "grain_density": 1780.7425790521345, "grain_outer_radius": 0.03300812308847669, "grain_initial_inner_radius": 0.014812083225685627, "grain_initial_height": 0.11902716307949233, "grain_separation": 0.006785290705217054, "grains_center_of_mass_position": 0.39660682335343056, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012838638465080918, "throat_radius": 0.01123933065858436, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556248858037182}], "aerodynamic_surfaces": [{"length": 0.5582302222176759, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131323209756707}, {"n": 4, "root_chord": 0.1200006782721628, "tip_chord": 0.06056917931689277, "span": 0.10964834989600036, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047224183394133}, {"top_radius": 0.06393574817377524, "bottom_radius": 0.044476823581104025, "length": 0.06091507415481252, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991934909283133, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187935174508044, "upper_button_position": 0.08039997347750893}], "rail_length": 5, "inclination": 84.92314540894859, "heading": 52.21921943544954} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350467809298017, "mass": 15.520480826137513, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32773019562542, "I_33_without_motor": 0.023689499586476342, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.180817906629974, "trigger": 800, "sampling_rate": 105, "lag": 1.5562158502597383, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8352966761932556, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3592278452534357, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5495.71829620787, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287702537902018, "grain_number": 5, "grain_density": 1728.3802448554686, "grain_outer_radius": 0.03290830937960542, "grain_initial_inner_radius": 0.01498117472906617, "grain_initial_height": 0.11895176190403554, "grain_separation": 0.005401651668815079, "grains_center_of_mass_position": 0.395752261929022, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017694303924648156, "throat_radius": 0.011193490477880293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257404334432843}], "aerodynamic_surfaces": [{"length": 0.5579740886171451, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325524101564228}, {"n": 4, "root_chord": 0.11913454157887275, "tip_chord": 0.05958140197572391, "span": 0.1103509675653819, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492799886689552}, {"top_radius": 0.06336021200835293, "bottom_radius": 0.04424773182703427, "length": 0.05874417240435396, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987551439838644, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174912555718157, "upper_button_position": 0.08126388841204868}], "rail_length": 5, "inclination": 83.33574043061488, "heading": 51.680429909322484} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350033139327978, "mass": 15.452154085809713, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324325891927996, "I_33_without_motor": 0.018814563049772214, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.935201218165266, "trigger": 800, "sampling_rate": 105, "lag": 1.453409150338614, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0857645984796853, "trigger": "apogee", "sampling_rate": 105, "lag": 1.247027524636318, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7905.7574169164, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286029856797014, "grain_number": 5, "grain_density": 1889.185121566948, "grain_outer_radius": 0.03288434990141476, "grain_initial_inner_radius": 0.014815318324616319, "grain_initial_height": 0.11917302609732322, "grain_separation": 0.005513575132487825, "grains_center_of_mass_position": 0.3964232997249897, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006017126585425717, "throat_radius": 0.011328806480320296, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256227896088758}], "aerodynamic_surfaces": [{"length": 0.5583803636009624, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355533759078564}, {"n": 4, "root_chord": 0.12014217604551161, "tip_chord": 0.05912248643809044, "span": 0.11011129877292133, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495489108249922}, {"top_radius": 0.06351920748764617, "bottom_radius": 0.04350566463829633, "length": 0.05927481284330168, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011704879344653, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184090249506441, "upper_button_position": 0.08276146298382125}], "rail_length": 5, "inclination": 83.99034532363817, "heading": 55.96610111086335} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349479925935997, "mass": 15.702225055687771, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316485055172517, "I_33_without_motor": 0.019666162365305953, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018528477935366, "trigger": 800, "sampling_rate": 105, "lag": 1.6899305157551483, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9541190558930416, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3410901401309743, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6603.319307491957, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274644731946312, "grain_number": 5, "grain_density": 1749.8614710532554, "grain_outer_radius": 0.032741924366715476, "grain_initial_inner_radius": 0.015402230082212299, "grain_initial_height": 0.12078920804238817, "grain_separation": 0.004102797607051473, "grains_center_of_mass_position": 0.39805366489583804, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005131842102378246, "throat_radius": 0.011111953148708116, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254591586988461}], "aerodynamic_surfaces": [{"length": 0.5568272721874202, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343220010264878}, {"n": 4, "root_chord": 0.1201538462175428, "tip_chord": 0.06038464588155855, "span": 0.10944578106881138, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0474512035595855}, {"top_radius": 0.06431393647117281, "bottom_radius": 0.04300233568365852, "length": 0.05988913289108851, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006787011306558, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165360777729622, "upper_button_position": 0.08414262335769362}], "rail_length": 5, "inclination": 84.58567757451554, "heading": 56.584298521662205} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350247071186768, "mass": 14.598476355179347, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338682482600534, "I_33_without_motor": 0.041086822049096694, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988074838001804, "trigger": 800, "sampling_rate": 105, "lag": 1.4491706380803735, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9203406291645304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2988086584363208, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7371.961308519742, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294980223375563, "grain_number": 5, "grain_density": 1821.5927324862557, "grain_outer_radius": 0.03273102732317312, "grain_initial_inner_radius": 0.015222555980690446, "grain_initial_height": 0.119807337886185, "grain_separation": 0.005902571379917659, "grains_center_of_mass_position": 0.39659538083773044, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008282868532482652, "throat_radius": 0.011059912037531502, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554437896779145}], "aerodynamic_surfaces": [{"length": 0.5581968779668303, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13404080410519}, {"n": 4, "root_chord": 0.11937732433136611, "tip_chord": 0.06049032653701535, "span": 0.10982077799260266, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500607300527947}, {"top_radius": 0.06288345865776959, "bottom_radius": 0.04500183234067274, "length": 0.059585716076905465, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997981465270406, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176723697670569, "upper_button_position": 0.08212577675998378}], "rail_length": 5, "inclination": 85.32047983556852, "heading": 54.64338364712786} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349979386518056, "mass": 14.665655120524882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308337866181112, "I_33_without_motor": 0.02940922848942525, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.912448793907524, "trigger": 800, "sampling_rate": 105, "lag": 1.4883295381104646, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.965997032058505, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4420342337668395, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7787.862592439153, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032919411989490444, "grain_number": 5, "grain_density": 1837.3540851303467, "grain_outer_radius": 0.03380084314520797, "grain_initial_inner_radius": 0.015674213776893816, "grain_initial_height": 0.1202522514429104, "grain_separation": 0.0060796762423159754, "grains_center_of_mass_position": 0.39687041086849245, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006575162409220861, "throat_radius": 0.010454654626615838, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565948812227932}], "aerodynamic_surfaces": [{"length": 0.5581544419241216, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133848796806103}, {"n": 4, "root_chord": 0.12040695210617242, "tip_chord": 0.06114971716602931, "span": 0.10924219686191598, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490685877821}, {"top_radius": 0.06629950054620637, "bottom_radius": 0.042718377482470794, "length": 0.06154909876401923, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011344387325403, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173131445493169, "upper_button_position": 0.08382129418322348}], "rail_length": 5, "inclination": 85.73319810132611, "heading": 53.43672553596639} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350323905158756, "mass": 14.663181328221555, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32246128528933, "I_33_without_motor": 0.04727102262492556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959811448027597, "trigger": 800, "sampling_rate": 105, "lag": 1.4009712413875783, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1129270083988203, "trigger": "apogee", "sampling_rate": 105, "lag": 2.0493963202025256, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6960.076260880622, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03314520720387342, "grain_number": 5, "grain_density": 1809.8939614579065, "grain_outer_radius": 0.03377876700005472, "grain_initial_inner_radius": 0.014405327511500308, "grain_initial_height": 0.11951807934606073, "grain_separation": 0.0036662858692503952, "grains_center_of_mass_position": 0.39649096942083767, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00047521008137024344, "throat_radius": 0.010560565419723065, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2575609621019257}], "aerodynamic_surfaces": [{"length": 0.5590711731458509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338386878082924}, {"n": 4, "root_chord": 0.12022298968409123, "tip_chord": 0.06030962810249507, "span": 0.11015792020474115, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500946532968864}, {"top_radius": 0.06608992976261442, "bottom_radius": 0.04297486471766376, "length": 0.05999203959966876, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010136918402298, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170725675884401, "upper_button_position": 0.08394112425178968}], "rail_length": 5, "inclination": 84.407419507791, "heading": 51.808126689217254} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06351656355320481, "mass": 14.62360734619158, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314008582539643, "I_33_without_motor": 0.03674797764237765, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983037285352221, "trigger": 800, "sampling_rate": 105, "lag": 1.552705056562886, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0321283687057294, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6265383613331634, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6869.616887219077, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032405981521126295, "grain_number": 5, "grain_density": 1716.5231598371552, "grain_outer_radius": 0.03288026385773495, "grain_initial_inner_radius": 0.014781505712401971, "grain_initial_height": 0.11950276887096173, "grain_separation": 0.002688126183278587, "grains_center_of_mass_position": 0.395903772744308, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013066981377726488, "throat_radius": 0.011048658336006888, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549101213241567}], "aerodynamic_surfaces": [{"length": 0.5565854718904419, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335452755847246}, {"n": 4, "root_chord": 0.11943229505786261, "tip_chord": 0.0596255108700025, "span": 0.11067168411025133, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484518433518673}, {"top_radius": 0.06266221302042979, "bottom_radius": 0.043687274374302774, "length": 0.05922414470973619, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986457051553676, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187293467469167, "upper_button_position": 0.0799163584084509}], "rail_length": 5, "inclination": 83.37993163836096, "heading": 53.466379409470235} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0634935026788086, "mass": 15.814683116021573, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306812968674312, "I_33_without_motor": 0.047420253849753215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.882924951731338, "trigger": 800, "sampling_rate": 105, "lag": 1.5887228581483641, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9390670047735624, "trigger": "apogee", "sampling_rate": 105, "lag": 1.40261036816705, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7554.030321781876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288782775841438, "grain_number": 5, "grain_density": 1806.1176047952897, "grain_outer_radius": 0.03301523496915636, "grain_initial_inner_radius": 0.014936959918836078, "grain_initial_height": 0.1215400498120856, "grain_separation": 0.0048862421459427595, "grains_center_of_mass_position": 0.39620690446628526, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.73972215357276e-05, "throat_radius": 0.01111281467901918, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553148248810637}], "aerodynamic_surfaces": [{"length": 0.5579417076427678, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133579071249299}, {"n": 4, "root_chord": 0.12004943245975398, "tip_chord": 0.06053460970273587, "span": 0.11031398445407062, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049143852248115}, {"top_radius": 0.062270246144718065, "bottom_radius": 0.04144083501891158, "length": 0.06153727247635021, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988785706604964, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168046567144446, "upper_button_position": 0.08207391394605179}], "rail_length": 5, "inclination": 84.92575981178929, "heading": 55.0602126715058} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349969194638913, "mass": 15.47765890164611, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323665013626738, "I_33_without_motor": 0.029574770714784225, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0038437145309, "trigger": 800, "sampling_rate": 105, "lag": 1.416936758967737, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0724910071086562, "trigger": "apogee", "sampling_rate": 105, "lag": 1.51647798100477, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5288.021341331815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03312346854999634, "grain_number": 5, "grain_density": 1837.5330554113766, "grain_outer_radius": 0.03279599473769904, "grain_initial_inner_radius": 0.01493027948017733, "grain_initial_height": 0.12016247692770486, "grain_separation": 0.005017909257938897, "grains_center_of_mass_position": 0.39846116581809043, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011574809993971566, "throat_radius": 0.01138088054285133, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543140999986844}], "aerodynamic_surfaces": [{"length": 0.5577093093575884, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134219214918257}, {"n": 4, "root_chord": 0.11936208271744785, "tip_chord": 0.06053911609471711, "span": 0.10990649993751185, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048018719968735}, {"top_radius": 0.06483841038640889, "bottom_radius": 0.04260033108436329, "length": 0.05977233843062296, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996133075126058, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189016944072533, "upper_button_position": 0.08071161310535246}], "rail_length": 5, "inclination": 84.59217906709952, "heading": 52.00115219285927} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350137428598715, "mass": 14.922133287144348, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3155985047000165, "I_33_without_motor": 0.027883206038513065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.105944724220139, "trigger": 800, "sampling_rate": 105, "lag": 1.5574796861737927, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9447491215635515, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5118213791614112, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5058.650343471105, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03322857307389556, "grain_number": 5, "grain_density": 1836.4771134081332, "grain_outer_radius": 0.033045315281759996, "grain_initial_inner_radius": 0.015238125576634403, "grain_initial_height": 0.12042822859699716, "grain_separation": 0.0046977736311336026, "grains_center_of_mass_position": 0.3977473181661335, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.003269328005073685, "throat_radius": 0.01036657009126382, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555319453220088}], "aerodynamic_surfaces": [{"length": 0.5576796684345576, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132980859986419}, {"n": 4, "root_chord": 0.11990859228190548, "tip_chord": 0.06045558870469479, "span": 0.1107430593099384, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511407149887964}, {"top_radius": 0.06408539275531759, "bottom_radius": 0.04320047242157774, "length": 0.059555060241054725, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008495793408646, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177122059055272, "upper_button_position": 0.08313737343533734}], "rail_length": 5, "inclination": 86.18666481914534, "heading": 52.638495725928586} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350774488548218, "mass": 14.292154395279356, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3045571956722135, "I_33_without_motor": 0.04428847196048508, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.101161722908572, "trigger": 800, "sampling_rate": 105, "lag": 1.488679729695338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0948561474518437, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3512340210525964, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5934.532903625142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290399953233041, "grain_number": 5, "grain_density": 1839.2019211543743, "grain_outer_radius": 0.03348284531402733, "grain_initial_inner_radius": 0.014880752377839512, "grain_initial_height": 0.12001560290338313, "grain_separation": 0.0015361379332536674, "grains_center_of_mass_position": 0.3979415806090333, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001710261485229392, "throat_radius": 0.010589502144504744, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252942095364126}], "aerodynamic_surfaces": [{"length": 0.5575447063480159, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134387698798955}, {"n": 4, "root_chord": 0.11944781241082505, "tip_chord": 0.05919766521260808, "span": 0.10956020210843195, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0479005706079085}, {"top_radius": 0.06368553718465902, "bottom_radius": 0.04445393039170739, "length": 0.060624561330139506, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003396635027824, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196228146893726, "upper_button_position": 0.08071684881340979}], "rail_length": 5, "inclination": 84.36548139345294, "heading": 49.671738178028534} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349547969683768, "mass": 15.68763066602317, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313602777783486, "I_33_without_motor": 0.04428276741809086, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.056385035198057, "trigger": 800, "sampling_rate": 105, "lag": 1.4305842908940691, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0047331732746874, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5885229575840254, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6418.8915383278845, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263314378302278, "grain_number": 5, "grain_density": 1804.7492298406517, "grain_outer_radius": 0.03233570499046075, "grain_initial_inner_radius": 0.015761023556363444, "grain_initial_height": 0.12004466381735435, "grain_separation": 0.004145539019845611, "grains_center_of_mass_position": 0.3967757231198951, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015774260770492462, "throat_radius": 0.011031067470435212, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557833397485743}], "aerodynamic_surfaces": [{"length": 0.5571249208045227, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333882471094743}, {"n": 4, "root_chord": 0.11972819775251727, "tip_chord": 0.06017807378502946, "span": 0.11054167626729401, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497419513001347}, {"top_radius": 0.06352453250813138, "bottom_radius": 0.043220154491745676, "length": 0.059283549817018624, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981847805609095, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184946743614369, "upper_button_position": 0.07969010619947259}], "rail_length": 5, "inclination": 84.66642653780458, "heading": 50.658333366554494} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349810734460422, "mass": 14.951439567502641, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33054022330487, "I_33_without_motor": 0.03501611828722435, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.11127404956122, "trigger": 800, "sampling_rate": 105, "lag": 1.5795284572381194, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9985634994633994, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6765504579725472, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7096.985122634286, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032864778444372966, "grain_number": 5, "grain_density": 1730.4896868550777, "grain_outer_radius": 0.03332334898537563, "grain_initial_inner_radius": 0.015285627111544516, "grain_initial_height": 0.12120837873638406, "grain_separation": 0.00479660344356203, "grains_center_of_mass_position": 0.39624708217665994, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014958848782314117, "throat_radius": 0.011535812486042525, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552536830358083}], "aerodynamic_surfaces": [{"length": 0.5591798464947465, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345118719682699}, {"n": 4, "root_chord": 0.12024508269293445, "tip_chord": 0.05998538690091301, "span": 0.10958535159513233, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495254559918432}, {"top_radius": 0.06211955215880595, "bottom_radius": 0.042424848562137345, "length": 0.06248541393715593, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990567074645162, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184428843126412, "upper_button_position": 0.08061382315187504}], "rail_length": 5, "inclination": 84.39137540045756, "heading": 55.18190651752751} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0635035619886374, "mass": 14.8912349716203, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325863210716583, "I_33_without_motor": 0.04072970159800515, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029247520720952, "trigger": 800, "sampling_rate": 105, "lag": 1.5631289342492403, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.025843604039028, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4875487535307448, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6471.569338160649, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306270881993711, "grain_number": 5, "grain_density": 1786.7453386529996, "grain_outer_radius": 0.0335224041156613, "grain_initial_inner_radius": 0.014542617411268183, "grain_initial_height": 0.12009487524072977, "grain_separation": 0.004540697598211609, "grains_center_of_mass_position": 0.4003566908255698, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018415147845622436, "throat_radius": 0.010189696594832088, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543658767040502}], "aerodynamic_surfaces": [{"length": 0.5586906324359, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335144442294065}, {"n": 4, "root_chord": 0.12008967629472349, "tip_chord": 0.06036758516322259, "span": 0.1105645124293185, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498603250773673}, {"top_radius": 0.06439550252432569, "bottom_radius": 0.04287713270499842, "length": 0.06011148713694841, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983276737464835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180991371463909, "upper_button_position": 0.08022853660009266}], "rail_length": 5, "inclination": 84.55008579218018, "heading": 51.567561568433426} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350269129880062, "mass": 15.413061135801785, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329314250359327, "I_33_without_motor": 0.01902053041159625, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93157278553885, "trigger": 800, "sampling_rate": 105, "lag": 1.6275569557953513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0389203513011933, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8066584365696907, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8615.988715046798, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239616538050642, "grain_number": 5, "grain_density": 1844.6924333275065, "grain_outer_radius": 0.033060720735726495, "grain_initial_inner_radius": 0.015035270324158113, "grain_initial_height": 0.12053960248762868, "grain_separation": 0.005971133931747413, "grains_center_of_mass_position": 0.39656547395044706, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001092982735151668, "throat_radius": 0.011945131294048785, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254992781291018}], "aerodynamic_surfaces": [{"length": 0.5585287117648091, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349342354884737}, {"n": 4, "root_chord": 0.119617528962136, "tip_chord": 0.05963441567379094, "span": 0.10975845763362056, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050169685839147}, {"top_radius": 0.0645004626002477, "bottom_radius": 0.04313944043159173, "length": 0.06088235468113926, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008661185847689, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180533618153113, "upper_button_position": 0.08281275676945754}], "rail_length": 5, "inclination": 85.88463287556822, "heading": 52.13314059173665} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0634976550459925, "mass": 15.44676274483397, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319429946790777, "I_33_without_motor": 0.05316606824991939, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890866122863232, "trigger": 800, "sampling_rate": 105, "lag": 1.6241285804061774, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1063791522050064, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9807308215635642, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6630.312249593805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032881866695925833, "grain_number": 5, "grain_density": 1737.847583242757, "grain_outer_radius": 0.03316516642843655, "grain_initial_inner_radius": 0.01448889274169805, "grain_initial_height": 0.12052036239103947, "grain_separation": 0.004175362233674735, "grains_center_of_mass_position": 0.39709875327095573, "center_of_dry_mass_position": 0.317, "nozzle_position": 7.287464580745319e-05, "throat_radius": 0.01101453638561841, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574949005298393}], "aerodynamic_surfaces": [{"length": 0.558225155518396, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333807048595606}, {"n": 4, "root_chord": 0.12016710468609273, "tip_chord": 0.05969977903686353, "span": 0.10944019166266908, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485946442966563}, {"top_radius": 0.06414128206510351, "bottom_radius": 0.04590059790229772, "length": 0.059037473262403196, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008961547147992, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172009789993484, "upper_button_position": 0.08369517571545071}], "rail_length": 5, "inclination": 83.14804474586406, "heading": 54.92863821618736} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349537456163304, "mass": 15.199741747770439, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328476293654489, "I_33_without_motor": 0.0418471546799793, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.799240352510559, "trigger": 800, "sampling_rate": 105, "lag": 1.4569769201295601, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.979655693150598, "trigger": "apogee", "sampling_rate": 105, "lag": 1.663845943569319, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8464.753711496673, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033363625805286096, "grain_number": 5, "grain_density": 1866.6989274988964, "grain_outer_radius": 0.03372530322857577, "grain_initial_inner_radius": 0.015749981907572312, "grain_initial_height": 0.11983563392667117, "grain_separation": 0.005851026719461454, "grains_center_of_mass_position": 0.3962253533739952, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.0833417869439294e-05, "throat_radius": 0.011395297042991002, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2522584472481169}], "aerodynamic_surfaces": [{"length": 0.5588987104288868, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345242630107994}, {"n": 4, "root_chord": 0.11966396078669886, "tip_chord": 0.05989818329046559, "span": 0.10988914518812966, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500387826261992}, {"top_radius": 0.06398752379791817, "bottom_radius": 0.04383627929208216, "length": 0.05909120646215919, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004398784512925, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178923164866603, "upper_button_position": 0.0825475619646322}], "rail_length": 5, "inclination": 83.32752946995784, "heading": 55.32534144401681} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349963882562511, "mass": 15.217198770215463, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318524905485839, "I_33_without_motor": 0.036570388816962986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.181118693828465, "trigger": 800, "sampling_rate": 105, "lag": 1.3072126119403857, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9368869158179698, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7457336710928644, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5829.417663894801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033555771999414716, "grain_number": 5, "grain_density": 1860.7443683912434, "grain_outer_radius": 0.03285194587722426, "grain_initial_inner_radius": 0.014859936359929599, "grain_initial_height": 0.11950689835793786, "grain_separation": 0.006935726415001204, "grains_center_of_mass_position": 0.39725495517018183, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012290685104882617, "throat_radius": 0.012127179519548097, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557500576386598}], "aerodynamic_surfaces": [{"length": 0.5588922180969392, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327091313188486}, {"n": 4, "root_chord": 0.11930369020727395, "tip_chord": 0.05984072251985261, "span": 0.10935456135292972, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490068657994647}, {"top_radius": 0.064634977949279, "bottom_radius": 0.04259204370215238, "length": 0.0613875526207133, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006194913092759, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172248222497858, "upper_button_position": 0.08339466905949011}], "rail_length": 5, "inclination": 84.48743948041853, "heading": 53.01173169339557} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.0634941703597679, "mass": 16.28206512403648, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315976457360253, "I_33_without_motor": 0.02655724196170077, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.808021467313038, "trigger": 800, "sampling_rate": 105, "lag": 1.5199938827724804, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1386945174347098, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4802953221677164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7762.8345944889825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294909841335576, "grain_number": 5, "grain_density": 1775.0048741974147, "grain_outer_radius": 0.03286791282363603, "grain_initial_inner_radius": 0.015175770686347097, "grain_initial_height": 0.11955919598519713, "grain_separation": 0.004034499047701267, "grains_center_of_mass_position": 0.39652443507539675, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001522092555512199, "throat_radius": 0.010718866121631901, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534255696841472}], "aerodynamic_surfaces": [{"length": 0.5580550477443932, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134205018924163}, {"n": 4, "root_chord": 0.12076048029290803, "tip_chord": 0.06029156901512818, "span": 0.10959471298106567, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491363793035497}, {"top_radius": 0.06434061458933235, "bottom_radius": 0.04349915163054449, "length": 0.05943780112686424, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008897015408607, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166923412787694, "upper_button_position": 0.08419736026209135}], "rail_length": 5, "inclination": 85.63162642317381, "heading": 50.8221540305615} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349947824923823, "mass": 15.13427662733951, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318735957377441, "I_33_without_motor": 0.026145449537762225, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.042461278353302, "trigger": 800, "sampling_rate": 105, "lag": 1.362907330915306, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.116681304194078, "trigger": "apogee", "sampling_rate": 105, "lag": 1.516913070567129, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6693.096613340715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032133867367024775, "grain_number": 5, "grain_density": 1769.980568905779, "grain_outer_radius": 0.033278832190945185, "grain_initial_inner_radius": 0.015426149312191263, "grain_initial_height": 0.12001858028570822, "grain_separation": 0.00668328315640556, "grains_center_of_mass_position": 0.3978373507778777, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013609450831199034, "throat_radius": 0.010998849108061695, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547207462586196}], "aerodynamic_surfaces": [{"length": 0.5570546849735357, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340928102771854}, {"n": 4, "root_chord": 0.12063817792587844, "tip_chord": 0.05946904014410215, "span": 0.1108011858885152, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499102420919548}, {"top_radius": 0.06362728198047717, "bottom_radius": 0.0447622918079447, "length": 0.060357432822958135, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015783851993919, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187241960187888, "upper_button_position": 0.08285418918060306}], "rail_length": 5, "inclination": 84.15498927480293, "heading": 49.38791176600644} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350481096785547, "mass": 15.975019718919613, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3050247579123155, "I_33_without_motor": 0.04420101646696741, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986561681301058, "trigger": 800, "sampling_rate": 105, "lag": 1.6232465833965501, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.095536059640774, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6423100026406008, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6577.297351468826, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343939911257145, "grain_number": 5, "grain_density": 1937.6218475198039, "grain_outer_radius": 0.03362746870739773, "grain_initial_inner_radius": 0.01556919269660516, "grain_initial_height": 0.12184543227527912, "grain_separation": 0.006095543478054328, "grains_center_of_mass_position": 0.3972605991413601, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005406677366781774, "throat_radius": 0.011347469752777836, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552525906579282}], "aerodynamic_surfaces": [{"length": 0.5575042076403633, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344801055192482}, {"n": 4, "root_chord": 0.11951876789494255, "tip_chord": 0.05980182246939766, "span": 0.10899960830105564, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498594954942042}, {"top_radius": 0.06406841449301809, "bottom_radius": 0.0434151363076669, "length": 0.059213818600246645, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012907315965736, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163097884004671, "upper_button_position": 0.0849809431961065}], "rail_length": 5, "inclination": 84.45471159819583, "heading": 54.55644971074683} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350212649260949, "mass": 14.489191226884763, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312546365753049, "I_33_without_motor": 0.04405454813561063, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916261552405167, "trigger": 800, "sampling_rate": 105, "lag": 1.3542694410456644, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9991505144368533, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6359200813266863, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5036.483231457435, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333173605854873, "grain_number": 5, "grain_density": 1848.7476393115412, "grain_outer_radius": 0.033452067888902016, "grain_initial_inner_radius": 0.01520579186622691, "grain_initial_height": 0.12141799006896575, "grain_separation": 0.0066555138191943895, "grains_center_of_mass_position": 0.39641872790004856, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013240600546424305, "throat_radius": 0.011419997235577607, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544598801474356}], "aerodynamic_surfaces": [{"length": 0.5586522052099271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341916741893998}, {"n": 4, "root_chord": 0.12047175623999956, "tip_chord": 0.06060852146224581, "span": 0.1106275160956046, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480285653394619}, {"top_radius": 0.06463165984627137, "bottom_radius": 0.04463577277453201, "length": 0.06162061294957818, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997456535477499, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185223547900209, "upper_button_position": 0.08122329875772893}], "rail_length": 5, "inclination": 84.38997676390967, "heading": 52.85858913614163} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350608450583643, "mass": 16.448744640074356, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323776363885181, "I_33_without_motor": 0.044176896020734976, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.981154386781002, "trigger": 800, "sampling_rate": 105, "lag": 1.473825896165252, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0496868893348124, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9195516299657125, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6796.32071857303, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03259768526013893, "grain_number": 5, "grain_density": 1739.8026829190403, "grain_outer_radius": 0.03223979248943431, "grain_initial_inner_radius": 0.0155435059801701, "grain_initial_height": 0.12042998574102187, "grain_separation": 0.004879400492201028, "grains_center_of_mass_position": 0.39735153455720035, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00027276679027278, "throat_radius": 0.01090590827799638, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553330782381151}], "aerodynamic_surfaces": [{"length": 0.5598389698007021, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346373339826927}, {"n": 4, "root_chord": 0.1192584572519831, "tip_chord": 0.05999738490104592, "span": 0.10967691886100298, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505366390535793}, {"top_radius": 0.0632701817966007, "bottom_radius": 0.04214724671246901, "length": 0.060467722048175764, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008589950146984, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179011341019293, "upper_button_position": 0.08295786091276913}], "rail_length": 5, "inclination": 83.56600963305438, "heading": 55.13308511318868} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349862160453391, "mass": 14.952360434262115, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323297151191422, "I_33_without_motor": 0.023383916688940923, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.140387828805585, "trigger": 800, "sampling_rate": 105, "lag": 1.54010365960017, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8673740850472763, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1584157586706376, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6053.066158375482, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309179672687833, "grain_number": 5, "grain_density": 1838.7705517560196, "grain_outer_radius": 0.03327279031719532, "grain_initial_inner_radius": 0.014780413843617737, "grain_initial_height": 0.12313886638023067, "grain_separation": 0.005001373981581014, "grains_center_of_mass_position": 0.395807529764043, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037860303983371075, "throat_radius": 0.010330095186663469, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546844880321661}], "aerodynamic_surfaces": [{"length": 0.5582355875069865, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334994550100739}, {"n": 4, "root_chord": 0.12043518050062896, "tip_chord": 0.06040092461404651, "span": 0.11020226715957847, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048688929683202}, {"top_radius": 0.06260602742255277, "bottom_radius": 0.043567095983523776, "length": 0.059127789859836084, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998279570209998, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180549797778766, "upper_button_position": 0.08177297724312316}], "rail_length": 5, "inclination": 84.43606781282116, "heading": 57.31572953225474} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349905934122613, "mass": 15.033418082503168, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33539355167612, "I_33_without_motor": 0.034066477514105575, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.926607542482946, "trigger": 800, "sampling_rate": 105, "lag": 1.3808675901757308, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1436898735985508, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3174177363548485, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5930.8348676046335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269920822147394, "grain_number": 5, "grain_density": 1798.9840971012609, "grain_outer_radius": 0.03341778844703949, "grain_initial_inner_radius": 0.0153876582196903, "grain_initial_height": 0.12001800263696676, "grain_separation": 0.004952495561855445, "grains_center_of_mass_position": 0.3966525966812798, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002893010041546093, "throat_radius": 0.011568049886459132, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562354647884526}], "aerodynamic_surfaces": [{"length": 0.5591925315140397, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344558542210337}, {"n": 4, "root_chord": 0.11994720082928126, "tip_chord": 0.05993763754381239, "span": 0.10953796770949259, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500710667234892}, {"top_radius": 0.06417234700398108, "bottom_radius": 0.04393981998197833, "length": 0.06032175797230533, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6974321401843698, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160506858838657, "upper_button_position": 0.08138145430050414}], "rail_length": 5, "inclination": 82.95810182451086, "heading": 53.49286096129767} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0635023252950125, "mass": 15.17906214019836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32605722700302, "I_33_without_motor": 0.042050404681197286, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.133990711660145, "trigger": 800, "sampling_rate": 105, "lag": 1.4845593568006072, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0631230373818186, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0970940511837495, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7857.910471178734, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272851636727753, "grain_number": 5, "grain_density": 1785.1467830559163, "grain_outer_radius": 0.03276619993052991, "grain_initial_inner_radius": 0.01474588271946149, "grain_initial_height": 0.12085762069107454, "grain_separation": 0.003095249843043532, "grains_center_of_mass_position": 0.39731356606301904, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005327530837401527, "throat_radius": 0.0115365103221738, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549558182905909}], "aerodynamic_surfaces": [{"length": 0.5586991905701241, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332317809500572}, {"n": 4, "root_chord": 0.1199911120709463, "tip_chord": 0.05970226863676994, "span": 0.11002778978889806, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0517170098975732}, {"top_radius": 0.06345894677356345, "bottom_radius": 0.04246547745215069, "length": 0.058239213587722584, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701650648757277, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170073328976651, "upper_button_position": 0.08464331585961193}], "rail_length": 5, "inclination": 85.3255659937611, "heading": 50.83526707654356} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349399915414683, "mass": 14.754648109477737, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341922694860631, "I_33_without_motor": 0.03477995459231909, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.825299184012062, "trigger": 800, "sampling_rate": 105, "lag": 1.490331818148055, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9790494677859479, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2630310935820086, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6745.217238271311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033725686666822595, "grain_number": 5, "grain_density": 1832.102532320215, "grain_outer_radius": 0.032655696425557545, "grain_initial_inner_radius": 0.015403225755498875, "grain_initial_height": 0.12005173309086382, "grain_separation": 0.005225995185928569, "grains_center_of_mass_position": 0.3978831555106612, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015995725233750127, "throat_radius": 0.010759328467847083, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554087267614558}], "aerodynamic_surfaces": [{"length": 0.5587674770151965, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349182583965556}, {"n": 4, "root_chord": 0.12074544356015404, "tip_chord": 0.059127153689612265, "span": 0.11066621018200297, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491074299029526}, {"top_radius": 0.06255374164648672, "bottom_radius": 0.042813906349509524, "length": 0.0596806029420279, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999017470994425, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184960512944376, "upper_button_position": 0.0814056958050049}], "rail_length": 5, "inclination": 84.27234653570297, "heading": 49.59765067731169} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349415155075792, "mass": 16.12584667042382, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329066396401329, "I_33_without_motor": 0.04443790471938296, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04050990963773, "trigger": 800, "sampling_rate": 105, "lag": 1.3861500713836066, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8560223180557048, "trigger": "apogee", "sampling_rate": 105, "lag": 1.598679701465645, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5434.570176852067, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033235930994977216, "grain_number": 5, "grain_density": 1984.2636532095185, "grain_outer_radius": 0.03333032263550704, "grain_initial_inner_radius": 0.015378662117085167, "grain_initial_height": 0.11990776473656374, "grain_separation": 0.005074791843846725, "grains_center_of_mass_position": 0.3989686284295847, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003017068507572153, "throat_radius": 0.011850953225142433, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2526381508424227}], "aerodynamic_surfaces": [{"length": 0.5602702851205238, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13304063360114}, {"n": 4, "root_chord": 0.12035778176272456, "tip_chord": 0.06038760438602498, "span": 0.10966425509665201, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502944189393129}, {"top_radius": 0.06376841665191821, "bottom_radius": 0.043779353930186775, "length": 0.06140116388209324, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001599330744979, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617615710274122, "upper_button_position": 0.08254422280037588}], "rail_length": 5, "inclination": 85.70408133752706, "heading": 53.832460323859586} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350396932376295, "mass": 15.471255781274081, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310706649401759, "I_33_without_motor": 0.025268190294306603, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.948366458453203, "trigger": 800, "sampling_rate": 105, "lag": 1.5163967814652803, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0275981259617897, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6875185453045196, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7068.014554157607, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033160772208599566, "grain_number": 5, "grain_density": 1851.7280582531585, "grain_outer_radius": 0.03334198342962967, "grain_initial_inner_radius": 0.01486282884111561, "grain_initial_height": 0.1198789340654273, "grain_separation": 0.003043560931154926, "grains_center_of_mass_position": 0.39657011739088077, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006854042682731455, "throat_radius": 0.011001406956492937, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569799421815189}], "aerodynamic_surfaces": [{"length": 0.5599626681859367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338095300127469}, {"n": 4, "root_chord": 0.11942772503146042, "tip_chord": 0.06055089701982729, "span": 0.10998493873593447, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490610126829685}, {"top_radius": 0.06331810441181791, "bottom_radius": 0.044423212254888426, "length": 0.05895241961645621, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005232220133528, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177413028982078, "upper_button_position": 0.08278191911514499}], "rail_length": 5, "inclination": 85.74408231498627, "heading": 50.19074317960083} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350455278857059, "mass": 15.475801044481434, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302536352131768, "I_33_without_motor": 0.02252649946315971, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.955278111292127, "trigger": 800, "sampling_rate": 105, "lag": 1.5133770464381588, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.025084088074799, "trigger": "apogee", "sampling_rate": 105, "lag": 1.71377524815222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7397.527720346106, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03376249112861859, "grain_number": 5, "grain_density": 1915.0214207363756, "grain_outer_radius": 0.03337178988865893, "grain_initial_inner_radius": 0.014986428426834656, "grain_initial_height": 0.12014368573560173, "grain_separation": 0.004883311453520575, "grains_center_of_mass_position": 0.39561569553442333, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00032331388771772245, "throat_radius": 0.010789089023410046, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543941174262498}], "aerodynamic_surfaces": [{"length": 0.5584377474030543, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333813373556596}, {"n": 4, "root_chord": 0.11987289741243526, "tip_chord": 0.05992555411037413, "span": 0.10964974557993062, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048713536165678}, {"top_radius": 0.06504963172966653, "bottom_radius": 0.04209878129566816, "length": 0.06105535591649126, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998830904018438, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185363466638367, "upper_button_position": 0.0813467437380071}], "rail_length": 5, "inclination": 84.23429076453945, "heading": 53.94041665471751} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.0634930372479802, "mass": 14.998673749230647, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325459944280626, "I_33_without_motor": 0.02063284327828349, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.676635619521047, "trigger": 800, "sampling_rate": 105, "lag": 1.6320174017264697, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0465226558335765, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1558730550401435, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6729.7408889269755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032509559063458815, "grain_number": 5, "grain_density": 1796.2725967369124, "grain_outer_radius": 0.03320039824011623, "grain_initial_inner_radius": 0.014334914957422373, "grain_initial_height": 0.11854389225788134, "grain_separation": 0.004400863821907705, "grains_center_of_mass_position": 0.39893451808636365, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003500632961947965, "throat_radius": 0.011823207438275177, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254635198893318}], "aerodynamic_surfaces": [{"length": 0.5578441113496236, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324995504740512}, {"n": 4, "root_chord": 0.1197711863231853, "tip_chord": 0.06061698182655067, "span": 0.1100931044096674, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499373027964798}, {"top_radius": 0.06458638678974457, "bottom_radius": 0.04341118620896988, "length": 0.06162469830818587, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015220567785108, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6201081810874075, "upper_button_position": 0.08141387569110325}], "rail_length": 5, "inclination": 83.18286638880292, "heading": 53.32340122139384} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349036510693828, "mass": 15.459768837178952, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333606378721616, "I_33_without_motor": 0.03419308691479109, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92829582040722, "trigger": 800, "sampling_rate": 105, "lag": 1.6624832870923572, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9190763704667035, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3440574863090526, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6114.033529441651, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032750000224350324, "grain_number": 5, "grain_density": 1863.822599092924, "grain_outer_radius": 0.03252874548561566, "grain_initial_inner_radius": 0.013997210362525414, "grain_initial_height": 0.12017954231571279, "grain_separation": 0.005709483176176194, "grains_center_of_mass_position": 0.39817386360760043, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018666416427269492, "throat_radius": 0.011078018942781315, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254531762648309}], "aerodynamic_surfaces": [{"length": 0.5600459104943417, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348699618218874}, {"n": 4, "root_chord": 0.11906247976639708, "tip_chord": 0.059919878399007705, "span": 0.10958335765751527, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516964135601103}, {"top_radius": 0.06444989155977358, "bottom_radius": 0.04470839783151747, "length": 0.06110441563350233, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992839336131583, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190943054263647, "upper_button_position": 0.08018962818679365}], "rail_length": 5, "inclination": 85.28528060388338, "heading": 53.025901878969435} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349557195201602, "mass": 15.650012025647639, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334386279658107, "I_33_without_motor": 0.017716250216837478, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072000050204508, "trigger": 800, "sampling_rate": 105, "lag": 1.5568537105775135, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.023513573582037, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2916313474312773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6785.617613484512, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320476174791291, "grain_number": 5, "grain_density": 1807.924666447796, "grain_outer_radius": 0.032724675194345285, "grain_initial_inner_radius": 0.015065645805369612, "grain_initial_height": 0.11691845566889628, "grain_separation": 0.005564284029944174, "grains_center_of_mass_position": 0.39740508675112945, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038827214133462445, "throat_radius": 0.011208735315971042, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553551479901657}], "aerodynamic_surfaces": [{"length": 0.5578999573146587, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355799611103206}, {"n": 4, "root_chord": 0.11958416660214549, "tip_chord": 0.05978026329180909, "span": 0.10969665405429334, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482345342633457}, {"top_radius": 0.06362036556067137, "bottom_radius": 0.04141535350437306, "length": 0.060185041918966495, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994267325120181, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182553835669589, "upper_button_position": 0.08117134894505929}], "rail_length": 5, "inclination": 84.57669441427494, "heading": 55.05263000005172} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06348669599451841, "mass": 16.381347123425712, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319067269490286, "I_33_without_motor": 0.027640182030170164, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033330876205415, "trigger": 800, "sampling_rate": 105, "lag": 1.3644412107846227, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9888339946730667, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6830180093795015, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4899.544635876001, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03346604289275089, "grain_number": 5, "grain_density": 1837.9892680810683, "grain_outer_radius": 0.032853786345288946, "grain_initial_inner_radius": 0.014900346171523002, "grain_initial_height": 0.12147265933396868, "grain_separation": 0.004771956804648883, "grains_center_of_mass_position": 0.397875466795909, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016624867170573167, "throat_radius": 0.010633986287202, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562546823501195}], "aerodynamic_surfaces": [{"length": 0.5575922580812038, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133576883635629}, {"n": 4, "root_chord": 0.11920870785162253, "tip_chord": 0.059977024529782465, "span": 0.10982636742386265, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0517743199567335}, {"top_radius": 0.06437632073520817, "bottom_radius": 0.04398734363747817, "length": 0.058533613771216936, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996835349080247, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164134747652618, "upper_button_position": 0.08327006014276295}], "rail_length": 5, "inclination": 84.5161666866256, "heading": 51.738761739430416} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349722316704219, "mass": 15.580474014769537, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331023035509137, "I_33_without_motor": 0.031384951553114285, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95193371972282, "trigger": 800, "sampling_rate": 105, "lag": 1.4257778817845292, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.013095622278021, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4953144927681397, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6039.53564023219, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304133274322548, "grain_number": 5, "grain_density": 1806.8088564379816, "grain_outer_radius": 0.03314027770496413, "grain_initial_inner_radius": 0.014744218339002307, "grain_initial_height": 0.11880450895630905, "grain_separation": 0.004250325434511526, "grains_center_of_mass_position": 0.39572434191425065, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011146638889521546, "throat_radius": 0.01165205508617786, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548468209331742}], "aerodynamic_surfaces": [{"length": 0.5572135861798313, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345146639659427}, {"n": 4, "root_chord": 0.11959370686851083, "tip_chord": 0.05938888822068103, "span": 0.1098456503186583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500913884457497}, {"top_radius": 0.06338628747673966, "bottom_radius": 0.04413229106800214, "length": 0.059939452710839516, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996444123845132, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198554405565433, "upper_button_position": 0.07978897182796996}], "rail_length": 5, "inclination": 84.30933008298385, "heading": 52.97874560995315} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349728650077868, "mass": 15.613980975369861, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3187263644012175, "I_33_without_motor": 0.05991306736905916, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.053291857699648, "trigger": 800, "sampling_rate": 105, "lag": 1.5021724153754255, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9233857954035302, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5649380870065592, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7005.69315857893, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323034681038715, "grain_number": 5, "grain_density": 1798.3112940550066, "grain_outer_radius": 0.03277652195001655, "grain_initial_inner_radius": 0.014264376292478996, "grain_initial_height": 0.11959386039925395, "grain_separation": 0.005577446577002648, "grains_center_of_mass_position": 0.39597092028916436, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00014071971272281515, "throat_radius": 0.011451020334139847, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534854629294223}], "aerodynamic_surfaces": [{"length": 0.5587427248633663, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346712391664353}, {"n": 4, "root_chord": 0.11973800348968391, "tip_chord": 0.06034955209987189, "span": 0.10958341786244222, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488847013724512}, {"top_radius": 0.06365194180751681, "bottom_radius": 0.04330203495899736, "length": 0.05769252611273692, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981493622771033, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199554132439433, "upper_button_position": 0.07819394903316002}], "rail_length": 5, "inclination": 86.38994567722679, "heading": 51.77117974798428} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634944499120419, "mass": 15.605867848943646, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30632366277986, "I_33_without_motor": 0.024473562873831144, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91490047416976, "trigger": 800, "sampling_rate": 105, "lag": 1.6160342866509882, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9826130549397535, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3620242047780848, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5559.440964002034, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303797616205857, "grain_number": 5, "grain_density": 1790.7467952946593, "grain_outer_radius": 0.03285779620624425, "grain_initial_inner_radius": 0.014960359480113069, "grain_initial_height": 0.118115041395804, "grain_separation": 0.006333602404299539, "grains_center_of_mass_position": 0.39577840074593035, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009126843365834541, "throat_radius": 0.011015549508596057, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253054260267297}], "aerodynamic_surfaces": [{"length": 0.557823265556154, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336226255422739}, {"n": 4, "root_chord": 0.11993195125551133, "tip_chord": 0.06053025961709664, "span": 0.11009087169621504, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491256415064754}, {"top_radius": 0.06257623879339883, "bottom_radius": 0.04317281297876752, "length": 0.0598394126126261, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997999776958252, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174498080073054, "upper_button_position": 0.08235016968851983}], "rail_length": 5, "inclination": 84.96191677582411, "heading": 54.16646767549136} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350526959821587, "mass": 14.712990567213836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322019887745464, "I_33_without_motor": 0.031128886440845892, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.831964899120264, "trigger": 800, "sampling_rate": 105, "lag": 1.6291850829885701, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0848047481462442, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7126301080522108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6098.887145803708, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336431183588365, "grain_number": 5, "grain_density": 1739.7443946172723, "grain_outer_radius": 0.032707044883044586, "grain_initial_inner_radius": 0.015091321992367512, "grain_initial_height": 0.12218532880175402, "grain_separation": 0.005017233767740028, "grains_center_of_mass_position": 0.397346161624103, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009948770483232806, "throat_radius": 0.010211124140872496, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545011359723153}], "aerodynamic_surfaces": [{"length": 0.5589013902256088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353682461753554}, {"n": 4, "root_chord": 0.11948978517502436, "tip_chord": 0.05939260273460633, "span": 0.11014967428853698, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490735993393827}, {"top_radius": 0.06409628476082398, "bottom_radius": 0.04347465589444851, "length": 0.05989755416034919, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988006760128708, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194651751279688, "upper_button_position": 0.07933550088490193}], "rail_length": 5, "inclination": 85.54724582938279, "heading": 52.21975816547846} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0634990487537727, "mass": 14.89655268412627, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326758802141773, "I_33_without_motor": 0.01851569919432052, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.962202927184714, "trigger": 800, "sampling_rate": 105, "lag": 1.6575481652675101, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0576441305315998, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1272120104267138, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7333.334403766979, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03284616538061031, "grain_number": 5, "grain_density": 1849.4545651118142, "grain_outer_radius": 0.03261856521439196, "grain_initial_inner_radius": 0.01496182316159952, "grain_initial_height": 0.12032833769011725, "grain_separation": 0.005057496460571036, "grains_center_of_mass_position": 0.3980826067886531, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008999821249757022, "throat_radius": 0.011186503124487894, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537885420726196}], "aerodynamic_surfaces": [{"length": 0.5592141449694273, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132967471244054}, {"n": 4, "root_chord": 0.11954996296725627, "tip_chord": 0.05978384525126408, "span": 0.10990893573210472, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488473477297524}, {"top_radius": 0.06474149059619398, "bottom_radius": 0.042894057100691205, "length": 0.06191795237865326, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001978481330041, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185640958636248, "upper_button_position": 0.0816337522693793}], "rail_length": 5, "inclination": 84.64206906056154, "heading": 52.20491197323649} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350725232781457, "mass": 14.939488953740248, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320149725258749, "I_33_without_motor": 0.031223331377968146, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057479574174742, "trigger": 800, "sampling_rate": 105, "lag": 1.6644265539514747, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0716032378991929, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5900432929749577, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5636.506078080716, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03312128567465851, "grain_number": 5, "grain_density": 1792.2424268692994, "grain_outer_radius": 0.03291098832044984, "grain_initial_inner_radius": 0.014504049131075019, "grain_initial_height": 0.12000290014440798, "grain_separation": 0.004497279698426684, "grains_center_of_mass_position": 0.3986561077990269, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.9397405204582305e-05, "throat_radius": 0.009901035986198245, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25459857038143}], "aerodynamic_surfaces": [{"length": 0.5567632213660078, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323482360245556}, {"n": 4, "root_chord": 0.11955746905995458, "tip_chord": 0.060503477051726, "span": 0.10982190063022555, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491925139168334}, {"top_radius": 0.0632825949304448, "bottom_radius": 0.044528471932553985, "length": 0.05862294972113653, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993303667312616, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190252795887656, "upper_button_position": 0.08030508714249596}], "rail_length": 5, "inclination": 84.56587636180727, "heading": 56.14139463116955} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349867752845498, "mass": 15.35754838925752, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3156486660576014, "I_33_without_motor": 0.02475590743638209, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.106006670870388, "trigger": 800, "sampling_rate": 105, "lag": 1.4677352663608183, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0497652278747223, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2410623337658644, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7258.5645440412, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272462507823763, "grain_number": 5, "grain_density": 1714.134344544587, "grain_outer_radius": 0.03280194193121746, "grain_initial_inner_radius": 0.015108497297834918, "grain_initial_height": 0.11991820532993953, "grain_separation": 0.004690761692881387, "grains_center_of_mass_position": 0.3964114407104691, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009996400157774063, "throat_radius": 0.011086317697594496, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558851625573666}], "aerodynamic_surfaces": [{"length": 0.5569015542609443, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326560653543705}, {"n": 4, "root_chord": 0.12056293948259351, "tip_chord": 0.059651651402308194, "span": 0.11014960660869881, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493133212088372}, {"top_radius": 0.06332730664549466, "bottom_radius": 0.04396627384673047, "length": 0.06014301574230722, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992053694044831, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192961939634252, "upper_button_position": 0.07990917544105791}], "rail_length": 5, "inclination": 82.92607294644212, "heading": 54.26087171041651} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349569829849323, "mass": 15.758198382651479, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318974315665568, "I_33_without_motor": 0.04425380577016429, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99393088741181, "trigger": 800, "sampling_rate": 105, "lag": 1.520784964095433, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9576020158143894, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2418545732677253, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6612.474691223061, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317820754579019, "grain_number": 5, "grain_density": 1830.655383961327, "grain_outer_radius": 0.033225033546301116, "grain_initial_inner_radius": 0.015348748195305364, "grain_initial_height": 0.11874107302413704, "grain_separation": 0.006270251071872639, "grains_center_of_mass_position": 0.39775920963473393, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004514608739388732, "throat_radius": 0.01054257296423414, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541698571686677}], "aerodynamic_surfaces": [{"length": 0.5587289060426086, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322779313562263}, {"n": 4, "root_chord": 0.11975231708130077, "tip_chord": 0.05963153914810515, "span": 0.11063457359010836, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485504226991194}, {"top_radius": 0.06367552740614789, "bottom_radius": 0.04314144385396197, "length": 0.059475911090232945, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994264684148035, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616108518924511, "upper_button_position": 0.08331794949029248}], "rail_length": 5, "inclination": 83.57537119289758, "heading": 55.07549830610312} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350613810522239, "mass": 15.794061187624886, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327766580593124, "I_33_without_motor": 0.03601059939842285, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079455182431346, "trigger": 800, "sampling_rate": 105, "lag": 1.3383644252497087, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0070977549845805, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3749342700231064, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4264.32642386165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283338015610269, "grain_number": 5, "grain_density": 1783.2028270425026, "grain_outer_radius": 0.03281037921408968, "grain_initial_inner_radius": 0.014494725851641766, "grain_initial_height": 0.11976935889902075, "grain_separation": 0.004187692814360086, "grains_center_of_mass_position": 0.3978331164163311, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00011099187889660057, "throat_radius": 0.011189235166943798, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551853708760468}], "aerodynamic_surfaces": [{"length": 0.5580322002662552, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328893643046283}, {"n": 4, "root_chord": 0.12096913689273814, "tip_chord": 0.05993503351293708, "span": 0.11041974724503986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483703515580107}, {"top_radius": 0.06266106965951565, "bottom_radius": 0.04290543627649235, "length": 0.06054309871054475, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003905758657342, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162342000964908, "upper_button_position": 0.0841563757692434}], "rail_length": 5, "inclination": 84.61882348202306, "heading": 50.9572526881351} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349493812298936, "mass": 15.772920117533298, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322645872402233, "I_33_without_motor": 0.03197665787641836, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.030928558979198, "trigger": 800, "sampling_rate": 105, "lag": 1.5210479898710816, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0044619050445933, "trigger": "apogee", "sampling_rate": 105, "lag": 1.370264756713784, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6488.744536151508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293922642588828, "grain_number": 5, "grain_density": 1762.6198440462576, "grain_outer_radius": 0.03231446738136892, "grain_initial_inner_radius": 0.015455421110064396, "grain_initial_height": 0.12151553879407814, "grain_separation": 0.005027021889716198, "grains_center_of_mass_position": 0.39594545367757655, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012195811529494692, "throat_radius": 0.010705064309963338, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534046583266183}], "aerodynamic_surfaces": [{"length": 0.5578457487436594, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334174096812868}, {"n": 4, "root_chord": 0.11935764620245287, "tip_chord": 0.059561831290708335, "span": 0.10974956360761488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504892659253606}, {"top_radius": 0.06268055307063233, "bottom_radius": 0.04237922769418896, "length": 0.05878730761035318, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988275301299782, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618023089452319, "upper_button_position": 0.08080444067765924}], "rail_length": 5, "inclination": 86.14358600169275, "heading": 54.112460080205416} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349369457325753, "mass": 15.122047654364938, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321323957489929, "I_33_without_motor": 0.04838127491581472, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.2253598676411, "trigger": 800, "sampling_rate": 105, "lag": 1.70583400218005, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0550216193565782, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6085267212249101, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7296.174939581548, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0333356641658055, "grain_number": 5, "grain_density": 1781.3427017553963, "grain_outer_radius": 0.03244946738342776, "grain_initial_inner_radius": 0.015140007215430285, "grain_initial_height": 0.11904610988748178, "grain_separation": 0.004696323267738049, "grains_center_of_mass_position": 0.39684215312493126, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007992581182213785, "throat_radius": 0.010874002901093164, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548622770176276}], "aerodynamic_surfaces": [{"length": 0.5586041852719374, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338284484816694}, {"n": 4, "root_chord": 0.11966439364092628, "tip_chord": 0.06023659444381267, "span": 0.1096355131308463, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502839999606344}, {"top_radius": 0.06484912348803658, "bottom_radius": 0.04434105933443978, "length": 0.05768136819183251, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991279322787601, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186058157739246, "upper_button_position": 0.08052211650483554}], "rail_length": 5, "inclination": 85.77877506411765, "heading": 52.822159912153666} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349537180413449, "mass": 16.296257915391635, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327603341928445, "I_33_without_motor": 0.03670475180873335, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98540580853479, "trigger": 800, "sampling_rate": 105, "lag": 1.5280715240291425, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0961236410663415, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6067761867265733, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7983.347927469535, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03235557931804009, "grain_number": 5, "grain_density": 1802.3297959022693, "grain_outer_radius": 0.033052674608315916, "grain_initial_inner_radius": 0.015105450697405076, "grain_initial_height": 0.12165410783221135, "grain_separation": 0.005062474434105388, "grains_center_of_mass_position": 0.39727850391514896, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005776224492632669, "throat_radius": 0.01132583806454734, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253983563422751}], "aerodynamic_surfaces": [{"length": 0.558022379270747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134721869898746}, {"n": 4, "root_chord": 0.12026551281932772, "tip_chord": 0.0608684359991163, "span": 0.11005808199391423, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508585844282055}, {"top_radius": 0.06464821589967869, "bottom_radius": 0.044036679334373705, "length": 0.06067224074621555, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008724401008013, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197518894815298, "upper_button_position": 0.08112055061927148}], "rail_length": 5, "inclination": 85.4170087462196, "heading": 56.51474058636996} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350746379338086, "mass": 15.114534569047212, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3283934368142445, "I_33_without_motor": 0.04905816449629625, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029973736827769, "trigger": 800, "sampling_rate": 105, "lag": 1.3082887390202893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9164647364619571, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5635207398292312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7043.329108122331, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302821353100313, "grain_number": 5, "grain_density": 1793.4932172395702, "grain_outer_radius": 0.03295371807141645, "grain_initial_inner_radius": 0.01524229346493775, "grain_initial_height": 0.11991773944585606, "grain_separation": 0.00546965763177268, "grains_center_of_mass_position": 0.3975395192309192, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012825871106224616, "throat_radius": 0.010864235714346058, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561748623972762}], "aerodynamic_surfaces": [{"length": 0.5594913549658586, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1316810321147923}, {"n": 4, "root_chord": 0.12007757779015314, "tip_chord": 0.06012553127878548, "span": 0.11036464190909319, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049262845779745}, {"top_radius": 0.06422828100019698, "bottom_radius": 0.04360364988644532, "length": 0.06059910988230324, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008897849091741, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173815090882816, "upper_button_position": 0.08350827582089249}], "rail_length": 5, "inclination": 83.87048813041065, "heading": 55.98422586887725} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350355196343822, "mass": 15.590380420808888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326440053149462, "I_33_without_motor": 0.04175605642690863, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.049925189174797, "trigger": 800, "sampling_rate": 105, "lag": 1.3421240042296736, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0587724423063611, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6705500981391266, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7915.126685785472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328765128313914, "grain_number": 5, "grain_density": 1764.055046756829, "grain_outer_radius": 0.033581817779374065, "grain_initial_inner_radius": 0.01524790187836667, "grain_initial_height": 0.12035758393659148, "grain_separation": 0.003333400108800488, "grains_center_of_mass_position": 0.39648260857981205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010101146138458024, "throat_radius": 0.01159228806517179, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564321241021081}], "aerodynamic_surfaces": [{"length": 0.558595086632971, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345153361122644}, {"n": 4, "root_chord": 0.12027176237041744, "tip_chord": 0.05932705982934806, "span": 0.1096069481000712, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510935458091493}, {"top_radius": 0.06249663651788972, "bottom_radius": 0.04346033032659401, "length": 0.0605687240777708, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6978946657890073, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176588001734968, "upper_button_position": 0.08023586561551044}], "rail_length": 5, "inclination": 85.77962628216476, "heading": 51.91759230623877} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350359231895282, "mass": 15.159347470857128, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324993516249852, "I_33_without_motor": 0.03067756885095569, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.947030143114292, "trigger": 800, "sampling_rate": 105, "lag": 1.4599374041647546, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.997354171605014, "trigger": "apogee", "sampling_rate": 105, "lag": 1.39566427329611, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5166.29783793185, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032534416821794455, "grain_number": 5, "grain_density": 1714.5238812436432, "grain_outer_radius": 0.03333952212070068, "grain_initial_inner_radius": 0.015193031564854102, "grain_initial_height": 0.11815516042851631, "grain_separation": 0.00639868711069479, "grains_center_of_mass_position": 0.3965024748024814, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007568776470233856, "throat_radius": 0.011198060195748785, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256586888873178}], "aerodynamic_surfaces": [{"length": 0.557872291094844, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337603583268823}, {"n": 4, "root_chord": 0.12081615256495135, "tip_chord": 0.059494133470894876, "span": 0.11088399931041262, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511407743525174}, {"top_radius": 0.06247514226650037, "bottom_radius": 0.04440877683547953, "length": 0.060687349527261056, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996802108324536, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183051387279802, "upper_button_position": 0.08137507210447337}], "rail_length": 5, "inclination": 85.25315085465755, "heading": 50.63527611315602} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06351097365612554, "mass": 15.24438977878773, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3090889978283755, "I_33_without_motor": 0.03128215020916571, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.096541499351588, "trigger": 800, "sampling_rate": 105, "lag": 1.4985864768689734, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.974762519772218, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3914438947643002, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6894.540442334404, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032263903366745596, "grain_number": 5, "grain_density": 1764.525976170744, "grain_outer_radius": 0.03208068489307795, "grain_initial_inner_radius": 0.014452107865379874, "grain_initial_height": 0.11908944726805067, "grain_separation": 0.0044308135566288875, "grains_center_of_mass_position": 0.39791923781200783, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009772422477522236, "throat_radius": 0.011170470660828458, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563382908704879}], "aerodynamic_surfaces": [{"length": 0.5566656085928833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133720897651997}, {"n": 4, "root_chord": 0.11969382777130375, "tip_chord": 0.05966394328696643, "span": 0.10998769359762645, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489031164416902}, {"top_radius": 0.06357320209850816, "bottom_radius": 0.04410707730902338, "length": 0.05867995274088781, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984546164349699, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187167473876551, "upper_button_position": 0.07973786904731472}], "rail_length": 5, "inclination": 84.8566974348134, "heading": 54.97307016879787} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350439779050827, "mass": 14.90892762172949, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321828907874024, "I_33_without_motor": 0.04685440970379488, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989571699995846, "trigger": 800, "sampling_rate": 105, "lag": 1.3965610855715473, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0321846811709487, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8168084356486285, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4799.289379668357, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0323420862388308, "grain_number": 5, "grain_density": 1778.346888180091, "grain_outer_radius": 0.033193207106167015, "grain_initial_inner_radius": 0.014714641364232974, "grain_initial_height": 0.1201484508835419, "grain_separation": 0.005909172930668968, "grains_center_of_mass_position": 0.3960137420321199, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039690113308618125, "throat_radius": 0.011174126174253885, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533288249870738}], "aerodynamic_surfaces": [{"length": 0.5590538868237791, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13530778349375}, {"n": 4, "root_chord": 0.11980451960987942, "tip_chord": 0.05909009498129304, "span": 0.10992818307144162, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480125453825542}, {"top_radius": 0.06479518691057144, "bottom_radius": 0.04352693039370533, "length": 0.05959410589341473, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005073339757947, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167733426155341, "upper_button_position": 0.0837339913602606}], "rail_length": 5, "inclination": 84.67854649244758, "heading": 55.679837471224786} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350388915599019, "mass": 15.409073090492107, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315453426530198, "I_33_without_motor": 0.04565849600155737, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038180896589004, "trigger": 800, "sampling_rate": 105, "lag": 1.4216225237386966, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9639709113008492, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5045238741844462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7225.718624003246, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032764612307420705, "grain_number": 5, "grain_density": 1835.3959328705118, "grain_outer_radius": 0.03306272146763603, "grain_initial_inner_radius": 0.01587783756848967, "grain_initial_height": 0.12199602966812437, "grain_separation": 0.0035721131462696076, "grains_center_of_mass_position": 0.3980867354452681, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003351097171372835, "throat_radius": 0.01106587546966009, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551791795207632}], "aerodynamic_surfaces": [{"length": 0.5595643490856802, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331289243118463}, {"n": 4, "root_chord": 0.11982746822564912, "tip_chord": 0.060168719185428717, "span": 0.11034393717002856, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05108623608585}, {"top_radius": 0.0628324966150299, "bottom_radius": 0.042030712957828086, "length": 0.060632348678501924, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992843936328227, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179892903494036, "upper_button_position": 0.08129510328341905}], "rail_length": 5, "inclination": 84.54934102057885, "heading": 50.99603365476059} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349098741925477, "mass": 15.923433824051026, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321422905949514, "I_33_without_motor": 0.026472975358903167, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.994938527085273, "trigger": 800, "sampling_rate": 105, "lag": 1.4894694809593725, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.095207109978298, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6158975321134368, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8748.545417595427, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252593081577702, "grain_number": 5, "grain_density": 1846.366857917927, "grain_outer_radius": 0.03232813635000285, "grain_initial_inner_radius": 0.014558261886820934, "grain_initial_height": 0.12047038378936889, "grain_separation": 0.0020048288620139365, "grains_center_of_mass_position": 0.39837812769003267, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002224799056731314, "throat_radius": 0.01141275053588373, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551784217012636}], "aerodynamic_surfaces": [{"length": 0.5569802364897714, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1320200677931875}, {"n": 4, "root_chord": 0.12035047441771807, "tip_chord": 0.06070752326587423, "span": 0.11009067753445488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504472996759668}, {"top_radius": 0.06219670786656144, "bottom_radius": 0.04454440250300238, "length": 0.060271007441908116, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980557991866935, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181968501363523, "upper_button_position": 0.07985894905034119}], "rail_length": 5, "inclination": 84.36213044999059, "heading": 52.86378526281084} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0635039413363924, "mass": 15.605968276623997, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323289606212584, "I_33_without_motor": 0.034534938850048554, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0018834558762, "trigger": 800, "sampling_rate": 105, "lag": 1.460846515068328, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9219822012978709, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5102752440542402, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6862.037749932327, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320925390948225, "grain_number": 5, "grain_density": 1864.8054598289887, "grain_outer_radius": 0.03338072423663541, "grain_initial_inner_radius": 0.014508914286853785, "grain_initial_height": 0.12023492495192517, "grain_separation": 0.004623965952409199, "grains_center_of_mass_position": 0.3966483814709594, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010379902836366774, "throat_radius": 0.011154673909977224, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554207880934294}], "aerodynamic_surfaces": [{"length": 0.5601220119251872, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342111996508277}, {"n": 4, "root_chord": 0.1202221810961738, "tip_chord": 0.059549382095856265, "span": 0.11012684931483412, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496886684631872}, {"top_radius": 0.0650801529767582, "bottom_radius": 0.04280993488736657, "length": 0.05924243691598848, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001487574224299, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189846835798551, "upper_button_position": 0.08116407384257474}], "rail_length": 5, "inclination": 85.06689231296511, "heading": 51.28932299858917} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349694074020806, "mass": 15.222815837520589, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322647522355359, "I_33_without_motor": 0.022641991051087863, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03605045763828, "trigger": 800, "sampling_rate": 105, "lag": 1.6579505903088332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0662058974468387, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5215313162609507, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7332.1277599403675, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03367036279739903, "grain_number": 5, "grain_density": 1785.423780541754, "grain_outer_radius": 0.032808055445499563, "grain_initial_inner_radius": 0.015137372765810817, "grain_initial_height": 0.11997906919744862, "grain_separation": 0.006066778425404603, "grains_center_of_mass_position": 0.39609140814678007, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010280046088366444, "throat_radius": 0.011874511109417165, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562026579570016}], "aerodynamic_surfaces": [{"length": 0.5586173205965611, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338833509342743}, {"n": 4, "root_chord": 0.12061422949679405, "tip_chord": 0.06006802517370424, "span": 0.1095079239572169, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506572549836737}, {"top_radius": 0.06480879670216683, "bottom_radius": 0.04425036015245287, "length": 0.060358780417779465, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006434595929173, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181915395384688, "upper_button_position": 0.08245192005444846}], "rail_length": 5, "inclination": 81.07878967379392, "heading": 52.34663051609782} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635079891945851, "mass": 14.967014967580312, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340271836833688, "I_33_without_motor": 0.0319800717829455, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022186308128145, "trigger": 800, "sampling_rate": 105, "lag": 1.3653688755865017, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9017083090381333, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7258387547957457, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6549.612592347214, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291334242790417, "grain_number": 5, "grain_density": 1786.9432298987733, "grain_outer_radius": 0.03242390908974418, "grain_initial_inner_radius": 0.015478247321808707, "grain_initial_height": 0.11908020434003448, "grain_separation": 0.006503704152683898, "grains_center_of_mass_position": 0.39634626755430213, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008595059422155955, "throat_radius": 0.010732248102085883, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532958173792532}], "aerodynamic_surfaces": [{"length": 0.5574164376536938, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340875852949595}, {"n": 4, "root_chord": 0.12033643633496617, "tip_chord": 0.06067934097874148, "span": 0.10894404943131054, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482474561247486}, {"top_radius": 0.06385933123688743, "bottom_radius": 0.045518097305797915, "length": 0.06107792041248153, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984943906396373, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185226213368131, "upper_button_position": 0.07997176930282412}], "rail_length": 5, "inclination": 84.29624837009646, "heading": 53.650619938592136} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06351182767425662, "mass": 15.880518644062596, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325389730594363, "I_33_without_motor": 0.016973865337706125, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.042939090805552, "trigger": 800, "sampling_rate": 105, "lag": 1.4450403834941083, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0160554832766542, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2234722815303665, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5907.126774673851, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237173967388716, "grain_number": 5, "grain_density": 1790.7254272863509, "grain_outer_radius": 0.03313295168109042, "grain_initial_inner_radius": 0.014638678259312123, "grain_initial_height": 0.12277909508060693, "grain_separation": 0.0044125107473116515, "grains_center_of_mass_position": 0.3983582232893208, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005463010326740047, "throat_radius": 0.010911953338543955, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550697371901742}], "aerodynamic_surfaces": [{"length": 0.5581983824686779, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132732935165575}, {"n": 4, "root_chord": 0.1198111855762548, "tip_chord": 0.0603638696565189, "span": 0.11055025106810938, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497789662311887}, {"top_radius": 0.06494927652787476, "bottom_radius": 0.04632475687605274, "length": 0.06012349608283592, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996127160917774, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187876157308586, "upper_button_position": 0.08082510036091883}], "rail_length": 5, "inclination": 83.80708668717612, "heading": 53.53971881699214} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0634995534165781, "mass": 14.511944042223076, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34121239934557, "I_33_without_motor": 0.018707444731377542, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967838045546223, "trigger": 800, "sampling_rate": 105, "lag": 1.3427615410389029, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9645185210158131, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4975379735729941, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5435.858290553485, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033053701064777466, "grain_number": 5, "grain_density": 1958.5268398318294, "grain_outer_radius": 0.03313411763877655, "grain_initial_inner_radius": 0.015242864176161873, "grain_initial_height": 0.11944735474501812, "grain_separation": 0.005790331921251267, "grains_center_of_mass_position": 0.3966749495293543, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001202710413077956, "throat_radius": 0.01181303781626449, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563977104854933}], "aerodynamic_surfaces": [{"length": 0.5567638920738541, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342533018058216}, {"n": 4, "root_chord": 0.12051926610369057, "tip_chord": 0.059388876411300695, "span": 0.1096341793493942, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050252953754887}, {"top_radius": 0.06281510160574638, "bottom_radius": 0.04477856334674286, "length": 0.06071036986710905, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000038901454939, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193140600339022, "upper_button_position": 0.0806898301115917}], "rail_length": 5, "inclination": 84.13687610232371, "heading": 51.77264769765526} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349958104062978, "mass": 15.58491727866221, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314144831290733, "I_33_without_motor": 0.03131453923466878, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021702216537276, "trigger": 800, "sampling_rate": 105, "lag": 1.546174589166191, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9964999288587437, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8688014875015377, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 9216.13739442467, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03349880233024966, "grain_number": 5, "grain_density": 1849.2767088170208, "grain_outer_radius": 0.03275352932246475, "grain_initial_inner_radius": 0.0151713153645485, "grain_initial_height": 0.12023054288859457, "grain_separation": 0.006573533112744839, "grains_center_of_mass_position": 0.39704886075565393, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019906089003148037, "throat_radius": 0.010727198683941891, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556856751406622}], "aerodynamic_surfaces": [{"length": 0.5602161209864073, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335630557966638}, {"n": 4, "root_chord": 0.12103041578861189, "tip_chord": 0.059840698114172815, "span": 0.11042136273415164, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513847015800626}, {"top_radius": 0.0642249192210954, "bottom_radius": 0.043416960572539555, "length": 0.05962604169203674, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985520753843664, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192461822722112, "upper_button_position": 0.07930589311215519}], "rail_length": 5, "inclination": 85.78850043261932, "heading": 50.95951186961295} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350511671926556, "mass": 15.327889461003773, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318263685745237, "I_33_without_motor": 0.04125467593659812, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.907551240409372, "trigger": 800, "sampling_rate": 105, "lag": 1.519195425884577, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9809999538604137, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6072590823687531, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4604.773969293665, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248174929829022, "grain_number": 5, "grain_density": 1775.5396274702864, "grain_outer_radius": 0.032739714444669776, "grain_initial_inner_radius": 0.014718792823656542, "grain_initial_height": 0.1215618691570206, "grain_separation": 0.004878009839497976, "grains_center_of_mass_position": 0.3968933930314809, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013603702054729527, "throat_radius": 0.01020420184853492, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254446446519904}], "aerodynamic_surfaces": [{"length": 0.5596172616857963, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335686630587123}, {"n": 4, "root_chord": 0.12024718888023794, "tip_chord": 0.060257448421134355, "span": 0.10988414460336732, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048479747309302}, {"top_radius": 0.06414804859303637, "bottom_radius": 0.042678638108006525, "length": 0.061228464261358535, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990310875319438, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171291398376569, "upper_button_position": 0.08190194769428683}], "rail_length": 5, "inclination": 83.55287158725218, "heading": 52.36575934139125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349960595910545, "mass": 15.095539178760747, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325769310235162, "I_33_without_motor": 0.025166499189058306, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86275533572985, "trigger": 800, "sampling_rate": 105, "lag": 1.3959754170268774, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9835360643296904, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5828662046223916, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8012.168981350403, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032424444155912835, "grain_number": 5, "grain_density": 1783.2002062665126, "grain_outer_radius": 0.033317256302663495, "grain_initial_inner_radius": 0.015060989678240497, "grain_initial_height": 0.11983948769584109, "grain_separation": 0.005648024871106466, "grains_center_of_mass_position": 0.39574661039922504, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009136958344616674, "throat_radius": 0.010640695126097062, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558814405066743}], "aerodynamic_surfaces": [{"length": 0.5593000554841642, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337766434425731}, {"n": 4, "root_chord": 0.12005639688736074, "tip_chord": 0.05955407299532533, "span": 0.10935426846068205, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0475706353581087}, {"top_radius": 0.06439185654536264, "bottom_radius": 0.04406771791502168, "length": 0.05924844307481456, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7020381592959444, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617196666318199, "upper_button_position": 0.08484149297774535}], "rail_length": 5, "inclination": 85.75150112964116, "heading": 51.258747369677046} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350442091973398, "mass": 15.011439658135457, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32486857775531, "I_33_without_motor": 0.014640228375647497, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.937414500557358, "trigger": 800, "sampling_rate": 105, "lag": 1.522728994725847, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0346877042665557, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2804823437505957, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6450.645964521336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032258133597609776, "grain_number": 5, "grain_density": 1832.7472362143048, "grain_outer_radius": 0.03292079297065122, "grain_initial_inner_radius": 0.014641458587047738, "grain_initial_height": 0.12025517083899764, "grain_separation": 0.004888257290432983, "grains_center_of_mass_position": 0.39636244937406123, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001903621254937947, "throat_radius": 0.011222718373836496, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556345025624305}], "aerodynamic_surfaces": [{"length": 0.5578806710335018, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352143169458209}, {"n": 4, "root_chord": 0.12015716110524435, "tip_chord": 0.05996974244366036, "span": 0.11048904685778534, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480946747368869}, {"top_radius": 0.06568042044971747, "bottom_radius": 0.0425331895781022, "length": 0.05864826973902957, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002718180169962, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178572930145892, "upper_button_position": 0.08241452500240698}], "rail_length": 5, "inclination": 85.67197566457787, "heading": 52.14073289525125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349839672841877, "mass": 14.346789019311439, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320473848813659, "I_33_without_motor": 0.0370889158776168, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931263629511074, "trigger": 800, "sampling_rate": 105, "lag": 1.707925444616893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0033090690986743, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5751911211431981, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5402.269550092268, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332236539839643, "grain_number": 5, "grain_density": 1795.0153292516957, "grain_outer_radius": 0.03324193946660121, "grain_initial_inner_radius": 0.014793702222573228, "grain_initial_height": 0.12213503716526421, "grain_separation": 0.004554261704070612, "grains_center_of_mass_position": 0.3961037859145028, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007667796397352322, "throat_radius": 0.010910541564396059, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549826978889385}], "aerodynamic_surfaces": [{"length": 0.5567663040281444, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334541093708972}, {"n": 4, "root_chord": 0.12034249451230011, "tip_chord": 0.059268607945981926, "span": 0.10937229617782596, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049846342458744}, {"top_radius": 0.062453504109863875, "bottom_radius": 0.044129723983972094, "length": 0.05971194656584704, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012630842432113, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184935163960594, "upper_button_position": 0.08276956784715184}], "rail_length": 5, "inclination": 85.4623091692662, "heading": 55.120360412937956} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0634980345025726, "mass": 14.64249079579473, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3198916477966565, "I_33_without_motor": 0.054177079092541686, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.080601292527717, "trigger": 800, "sampling_rate": 105, "lag": 1.6171482624694242, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8881411787359254, "trigger": "apogee", "sampling_rate": 105, "lag": 2.056362809695796, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3936.8864613228166, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287800811749551, "grain_number": 5, "grain_density": 1700.0267912031347, "grain_outer_radius": 0.03346331646766059, "grain_initial_inner_radius": 0.014871106664699228, "grain_initial_height": 0.1207791119322232, "grain_separation": 0.006076060011800535, "grains_center_of_mass_position": 0.395958012478412, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.7251401035791188e-05, "throat_radius": 0.010420041174758213, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256382156324621}], "aerodynamic_surfaces": [{"length": 0.5592493222912003, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345852227084345}, {"n": 4, "root_chord": 0.12002382039417073, "tip_chord": 0.05998009899484644, "span": 0.11107435838351641, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0479669353716317}, {"top_radius": 0.06243887077604439, "bottom_radius": 0.04400559812716765, "length": 0.060546507721236674, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003889761519068, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200925617524569, "upper_button_position": 0.0802964143994499}], "rail_length": 5, "inclination": 85.84381540897493, "heading": 55.1548094773549} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349818747289028, "mass": 15.264380997118122, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318058389630719, "I_33_without_motor": 0.03356716411057539, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983748011717765, "trigger": 800, "sampling_rate": 105, "lag": 1.4465624781498811, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0521807052945225, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3853989103480022, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6798.418851123659, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033821858796795404, "grain_number": 5, "grain_density": 1844.4258253090038, "grain_outer_radius": 0.03331552939198862, "grain_initial_inner_radius": 0.01486714031206066, "grain_initial_height": 0.11948912951395942, "grain_separation": 0.0043106971360248, "grains_center_of_mass_position": 0.3959257050965179, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016999187730261645, "throat_radius": 0.00988701262895593, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554744015807344}], "aerodynamic_surfaces": [{"length": 0.5562474015197781, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350079710522218}, {"n": 4, "root_chord": 0.11954687824737316, "tip_chord": 0.059700243172336014, "span": 0.1110478819706397, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493438475412271}, {"top_radius": 0.06513754215982306, "bottom_radius": 0.043855360015096205, "length": 0.06241904585152627, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001609591033539, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619160213808063, "upper_button_position": 0.08100074529529089}], "rail_length": 5, "inclination": 84.381583552709, "heading": 50.60102111687249} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349247965809812, "mass": 15.16159722132549, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322807027767621, "I_33_without_motor": 0.03015595121364796, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.754661068029636, "trigger": 800, "sampling_rate": 105, "lag": 1.5364804459132941, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9638793284408247, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5480966927958697, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6815.4522084119735, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032446217777216325, "grain_number": 5, "grain_density": 1818.4877124986895, "grain_outer_radius": 0.032991387414803654, "grain_initial_inner_radius": 0.014806044500167662, "grain_initial_height": 0.11947243949387876, "grain_separation": 0.006054176198017113, "grains_center_of_mass_position": 0.39705183672333244, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003631265037021902, "throat_radius": 0.011517153145637712, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566647860405225}], "aerodynamic_surfaces": [{"length": 0.557587309578996, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330297083690108}, {"n": 4, "root_chord": 0.11999028705553925, "tip_chord": 0.06080894153037352, "span": 0.10960230612968395, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480375924513174}, {"top_radius": 0.06503289849584072, "bottom_radius": 0.04316791262361993, "length": 0.06027627273795779, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006381620668629, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186921260749629, "upper_button_position": 0.08194603599189998}], "rail_length": 5, "inclination": 83.59014092880459, "heading": 51.17757104774368} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06348875688533837, "mass": 15.093803326550852, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316558676014011, "I_33_without_motor": 0.023657640646174878, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.719633582112879, "trigger": 800, "sampling_rate": 105, "lag": 1.398808176799329, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0446312509095348, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4867319374591088, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6874.111140925335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266862256452106, "grain_number": 5, "grain_density": 1766.0082970274382, "grain_outer_radius": 0.0331955864740328, "grain_initial_inner_radius": 0.015474974659706856, "grain_initial_height": 0.11898564138899465, "grain_separation": 0.005241365624723898, "grains_center_of_mass_position": 0.39721034044905085, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000498259588933106, "throat_radius": 0.010444916579197936, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536494411353387}], "aerodynamic_surfaces": [{"length": 0.5578598994052784, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352802808315479}, {"n": 4, "root_chord": 0.11892922423977169, "tip_chord": 0.05979763028452219, "span": 0.11036096943074451, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506518417772934}, {"top_radius": 0.06367057447830951, "bottom_radius": 0.043708026096521205, "length": 0.05923100379466602, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699459756328173, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183250047620996, "upper_button_position": 0.08113475156607342}], "rail_length": 5, "inclination": 84.46084754440423, "heading": 52.22508074339527} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06351037756227718, "mass": 15.879990447589927, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302749165955125, "I_33_without_motor": 0.028420341996486492, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025496902251088, "trigger": 800, "sampling_rate": 105, "lag": 1.5146505641538779, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9991370827727486, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2664572457835754, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6631.665732782136, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03404345766985414, "grain_number": 5, "grain_density": 1769.2644258315725, "grain_outer_radius": 0.03273080213083564, "grain_initial_inner_radius": 0.015045990775608056, "grain_initial_height": 0.11848660441246514, "grain_separation": 0.007285014126078873, "grains_center_of_mass_position": 0.39711843886240183, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003583412412158915, "throat_radius": 0.011060311730574477, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551899088985348}], "aerodynamic_surfaces": [{"length": 0.5571053365769476, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339804804191405}, {"n": 4, "root_chord": 0.12001141452354144, "tip_chord": 0.06009435054721287, "span": 0.10977102883060257, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504699826043864}, {"top_radius": 0.06446509033339794, "bottom_radius": 0.04269636126306982, "length": 0.060317272958890215, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700135400462327, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181451771531882, "upper_button_position": 0.08199022330913885}], "rail_length": 5, "inclination": 86.4639882096134, "heading": 50.861221741512075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635036041602002, "mass": 14.520871614471215, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325030180576457, "I_33_without_motor": 0.0302756611437486, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08913701831621, "trigger": 800, "sampling_rate": 105, "lag": 1.548135390092505, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9260962420789656, "trigger": "apogee", "sampling_rate": 105, "lag": 1.614214771618086, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6452.8264095740815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269690678320823, "grain_number": 5, "grain_density": 1797.631386502536, "grain_outer_radius": 0.03281501849039372, "grain_initial_inner_radius": 0.01475870708418932, "grain_initial_height": 0.12082872437704954, "grain_separation": 0.0043703077854219926, "grains_center_of_mass_position": 0.39746060609339595, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002396536415234858, "throat_radius": 0.010456408789498554, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536280441053183}], "aerodynamic_surfaces": [{"length": 0.5589096040757852, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346377823861913}, {"n": 4, "root_chord": 0.11938443000779762, "tip_chord": 0.060623050135167444, "span": 0.11052264877860472, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051719362051286}, {"top_radius": 0.0628147582069037, "bottom_radius": 0.043155558128812395, "length": 0.0583400564696269, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988260612301475, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618388500321593, "upper_button_position": 0.08043756090855447}], "rail_length": 5, "inclination": 83.68750123534295, "heading": 50.47477159612903} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350505070421761, "mass": 14.390008585357062, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310108678879965, "I_33_without_motor": 0.02974510973868394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.130467953906637, "trigger": 800, "sampling_rate": 105, "lag": 1.4646157075067259, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0489836918659352, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2464795509462412, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5670.42104586616, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351518800283373, "grain_number": 5, "grain_density": 1769.1940429184247, "grain_outer_radius": 0.03304245646813518, "grain_initial_inner_radius": 0.015174465653499091, "grain_initial_height": 0.12062819298178878, "grain_separation": 0.005898240722880693, "grains_center_of_mass_position": 0.39684743159388386, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002038654504156089, "throat_radius": 0.010389246949992199, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551150638415403}], "aerodynamic_surfaces": [{"length": 0.5592716731061808, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327125477169768}, {"n": 4, "root_chord": 0.11973376817495192, "tip_chord": 0.06000083101642112, "span": 0.11015538937196268, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491776594008924}, {"top_radius": 0.06457041883247101, "bottom_radius": 0.04205015660357335, "length": 0.05925033872800035, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996126887571285, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169161225233833, "upper_button_position": 0.0826965662337451}], "rail_length": 5, "inclination": 84.48295558655083, "heading": 52.63253171313362} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06348853069015793, "mass": 15.654316972369667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31606376474243, "I_33_without_motor": 0.028051929713030416, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12258042335887, "trigger": 800, "sampling_rate": 105, "lag": 1.4032314274899422, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0455322141472143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.276031962441549, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7814.806046691684, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032891023880578345, "grain_number": 5, "grain_density": 1805.7250776143308, "grain_outer_radius": 0.03307318489595058, "grain_initial_inner_radius": 0.014527382538599911, "grain_initial_height": 0.11971104298448218, "grain_separation": 0.0050454066556731994, "grains_center_of_mass_position": 0.3976711175718345, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020921186424247146, "throat_radius": 0.0113412748244715, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543031280527521}], "aerodynamic_surfaces": [{"length": 0.5585547254408096, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342565894009506}, {"n": 4, "root_chord": 0.12001566745600892, "tip_chord": 0.05932057515280927, "span": 0.10986796624638273, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483327243314213}, {"top_radius": 0.0645400041994013, "bottom_radius": 0.042076249231569184, "length": 0.06141012827403247, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991069089745804, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183761907260921, "upper_button_position": 0.08073071824848832}], "rail_length": 5, "inclination": 85.54848060813767, "heading": 53.21719590233221} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350327139575077, "mass": 15.712671583117574, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316984064512535, "I_33_without_motor": 0.03684357798411517, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954274015474798, "trigger": 800, "sampling_rate": 105, "lag": 1.469684302956243, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0367416160225496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1028301436180517, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6870.34040869929, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031687542392632856, "grain_number": 5, "grain_density": 1814.2942139728455, "grain_outer_radius": 0.03299154184798693, "grain_initial_inner_radius": 0.014483618701936724, "grain_initial_height": 0.11927710825622995, "grain_separation": 0.004751703873603374, "grains_center_of_mass_position": 0.3982565897101794, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006879871914497115, "throat_radius": 0.010464061749126969, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552628107955106}], "aerodynamic_surfaces": [{"length": 0.55773929253548, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352671248453725}, {"n": 4, "root_chord": 0.12019732671337598, "tip_chord": 0.06059193783701149, "span": 0.10881862373382734, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0468970335046335}, {"top_radius": 0.06318571000011111, "bottom_radius": 0.04490487819863167, "length": 0.05860982652732362, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700658146474997, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174429888163269, "upper_button_position": 0.08321515765867016}], "rail_length": 5, "inclination": 83.59700141004853, "heading": 52.12033611384404} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06348677672781994, "mass": 14.941492689300464, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333207067218264, "I_33_without_motor": 0.022292384363299916, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035034740652936, "trigger": 800, "sampling_rate": 105, "lag": 1.245950495680077, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.020524180592457, "trigger": "apogee", "sampling_rate": 105, "lag": 1.225747345692299, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7084.514415372116, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03243984038536706, "grain_number": 5, "grain_density": 1854.6103159870636, "grain_outer_radius": 0.032504427010612395, "grain_initial_inner_radius": 0.01494248338996529, "grain_initial_height": 0.11993055323647016, "grain_separation": 0.003518775272905641, "grains_center_of_mass_position": 0.39854015344822796, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.450543169093655e-06, "throat_radius": 0.01143642960280399, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539756977541519}], "aerodynamic_surfaces": [{"length": 0.5571686371892783, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354184347163803}, {"n": 4, "root_chord": 0.11959246989280689, "tip_chord": 0.06018601132106999, "span": 0.11001835309629786, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495023657479803}, {"top_radius": 0.06430197892944074, "bottom_radius": 0.04463716287167435, "length": 0.05910356968888, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989113760359842, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185048835785196, "upper_button_position": 0.08040649245746456}], "rail_length": 5, "inclination": 85.58926770438066, "heading": 48.207137565448036} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350190346130996, "mass": 15.979092411587283, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3190445222563145, "I_33_without_motor": 0.04738064199340843, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.934249558265442, "trigger": 800, "sampling_rate": 105, "lag": 1.6757866531948618, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9872955865056734, "trigger": "apogee", "sampling_rate": 105, "lag": 1.348511758352863, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6287.42132876085, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03373956868504949, "grain_number": 5, "grain_density": 1846.9374555923214, "grain_outer_radius": 0.032346933195627696, "grain_initial_inner_radius": 0.014854930780224597, "grain_initial_height": 0.12084004396444938, "grain_separation": 0.004480690772225092, "grains_center_of_mass_position": 0.39672093545875736, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.6330500617633535e-05, "throat_radius": 0.010901532087423817, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539987595441788}], "aerodynamic_surfaces": [{"length": 0.5592796426762676, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340559627314795}, {"n": 4, "root_chord": 0.11980291442008296, "tip_chord": 0.05893382471930918, "span": 0.11003191627671677, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049299408903456}, {"top_radius": 0.06596448766902187, "bottom_radius": 0.043994415667721005, "length": 0.06159593964332475, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7017474686026115, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616367802822528, "upper_button_position": 0.08537966578008349}], "rail_length": 5, "inclination": 84.97537668674855, "heading": 54.98218230667199} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.0634987786257421, "mass": 14.245168312217713, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32476043703546, "I_33_without_motor": 0.02233064399876966, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017967722115529, "trigger": 800, "sampling_rate": 105, "lag": 1.5140196579286622, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9714935795401608, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7397410498013561, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6022.507086837194, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296999027251574, "grain_number": 5, "grain_density": 1851.7530827921428, "grain_outer_radius": 0.032907812642886614, "grain_initial_inner_radius": 0.015045386363826574, "grain_initial_height": 0.11777224377718938, "grain_separation": 0.0028137988472588626, "grains_center_of_mass_position": 0.39782164953833515, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004491384692814323, "throat_radius": 0.010702847805842042, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552306208004778}], "aerodynamic_surfaces": [{"length": 0.5562686682040637, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344243557892764}, {"n": 4, "root_chord": 0.11981754372212262, "tip_chord": 0.059967014641141715, "span": 0.110507670823549, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503557868100206}, {"top_radius": 0.06286690967205766, "bottom_radius": 0.04396924661069357, "length": 0.06061432053256615, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004467651218391, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188101501137162, "upper_button_position": 0.08163661500812291}], "rail_length": 5, "inclination": 85.43187304974083, "heading": 51.21542673493954} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350047681912349, "mass": 15.895797639439367, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315417834009068, "I_33_without_motor": 0.044205349160182233, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.246752863344618, "trigger": 800, "sampling_rate": 105, "lag": 1.5758868492518256, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.953767418740023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6591763092830496, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6756.488279342696, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033627790182454514, "grain_number": 5, "grain_density": 1844.8461970255212, "grain_outer_radius": 0.03293577170088361, "grain_initial_inner_radius": 0.014553372245311643, "grain_initial_height": 0.1190637052906642, "grain_separation": 0.005490786243849395, "grains_center_of_mass_position": 0.39835440773291353, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002255344158568878, "throat_radius": 0.011021208194036613, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550209800491188}], "aerodynamic_surfaces": [{"length": 0.55834745730909, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135017485514379}, {"n": 4, "root_chord": 0.12129776402177211, "tip_chord": 0.05926410128802477, "span": 0.11024120426030952, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493727977857608}, {"top_radius": 0.06401179914472499, "bottom_radius": 0.04385052057941982, "length": 0.061115355930198824, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996592139749879, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172972990112973, "upper_button_position": 0.08236191496369061}], "rail_length": 5, "inclination": 84.0681274468313, "heading": 55.957105410748206} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349575619916824, "mass": 14.760393368006376, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327902189092989, "I_33_without_motor": 0.03131939142009371, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.18119783965322, "trigger": 800, "sampling_rate": 105, "lag": 1.3667787696261633, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0341106151529773, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3589924689906674, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5545.824000155124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372176648047374, "grain_number": 5, "grain_density": 1846.2901698465932, "grain_outer_radius": 0.03291341585858048, "grain_initial_inner_radius": 0.014633822555271982, "grain_initial_height": 0.12035405629090522, "grain_separation": 0.005587839241086975, "grains_center_of_mass_position": 0.39612483838056556, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010979019473541323, "throat_radius": 0.010968145990561203, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550738751558856}], "aerodynamic_surfaces": [{"length": 0.5592955358154333, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326570072114448}, {"n": 4, "root_chord": 0.12066425379996154, "tip_chord": 0.060716243721038836, "span": 0.10941112195364681, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494967979239067}, {"top_radius": 0.06256623986209238, "bottom_radius": 0.04446111133764781, "length": 0.05981615325774811, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996512395192289, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186682500462615, "upper_button_position": 0.08098298947296745}], "rail_length": 5, "inclination": 83.89959429633397, "heading": 53.70752903068833} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350213210749457, "mass": 15.64424348254626, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314008863383509, "I_33_without_motor": 0.014215538283491567, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.371551350006698, "trigger": 800, "sampling_rate": 105, "lag": 1.535656635554019, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8848453288448715, "trigger": "apogee", "sampling_rate": 105, "lag": 1.111826998992077, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4886.913552128844, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298309147772532, "grain_number": 5, "grain_density": 1859.0961774998314, "grain_outer_radius": 0.033178449898033244, "grain_initial_inner_radius": 0.01513303111745787, "grain_initial_height": 0.12007291624463802, "grain_separation": 0.005747112089645735, "grains_center_of_mass_position": 0.39586557926911653, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001584500221650161, "throat_radius": 0.011687069134685393, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255772832433758}], "aerodynamic_surfaces": [{"length": 0.5568442890740215, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133621322031529}, {"n": 4, "root_chord": 0.11864094241869647, "tip_chord": 0.06010536257149964, "span": 0.10933552738222983, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513062226315377}, {"top_radius": 0.06258121897012357, "bottom_radius": 0.044810165095249016, "length": 0.05959625243588749, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700399556065319, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6205991135742024, "upper_button_position": 0.07980044249111662}], "rail_length": 5, "inclination": 83.97505830235298, "heading": 50.23264558418584} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349955096700577, "mass": 15.209929723432445, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319205343893924, "I_33_without_motor": 0.03737816883716898, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000717242880116, "trigger": 800, "sampling_rate": 105, "lag": 1.4865549921713397, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0363373903152049, "trigger": "apogee", "sampling_rate": 105, "lag": 1.370264651676524, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5916.056190405487, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327360432689429, "grain_number": 5, "grain_density": 1871.8697085732974, "grain_outer_radius": 0.032954841590603315, "grain_initial_inner_radius": 0.015132331994480297, "grain_initial_height": 0.1198793583580123, "grain_separation": 0.00657130538520147, "grains_center_of_mass_position": 0.3974860836059084, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005435032371877496, "throat_radius": 0.010678925015633993, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568541925474368}], "aerodynamic_surfaces": [{"length": 0.55876426980458, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335967854910207}, {"n": 4, "root_chord": 0.12033549945311571, "tip_chord": 0.06029984364969061, "span": 0.10981789111905887, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501126427992962}, {"top_radius": 0.06102901595471629, "bottom_radius": 0.04372371132091823, "length": 0.05921218835798236, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989429443330746, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162948154586114, "upper_button_position": 0.08264812887446316}], "rail_length": 5, "inclination": 84.36243723924309, "heading": 52.00907527379098} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350009485797475, "mass": 15.850107093493936, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316608276406585, "I_33_without_motor": 0.04126710903592087, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09549436523288, "trigger": 800, "sampling_rate": 105, "lag": 1.577917402791525, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1027536743548612, "trigger": "apogee", "sampling_rate": 105, "lag": 1.439977854773412, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7361.683852432733, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03253381100455657, "grain_number": 5, "grain_density": 1727.3042131047732, "grain_outer_radius": 0.03332946216950053, "grain_initial_inner_radius": 0.01550027868399466, "grain_initial_height": 0.11996277117315239, "grain_separation": 0.004982334712757099, "grains_center_of_mass_position": 0.3969813253062158, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008784953082196853, "throat_radius": 0.011655296473874536, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548220116668274}], "aerodynamic_surfaces": [{"length": 0.5596021315876757, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343628635565117}, {"n": 4, "root_chord": 0.11978807298142602, "tip_chord": 0.059911463001032166, "span": 0.11042019362097841, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506556093921027}, {"top_radius": 0.06324410534163416, "bottom_radius": 0.04260901215079241, "length": 0.061027559592961335, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992656277420047, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185265059363474, "upper_button_position": 0.08073912180565734}], "rail_length": 5, "inclination": 85.34070611111265, "heading": 49.43230112378043} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06348799479973169, "mass": 16.315802785504992, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326880644146751, "I_33_without_motor": 0.046575735188519, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014731125303657, "trigger": 800, "sampling_rate": 105, "lag": 1.6103256541282243, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0480806398684088, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5878160992881716, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6669.805370883972, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03215167652748011, "grain_number": 5, "grain_density": 1774.3793758571846, "grain_outer_radius": 0.031900359299561316, "grain_initial_inner_radius": 0.01478813458772989, "grain_initial_height": 0.12130959161774162, "grain_separation": 0.006656859939530914, "grains_center_of_mass_position": 0.3973097062015951, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004130274756979477, "throat_radius": 0.010306703855363352, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546613506342303}], "aerodynamic_surfaces": [{"length": 0.558100097649591, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333776386006507}, {"n": 4, "root_chord": 0.11995816635213279, "tip_chord": 0.05973437560274717, "span": 0.11018487507570365, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500037005648697}, {"top_radius": 0.06310852789469122, "bottom_radius": 0.04396065986495479, "length": 0.058597803167240434, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006937908969068, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171549900919018, "upper_button_position": 0.08353880080500498}], "rail_length": 5, "inclination": 84.98051140885363, "heading": 55.06299848151568} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349537813674189, "mass": 16.70258910502499, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323091676402876, "I_33_without_motor": 0.030965484792001514, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99829691186254, "trigger": 800, "sampling_rate": 105, "lag": 1.4706620659260639, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0134748115284564, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2266258988342402, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8767.251133908803, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03391283539558495, "grain_number": 5, "grain_density": 1739.4922116228593, "grain_outer_radius": 0.03284936651114695, "grain_initial_inner_radius": 0.014795944347364696, "grain_initial_height": 0.11993179741458665, "grain_separation": 0.005469313292218628, "grains_center_of_mass_position": 0.3988671469258681, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00022432376416883288, "throat_radius": 0.012485653593863947, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567373386172387}], "aerodynamic_surfaces": [{"length": 0.5584438849660437, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339556011083294}, {"n": 4, "root_chord": 0.12028452274197558, "tip_chord": 0.06026639831480447, "span": 0.11011431796738759, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499583471064882}, {"top_radius": 0.06409805803029138, "bottom_radius": 0.04294868384685484, "length": 0.060470138431133816, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008340154521625, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188703139950508, "upper_button_position": 0.08196370145711174}], "rail_length": 5, "inclination": 85.10654876915044, "heading": 58.67827603240244} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349456503087243, "mass": 14.611752111186483, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319068806222473, "I_33_without_motor": 0.026122166147376353, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05854391365281, "trigger": 800, "sampling_rate": 105, "lag": 1.450847239363645, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.012676974830271, "trigger": "apogee", "sampling_rate": 105, "lag": 1.321583357054113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7115.864151156311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033104081553351254, "grain_number": 5, "grain_density": 1829.5453751981372, "grain_outer_radius": 0.033506971558590906, "grain_initial_inner_radius": 0.014892035068467997, "grain_initial_height": 0.1210675012073006, "grain_separation": 0.004852376779350463, "grains_center_of_mass_position": 0.39578296532443646, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.01139544532862e-05, "throat_radius": 0.011700163744506583, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2578328854886165}], "aerodynamic_surfaces": [{"length": 0.5575989926909062, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343839685759551}, {"n": 4, "root_chord": 0.12085007437449431, "tip_chord": 0.05978770278072479, "span": 0.10963887885823105, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04960470269978}, {"top_radius": 0.06297959058432998, "bottom_radius": 0.042940205353525294, "length": 0.05852665901006408, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699184129350057, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188381197447275, "upper_button_position": 0.08034600960532956}], "rail_length": 5, "inclination": 85.00136343628714, "heading": 56.15090398576835} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349280189565144, "mass": 15.644660910243815, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329408990931448, "I_33_without_motor": 0.009426917503349376, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.002542095373707, "trigger": 800, "sampling_rate": 105, "lag": 1.5128763131900953, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9993499149183096, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1633796066466289, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7179.183987292608, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338235548721317, "grain_number": 5, "grain_density": 1866.4651135570132, "grain_outer_radius": 0.03308481055943448, "grain_initial_inner_radius": 0.014938092843704993, "grain_initial_height": 0.119559357439497, "grain_separation": 0.007397463796770896, "grains_center_of_mass_position": 0.3984048975992625, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006192364010520274, "throat_radius": 0.010419424082784947, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561462827765415}], "aerodynamic_surfaces": [{"length": 0.5578030144260382, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132224823934839}, {"n": 4, "root_chord": 0.11988690502596139, "tip_chord": 0.05984128269030789, "span": 0.1100240506140146, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499758708210098}, {"top_radius": 0.06269986725442835, "bottom_radius": 0.04484584850218469, "length": 0.0629281142354738, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699434003613994, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174661740896733, "upper_button_position": 0.08196782952432069}], "rail_length": 5, "inclination": 84.01365945363887, "heading": 51.24923557847248} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349791323105099, "mass": 15.466160285664882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332581592754479, "I_33_without_motor": 0.02793199381583454, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974040728150857, "trigger": 800, "sampling_rate": 105, "lag": 1.417127752316703, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8741994636472936, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7222282718485298, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6509.756905527861, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333588713031641, "grain_number": 5, "grain_density": 1777.2277104566251, "grain_outer_radius": 0.03251730354511032, "grain_initial_inner_radius": 0.015268840522004732, "grain_initial_height": 0.11945087284615426, "grain_separation": 0.004809540244953234, "grains_center_of_mass_position": 0.39771538782893023, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024257361368784771, "throat_radius": 0.011436166249575299, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561912935631694}], "aerodynamic_surfaces": [{"length": 0.5586128097441253, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354062052962923}, {"n": 4, "root_chord": 0.12003723896345002, "tip_chord": 0.06035079108052036, "span": 0.11002985876598906, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048330071702362}, {"top_radius": 0.062805391168706, "bottom_radius": 0.04310264489150541, "length": 0.059366729149509544, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013228711488688, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168062275394078, "upper_button_position": 0.08451664360946098}], "rail_length": 5, "inclination": 84.40760059698678, "heading": 53.26740222547672} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350494804803795, "mass": 14.600541936459873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3227097195591035, "I_33_without_motor": 0.03765592495974078, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885963394505445, "trigger": 800, "sampling_rate": 105, "lag": 1.5040029807373387, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9412322258848246, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5193492295472066, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7167.834659903018, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268903744182706, "grain_number": 5, "grain_density": 1857.3468230816522, "grain_outer_radius": 0.03251016131834092, "grain_initial_inner_radius": 0.014398489887133076, "grain_initial_height": 0.11853018646767627, "grain_separation": 0.0053889607346321354, "grains_center_of_mass_position": 0.3957026080547256, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.4916185904429364e-05, "throat_radius": 0.01105458098342901, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25349060214213}], "aerodynamic_surfaces": [{"length": 0.556875703816737, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134610798206895}, {"n": 4, "root_chord": 0.11978741301475325, "tip_chord": 0.06049306987321661, "span": 0.10998593566756044, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480784230635645}, {"top_radius": 0.06134452965904599, "bottom_radius": 0.044974748637867, "length": 0.058582405017859246, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999581326842046, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163864537949367, "upper_button_position": 0.08357167888926786}], "rail_length": 5, "inclination": 84.90493612059225, "heading": 52.489791705273284} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349346116586337, "mass": 16.228829427331206, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313609684176855, "I_33_without_motor": 0.03671323280394261, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.151088905402684, "trigger": 800, "sampling_rate": 105, "lag": 1.6589129837361571, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9964142457548844, "trigger": "apogee", "sampling_rate": 105, "lag": 1.454182506498616, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5417.262581246404, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03185361535471942, "grain_number": 5, "grain_density": 1803.8969053972826, "grain_outer_radius": 0.03303247066886926, "grain_initial_inner_radius": 0.01495037793600442, "grain_initial_height": 0.11919325256472535, "grain_separation": 0.004201166276248642, "grains_center_of_mass_position": 0.39497600143065814, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003143767419437842, "throat_radius": 0.010543658894810142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545823083435752}], "aerodynamic_surfaces": [{"length": 0.5568938052531659, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344650606250297}, {"n": 4, "root_chord": 0.1193721839705302, "tip_chord": 0.05974837500215483, "span": 0.10927265857172037, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501545190767954}, {"top_radius": 0.06196918672631744, "bottom_radius": 0.043100323634855914, "length": 0.05941505350714629, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.69829541547767, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195645026433009, "upper_button_position": 0.07873091283436917}], "rail_length": 5, "inclination": 87.01288026905712, "heading": 48.920228067579764} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350542325265306, "mass": 16.152806950876382, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327667555422902, "I_33_without_motor": 0.03335315032768452, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9291528173556, "trigger": 800, "sampling_rate": 105, "lag": 1.480662305804217, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9434540150665128, "trigger": "apogee", "sampling_rate": 105, "lag": 1.884430934014741, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6074.548744039319, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031959258913591124, "grain_number": 5, "grain_density": 1816.7631813091414, "grain_outer_radius": 0.03265982062635382, "grain_initial_inner_radius": 0.014815673664034171, "grain_initial_height": 0.11949205592360498, "grain_separation": 0.005632353775843145, "grains_center_of_mass_position": 0.3984806807649971, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001242298318226506, "throat_radius": 0.010506961067699733, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561675841368964}], "aerodynamic_surfaces": [{"length": 0.5583439491672797, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1321324677473992}, {"n": 4, "root_chord": 0.12070853238901934, "tip_chord": 0.05913220928043849, "span": 0.11131323454937356, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492589156056868}, {"top_radius": 0.06363262662321433, "bottom_radius": 0.042614516509463934, "length": 0.062006629502998394, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996452957438661, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181716273185462, "upper_button_position": 0.08147366842531989}], "rail_length": 5, "inclination": 84.83506131839844, "heading": 52.82733698751129} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349240400841696, "mass": 15.288710816028846, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322205719762063, "I_33_without_motor": 0.021820126298975614, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.906255425144822, "trigger": 800, "sampling_rate": 105, "lag": 1.5638597169656934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0897242481645828, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7146495526224421, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5974.891595206895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03253883481810994, "grain_number": 5, "grain_density": 1721.4341232280628, "grain_outer_radius": 0.03348430025012414, "grain_initial_inner_radius": 0.015066872749128171, "grain_initial_height": 0.11934542519534051, "grain_separation": 0.005008073060224359, "grains_center_of_mass_position": 0.3967678791727252, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008891893190701136, "throat_radius": 0.011349953892058635, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541379284294287}], "aerodynamic_surfaces": [{"length": 0.558280102172047, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133314169906438}, {"n": 4, "root_chord": 0.12016851464449563, "tip_chord": 0.060716843147703745, "span": 0.11003776510326309, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515171916942996}, {"top_radius": 0.06487885325060556, "bottom_radius": 0.045545717153465635, "length": 0.06028270812189076, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003035723077636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185128871142952, "upper_button_position": 0.08179068519346844}], "rail_length": 5, "inclination": 84.6022576985177, "heading": 52.79607374508403} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349752247864619, "mass": 15.673722729846926, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31499644088636, "I_33_without_motor": 0.02278228603608496, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.197347657319131, "trigger": 800, "sampling_rate": 105, "lag": 1.4992930852001136, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0420923815670688, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9488829839202961, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5471.3926999118585, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033697064403002, "grain_number": 5, "grain_density": 1818.7400993562653, "grain_outer_radius": 0.03279702008196748, "grain_initial_inner_radius": 0.01505177747637244, "grain_initial_height": 0.1198420462223042, "grain_separation": 0.00590622950034243, "grains_center_of_mass_position": 0.3976218350463644, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004442870378910241, "throat_radius": 0.010521032144185729, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25559530010775}], "aerodynamic_surfaces": [{"length": 0.5569205489655288, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352962733858147}, {"n": 4, "root_chord": 0.12029522702776704, "tip_chord": 0.05976156450560994, "span": 0.11005503146318488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494055998666905}, {"top_radius": 0.0633513329167791, "bottom_radius": 0.04439268288400897, "length": 0.06027644562132858, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7021443530433249, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176587237585058, "upper_button_position": 0.08448562928481906}], "rail_length": 5, "inclination": 85.24015227689166, "heading": 50.27634759366372} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06348626342482314, "mass": 15.998633538065297, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325614409528469, "I_33_without_motor": 0.018372191885194407, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.914136665960182, "trigger": 800, "sampling_rate": 105, "lag": 1.5241659489737538, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.056463128725312, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4954512804100837, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6243.382347121046, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03399881240019375, "grain_number": 5, "grain_density": 1913.419017489945, "grain_outer_radius": 0.03278450870357406, "grain_initial_inner_radius": 0.015132188942076172, "grain_initial_height": 0.11966927236295517, "grain_separation": 0.004321579299790003, "grains_center_of_mass_position": 0.39563205826783726, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008220097413620547, "throat_radius": 0.01054615297556835, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547004687813244}], "aerodynamic_surfaces": [{"length": 0.5573978426265888, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354820192799704}, {"n": 4, "root_chord": 0.11990247769884545, "tip_chord": 0.05990396186689053, "span": 0.11002158067068066, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493757131186143}, {"top_radius": 0.06293268073873205, "bottom_radius": 0.0458924466817746, "length": 0.05980132450707201, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700265444891213, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61763840348875, "upper_button_position": 0.08262704140246302}], "rail_length": 5, "inclination": 85.73027474699823, "heading": 51.77151217254911} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.063494338162952, "mass": 15.150864849620495, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304083292943152, "I_33_without_motor": 0.02939764421180246, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.062524673605845, "trigger": 800, "sampling_rate": 105, "lag": 1.5364353024170132, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9971728102415213, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3010007018427108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6569.999288779918, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033226246998279384, "grain_number": 5, "grain_density": 1803.6851727208696, "grain_outer_radius": 0.03273604391781612, "grain_initial_inner_radius": 0.014981302208134838, "grain_initial_height": 0.12035688463093884, "grain_separation": 0.0060542418926332765, "grains_center_of_mass_position": 0.39614048480589775, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014978260065287808, "throat_radius": 0.01073589174850875, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25311887789368}], "aerodynamic_surfaces": [{"length": 0.5587236744166625, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13449384424461}, {"n": 4, "root_chord": 0.11980195033551583, "tip_chord": 0.06075294962212184, "span": 0.10907855302864597, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504091643439877}, {"top_radius": 0.06429694153162, "bottom_radius": 0.04370645392241163, "length": 0.06141692031110854, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995638248439869, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165848175211093, "upper_button_position": 0.08297900732287766}], "rail_length": 5, "inclination": 83.9862810721702, "heading": 51.02681584803863} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350513873231771, "mass": 15.275317885591576, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3182723930956985, "I_33_without_motor": 0.03954940643070957, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.749427170461848, "trigger": 800, "sampling_rate": 105, "lag": 1.536396353827676, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9607902293357584, "trigger": "apogee", "sampling_rate": 105, "lag": 1.514795298384961, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6098.5201166341085, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032864037270764514, "grain_number": 5, "grain_density": 1865.843477226474, "grain_outer_radius": 0.033022338707462705, "grain_initial_inner_radius": 0.015358564704091818, "grain_initial_height": 0.11877080422841083, "grain_separation": 0.006294134854792165, "grains_center_of_mass_position": 0.3946163505200236, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004131981289689457, "throat_radius": 0.010971971557948042, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255991727457104}], "aerodynamic_surfaces": [{"length": 0.5603022118986936, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335690719299558}, {"n": 4, "root_chord": 0.11910480656157861, "tip_chord": 0.05928363894584213, "span": 0.11005704064251579, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049664794876681}, {"top_radius": 0.06201242407802328, "bottom_radius": 0.04312208499321393, "length": 0.05858500055340644, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998156052349617, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178897380520806, "upper_button_position": 0.08192586718288108}], "rail_length": 5, "inclination": 84.58417261817813, "heading": 51.49437878168137} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349282892205774, "mass": 15.497503155652069, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302027682846835, "I_33_without_motor": 0.018040270417405437, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01657908753507, "trigger": 800, "sampling_rate": 105, "lag": 1.3873547680672949, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9828380571600037, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2343421111774235, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6769.602608312093, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328871492493069, "grain_number": 5, "grain_density": 1840.314408143027, "grain_outer_radius": 0.03315514868060107, "grain_initial_inner_radius": 0.014716916837859592, "grain_initial_height": 0.12005562220259286, "grain_separation": 0.004327226321760236, "grains_center_of_mass_position": 0.3972351150398858, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000490105124427953, "throat_radius": 0.010538120297100998, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252504518301356}], "aerodynamic_surfaces": [{"length": 0.5588177672387282, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354116501926093}, {"n": 4, "root_chord": 0.11964322757654228, "tip_chord": 0.059037985620690354, "span": 0.11019388583033178, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048809236012228}, {"top_radius": 0.06311918769227522, "bottom_radius": 0.04328793142341816, "length": 0.05819843197596727, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009065855342895, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159799398887463, "upper_button_position": 0.0849266456455432}], "rail_length": 5, "inclination": 84.88306870184663, "heading": 53.307021320323315} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06351724340024412, "mass": 15.345376451164924, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331634486607776, "I_33_without_motor": 0.029444411972248445, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992258050362882, "trigger": 800, "sampling_rate": 105, "lag": 1.3963027823878174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0766602092321431, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2884997651622792, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8537.320441422016, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318053198469495, "grain_number": 5, "grain_density": 1836.0767494349423, "grain_outer_radius": 0.03272761091304036, "grain_initial_inner_radius": 0.015093077980974602, "grain_initial_height": 0.11775099231951133, "grain_separation": 0.00638811226937365, "grains_center_of_mass_position": 0.39674782622396954, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002353113699586102, "throat_radius": 0.011571096953113988, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2589813004223263}], "aerodynamic_surfaces": [{"length": 0.558692556940935, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333365410409557}, {"n": 4, "root_chord": 0.12011977959521423, "tip_chord": 0.05992260082419695, "span": 0.11085441331814985, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050329702271112}, {"top_radius": 0.06482016186146008, "bottom_radius": 0.043440246304694806, "length": 0.05985530480299908, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983614737764003, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185287943869399, "upper_button_position": 0.07983267938946048}], "rail_length": 5, "inclination": 84.20669654886237, "heading": 55.331393151906305} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350431387414104, "mass": 15.046303099889847, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32934122293869, "I_33_without_motor": 0.04650382422167615, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928749769556312, "trigger": 800, "sampling_rate": 105, "lag": 1.6843898459155067, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0465661451676982, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7535828842946688, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6804.16969247879, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272635869153924, "grain_number": 5, "grain_density": 1718.6027807583798, "grain_outer_radius": 0.033053117190673255, "grain_initial_inner_radius": 0.015130249730273689, "grain_initial_height": 0.12277903270959255, "grain_separation": 0.00621013397871489, "grains_center_of_mass_position": 0.39511459579552155, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001285932458671298, "throat_radius": 0.009585616464906747, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552611957173865}], "aerodynamic_surfaces": [{"length": 0.5594106858647144, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335413239896264}, {"n": 4, "root_chord": 0.12032644898766477, "tip_chord": 0.05920953023563276, "span": 0.11048550523309703, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511603417263877}, {"top_radius": 0.06410032660773812, "bottom_radius": 0.04473058007682237, "length": 0.059482422030945045, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003063789389358, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198449180889618, "upper_button_position": 0.08046146084997396}], "rail_length": 5, "inclination": 84.31238482394502, "heading": 52.39760263324041} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0635073347861204, "mass": 15.55649115385729, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3302753169413934, "I_33_without_motor": 0.05120617664886974, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.138970359836907, "trigger": 800, "sampling_rate": 105, "lag": 1.4378320189386706, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9518329898503501, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5492050477430632, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7599.180915906384, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03357760735001602, "grain_number": 5, "grain_density": 1892.191940191545, "grain_outer_radius": 0.03323426741324966, "grain_initial_inner_radius": 0.014728392903272483, "grain_initial_height": 0.12007971013633671, "grain_separation": 0.005916612000474118, "grains_center_of_mass_position": 0.3971887842390772, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005909541767582425, "throat_radius": 0.011339764058266874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554021406754337}], "aerodynamic_surfaces": [{"length": 0.5597132884318033, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334707037666194}, {"n": 4, "root_chord": 0.11925883238501425, "tip_chord": 0.060448904351853856, "span": 0.1103918786930272, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486871725039002}, {"top_radius": 0.06378832995995105, "bottom_radius": 0.044137496145026815, "length": 0.06043950425063023, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009750463860805, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187590686518668, "upper_button_position": 0.08221597773421374}], "rail_length": 5, "inclination": 84.21847521728499, "heading": 52.33933927934417} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.0635013863768275, "mass": 15.256620679560942, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331805348512464, "I_33_without_motor": 0.038909127361807884, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958327181833207, "trigger": 800, "sampling_rate": 105, "lag": 1.580120776466229, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0364875527808155, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5525876367400422, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4812.497555142975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242670743668862, "grain_number": 5, "grain_density": 1851.2519571999524, "grain_outer_radius": 0.03259936371018994, "grain_initial_inner_radius": 0.015188017379332005, "grain_initial_height": 0.11808085559423144, "grain_separation": 0.005392694235621052, "grains_center_of_mass_position": 0.39725258104093875, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017718626134201462, "throat_radius": 0.011234090440800126, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534683446296861}], "aerodynamic_surfaces": [{"length": 0.5575277908080074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345947891130985}, {"n": 4, "root_chord": 0.12002624235917222, "tip_chord": 0.058990928021094236, "span": 0.10984196623394021, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499825251719617}, {"top_radius": 0.0638967515062449, "bottom_radius": 0.04410755792021643, "length": 0.06143524374213062, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994322775931974, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177063894853666, "upper_button_position": 0.08172588810783077}], "rail_length": 5, "inclination": 86.23217789654544, "heading": 52.72802222271565} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350943213950329, "mass": 15.20443189756669, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3217411420977045, "I_33_without_motor": 0.026455726296275107, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.994799069318251, "trigger": 800, "sampling_rate": 105, "lag": 1.3858576536241336, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9484196474601243, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4456150587567473, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7635.137278514816, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273618202954, "grain_number": 5, "grain_density": 1789.3771195724191, "grain_outer_radius": 0.0329819186054458, "grain_initial_inner_radius": 0.015030380644170156, "grain_initial_height": 0.11961932859645043, "grain_separation": 0.005261363751587247, "grains_center_of_mass_position": 0.3953631328915477, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006434173399190091, "throat_radius": 0.011124881212136933, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25479109531596}], "aerodynamic_surfaces": [{"length": 0.5580499257770594, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346179967609291}, {"n": 4, "root_chord": 0.12136812358448522, "tip_chord": 0.05945156353518957, "span": 0.11022644037883719, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499819226347926}, {"top_radius": 0.06499099634457772, "bottom_radius": 0.04196904555039111, "length": 0.060126494086891025, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996653765985024, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160842331182834, "upper_button_position": 0.08358114348021894}], "rail_length": 5, "inclination": 86.00816974255862, "heading": 53.64307958352516} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634976716402127, "mass": 14.877222335664179, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337817683639922, "I_33_without_motor": 0.03776230508679862, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045435534850354, "trigger": 800, "sampling_rate": 105, "lag": 1.4745399364062792, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9576134459471183, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5733648346028362, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6929.496778957361, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03368852346764242, "grain_number": 5, "grain_density": 1841.5444473634896, "grain_outer_radius": 0.03307295743373088, "grain_initial_inner_radius": 0.014267276483522476, "grain_initial_height": 0.11826046412233931, "grain_separation": 0.005318413883731432, "grains_center_of_mass_position": 0.39754466098272606, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000577196633534314, "throat_radius": 0.010585712673024219, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553633371046826}], "aerodynamic_surfaces": [{"length": 0.5586326792043522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334339781200435}, {"n": 4, "root_chord": 0.12074961257349646, "tip_chord": 0.05985085178857214, "span": 0.11020044715033962, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515488344110904}, {"top_radius": 0.06300504063293086, "bottom_radius": 0.04216252563288859, "length": 0.05929087413627831, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987346115630436, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184135216037734, "upper_button_position": 0.08032108995927023}], "rail_length": 5, "inclination": 86.04852150827024, "heading": 51.12254322147387} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0634844878420688, "mass": 15.251891729577832, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316681279281911, "I_33_without_motor": 0.029869304012403876, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.904464241045977, "trigger": 800, "sampling_rate": 105, "lag": 1.4860684561270345, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9280057747890862, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7798240588280534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6726.2281128307295, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296847636664239, "grain_number": 5, "grain_density": 1869.1801374199224, "grain_outer_radius": 0.03331357188362484, "grain_initial_inner_radius": 0.015276116426398752, "grain_initial_height": 0.12052044134215806, "grain_separation": 0.0038048361856674855, "grains_center_of_mass_position": 0.3970110029328682, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.2832087756123847e-05, "throat_radius": 0.010655470325111514, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549267510944604}], "aerodynamic_surfaces": [{"length": 0.5583052853621935, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346144358615287}, {"n": 4, "root_chord": 0.11949345522110127, "tip_chord": 0.05887881123387309, "span": 0.10980726003896148, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05088879580704}, {"top_radius": 0.06415116178051176, "bottom_radius": 0.04282208220222257, "length": 0.06148125569318344, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700737225344932, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167938131818802, "upper_button_position": 0.08394341216305179}], "rail_length": 5, "inclination": 83.02650213286196, "heading": 51.80202090187499} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349923221722806, "mass": 15.40847195436872, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327689314839718, "I_33_without_motor": 0.016061952532645755, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.158168269304216, "trigger": 800, "sampling_rate": 105, "lag": 1.5152851167899513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.039328489819999, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5072333433811984, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6405.5429820901045, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033232790076479765, "grain_number": 5, "grain_density": 1853.2923389440612, "grain_outer_radius": 0.032762815966982786, "grain_initial_inner_radius": 0.015012435960816172, "grain_initial_height": 0.1213178208194223, "grain_separation": 0.005682269062586659, "grains_center_of_mass_position": 0.398180655306165, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001950654261948541, "throat_radius": 0.010784070383083783, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554648630554415}], "aerodynamic_surfaces": [{"length": 0.5579997789935426, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339705110417022}, {"n": 4, "root_chord": 0.11989123574102609, "tip_chord": 0.060837238100085685, "span": 0.10971234383198268, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504181810443578}, {"top_radius": 0.06309483050221719, "bottom_radius": 0.04402288340552399, "length": 0.06018327132822589, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992028643995463, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173431258509471, "upper_button_position": 0.08185973854859918}], "rail_length": 5, "inclination": 84.80268587278769, "heading": 55.116225480168886} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635161811966367, "mass": 15.572294110561012, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323632145180487, "I_33_without_motor": 0.021981401115167047, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89002286307171, "trigger": 800, "sampling_rate": 105, "lag": 1.6552062039834377, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8836337667402179, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1657232209612722, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3863.649961707103, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283911149266112, "grain_number": 5, "grain_density": 1794.6179189614702, "grain_outer_radius": 0.03180913133391647, "grain_initial_inner_radius": 0.015226215591342825, "grain_initial_height": 0.12004256986474547, "grain_separation": 0.004092725266257384, "grains_center_of_mass_position": 0.39518995581491373, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0021432776924899294, "throat_radius": 0.010586782843818988, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550338626285167}], "aerodynamic_surfaces": [{"length": 0.5578559538176073, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331721399373418}, {"n": 4, "root_chord": 0.12052262067655255, "tip_chord": 0.0593554466020422, "span": 0.10972401172142567, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513856320197883}, {"top_radius": 0.06442946436818749, "bottom_radius": 0.043813805007072895, "length": 0.0589458175172562, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012581745862867, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182423718473847, "upper_button_position": 0.08301580273890197}], "rail_length": 5, "inclination": 84.60066735149594, "heading": 54.11715986030683} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348574225229701, "mass": 16.275768002380737, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324962233472197, "I_33_without_motor": 0.034877310126595444, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.287055647676118, "trigger": 800, "sampling_rate": 105, "lag": 1.4677233186002965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1493106286999684, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6050069053643545, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5483.041060617303, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033119402152617335, "grain_number": 5, "grain_density": 1762.3636980444023, "grain_outer_radius": 0.033536913693808616, "grain_initial_inner_radius": 0.01621213195945645, "grain_initial_height": 0.12070719701731647, "grain_separation": 0.0037407665852286867, "grains_center_of_mass_position": 0.397642527964476, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013260094371433065, "throat_radius": 0.011100755830496549, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560392193520107}], "aerodynamic_surfaces": [{"length": 0.5580376641868736, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135241554036289}, {"n": 4, "root_chord": 0.11974605888578205, "tip_chord": 0.06021183542362657, "span": 0.109622566064241, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049886980951528}, {"top_radius": 0.06423641054970927, "bottom_radius": 0.0438252906601636, "length": 0.05848716733302287, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997806677172481, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184606205923847, "upper_button_position": 0.0813200471248634}], "rail_length": 5, "inclination": 82.38612307479838, "heading": 53.83845197696226} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350139020384567, "mass": 15.879028509458285, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3166477765091384, "I_33_without_motor": 0.02403697801919944, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.964435634484444, "trigger": 800, "sampling_rate": 105, "lag": 1.5359041777267077, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.7647643947425689, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5668237993314043, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6865.556361796531, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276659543542699, "grain_number": 5, "grain_density": 1846.683840305358, "grain_outer_radius": 0.033456716636302064, "grain_initial_inner_radius": 0.01476721878500523, "grain_initial_height": 0.11890248610447245, "grain_separation": 0.005544928414907925, "grains_center_of_mass_position": 0.39713229694270746, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011924065386102135, "throat_radius": 0.011339040792342927, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546460206874968}], "aerodynamic_surfaces": [{"length": 0.5573277071149244, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135731051714215}, {"n": 4, "root_chord": 0.12013807795523503, "tip_chord": 0.06003953193925518, "span": 0.11050083306407568, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049383597060422}, {"top_radius": 0.06462746506879664, "bottom_radius": 0.04318358246115252, "length": 0.058507483725572296, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995829078800674, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176372100156285, "upper_button_position": 0.08194569786443884}], "rail_length": 5, "inclination": 83.33189189769482, "heading": 57.065080121607814} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349196190028025, "mass": 15.484042222205257, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331436915949482, "I_33_without_motor": 0.017281452867647717, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005804210625744, "trigger": 800, "sampling_rate": 105, "lag": 1.3073330846259692, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9368640292078206, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1382349234198574, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6449.822922935655, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375391802024897, "grain_number": 5, "grain_density": 1897.1823100802017, "grain_outer_radius": 0.0320785804013381, "grain_initial_inner_radius": 0.015134375550611399, "grain_initial_height": 0.12139501525811894, "grain_separation": 0.004549126146741344, "grains_center_of_mass_position": 0.3967167223847339, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005589343053080579, "throat_radius": 0.010852315961338914, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544110607143075}], "aerodynamic_surfaces": [{"length": 0.5575496939864992, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329217845278485}, {"n": 4, "root_chord": 0.12035182360682735, "tip_chord": 0.0595844578043783, "span": 0.11009316371006002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492729475113558}, {"top_radius": 0.06349002889427847, "bottom_radius": 0.043369746136531086, "length": 0.05982620303990575, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701344948416603, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162451269190031, "upper_button_position": 0.08509982149759987}], "rail_length": 5, "inclination": 86.4303912376303, "heading": 51.327101334623556} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349523756690471, "mass": 15.958271822442429, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32059133341395, "I_33_without_motor": 0.02828617273251127, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.199663077638807, "trigger": 800, "sampling_rate": 105, "lag": 1.357695724710073, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0817299493756445, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5824285901615893, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5781.047812065308, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328434973221752, "grain_number": 5, "grain_density": 1941.666614414871, "grain_outer_radius": 0.03302432430039209, "grain_initial_inner_radius": 0.015193714129509275, "grain_initial_height": 0.11946800132198664, "grain_separation": 0.00503218738556235, "grains_center_of_mass_position": 0.3983091246508658, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00011199398447797779, "throat_radius": 0.010582797734102863, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558887126877352}], "aerodynamic_surfaces": [{"length": 0.5579979080508789, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334139053314847}, {"n": 4, "root_chord": 0.12085456532978259, "tip_chord": 0.0600416695180631, "span": 0.11023389374546362, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513743686709633}, {"top_radius": 0.06357485193819967, "bottom_radius": 0.043919766201992595, "length": 0.061465508716803716, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002072695238306, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197613389029287, "upper_button_position": 0.08044593062090188}], "rail_length": 5, "inclination": 83.65786453242289, "heading": 52.003680503138185} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350101991189247, "mass": 15.52761690921009, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314630855456366, "I_33_without_motor": 0.037383493671533846, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.844101404546363, "trigger": 800, "sampling_rate": 105, "lag": 1.549372793830403, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9955750499054358, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5825416926924307, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7267.0226104542, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032776756958316576, "grain_number": 5, "grain_density": 1764.6073455376322, "grain_outer_radius": 0.03337076098097761, "grain_initial_inner_radius": 0.015009668099513348, "grain_initial_height": 0.11925837099026822, "grain_separation": 0.006629818635890789, "grains_center_of_mass_position": 0.39750215713554354, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.114565668589754e-05, "throat_radius": 0.011174855529513599, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536410179522772}], "aerodynamic_surfaces": [{"length": 0.5592674772398981, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349321444430482}, {"n": 4, "root_chord": 0.12021588964264378, "tip_chord": 0.06032268629336739, "span": 0.11005644857491372, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048444507750348}, {"top_radius": 0.06336185762528711, "bottom_radius": 0.042040390476037436, "length": 0.05959166453340132, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701448254501047, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186019998480258, "upper_button_position": 0.0828462546530212}], "rail_length": 5, "inclination": 84.06061858341648, "heading": 50.3251945057231} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.063502587100276, "mass": 15.141669352534286, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325562749617774, "I_33_without_motor": 0.05331592890710864, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.793086641047157, "trigger": 800, "sampling_rate": 105, "lag": 1.5026956573614705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8945544861094002, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5769719667574214, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7502.795366265824, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297646748936715, "grain_number": 5, "grain_density": 1856.0315418397863, "grain_outer_radius": 0.03334339276787183, "grain_initial_inner_radius": 0.015077010374955006, "grain_initial_height": 0.11849535131506721, "grain_separation": 0.005207670722765671, "grains_center_of_mass_position": 0.3965397867808965, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006759912968972306, "throat_radius": 0.011156745781168162, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254869279402215}], "aerodynamic_surfaces": [{"length": 0.5577393145982518, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326421641693145}, {"n": 4, "root_chord": 0.1201657339234903, "tip_chord": 0.060727410670241594, "span": 0.10943860640822925, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493355982212553}, {"top_radius": 0.06523161812366073, "bottom_radius": 0.04380469414351117, "length": 0.059762931076161846, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001274129752377, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178772852832115, "upper_button_position": 0.08225012769202622}], "rail_length": 5, "inclination": 84.53788491872331, "heading": 54.70124927084339} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349158807163612, "mass": 15.268113258764297, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329997285147813, "I_33_without_motor": 0.0346906887101609, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005547740573515, "trigger": 800, "sampling_rate": 105, "lag": 1.4068744065157612, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9871923483139504, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1540895821595454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7460.762143803961, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03402292019116248, "grain_number": 5, "grain_density": 1712.1241222742797, "grain_outer_radius": 0.03269957689703727, "grain_initial_inner_radius": 0.015273289855355757, "grain_initial_height": 0.11985267614661713, "grain_separation": 0.00492121734395067, "grains_center_of_mass_position": 0.39705187398433645, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.855552856995459e-05, "throat_radius": 0.010863783039424453, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555278093190039}], "aerodynamic_surfaces": [{"length": 0.5594249153825946, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339064676053585}, {"n": 4, "root_chord": 0.12071713507007284, "tip_chord": 0.059106928105038745, "span": 0.10919048877134084, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497470177689896}, {"top_radius": 0.06225147802210228, "bottom_radius": 0.043648797134496486, "length": 0.05863022112976372, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6976735735461361, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174775047029781, "upper_button_position": 0.080196068843158}], "rail_length": 5, "inclination": 84.30685297781565, "heading": 55.155571885251966} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349416861771183, "mass": 14.940713903422036, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339568214161751, "I_33_without_motor": 0.03227475360841468, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95992285572373, "trigger": 800, "sampling_rate": 105, "lag": 1.4837618831892974, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1080346312226503, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3692558413295481, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7437.17606869046, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303932121956694, "grain_number": 5, "grain_density": 1801.0424104388253, "grain_outer_radius": 0.03333039805010752, "grain_initial_inner_radius": 0.015071438316257183, "grain_initial_height": 0.12069345227354365, "grain_separation": 0.005145264308792939, "grains_center_of_mass_position": 0.39785572428317084, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001352818900957924, "throat_radius": 0.010580253410178252, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563105203495057}], "aerodynamic_surfaces": [{"length": 0.5578673096786024, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341093735354268}, {"n": 4, "root_chord": 0.1206955727769552, "tip_chord": 0.06050062680457241, "span": 0.11067262460270576, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486563959688022}, {"top_radius": 0.06141529088823078, "bottom_radius": 0.04339141073065303, "length": 0.05929053119112963, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001768739255838, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192815248054666, "upper_button_position": 0.0808953491201172}], "rail_length": 5, "inclination": 83.4178536197953, "heading": 51.726491913130005} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634919570784025, "mass": 14.914038000518872, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322242631059492, "I_33_without_motor": 0.029275437010169714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.855175906462254, "trigger": 800, "sampling_rate": 105, "lag": 1.6753990741091584, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9349393589158654, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8124966988863196, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5505.787979700738, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032529210053742305, "grain_number": 5, "grain_density": 1932.0400558251577, "grain_outer_radius": 0.03335077515829343, "grain_initial_inner_radius": 0.014702336318850259, "grain_initial_height": 0.1210306546073608, "grain_separation": 0.006298092182386674, "grains_center_of_mass_position": 0.3959915135244196, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002499213098908282, "throat_radius": 0.010293515017872758, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545654873948633}], "aerodynamic_surfaces": [{"length": 0.5587228554155195, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349865779020019}, {"n": 4, "root_chord": 0.11971248066354544, "tip_chord": 0.06037595007625413, "span": 0.11073876972467646, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486930669735692}, {"top_radius": 0.06245988236997146, "bottom_radius": 0.04166754502682196, "length": 0.06029972697461806, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002032615052219, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177525607307561, "upper_button_position": 0.08245070077446581}], "rail_length": 5, "inclination": 83.96464863545232, "heading": 53.78182980083329} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349451933017872, "mass": 15.879897292630275, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335674847782311, "I_33_without_motor": 0.05167141286806203, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09669119813329, "trigger": 800, "sampling_rate": 105, "lag": 1.3814023398612283, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0904120353219675, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3436793498505744, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7546.574528256469, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324319980903255, "grain_number": 5, "grain_density": 1864.4287248725611, "grain_outer_radius": 0.0335607380957159, "grain_initial_inner_radius": 0.01478317504404651, "grain_initial_height": 0.12021510938175009, "grain_separation": 0.0036312342119167638, "grains_center_of_mass_position": 0.3975837424118554, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006883315142098186, "throat_radius": 0.011599335003549507, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547799954058918}], "aerodynamic_surfaces": [{"length": 0.5580719849587469, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1319119583259576}, {"n": 4, "root_chord": 0.11975902078740326, "tip_chord": 0.059661749141946364, "span": 0.10968817938716482, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050849645332003}, {"top_radius": 0.06219076368345728, "bottom_radius": 0.04387828748383775, "length": 0.06208023238698558, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988211345508184, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193086909104611, "upper_button_position": 0.07951244364035726}], "rail_length": 5, "inclination": 85.99713532064708, "heading": 54.64419639379039} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349909568492289, "mass": 15.84638044637589, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3225986021442155, "I_33_without_motor": 0.029421943064836656, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.909756537796543, "trigger": 800, "sampling_rate": 105, "lag": 1.4575860840448145, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.089508480002266, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5052835825150146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7163.282263417197, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03389735742992972, "grain_number": 5, "grain_density": 1837.1210527018127, "grain_outer_radius": 0.03339066233833154, "grain_initial_inner_radius": 0.014906033512316803, "grain_initial_height": 0.12075891589935596, "grain_separation": 0.005077836729890038, "grains_center_of_mass_position": 0.39808833812143013, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038047572188031336, "throat_radius": 0.011597660602557593, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555804419601948}], "aerodynamic_surfaces": [{"length": 0.5576993589780169, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329230472927903}, {"n": 4, "root_chord": 0.11966689076869813, "tip_chord": 0.059683777296582245, "span": 0.10976688402966668, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495069655526132}, {"top_radius": 0.06372943266263245, "bottom_radius": 0.04345973589293526, "length": 0.06112379094158198, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989465989261232, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160725498990522, "upper_button_position": 0.08287404902707096}], "rail_length": 5, "inclination": 84.1099804844196, "heading": 53.98405019780459} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350570668385416, "mass": 16.638121078667915, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327178115992719, "I_33_without_motor": 0.03443149146212349, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.011782840935105, "trigger": 800, "sampling_rate": 105, "lag": 1.349175527177687, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.087364253173813, "trigger": "apogee", "sampling_rate": 105, "lag": 1.798236558268641, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8744.426290320462, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0332261515014035, "grain_number": 5, "grain_density": 1820.9117435449461, "grain_outer_radius": 0.032972208253419885, "grain_initial_inner_radius": 0.014849199949509208, "grain_initial_height": 0.12011235865235184, "grain_separation": 0.006105644252965826, "grains_center_of_mass_position": 0.3979719461990449, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00030548233778363216, "throat_radius": 0.011157416575018574, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545836151427057}], "aerodynamic_surfaces": [{"length": 0.5582771076331, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343521461552841}, {"n": 4, "root_chord": 0.12069794171070049, "tip_chord": 0.06022519056786865, "span": 0.10991825925726698, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493415701145137}, {"top_radius": 0.06400214965576553, "bottom_radius": 0.04351555224532775, "length": 0.06133519686532081, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6979871741061, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182575579533574, "upper_button_position": 0.07972961615274266}], "rail_length": 5, "inclination": 86.47361546895426, "heading": 53.53382819800129} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06351090745231326, "mass": 15.780845807986523, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307674692058768, "I_33_without_motor": 0.03231663383531385, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89978462815134, "trigger": 800, "sampling_rate": 105, "lag": 1.5071301069239624, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.057820345771757, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5904381682774469, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4437.3091119644, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034390688517246526, "grain_number": 5, "grain_density": 1884.9614619351516, "grain_outer_radius": 0.03239209145754694, "grain_initial_inner_radius": 0.014818377112625675, "grain_initial_height": 0.11939279049104042, "grain_separation": 0.005033034893497096, "grains_center_of_mass_position": 0.3969579380728798, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012688843941733338, "throat_radius": 0.011181603722867325, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555138923188733}], "aerodynamic_surfaces": [{"length": 0.558371939401437, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352802525385772}, {"n": 4, "root_chord": 0.1198578969706018, "tip_chord": 0.060689670498596464, "span": 0.1103067460356328, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496463013551307}, {"top_radius": 0.06358978813503922, "bottom_radius": 0.04293921417353994, "length": 0.05911826457215359, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999678698409281, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194043388128088, "upper_button_position": 0.0805635310281193}], "rail_length": 5, "inclination": 84.55950440803322, "heading": 53.5032910635592} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349896756290353, "mass": 16.163453653455022, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3321368784995435, "I_33_without_motor": 0.042033006112746664, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989747768916793, "trigger": 800, "sampling_rate": 105, "lag": 1.484647028034828, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9364205745756672, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2121015146355156, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5331.904727947062, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283669892214966, "grain_number": 5, "grain_density": 1855.5303089489782, "grain_outer_radius": 0.03262859410101286, "grain_initial_inner_radius": 0.015473350523287969, "grain_initial_height": 0.12050939113798824, "grain_separation": 0.004538070586000453, "grains_center_of_mass_position": 0.3957357013783799, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00027320208133197794, "throat_radius": 0.010733529605081697, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548347999845992}], "aerodynamic_surfaces": [{"length": 0.5584435198745761, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336568735630572}, {"n": 4, "root_chord": 0.12067840329011531, "tip_chord": 0.05917631806894525, "span": 0.11023538327401732, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050788812014075}, {"top_radius": 0.06335840674595639, "bottom_radius": 0.045186769105264334, "length": 0.05866281118035759, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6977688345044059, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189011253185414, "upper_button_position": 0.0788677091858645}], "rail_length": 5, "inclination": 84.16517123231516, "heading": 50.69125970440375} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349167262848471, "mass": 15.024329989363762, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317914050267204, "I_33_without_motor": 0.02363055317426778, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990291942840026, "trigger": 800, "sampling_rate": 105, "lag": 1.5020403254214298, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.976369118293763, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9520060096238163, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6305.983209334524, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033063864500715794, "grain_number": 5, "grain_density": 1788.2066054293398, "grain_outer_radius": 0.03267048010026791, "grain_initial_inner_radius": 0.014510608513510853, "grain_initial_height": 0.1203859731070495, "grain_separation": 0.005890639795154843, "grains_center_of_mass_position": 0.3960189118983929, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013968976437748377, "throat_radius": 0.011729630459207994, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556027799929568}], "aerodynamic_surfaces": [{"length": 0.5585500707486075, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342347054664177}, {"n": 4, "root_chord": 0.12016523846359542, "tip_chord": 0.06057947124520626, "span": 0.10971006188411128, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508585878777232}, {"top_radius": 0.06593967664771964, "bottom_radius": 0.0452916714992484, "length": 0.05952292937473625, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995019093551402, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199904910802704, "upper_button_position": 0.07951141827486985}], "rail_length": 5, "inclination": 86.3835005186609, "heading": 52.95779495342062} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06348385207270357, "mass": 15.49920871877027, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333139496465042, "I_33_without_motor": 0.02723522599467392, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.084059147619598, "trigger": 800, "sampling_rate": 105, "lag": 1.4781652374555565, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8981787696965225, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6436761581287203, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7675.768518229628, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332298010308612, "grain_number": 5, "grain_density": 1850.728028825794, "grain_outer_radius": 0.032724136347381784, "grain_initial_inner_radius": 0.01453024948800527, "grain_initial_height": 0.12111756212275462, "grain_separation": 0.005179288280646764, "grains_center_of_mass_position": 0.39738446416237044, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002135680881564637, "throat_radius": 0.010635886256932842, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552045134357936}], "aerodynamic_surfaces": [{"length": 0.55899683197011, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134642686850312}, {"n": 4, "root_chord": 0.1200869081373814, "tip_chord": 0.058494285170221864, "span": 0.11063035112954436, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050918797993617}, {"top_radius": 0.06429420771726727, "bottom_radius": 0.043103027417593566, "length": 0.060287006072254394, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004716871100694, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163060410588728, "upper_button_position": 0.08416564605119659}], "rail_length": 5, "inclination": 85.20784322569124, "heading": 51.88421233024361} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635037847393427, "mass": 15.91089161246887, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3246666285000055, "I_33_without_motor": 0.04630553695418207, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14245689541856, "trigger": 800, "sampling_rate": 105, "lag": 1.5117843022272481, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1089044260127958, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3213389826520976, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8331.019931899678, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033101983473401646, "grain_number": 5, "grain_density": 1870.454698547345, "grain_outer_radius": 0.033221818300166225, "grain_initial_inner_radius": 0.015557509649008152, "grain_initial_height": 0.1198647525420492, "grain_separation": 0.0066098648628697175, "grains_center_of_mass_position": 0.39603461144384566, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001739624376936337, "throat_radius": 0.011006856515025266, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556849897977294}], "aerodynamic_surfaces": [{"length": 0.558889888788516, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133232336968163}, {"n": 4, "root_chord": 0.1188961728914736, "tip_chord": 0.060017158002290544, "span": 0.10983655213481092, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506852510105984}, {"top_radius": 0.06272629071957497, "bottom_radius": 0.04147427982000017, "length": 0.061029486876211805, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999772003344568, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171817786386536, "upper_button_position": 0.08279542169580312}], "rail_length": 5, "inclination": 85.55238021635711, "heading": 53.83307117966536} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350296347741606, "mass": 16.189607295717355, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31767503634605, "I_33_without_motor": 0.02238624784624317, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.134959119426814, "trigger": 800, "sampling_rate": 105, "lag": 1.579850977754654, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.953829184592276, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4433728546111553, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6710.232331223988, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032688520034882144, "grain_number": 5, "grain_density": 1800.5092020104219, "grain_outer_radius": 0.033277131484477, "grain_initial_inner_radius": 0.014789056829361038, "grain_initial_height": 0.11885307314462663, "grain_separation": 0.005372358854109311, "grains_center_of_mass_position": 0.3964113383729835, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012143067180498996, "throat_radius": 0.010660157854671488, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553876215480013}], "aerodynamic_surfaces": [{"length": 0.5599605402348399, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346694373877695}, {"n": 4, "root_chord": 0.12002908925027342, "tip_chord": 0.06076078347038362, "span": 0.10923469602203155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500829029587986}, {"top_radius": 0.06426359833335865, "bottom_radius": 0.04280727074815423, "length": 0.0596726126031442, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6973050327557183, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175323897012461, "upper_button_position": 0.07977264305447218}], "rail_length": 5, "inclination": 83.93289575893692, "heading": 53.486909194313725} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.0634893335297273, "mass": 15.722676301066212, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303954194560454, "I_33_without_motor": 0.03340075654550158, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.843518760839162, "trigger": 800, "sampling_rate": 105, "lag": 1.5751388503142916, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0838814297946147, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8329770127881069, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6468.691054378606, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03399848495861829, "grain_number": 5, "grain_density": 1840.2219515585305, "grain_outer_radius": 0.03327826638785595, "grain_initial_inner_radius": 0.014826814313778582, "grain_initial_height": 0.12112086621769583, "grain_separation": 0.00465801924408857, "grains_center_of_mass_position": 0.39874975451097866, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00040399939194227344, "throat_radius": 0.01082067161535614, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559360506526125}], "aerodynamic_surfaces": [{"length": 0.5583151854985986, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134357587573074}, {"n": 4, "root_chord": 0.12055551641724867, "tip_chord": 0.05975462285892107, "span": 0.10944679472628686, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050539715162958}, {"top_radius": 0.06343002693428189, "bottom_radius": 0.042257023453600835, "length": 0.05917032895395345, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987441497895729, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181191915602596, "upper_button_position": 0.08062495822931326}], "rail_length": 5, "inclination": 83.50092677630539, "heading": 52.86157987139893} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350121959565931, "mass": 16.225719891149808, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317123769317053, "I_33_without_motor": 0.03554004555584939, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001973334469124, "trigger": 800, "sampling_rate": 105, "lag": 1.5585905365887684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.026579406582757, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8471634812173987, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6782.78942845157, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336797149185179, "grain_number": 5, "grain_density": 1806.5288634239496, "grain_outer_radius": 0.03310288253775485, "grain_initial_inner_radius": 0.01507652969059539, "grain_initial_height": 0.11921138193277676, "grain_separation": 0.004398691642813069, "grains_center_of_mass_position": 0.3958281909487041, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00042368571198809726, "throat_radius": 0.0100936490920632, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547956447821418}], "aerodynamic_surfaces": [{"length": 0.5568958160042459, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13443848821591}, {"n": 4, "root_chord": 0.12138897122530257, "tip_chord": 0.0598239692931559, "span": 0.11052344532714778, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506406795063465}, {"top_radius": 0.06414561340072185, "bottom_radius": 0.043859849628401, "length": 0.059936657725885314, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006818594266864, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165948555018149, "upper_button_position": 0.08408700392487145}], "rail_length": 5, "inclination": 83.62479204608557, "heading": 51.84372031426335} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635103288288997, "mass": 16.44977924241177, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329405101738598, "I_33_without_motor": 0.03282219402384837, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95726495159331, "trigger": 800, "sampling_rate": 105, "lag": 1.5473575442981278, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9129360816914879, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1363065481682406, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6177.9778365183365, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032561659327235065, "grain_number": 5, "grain_density": 1816.0527522056316, "grain_outer_radius": 0.03275894007433643, "grain_initial_inner_radius": 0.01571738335496844, "grain_initial_height": 0.11912586113374012, "grain_separation": 0.004512521022041459, "grains_center_of_mass_position": 0.39631309305222806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002681449845980876, "throat_radius": 0.010761532679253321, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253948713742587}], "aerodynamic_surfaces": [{"length": 0.5582606315246038, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338751629148898}, {"n": 4, "root_chord": 0.119887918573238, "tip_chord": 0.060359856329913815, "span": 0.11005165390504267, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048477776014498}, {"top_radius": 0.06443226706231835, "bottom_radius": 0.04294727029196633, "length": 0.06140431071566477, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003055255117586, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169241087116791, "upper_button_position": 0.08338141680007949}], "rail_length": 5, "inclination": 84.40495047252024, "heading": 52.162868598509306} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349644293658865, "mass": 16.400934256151817, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337002403097401, "I_33_without_motor": 0.02768107439265056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.970236621041293, "trigger": 800, "sampling_rate": 105, "lag": 1.5053988422092555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9328914918187692, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3601050504175334, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5879.818377852459, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335500080935437, "grain_number": 5, "grain_density": 1833.0285827522805, "grain_outer_radius": 0.0333121542348054, "grain_initial_inner_radius": 0.014318171636465335, "grain_initial_height": 0.11977824483529356, "grain_separation": 0.003123509119587923, "grains_center_of_mass_position": 0.3964501213945782, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018374400719651791, "throat_radius": 0.010823507601893675, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562677687049084}], "aerodynamic_surfaces": [{"length": 0.5595949544402394, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135666046847444}, {"n": 4, "root_chord": 0.11946904702943847, "tip_chord": 0.06069020150544345, "span": 0.10985650900535969, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487319748291808}, {"top_radius": 0.06272320458131703, "bottom_radius": 0.04454375857644036, "length": 0.05786351559000351, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991581756282812, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186522773753464, "upper_button_position": 0.08050589825293475}], "rail_length": 5, "inclination": 83.5803419116515, "heading": 53.26073768421643} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635025585091417, "mass": 14.932547891512993, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315040358269167, "I_33_without_motor": 0.034453568392002816, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.150483078758468, "trigger": 800, "sampling_rate": 105, "lag": 1.5159451350316873, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0240739786636344, "trigger": "apogee", "sampling_rate": 105, "lag": 1.51214187244078, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7170.548217162385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033078301059207345, "grain_number": 5, "grain_density": 1823.5964974518972, "grain_outer_radius": 0.03293041591092412, "grain_initial_inner_radius": 0.014803941677150222, "grain_initial_height": 0.12057389886385621, "grain_separation": 0.005583103057708996, "grains_center_of_mass_position": 0.3961659623854042, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002566360927367654, "throat_radius": 0.010755905112472142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556238252928664}], "aerodynamic_surfaces": [{"length": 0.5582325657661631, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133319906512271}, {"n": 4, "root_chord": 0.12054812894366958, "tip_chord": 0.060078764723658036, "span": 0.11019025780820062, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050412065137802}, {"top_radius": 0.06259525785665054, "bottom_radius": 0.04377962194170739, "length": 0.06129380325358627, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989639741875744, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174810878571144, "upper_button_position": 0.08148288633045997}], "rail_length": 5, "inclination": 84.8564079795976, "heading": 53.32152219806441} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350725748059029, "mass": 14.772099049428858, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320548841255487, "I_33_without_motor": 0.02586243213301251, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038829148510304, "trigger": 800, "sampling_rate": 105, "lag": 1.4418198500424684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9489417235529061, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3730247442452004, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5635.092405382253, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03314368673652679, "grain_number": 5, "grain_density": 1827.6565833166794, "grain_outer_radius": 0.03308395901334608, "grain_initial_inner_radius": 0.015273131055124834, "grain_initial_height": 0.12016615109279549, "grain_separation": 0.0049217033593296055, "grains_center_of_mass_position": 0.39725476870822407, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0019819242639569187, "throat_radius": 0.011717050598535245, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253455468862863}], "aerodynamic_surfaces": [{"length": 0.5590530150830626, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1356373149834635}, {"n": 4, "root_chord": 0.12047166195406012, "tip_chord": 0.05979907529732659, "span": 0.10918098678990534, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506967290220597}, {"top_radius": 0.06289103983247604, "bottom_radius": 0.0455951548944317, "length": 0.060886059220318804, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002644854827458, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171731792088488, "upper_button_position": 0.08309130627389694}], "rail_length": 5, "inclination": 83.2992687522302, "heading": 51.53890825034582} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349396313006388, "mass": 15.70505178763928, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317120128395013, "I_33_without_motor": 0.04291282964324396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88965205080575, "trigger": 800, "sampling_rate": 105, "lag": 1.3789136019196668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.119122905717465, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3661220384373622, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7015.666155969741, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290288945951371, "grain_number": 5, "grain_density": 1826.0157365664027, "grain_outer_radius": 0.032284630330388545, "grain_initial_inner_radius": 0.015178635291914634, "grain_initial_height": 0.12097882157843234, "grain_separation": 0.004257407319113306, "grains_center_of_mass_position": 0.39682392512725007, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013679769121564568, "throat_radius": 0.011302455400770437, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549326469191748}], "aerodynamic_surfaces": [{"length": 0.5592772298441766, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357990573780685}, {"n": 4, "root_chord": 0.11987160022085842, "tip_chord": 0.05978253839930462, "span": 0.11066106485148101, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050034757033841}, {"top_radius": 0.06288783150463778, "bottom_radius": 0.043381246521010025, "length": 0.06187503932160881, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700017717795426, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168394645281211, "upper_button_position": 0.08317825326730488}], "rail_length": 5, "inclination": 85.87275807941266, "heading": 51.10990424598125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349740295701052, "mass": 15.107147647418243, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299293845055212, "I_33_without_motor": 0.05656224524316438, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.13214510465239, "trigger": 800, "sampling_rate": 105, "lag": 1.629429335128344, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1947752210729115, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3778878705549649, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6176.825289013159, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032531072059486056, "grain_number": 5, "grain_density": 1808.594678840474, "grain_outer_radius": 0.0324970222207095, "grain_initial_inner_radius": 0.014719772817103783, "grain_initial_height": 0.12012052916733604, "grain_separation": 0.0038730611776525642, "grains_center_of_mass_position": 0.39744405576351344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001279961224130553, "throat_radius": 0.010376457986546024, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255670609557259}], "aerodynamic_surfaces": [{"length": 0.558086276048561, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348859249450882}, {"n": 4, "root_chord": 0.11999682600427394, "tip_chord": 0.06009362973310765, "span": 0.11069876811541744, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0511518413347112}, {"top_radius": 0.06511097695965018, "bottom_radius": 0.045426001713978675, "length": 0.06018162249675111, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701152351471375, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617846146904615, "upper_button_position": 0.08330620456675997}], "rail_length": 5, "inclination": 86.34561205898385, "heading": 51.36967865915746} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349283844954545, "mass": 16.35887525552621, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304390138249679, "I_33_without_motor": 0.038563085109228096, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.16340634931963, "trigger": 800, "sampling_rate": 105, "lag": 1.6224794970072038, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0219489674806834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4377466632218043, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5382.254269180921, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033067228819998976, "grain_number": 5, "grain_density": 1859.9348990532492, "grain_outer_radius": 0.03334658894341207, "grain_initial_inner_radius": 0.014585081035424621, "grain_initial_height": 0.11823618407795104, "grain_separation": 0.004608186331779861, "grains_center_of_mass_position": 0.3967230974502352, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009759243520256626, "throat_radius": 0.010850465349991888, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550845017823886}], "aerodynamic_surfaces": [{"length": 0.5584971969566641, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324435319229207}, {"n": 4, "root_chord": 0.12122812987819767, "tip_chord": 0.06024845306109551, "span": 0.11001991105952892, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501633081436967}, {"top_radius": 0.06481515702597397, "bottom_radius": 0.04319325575508705, "length": 0.06249335024610476, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016081864780328, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185128558664507, "upper_button_position": 0.08309533061158214}], "rail_length": 5, "inclination": 86.24725513037431, "heading": 54.29090531964032} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.063503708411619, "mass": 15.52543905067947, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315583283360126, "I_33_without_motor": 0.01425602251150454, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009494757033108, "trigger": 800, "sampling_rate": 105, "lag": 1.6089382820957165, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1096332625856993, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7616618478321333, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7333.141395547464, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03280910998534482, "grain_number": 5, "grain_density": 1790.5336286014126, "grain_outer_radius": 0.03336934892337701, "grain_initial_inner_radius": 0.015236008321549227, "grain_initial_height": 0.11937175998091433, "grain_separation": 0.003284025021963453, "grains_center_of_mass_position": 0.39732066830705287, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018402921119985687, "throat_radius": 0.012037865696425766, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556918591329929}], "aerodynamic_surfaces": [{"length": 0.5578417356566516, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346033133142646}, {"n": 4, "root_chord": 0.12018871815510306, "tip_chord": 0.0601182937949474, "span": 0.10955580289533155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488547720199135}, {"top_radius": 0.06559643831480248, "bottom_radius": 0.042924687700126994, "length": 0.06095809625427252, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002205498887438, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618016990521423, "upper_button_position": 0.08220355936732082}], "rail_length": 5, "inclination": 85.91952102302763, "heading": 51.904061759436296} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349009238514672, "mass": 14.671471485569331, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320734879965156, "I_33_without_motor": 0.027525601933609527, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.176003029774174, "trigger": 800, "sampling_rate": 105, "lag": 1.6814655737279744, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9957999126903575, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3975425380164714, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8210.703069521118, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03367153728724613, "grain_number": 5, "grain_density": 1793.2666281457978, "grain_outer_radius": 0.03289423200030157, "grain_initial_inner_radius": 0.014787928878075063, "grain_initial_height": 0.11901273238150452, "grain_separation": 0.004555232280323529, "grains_center_of_mass_position": 0.39760808060018066, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006103551071461039, "throat_radius": 0.009982711661900656, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536405363805887}], "aerodynamic_surfaces": [{"length": 0.5564216623032198, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343956033867062}, {"n": 4, "root_chord": 0.12025462345551227, "tip_chord": 0.05977843708906395, "span": 0.11018961488845912, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494299518296109}, {"top_radius": 0.06332669420764536, "bottom_radius": 0.042813467673269344, "length": 0.05899873394782602, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987788735784561, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181618492121994, "upper_button_position": 0.08061702436625673}], "rail_length": 5, "inclination": 82.59277197279167, "heading": 50.226942057945855} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0635029355614689, "mass": 14.788983809886263, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32543657449022, "I_33_without_motor": 0.026045590461900334, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.972377768324847, "trigger": 800, "sampling_rate": 105, "lag": 1.6296193031492567, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0550096374176836, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7991354656047296, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6011.265323096497, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03203582343044363, "grain_number": 5, "grain_density": 1858.2719846501, "grain_outer_radius": 0.033254037506475986, "grain_initial_inner_radius": 0.014822269215844612, "grain_initial_height": 0.11996572430787593, "grain_separation": 0.0029990819162250505, "grains_center_of_mass_position": 0.397248499916274, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012279953424131174, "throat_radius": 0.010548480239141263, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255207462946812}], "aerodynamic_surfaces": [{"length": 0.5586330054749088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338482067829203}, {"n": 4, "root_chord": 0.11999647734012718, "tip_chord": 0.06014841315830551, "span": 0.11062842508210692, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492843624395172}, {"top_radius": 0.06400331892555707, "bottom_radius": 0.04246196380550963, "length": 0.06199809709116716, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699047483785156, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189604873263006, "upper_button_position": 0.08008699645885542}], "rail_length": 5, "inclination": 85.39376586312568, "heading": 52.09223911912277} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349164408144418, "mass": 15.92007647925124, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31118645001921, "I_33_without_motor": 0.015334304278104373, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031729575414882, "trigger": 800, "sampling_rate": 105, "lag": 1.5302099587675628, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9954823505167567, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5790409827046985, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7467.168076711494, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286922881882587, "grain_number": 5, "grain_density": 1905.4774689633393, "grain_outer_radius": 0.0327217648998839, "grain_initial_inner_radius": 0.014482242807042514, "grain_initial_height": 0.1204584315012421, "grain_separation": 0.005239312073155562, "grains_center_of_mass_position": 0.3976899430943945, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015286779790740074, "throat_radius": 0.010183848905440149, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559251851781101}], "aerodynamic_surfaces": [{"length": 0.5583989220123314, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327603349533304}, {"n": 4, "root_chord": 0.12017875151965667, "tip_chord": 0.06026081912877506, "span": 0.10985539488752766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049286201332714}, {"top_radius": 0.06143653318380696, "bottom_radius": 0.04314023181448986, "length": 0.06099267478783266, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993280978729405, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181270053470729, "upper_button_position": 0.0812010925258676}], "rail_length": 5, "inclination": 83.32308233106221, "heading": 57.32806463860081} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350216834892211, "mass": 15.568510023177316, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322365443434582, "I_33_without_motor": 0.02625779736226627, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986427586156774, "trigger": 800, "sampling_rate": 105, "lag": 1.5736708312175627, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9365198357181705, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1239832970217876, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6209.696501219911, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269215156093152, "grain_number": 5, "grain_density": 1842.217197892085, "grain_outer_radius": 0.03286468757546137, "grain_initial_inner_radius": 0.015044172853364615, "grain_initial_height": 0.11862800763145052, "grain_separation": 0.00628902693616828, "grains_center_of_mass_position": 0.39592921557025357, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008733622887742552, "throat_radius": 0.011074951815259202, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550808436104903}], "aerodynamic_surfaces": [{"length": 0.5578086219093228, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333751968058707}, {"n": 4, "root_chord": 0.11998868702925229, "tip_chord": 0.05942058364683134, "span": 0.11040259726928348, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483999146617}, {"top_radius": 0.06545834938672332, "bottom_radius": 0.04271702986255768, "length": 0.060443772107180146, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010703417431504, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177571655778291, "upper_button_position": 0.0833131761653213}], "rail_length": 5, "inclination": 86.0858982772421, "heading": 50.82832613409159} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350361080635192, "mass": 16.008067466597296, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3256818061873314, "I_33_without_motor": 0.03323894937586172, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.126697018714916, "trigger": 800, "sampling_rate": 105, "lag": 1.5011300322404688, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9612262310957566, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7242451774254495, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8326.808189499554, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03172212776598346, "grain_number": 5, "grain_density": 1763.5171545496512, "grain_outer_radius": 0.032788846067356624, "grain_initial_inner_radius": 0.014950018117604692, "grain_initial_height": 0.11857382819453564, "grain_separation": 0.005070226246157837, "grains_center_of_mass_position": 0.39867781221571624, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010969093038773285, "throat_radius": 0.01013448780193303, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529451647276688}], "aerodynamic_surfaces": [{"length": 0.5586021635191104, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132727138964132}, {"n": 4, "root_chord": 0.11984498512893782, "tip_chord": 0.0591363596199452, "span": 0.1088751151856923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0476251906438059}, {"top_radius": 0.06375053770703061, "bottom_radius": 0.043139631262932, "length": 0.06034051650541578, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004852425920776, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618961240421176, "upper_button_position": 0.08152400217090161}], "rail_length": 5, "inclination": 83.71968235969511, "heading": 55.65759146636963} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350591125262792, "mass": 15.687120736106465, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316470239294812, "I_33_without_motor": 0.017048413990067665, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.089303862758793, "trigger": 800, "sampling_rate": 105, "lag": 1.3846459943894207, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9787838107374052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.466431890695164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6916.713518342454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032544367603615454, "grain_number": 5, "grain_density": 1834.7137178062364, "grain_outer_radius": 0.03292449345301193, "grain_initial_inner_radius": 0.015087064041285028, "grain_initial_height": 0.11935013407314138, "grain_separation": 0.006840941141016207, "grains_center_of_mass_position": 0.39746701894060277, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008685268612034153, "throat_radius": 0.011570353083633153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546575374599334}], "aerodynamic_surfaces": [{"length": 0.5573550856845232, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133382382398107}, {"n": 4, "root_chord": 0.1196173787827187, "tip_chord": 0.06047893797472586, "span": 0.1098315806180636, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049555241286117}, {"top_radius": 0.06154669045582549, "bottom_radius": 0.04313151145326497, "length": 0.06043556241577212, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000245690995196, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193164409689905, "upper_button_position": 0.08070812813052908}], "rail_length": 5, "inclination": 83.96161683408738, "heading": 54.79758914178385} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350361977845748, "mass": 15.831157381234402, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3171943557327435, "I_33_without_motor": 0.013154227374865133, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91650674784227, "trigger": 800, "sampling_rate": 105, "lag": 1.5371686700689149, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0111121925177142, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3927287290406236, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6605.160584124702, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366934048441338, "grain_number": 5, "grain_density": 1792.6387906672016, "grain_outer_radius": 0.03241180627857045, "grain_initial_inner_radius": 0.01493324903932034, "grain_initial_height": 0.11929131183523632, "grain_separation": 0.006210075691146766, "grains_center_of_mass_position": 0.39933453504028593, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00018539401090237527, "throat_radius": 0.010740922797131717, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554538019181354}], "aerodynamic_surfaces": [{"length": 0.557330872653173, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338380879859566}, {"n": 4, "root_chord": 0.12004112668226855, "tip_chord": 0.06068461880853532, "span": 0.10989207298314752, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051139327136123}, {"top_radius": 0.06430987791614887, "bottom_radius": 0.04335900370546277, "length": 0.061602596346116784, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001879401088937, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197793066016806, "upper_button_position": 0.08040863350721317}], "rail_length": 5, "inclination": 84.39021492664656, "heading": 51.96125014644197} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351149791844987, "mass": 15.742151526142534, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31657079305557, "I_33_without_motor": 0.017534975031150125, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967406539859653, "trigger": 800, "sampling_rate": 105, "lag": 1.376841636365822, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9746777420216362, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8365754466845052, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6790.869978150573, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03398099977305734, "grain_number": 5, "grain_density": 1828.4242368784865, "grain_outer_radius": 0.03293738656566197, "grain_initial_inner_radius": 0.014948732452680002, "grain_initial_height": 0.12011798082337707, "grain_separation": 0.003779962211507346, "grains_center_of_mass_position": 0.39658955490093173, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00011629771811044256, "throat_radius": 0.010714587496740315, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559797666158565}], "aerodynamic_surfaces": [{"length": 0.5557360679715233, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134707740195214}, {"n": 4, "root_chord": 0.11980003592980444, "tip_chord": 0.06032609561180569, "span": 0.11037182134345536, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049073477505745}, {"top_radius": 0.0637509519718738, "bottom_radius": 0.04373711329009107, "length": 0.05929301609430376, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981353265218568, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180574319609703, "upper_button_position": 0.08007789456088654}], "rail_length": 5, "inclination": 83.6648462724498, "heading": 54.075171790066705} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350040035153467, "mass": 14.741808067353565, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3177338740541185, "I_33_without_motor": 0.03162681260895629, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.942602258759837, "trigger": 800, "sampling_rate": 105, "lag": 1.5291060986806926, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0208324811032046, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9256014110047746, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7150.098341458026, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251651845309424, "grain_number": 5, "grain_density": 1872.7039703411842, "grain_outer_radius": 0.033228800695715495, "grain_initial_inner_radius": 0.01511205120032042, "grain_initial_height": 0.11986514911436333, "grain_separation": 0.005158660670337194, "grains_center_of_mass_position": 0.39597981639933927, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012363420183816468, "throat_radius": 0.010640260514743078, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535670204784204}], "aerodynamic_surfaces": [{"length": 0.5572742475634945, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343060614965812}, {"n": 4, "root_chord": 0.11974831374542508, "tip_chord": 0.06018674677960401, "span": 0.11060407713743893, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049158584060909}, {"top_radius": 0.06347581044262086, "bottom_radius": 0.04269367400249688, "length": 0.05939840938830104, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016466025541891, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174425445151597, "upper_button_position": 0.08420405803902942}], "rail_length": 5, "inclination": 84.35929642136632, "heading": 53.76624484418583} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350045038449391, "mass": 16.370344347866958, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324518480519217, "I_33_without_motor": 0.051019185691514146, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.936818337212799, "trigger": 800, "sampling_rate": 105, "lag": 1.5844402838154306, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9973969090881731, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6392207846503777, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5460.544818592149, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032911662598186474, "grain_number": 5, "grain_density": 1897.508929923094, "grain_outer_radius": 0.032979681500667435, "grain_initial_inner_radius": 0.014628842149484454, "grain_initial_height": 0.11996174431817914, "grain_separation": 0.004805599668757678, "grains_center_of_mass_position": 0.39567713155404505, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002601162351955296, "throat_radius": 0.011339272658857282, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556307333420629}], "aerodynamic_surfaces": [{"length": 0.5588643573801629, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1361351857190853}, {"n": 4, "root_chord": 0.11923160886921087, "tip_chord": 0.05980038986325747, "span": 0.10985754479558009, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477008216277355}, {"top_radius": 0.06418587584436405, "bottom_radius": 0.04294152561001928, "length": 0.06178907923301113, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008608370557234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183180396744068, "upper_button_position": 0.08254279738131665}], "rail_length": 5, "inclination": 83.54643409238889, "heading": 53.494176846392655} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349218405192328, "mass": 15.476571139714016, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327333961292584, "I_33_without_motor": 0.006468736353174409, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051958508763027, "trigger": 800, "sampling_rate": 105, "lag": 1.36656959471114, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.95045906552776, "trigger": "apogee", "sampling_rate": 105, "lag": 1.397900202998409, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6051.29876165925, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032113460549590134, "grain_number": 5, "grain_density": 1871.681312941538, "grain_outer_radius": 0.03274083642903547, "grain_initial_inner_radius": 0.015005629837191892, "grain_initial_height": 0.11752262073502631, "grain_separation": 0.004709109518597822, "grains_center_of_mass_position": 0.3980504994428221, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010152263967261983, "throat_radius": 0.011103299641782768, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544519087212214}], "aerodynamic_surfaces": [{"length": 0.5592873030501874, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13410586882049}, {"n": 4, "root_chord": 0.12032498919141724, "tip_chord": 0.059741192920074584, "span": 0.11010824238392883, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049584632400479}, {"top_radius": 0.06469470417247136, "bottom_radius": 0.04304986504426902, "length": 0.06204903158808529, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986347145426537, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179403626161947, "upper_button_position": 0.08069435192645902}], "rail_length": 5, "inclination": 86.01026767008923, "heading": 50.69536362816078} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350386316890884, "mass": 15.279028658554584, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329659820929396, "I_33_without_motor": 0.0275887875523064, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.222717243254667, "trigger": 800, "sampling_rate": 105, "lag": 1.5072449845807652, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.042254258998538, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4047311290968252, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4169.270810948174, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03208144790541853, "grain_number": 5, "grain_density": 1763.901082101513, "grain_outer_radius": 0.032987857706495156, "grain_initial_inner_radius": 0.014741337607218236, "grain_initial_height": 0.1194870896688534, "grain_separation": 0.005089331209847797, "grains_center_of_mass_position": 0.39847345357284925, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012483584729507061, "throat_radius": 0.010978545357853819, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557935164089495}], "aerodynamic_surfaces": [{"length": 0.5590487411948765, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335755577431144}, {"n": 4, "root_chord": 0.11998691869526643, "tip_chord": 0.05986836518726802, "span": 0.10963290821909859, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495523809787175}, {"top_radius": 0.0634550526422733, "bottom_radius": 0.04420143006175729, "length": 0.060704065937680185, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018091086114348, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164265318631138, "upper_button_position": 0.08538257674832095}], "rail_length": 5, "inclination": 84.87531219802293, "heading": 53.7435226929969} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349432439606824, "mass": 16.179088385299416, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319189255825197, "I_33_without_motor": 0.026163900608617084, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.016592485903747, "trigger": 800, "sampling_rate": 105, "lag": 1.4921492911065268, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0176512397435145, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5122353688830323, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6616.7775000167585, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272267366779704, "grain_number": 5, "grain_density": 1805.1127636968004, "grain_outer_radius": 0.03271666335781533, "grain_initial_inner_radius": 0.015116215738425661, "grain_initial_height": 0.11979945929114934, "grain_separation": 0.006300293633110838, "grains_center_of_mass_position": 0.3958772355871873, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017339706151043696, "throat_radius": 0.010903615739528786, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543376057527884}], "aerodynamic_surfaces": [{"length": 0.5584805397544133, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346448450607127}, {"n": 4, "root_chord": 0.11991918558704813, "tip_chord": 0.05919436927807262, "span": 0.11013022041333911, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487474618300041}, {"top_radius": 0.06444109239487335, "bottom_radius": 0.04276411031041424, "length": 0.0586217074853798, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7020178077792277, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173133858965336, "upper_button_position": 0.08470442188269411}], "rail_length": 5, "inclination": 84.04243336308208, "heading": 49.175638850963914} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350980906211362, "mass": 15.607060869266487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317829822566556, "I_33_without_motor": 0.03468969758468181, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.065199370130319, "trigger": 800, "sampling_rate": 105, "lag": 1.4386514601858746, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.006109788639642, "trigger": "apogee", "sampling_rate": 105, "lag": 1.279224069483636, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6521.680230104687, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03197113754100111, "grain_number": 5, "grain_density": 1749.7069036250493, "grain_outer_radius": 0.03314112325191577, "grain_initial_inner_radius": 0.015022766342868707, "grain_initial_height": 0.11912620113125923, "grain_separation": 0.005888215573073152, "grains_center_of_mass_position": 0.39687704598903395, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031866375820278637, "throat_radius": 0.01098332480611101, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564293707737193}], "aerodynamic_surfaces": [{"length": 0.5608408073802864, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342407344943162}, {"n": 4, "root_chord": 0.11982172787812333, "tip_chord": 0.05886007307460512, "span": 0.11016697972779942, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498364400725961}, {"top_radius": 0.06306550671048985, "bottom_radius": 0.04147506563252526, "length": 0.06019242400174878, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004355418007809, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176686423491216, "upper_button_position": 0.08276689945165938}], "rail_length": 5, "inclination": 85.25421152253193, "heading": 52.469792771781115} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349370771335294, "mass": 16.112511570737595, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303879838392677, "I_33_without_motor": 0.0412396136816295, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890758411586178, "trigger": 800, "sampling_rate": 105, "lag": 1.520488926134502, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.997160927161351, "trigger": "apogee", "sampling_rate": 105, "lag": 1.971095942960781, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6809.42070077758, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323536059425656, "grain_number": 5, "grain_density": 1861.2393074271354, "grain_outer_radius": 0.03312881810667756, "grain_initial_inner_radius": 0.01557259493403647, "grain_initial_height": 0.12134087899393523, "grain_separation": 0.004765499959989885, "grains_center_of_mass_position": 0.3974656911481011, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010956740780441365, "throat_radius": 0.010991011729699079, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548572966499827}], "aerodynamic_surfaces": [{"length": 0.5569405897054431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338097822847066}, {"n": 4, "root_chord": 0.1200390398420903, "tip_chord": 0.05962326361084912, "span": 0.11034610702771547, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491026616329466}, {"top_radius": 0.06282745346057107, "bottom_radius": 0.043824135518580803, "length": 0.0597340326163488, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004457583550073, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178319950790442, "upper_button_position": 0.08261376327596315}], "rail_length": 5, "inclination": 84.76790280585428, "heading": 53.791908162123065} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349788386190292, "mass": 15.244976609900924, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320497877972673, "I_33_without_motor": 0.04258097481261372, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.16604655628408, "trigger": 800, "sampling_rate": 105, "lag": 1.5030531176561428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9612587988177412, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4258919316957253, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5246.604560965097, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032685205641348726, "grain_number": 5, "grain_density": 1856.6547047124743, "grain_outer_radius": 0.033166437017814326, "grain_initial_inner_radius": 0.014826957937321764, "grain_initial_height": 0.11936116554037317, "grain_separation": 0.004601383903344927, "grains_center_of_mass_position": 0.39586282973912523, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013204074165619425, "throat_radius": 0.01157250079427572, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546699902555667}], "aerodynamic_surfaces": [{"length": 0.5581184439130014, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333475813020688}, {"n": 4, "root_chord": 0.12035745597577872, "tip_chord": 0.06011770587579496, "span": 0.11029784612068982, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489620619518305}, {"top_radius": 0.06452724032304158, "bottom_radius": 0.04375665238233592, "length": 0.058951637215745034, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997075956853241, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186371991337419, "upper_button_position": 0.08107039655158221}], "rail_length": 5, "inclination": 85.16191104809015, "heading": 54.47782583034255} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349798973069222, "mass": 13.973881925306193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328598214605681, "I_33_without_motor": 0.03327936172961703, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022876171570497, "trigger": 800, "sampling_rate": 105, "lag": 1.6451483669598006, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1263648326996885, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6464197617081886, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6403.504553286089, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335788322701796, "grain_number": 5, "grain_density": 1781.9153393414788, "grain_outer_radius": 0.03305535093972161, "grain_initial_inner_radius": 0.014849638609489858, "grain_initial_height": 0.11959671434906967, "grain_separation": 0.004246246476037118, "grains_center_of_mass_position": 0.39492454750746897, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006740309224154344, "throat_radius": 0.010701223553417911, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25753016592127}], "aerodynamic_surfaces": [{"length": 0.5579593784075475, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346960169608824}, {"n": 4, "root_chord": 0.11963831628243815, "tip_chord": 0.058747355501322894, "span": 0.11021791350529687, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0478381167137647}, {"top_radius": 0.06367248070561832, "bottom_radius": 0.04272338209053013, "length": 0.05865527410573433, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995186098797815, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172424895340305, "upper_button_position": 0.08227612034575105}], "rail_length": 5, "inclination": 85.10989933340144, "heading": 51.8726028019263} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349484284017001, "mass": 15.345959288261653, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334845177739396, "I_33_without_motor": 0.01602416164868226, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851402212514992, "trigger": 800, "sampling_rate": 105, "lag": 1.670281039841199, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.973395093770931, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6862243048602277, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6094.366249163187, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033492256304436085, "grain_number": 5, "grain_density": 1859.2858279341192, "grain_outer_radius": 0.033889510784940485, "grain_initial_inner_radius": 0.015382642365695783, "grain_initial_height": 0.12076917441739023, "grain_separation": 0.006293250048408087, "grains_center_of_mass_position": 0.3968540540309298, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010287958096504475, "throat_radius": 0.011827508569595012, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546194430128672}], "aerodynamic_surfaces": [{"length": 0.5580046572234496, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343966982788758}, {"n": 4, "root_chord": 0.12067957288581486, "tip_chord": 0.05991935158597211, "span": 0.11002025046965029, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491454460347678}, {"top_radius": 0.06400784164128365, "bottom_radius": 0.0433961766948162, "length": 0.05989267613592659, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983944111713478, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183227281197151, "upper_button_position": 0.0800716830516327}], "rail_length": 5, "inclination": 83.45542141266925, "heading": 50.38739267745988} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350245509795317, "mass": 15.640192469129474, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3115648034736616, "I_33_without_motor": 0.03756660006312229, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.102597938061757, "trigger": 800, "sampling_rate": 105, "lag": 1.3942689000846993, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.18943426952843, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8129672964884351, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6854.857817764554, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032535317478821185, "grain_number": 5, "grain_density": 1855.4904677760478, "grain_outer_radius": 0.03368970903824532, "grain_initial_inner_radius": 0.014890991789709181, "grain_initial_height": 0.12058490690168057, "grain_separation": 0.004844870038795555, "grains_center_of_mass_position": 0.3967588275693429, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005117972380449408, "throat_radius": 0.01083502697008652, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254368738964135}], "aerodynamic_surfaces": [{"length": 0.5565559818989725, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337450027376288}, {"n": 4, "root_chord": 0.12032784979490277, "tip_chord": 0.06034670846344524, "span": 0.11075316550652736, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483137911770548}, {"top_radius": 0.06237947819245369, "bottom_radius": 0.04454212188632909, "length": 0.06106571770578929, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994793487185308, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169909592475901, "upper_button_position": 0.08248838947094073}], "rail_length": 5, "inclination": 84.51119918135693, "heading": 53.01641641708883} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350999073219514, "mass": 14.926938192960188, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312350931364963, "I_33_without_motor": 0.04277171298090296, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.093477153919574, "trigger": 800, "sampling_rate": 105, "lag": 1.5577244467627727, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9742932159829001, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5741806068424165, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8146.311439748614, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032383434832252096, "grain_number": 5, "grain_density": 1696.510033787591, "grain_outer_radius": 0.033213975817841496, "grain_initial_inner_radius": 0.01537489203130303, "grain_initial_height": 0.11804862700523559, "grain_separation": 0.004417460933046374, "grains_center_of_mass_position": 0.395947474176782, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012604665447577934, "throat_radius": 0.011250448775848325, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556897392808852}], "aerodynamic_surfaces": [{"length": 0.5580142052887959, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348372954913712}, {"n": 4, "root_chord": 0.11948736214237178, "tip_chord": 0.060020583465568746, "span": 0.10896533892147249, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0479780983084541}, {"top_radius": 0.06389196659060198, "bottom_radius": 0.04266574447533931, "length": 0.059894432598787115, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986051397020663, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178511479860984, "upper_button_position": 0.08075399171596787}], "rail_length": 5, "inclination": 85.26279563725258, "heading": 52.94305042063619} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349854704179998, "mass": 14.458819410157124, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3143320164682395, "I_33_without_motor": 0.031012836288061955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.116318446935031, "trigger": 800, "sampling_rate": 105, "lag": 1.5937550466786339, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.008572378948494, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0359079823214037, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7817.231733936158, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032918829206030564, "grain_number": 5, "grain_density": 1796.9120023772568, "grain_outer_radius": 0.03277410943408476, "grain_initial_inner_radius": 0.015275678513832493, "grain_initial_height": 0.1209877688273713, "grain_separation": 0.003027867005742516, "grains_center_of_mass_position": 0.39826755828111793, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015550179669773566, "throat_radius": 0.011731682439967727, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542627330302714}], "aerodynamic_surfaces": [{"length": 0.5594140366052431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134108031769813}, {"n": 4, "root_chord": 0.11997264461932657, "tip_chord": 0.06037906005223972, "span": 0.10939138731917808, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0470779561926848}, {"top_radius": 0.0638566729224791, "bottom_radius": 0.043008540602024116, "length": 0.05891058523489061, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993734780378977, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188637888949846, "upper_button_position": 0.08050968914291312}], "rail_length": 5, "inclination": 84.16035626741291, "heading": 54.63509709999226} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350338490355692, "mass": 15.330639513276365, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328766894008762, "I_33_without_motor": 0.060928063902223925, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.877186632159866, "trigger": 800, "sampling_rate": 105, "lag": 1.4360288998707846, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0060595056696238, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4926324960018056, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7653.486736562649, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330152214274237, "grain_number": 5, "grain_density": 1817.4411813375982, "grain_outer_radius": 0.03307256434789016, "grain_initial_inner_radius": 0.014982781609937414, "grain_initial_height": 0.11907231424581458, "grain_separation": 0.0050317064126968, "grains_center_of_mass_position": 0.3975364915879314, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009170158792501948, "throat_radius": 0.011554017257644853, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569806434816782}], "aerodynamic_surfaces": [{"length": 0.5584387525853792, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1358200811266776}, {"n": 4, "root_chord": 0.11984236153377535, "tip_chord": 0.05982476228032798, "span": 0.10931091007233693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048983082681977}, {"top_radius": 0.06290277391717036, "bottom_radius": 0.045366730859127014, "length": 0.05974205039499721, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700557456668743, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169278397603274, "upper_button_position": 0.08362961690841564}], "rail_length": 5, "inclination": 83.57340846679439, "heading": 54.14308884891422} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350470037878699, "mass": 14.957196980018537, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317978157324586, "I_33_without_motor": 0.0326561357929707, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.867299610392104, "trigger": 800, "sampling_rate": 105, "lag": 1.3999050716840786, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9324373194816916, "trigger": "apogee", "sampling_rate": 105, "lag": 1.442197923691443, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5730.282418474224, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03267595626160961, "grain_number": 5, "grain_density": 1824.2712082386834, "grain_outer_radius": 0.03251458928698211, "grain_initial_inner_radius": 0.014989173079162635, "grain_initial_height": 0.11811889202171516, "grain_separation": 0.004568481027128311, "grains_center_of_mass_position": 0.39826361021160356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005843733161503171, "throat_radius": 0.011536676337200602, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538280013119716}], "aerodynamic_surfaces": [{"length": 0.5581412361919772, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336972601942512}, {"n": 4, "root_chord": 0.12039549145474186, "tip_chord": 0.059428228901117916, "span": 0.1092727308298797, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04933051060263}, {"top_radius": 0.062293670404521564, "bottom_radius": 0.04263557315634927, "length": 0.059397709413721, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986301454095267, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161854238803897, "upper_button_position": 0.08244472152913707}], "rail_length": 5, "inclination": 84.23884250305765, "heading": 52.46540557635126} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.063497008137503, "mass": 15.795232036281874, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312002659822235, "I_33_without_motor": 0.034856400079797546, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.159311977714067, "trigger": 800, "sampling_rate": 105, "lag": 1.5653850059976655, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0277409062622627, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3567035027349774, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5148.650222501705, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341062486657566, "grain_number": 5, "grain_density": 1872.5905378087507, "grain_outer_radius": 0.0331726619625803, "grain_initial_inner_radius": 0.014953031339048255, "grain_initial_height": 0.11953404237797409, "grain_separation": 0.0041645997169422735, "grains_center_of_mass_position": 0.39532643538712736, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004313451000055771, "throat_radius": 0.010801008929320568, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545082731926807}], "aerodynamic_surfaces": [{"length": 0.5571778930479131, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135097954255304}, {"n": 4, "root_chord": 0.12054844450295611, "tip_chord": 0.05959517633022458, "span": 0.11047489785101343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050200539573595}, {"top_radius": 0.06358242118919816, "bottom_radius": 0.04138998819618534, "length": 0.061151953781166855, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009168675774269, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616966801604067, "upper_button_position": 0.08395006597335986}], "rail_length": 5, "inclination": 85.00179719205894, "heading": 53.89188018456639} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0635047925917363, "mass": 15.668042277047418, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330446112704247, "I_33_without_motor": 0.02554935543964263, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.195664134608773, "trigger": 800, "sampling_rate": 105, "lag": 1.4644185984463203, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0450679308651916, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6754585178285968, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7023.835654441918, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03349202620868232, "grain_number": 5, "grain_density": 1795.8661329333927, "grain_outer_radius": 0.03276926235431197, "grain_initial_inner_radius": 0.015153793435475309, "grain_initial_height": 0.11847173715662838, "grain_separation": 0.004014759708261481, "grains_center_of_mass_position": 0.39732628342188536, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013157748249698667, "throat_radius": 0.01121083678770931, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529323048621412}], "aerodynamic_surfaces": [{"length": 0.5577548916031074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339558496055766}, {"n": 4, "root_chord": 0.11979014263623172, "tip_chord": 0.06119898435442471, "span": 0.11012866426350339, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510458427795628}, {"top_radius": 0.06483196283530966, "bottom_radius": 0.04429209361001685, "length": 0.05816079458207412, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016028285435688, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175493402211814, "upper_button_position": 0.08405348832238746}], "rail_length": 5, "inclination": 85.33726945010784, "heading": 51.10019268763505} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349859303733188, "mass": 15.51025812180776, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30350608885614, "I_33_without_motor": 0.029656221752317326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98201177468097, "trigger": 800, "sampling_rate": 105, "lag": 1.2263394400370227, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9136224306056546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5532787552423963, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7760.3017034815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324836031055401, "grain_number": 5, "grain_density": 1782.6624316134416, "grain_outer_radius": 0.032761883538847084, "grain_initial_inner_radius": 0.015529932921549531, "grain_initial_height": 0.12079741779361097, "grain_separation": 0.004152341725177767, "grains_center_of_mass_position": 0.39671599976948996, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010200830026685257, "throat_radius": 0.011452217403421358, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256862327527494}], "aerodynamic_surfaces": [{"length": 0.5561645004332396, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337423602844066}, {"n": 4, "root_chord": 0.1197170925059811, "tip_chord": 0.061143854362020446, "span": 0.11051773395811693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505958266883462}, {"top_radius": 0.06381250303795198, "bottom_radius": 0.044072034220538285, "length": 0.060661033006764675, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6971751534346957, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194534473213811, "upper_button_position": 0.07772170611331464}], "rail_length": 5, "inclination": 84.39665220089191, "heading": 56.400669667052476} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349633100962718, "mass": 15.421597257462205, "I_11_without_motor": 6.321, "I_22_without_motor": 6.296744874865687, "I_33_without_motor": 0.03557332192549046, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045977145627004, "trigger": 800, "sampling_rate": 105, "lag": 1.460968805296853, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.018617085522092, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3131421478261682, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7349.775638291454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247033586707861, "grain_number": 5, "grain_density": 1902.3978905021731, "grain_outer_radius": 0.03358279223142759, "grain_initial_inner_radius": 0.015348621377775165, "grain_initial_height": 0.1208542591862917, "grain_separation": 0.0031011588665011106, "grains_center_of_mass_position": 0.3967538214419217, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007441625334252221, "throat_radius": 0.011623369210020263, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537296680754588}], "aerodynamic_surfaces": [{"length": 0.5566084905634968, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341721312063335}, {"n": 4, "root_chord": 0.12055131090704378, "tip_chord": 0.06067767904402236, "span": 0.11012371458737823, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499648148148513}, {"top_radius": 0.0630652719838761, "bottom_radius": 0.04400855821744189, "length": 0.059086727770433466, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986778068392526, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192224831390671, "upper_button_position": 0.07945532370018549}], "rail_length": 5, "inclination": 83.37159725233376, "heading": 50.93096475353311} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350542247250698, "mass": 15.382117055696195, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315613375970872, "I_33_without_motor": 0.02463289712524911, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.871121969698144, "trigger": 800, "sampling_rate": 105, "lag": 1.4552824001166342, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.080164312833054, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0924116708499334, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6338.127224021477, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032713013953397194, "grain_number": 5, "grain_density": 1770.5939760740384, "grain_outer_radius": 0.032457334739341155, "grain_initial_inner_radius": 0.015041513988324783, "grain_initial_height": 0.11967757260763094, "grain_separation": 0.0034477716448205282, "grains_center_of_mass_position": 0.3963755555742347, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00021451700608535445, "throat_radius": 0.01059709352282742, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560173306805222}], "aerodynamic_surfaces": [{"length": 0.5584467098053059, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132608410775836}, {"n": 4, "root_chord": 0.12037555129318099, "tip_chord": 0.061110620718301444, "span": 0.11037922595902985, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482767395281394}, {"top_radius": 0.0643660431074367, "bottom_radius": 0.043149629865944894, "length": 0.0601323265397992, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001393912911225, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172611405913414, "upper_button_position": 0.08287825069978105}], "rail_length": 5, "inclination": 84.6054878376352, "heading": 52.128846137074156} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350288274041703, "mass": 16.044317054013533, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325900177642009, "I_33_without_motor": 0.029260090334757856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.019018751352325, "trigger": 800, "sampling_rate": 105, "lag": 1.507782431105564, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9112361032961492, "trigger": "apogee", "sampling_rate": 105, "lag": 1.576418196583415, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7386.232058802466, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247005369939866, "grain_number": 5, "grain_density": 1818.5190282522988, "grain_outer_radius": 0.03236752447095238, "grain_initial_inner_radius": 0.015229329060893934, "grain_initial_height": 0.12049313476296307, "grain_separation": 0.004797987316997205, "grains_center_of_mass_position": 0.3959481259555324, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025079210347778256, "throat_radius": 0.010915217259112533, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255464364964207}], "aerodynamic_surfaces": [{"length": 0.5564161359537333, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343717083661127}, {"n": 4, "root_chord": 0.11939341054903675, "tip_chord": 0.05995005122976178, "span": 0.11090787128810498, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500241035762672}, {"top_radius": 0.06362054540822017, "bottom_radius": 0.045179840770937826, "length": 0.06064995984361524, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000159483596521, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187399547493135, "upper_button_position": 0.08127599361033855}], "rail_length": 5, "inclination": 85.75856642478648, "heading": 52.898328652038} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350699391877167, "mass": 15.821052805834226, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32865512407438, "I_33_without_motor": 0.04873098673127014, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005746853996838, "trigger": 800, "sampling_rate": 105, "lag": 1.2957773038614397, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.007370947346326, "trigger": "apogee", "sampling_rate": 105, "lag": 1.510503141992439, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6666.704049133691, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032275657825147956, "grain_number": 5, "grain_density": 1826.2494005008487, "grain_outer_radius": 0.032726148094374324, "grain_initial_inner_radius": 0.015066684427793327, "grain_initial_height": 0.11966900524188862, "grain_separation": 0.005148997100322091, "grains_center_of_mass_position": 0.3978028492222004, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012755401334486128, "throat_radius": 0.010956920798014606, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550108975068184}], "aerodynamic_surfaces": [{"length": 0.5560036867170889, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334305742778419}, {"n": 4, "root_chord": 0.12018925594627812, "tip_chord": 0.05956356176106099, "span": 0.10995204031987145, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497859513185244}, {"top_radius": 0.062399777280240244, "bottom_radius": 0.04303562874574083, "length": 0.059921518623828225, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988761260728733, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175077282864825, "upper_button_position": 0.08136839778639082}], "rail_length": 5, "inclination": 85.42174397018958, "heading": 55.82123905482311} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0635067531731674, "mass": 16.199062715534293, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319221283868398, "I_33_without_motor": 0.03867719623870752, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.864232706276837, "trigger": 800, "sampling_rate": 105, "lag": 1.4519280485732, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9588536615726344, "trigger": "apogee", "sampling_rate": 105, "lag": 1.736245883564214, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6254.316463551493, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033133431454458524, "grain_number": 5, "grain_density": 1796.2923398158002, "grain_outer_radius": 0.03301513129906961, "grain_initial_inner_radius": 0.01584470383465413, "grain_initial_height": 0.120772528298804, "grain_separation": 0.00477407943037444, "grains_center_of_mass_position": 0.39805078124047194, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00033641233007913125, "throat_radius": 0.011476894674809033, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568872308200532}], "aerodynamic_surfaces": [{"length": 0.560046282711371, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329006073999532}, {"n": 4, "root_chord": 0.12006335718420556, "tip_chord": 0.060444727942538766, "span": 0.11021711169113492, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496001600921319}, {"top_radius": 0.06403647660772714, "bottom_radius": 0.04404705253392635, "length": 0.06074603485136259, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994006255415955, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178670676008958, "upper_button_position": 0.08153355794069972}], "rail_length": 5, "inclination": 83.36313921334146, "heading": 54.088849340123} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349898901772161, "mass": 15.722207396310253, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301880184634308, "I_33_without_motor": 0.05165998848440077, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916428338081104, "trigger": 800, "sampling_rate": 105, "lag": 1.5517967471756686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1210485205233278, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7479700155766906, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6685.113625932307, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273583273887633, "grain_number": 5, "grain_density": 1881.7084026160996, "grain_outer_radius": 0.03288599786831229, "grain_initial_inner_radius": 0.015045978567889463, "grain_initial_height": 0.11879651543149346, "grain_separation": 0.007777648750313566, "grains_center_of_mass_position": 0.39748498560127643, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004551663432214989, "throat_radius": 0.010301481257224295, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539969327106963}], "aerodynamic_surfaces": [{"length": 0.5583168320432121, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347275622606465}, {"n": 4, "root_chord": 0.1196694727826889, "tip_chord": 0.05982038703108163, "span": 0.11009656670254052, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493444746301632}, {"top_radius": 0.06337317665678267, "bottom_radius": 0.04358125518170916, "length": 0.061666955939427205, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000197786023387, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175389042205809, "upper_button_position": 0.08248087438175777}], "rail_length": 5, "inclination": 85.10362056725347, "heading": 53.31427028723717} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350897084458555, "mass": 14.998470285534841, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317737482253034, "I_33_without_motor": 0.020558961844493972, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.103495725961537, "trigger": 800, "sampling_rate": 105, "lag": 1.549922437111463, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1098140613977192, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3335697973638858, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6771.454373271171, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239291575423925, "grain_number": 5, "grain_density": 1865.1739866278635, "grain_outer_radius": 0.033002268558982376, "grain_initial_inner_radius": 0.014939781968150687, "grain_initial_height": 0.12135493389864205, "grain_separation": 0.004916564870068819, "grains_center_of_mass_position": 0.3983285247813036, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008948239931217601, "throat_radius": 0.010308991989054415, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547054756624905}], "aerodynamic_surfaces": [{"length": 0.5563734823698824, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351781267728707}, {"n": 4, "root_chord": 0.12041578401972322, "tip_chord": 0.059912768885122474, "span": 0.11078994136135825, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487000035050777}, {"top_radius": 0.0634731385241261, "bottom_radius": 0.04374126545420853, "length": 0.05937573948412866, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983038587258739, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195980360695443, "upper_button_position": 0.07870582265632953}], "rail_length": 5, "inclination": 87.15074484677669, "heading": 52.142424843623125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350319306975806, "mass": 14.777890880468227, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313299325359677, "I_33_without_motor": 0.0217104804391645, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.881386218750057, "trigger": 800, "sampling_rate": 105, "lag": 1.5151768552532492, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0245098784994875, "trigger": "apogee", "sampling_rate": 105, "lag": 1.558694295756964, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5419.232459088683, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0334893167591263, "grain_number": 5, "grain_density": 1812.0440469770897, "grain_outer_radius": 0.03351423496267414, "grain_initial_inner_radius": 0.015154076234006091, "grain_initial_height": 0.1214342869261388, "grain_separation": 0.005192271975023031, "grains_center_of_mass_position": 0.39667421000207065, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008295535045348639, "throat_radius": 0.011152038861780527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255275723663976}], "aerodynamic_surfaces": [{"length": 0.5571018660334127, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342197920376782}, {"n": 4, "root_chord": 0.12046319041724131, "tip_chord": 0.06033817367125807, "span": 0.10988981256969771, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502513155109972}, {"top_radius": 0.06424410237794247, "bottom_radius": 0.04485479114144693, "length": 0.05744527060726356, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988607837477897, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184682628119512, "upper_button_position": 0.08039252093583849}], "rail_length": 5, "inclination": 84.73170927548115, "heading": 54.77628549484833} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350830924409603, "mass": 15.81722441201441, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320604405197846, "I_33_without_motor": 0.04065208831094297, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908089607631668, "trigger": 800, "sampling_rate": 105, "lag": 1.4508095827586078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.076168484152747, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2180546816877285, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6099.237492185157, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032461993362404254, "grain_number": 5, "grain_density": 1828.7783457284406, "grain_outer_radius": 0.033555149265579155, "grain_initial_inner_radius": 0.014580219872818682, "grain_initial_height": 0.12055774055412737, "grain_separation": 0.006208418894144588, "grains_center_of_mass_position": 0.39768541476924474, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006639568055845599, "throat_radius": 0.011312197028210395, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255416741345136}], "aerodynamic_surfaces": [{"length": 0.5578419482029034, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329975724980452}, {"n": 4, "root_chord": 0.11969135345014446, "tip_chord": 0.05964943712214552, "span": 0.11005263476678913, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048741932386904}, {"top_radius": 0.06279509682893678, "bottom_radius": 0.042282381318099735, "length": 0.05941879253306589, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699967984242046, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198678985268771, "upper_button_position": 0.08010008571516891}], "rail_length": 5, "inclination": 82.82548276244023, "heading": 55.12074506829138} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349743559523423, "mass": 14.603516981889333, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309753078962396, "I_33_without_motor": 0.04348075197915556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974336088033231, "trigger": 800, "sampling_rate": 105, "lag": 1.6083636546396545, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9044809959430629, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4169049773335853, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6588.7778972326, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03367251525579984, "grain_number": 5, "grain_density": 1764.7475772923858, "grain_outer_radius": 0.03210919727622458, "grain_initial_inner_radius": 0.014925815296768985, "grain_initial_height": 0.12090371960649751, "grain_separation": 0.005788234128047314, "grains_center_of_mass_position": 0.3967547246626459, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00042150825973708575, "throat_radius": 0.010026691839883277, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544595156534568}], "aerodynamic_surfaces": [{"length": 0.5580135567564397, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338063337082156}, {"n": 4, "root_chord": 0.11984631992354125, "tip_chord": 0.05986631765258524, "span": 0.10978327969638671, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489025376699632}, {"top_radius": 0.06371520065496838, "bottom_radius": 0.04306356794688502, "length": 0.059129015651123516, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007570211697884, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183365669477182, "upper_button_position": 0.08242045422207023}], "rail_length": 5, "inclination": 86.85031889216704, "heading": 53.1137392431712} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350392507660191, "mass": 14.796778358013642, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316826718620083, "I_33_without_motor": 0.024562541956109206, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885244902657819, "trigger": 800, "sampling_rate": 105, "lag": 1.5738511618968665, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0589220231585652, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7300883242522453, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7861.840930584342, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301577758116889, "grain_number": 5, "grain_density": 1751.754873573745, "grain_outer_radius": 0.03302084232460985, "grain_initial_inner_radius": 0.015568171912042912, "grain_initial_height": 0.11993053440505161, "grain_separation": 0.004084155112517415, "grains_center_of_mass_position": 0.3970368352937043, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.502030967039203e-05, "throat_radius": 0.010551442054175351, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545654199234857}], "aerodynamic_surfaces": [{"length": 0.5589773284291976, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1312344874984877}, {"n": 4, "root_chord": 0.12063283767609871, "tip_chord": 0.061595446741997746, "span": 0.10964936995687315, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497160125034128}, {"top_radius": 0.06604004472780134, "bottom_radius": 0.0437940181023233, "length": 0.06088864374203658, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699433759861041, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616631163206998, "upper_button_position": 0.08280259665404299}], "rail_length": 5, "inclination": 83.7716568860205, "heading": 49.80142079428342} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349673146070925, "mass": 15.39132594441265, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322928287821411, "I_33_without_motor": 0.0123068429024768, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913704493840372, "trigger": 800, "sampling_rate": 105, "lag": 1.655134768405101, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0813958795841163, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5913088487070306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7478.561434877835, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330434685155811, "grain_number": 5, "grain_density": 1724.8830404902267, "grain_outer_radius": 0.03280156155063834, "grain_initial_inner_radius": 0.01471681308107096, "grain_initial_height": 0.11988217049155234, "grain_separation": 0.005397020894477585, "grains_center_of_mass_position": 0.3976906248057454, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010287941733998498, "throat_radius": 0.011650938268496494, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569055781898626}], "aerodynamic_surfaces": [{"length": 0.5581182930817026, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1317934143910204}, {"n": 4, "root_chord": 0.11941109137700971, "tip_chord": 0.06030058437312828, "span": 0.10989717728893442, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496441631172182}, {"top_radius": 0.06373392765748141, "bottom_radius": 0.04329496667540894, "length": 0.060539317802428, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986019316870675, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164384314829218, "upper_button_position": 0.08216350020414576}], "rail_length": 5, "inclination": 85.01287459737024, "heading": 53.1711266637433} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350684339384977, "mass": 15.317804708456025, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317217469480357, "I_33_without_motor": 0.04880436458238535, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952318619135188, "trigger": 800, "sampling_rate": 105, "lag": 1.5939448419249447, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.963188412689087, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6432837775202866, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4612.125220138124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03419521187247087, "grain_number": 5, "grain_density": 1710.9953146913683, "grain_outer_radius": 0.03308958225584961, "grain_initial_inner_radius": 0.01444071200604207, "grain_initial_height": 0.11963950934226544, "grain_separation": 0.003494743198697279, "grains_center_of_mass_position": 0.3958106537730422, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018654420917057879, "throat_radius": 0.011204664017389423, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531654749925847}], "aerodynamic_surfaces": [{"length": 0.5574091293424351, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1356885230909655}, {"n": 4, "root_chord": 0.11973317319923739, "tip_chord": 0.06029312056512492, "span": 0.11061500593143946, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490856584932522}, {"top_radius": 0.06437641216784508, "bottom_radius": 0.0437156225404265, "length": 0.059581187657196354, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986522120392317, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.620035821128957, "upper_button_position": 0.07861639091027461}], "rail_length": 5, "inclination": 85.04086675534593, "heading": 49.26106872742935} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06351423288518672, "mass": 15.933505870789686, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316957300804385, "I_33_without_motor": 0.0415781911870391, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8983464897688, "trigger": 800, "sampling_rate": 105, "lag": 1.2973072307036402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9830377438480496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5952261565726644, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6259.413491038417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032811910038563326, "grain_number": 5, "grain_density": 1849.7625226113912, "grain_outer_radius": 0.03363403680103086, "grain_initial_inner_radius": 0.015508618798152308, "grain_initial_height": 0.11936115168584055, "grain_separation": 0.006080463737523268, "grains_center_of_mass_position": 0.39687538672519906, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0020658408799700233, "throat_radius": 0.010702542520285763, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254539137116838}], "aerodynamic_surfaces": [{"length": 0.559442031497557, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348707650999788}, {"n": 4, "root_chord": 0.11939696278826778, "tip_chord": 0.059841030203634196, "span": 0.11095695824939607, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050470123184061}, {"top_radius": 0.06303510193893488, "bottom_radius": 0.043343294253564084, "length": 0.06015935429914722, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013507539315993, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194109994407165, "upper_button_position": 0.08193975449088275}], "rail_length": 5, "inclination": 84.64337448520968, "heading": 53.8942816836968} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349566880549241, "mass": 15.209655146678967, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307579476652271, "I_33_without_motor": 0.038142227632869466, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.118637842869937, "trigger": 800, "sampling_rate": 105, "lag": 1.4850962738026914, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.938422311689282, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4429806304178427, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7189.470228649811, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327149681075643, "grain_number": 5, "grain_density": 1782.0676738460681, "grain_outer_radius": 0.03291832514492976, "grain_initial_inner_radius": 0.014605915227839886, "grain_initial_height": 0.11959085578924503, "grain_separation": 0.005582470964103373, "grains_center_of_mass_position": 0.39696800701780693, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008002793935647448, "throat_radius": 0.010796470480638537, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545442193255143}], "aerodynamic_surfaces": [{"length": 0.5587719020643478, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1358750834691913}, {"n": 4, "root_chord": 0.12001336741638016, "tip_chord": 0.06032126694719816, "span": 0.11002998765805046, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485693211665774}, {"top_radius": 0.06313029862696792, "bottom_radius": 0.04285518149279612, "length": 0.06192639145227479, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014488563820731, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175908545914532, "upper_button_position": 0.08385800179061986}], "rail_length": 5, "inclination": 84.54671500815526, "heading": 51.453417399618075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350167452432469, "mass": 15.765172856817665, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313115197658464, "I_33_without_motor": 0.023215049254058574, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077286875696439, "trigger": 800, "sampling_rate": 105, "lag": 1.4834909169992556, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.08305893688785, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5632784276611902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6914.607843137931, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331001853347609, "grain_number": 5, "grain_density": 1893.958040162633, "grain_outer_radius": 0.033493217385422026, "grain_initial_inner_radius": 0.014941565646522662, "grain_initial_height": 0.12069015694110509, "grain_separation": 0.0048627525361055355, "grains_center_of_mass_position": 0.39733018190655467, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017355502364143282, "throat_radius": 0.010437207270918271, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538070189907122}], "aerodynamic_surfaces": [{"length": 0.5585954010028936, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134659359116568}, {"n": 4, "root_chord": 0.1198905289446429, "tip_chord": 0.06032270470847246, "span": 0.11146199305531894, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488801539189716}, {"top_radius": 0.06391437063072429, "bottom_radius": 0.043831533690939437, "length": 0.06018362355724476, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989903751340436, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617965606404669, "upper_button_position": 0.08102476872937459}], "rail_length": 5, "inclination": 84.68176154576784, "heading": 54.17296818410099} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350476229618916, "mass": 15.737942489511626, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3259893405811605, "I_33_without_motor": 0.027003256309533284, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959094662283425, "trigger": 800, "sampling_rate": 105, "lag": 1.4697380681147614, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0260481167958617, "trigger": "apogee", "sampling_rate": 105, "lag": 1.477568201664112, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5503.485074814133, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03402772956838562, "grain_number": 5, "grain_density": 1787.6489519106888, "grain_outer_radius": 0.03324645774447989, "grain_initial_inner_radius": 0.014720530149305393, "grain_initial_height": 0.12063942073448998, "grain_separation": 0.003854071485112296, "grains_center_of_mass_position": 0.3961286338260122, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014013456037623249, "throat_radius": 0.010788068053289142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536370328103699}], "aerodynamic_surfaces": [{"length": 0.5582898022924815, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346742325620256}, {"n": 4, "root_chord": 0.12009709600416087, "tip_chord": 0.05988834034980403, "span": 0.11040978077715939, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502176125489877}, {"top_radius": 0.06400022474469012, "bottom_radius": 0.0423882574072207, "length": 0.05869392505305384, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994383282208398, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189286277148652, "upper_button_position": 0.08050970050597461}], "rail_length": 5, "inclination": 83.48906535231214, "heading": 52.468909748177815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350554654068905, "mass": 15.317755193913833, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318029907561218, "I_33_without_motor": 0.03957467927429755, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873621264234329, "trigger": 800, "sampling_rate": 105, "lag": 1.4381743919886625, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9301748687325935, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7542104043042186, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4630.415445497931, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276914790520007, "grain_number": 5, "grain_density": 1782.843282315904, "grain_outer_radius": 0.03308439551362254, "grain_initial_inner_radius": 0.01433507072476243, "grain_initial_height": 0.12092951084394456, "grain_separation": 0.0038262155025493017, "grains_center_of_mass_position": 0.39615196993724877, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010052584161114352, "throat_radius": 0.010569212344075776, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542517689186143}], "aerodynamic_surfaces": [{"length": 0.5579166450259603, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333013245912402}, {"n": 4, "root_chord": 0.11955852627732316, "tip_chord": 0.05967653033634155, "span": 0.11026874484889639, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0475672950267956}, {"top_radius": 0.06307115501511477, "bottom_radius": 0.04462963405529092, "length": 0.06128987208783556, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007096412294812, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180788335260321, "upper_button_position": 0.0826308077034491}], "rail_length": 5, "inclination": 86.11220922255153, "heading": 52.89866149530115} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349082882228409, "mass": 15.220281557707096, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319997747911126, "I_33_without_motor": 0.03258640758955905, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924206985899366, "trigger": 800, "sampling_rate": 105, "lag": 1.481097398016999, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9783202365774889, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4298650833630664, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8240.694305900417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350887270312163, "grain_number": 5, "grain_density": 1737.115098919301, "grain_outer_radius": 0.03303789415865708, "grain_initial_inner_radius": 0.015121975404089877, "grain_initial_height": 0.12208597151632199, "grain_separation": 0.005002166932120158, "grains_center_of_mass_position": 0.39598657146544447, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0022642513571435067, "throat_radius": 0.011211736357648378, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565326503866108}], "aerodynamic_surfaces": [{"length": 0.5593591094319647, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337568667491105}, {"n": 4, "root_chord": 0.11973006696093046, "tip_chord": 0.05990493255943506, "span": 0.11000037845996426, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507405494687234}, {"top_radius": 0.06391450500789973, "bottom_radius": 0.04188451772487153, "length": 0.05939100293448318, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987362493335005, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173977239101301, "upper_button_position": 0.08133852542337039}], "rail_length": 5, "inclination": 85.75140264645093, "heading": 55.92723342439991} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350454884659375, "mass": 15.575793943336066, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3045764984106425, "I_33_without_motor": 0.032741418764111505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125484943678348, "trigger": 800, "sampling_rate": 105, "lag": 1.48050589541669, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9739382656338366, "trigger": "apogee", "sampling_rate": 105, "lag": 1.246859371811499, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6424.345465794748, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323134651574753, "grain_number": 5, "grain_density": 1833.2885304333504, "grain_outer_radius": 0.03321581443622588, "grain_initial_inner_radius": 0.015029946795461813, "grain_initial_height": 0.12089219390325275, "grain_separation": 0.005755512374230166, "grains_center_of_mass_position": 0.3978098016313718, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004306889097946384, "throat_radius": 0.010672892441090374, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2518068141198118}], "aerodynamic_surfaces": [{"length": 0.5577075443850577, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134506371565343}, {"n": 4, "root_chord": 0.1196840511625688, "tip_chord": 0.06035436079017904, "span": 0.11097774674606789, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486929632415978}, {"top_radius": 0.062427614509980814, "bottom_radius": 0.04321247216413305, "length": 0.06056295500882864, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989679166627843, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174164857420293, "upper_button_position": 0.08155143092075501}], "rail_length": 5, "inclination": 85.00311538712113, "heading": 51.43710667290733} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350029685328268, "mass": 15.066377893121183, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314056036843193, "I_33_without_motor": 0.02970389819190481, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.007271179175723, "trigger": 800, "sampling_rate": 105, "lag": 1.3875430093711345, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9351201260781865, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6045760613202042, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7482.886923373837, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03207522307769929, "grain_number": 5, "grain_density": 1745.8825118038887, "grain_outer_radius": 0.03304525529748037, "grain_initial_inner_radius": 0.014560591025697364, "grain_initial_height": 0.11967507092425923, "grain_separation": 0.005051895599880892, "grains_center_of_mass_position": 0.39622890633731017, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013392645523836635, "throat_radius": 0.01080076188192141, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546793957707565}], "aerodynamic_surfaces": [{"length": 0.5575223798707428, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133117621226413}, {"n": 4, "root_chord": 0.12008053775237337, "tip_chord": 0.06012002683661644, "span": 0.10952085276562491, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048615863485334}, {"top_radius": 0.06375654214181165, "bottom_radius": 0.04420097057597581, "length": 0.05963164568665059, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985277016899764, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166134683013736, "upper_button_position": 0.08191423338860271}], "rail_length": 5, "inclination": 84.22782965881055, "heading": 52.31499802621974} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350707380807287, "mass": 15.479954788878379, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318210886322071, "I_33_without_motor": 0.028325091989621628, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.026604564520447, "trigger": 800, "sampling_rate": 105, "lag": 1.5589762038862598, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0248207671489709, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8685259422429505, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6053.594889167565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285614686598662, "grain_number": 5, "grain_density": 1820.6127360552296, "grain_outer_radius": 0.033671585108889214, "grain_initial_inner_radius": 0.015299845187456675, "grain_initial_height": 0.12029320113713864, "grain_separation": 0.005601808918462693, "grains_center_of_mass_position": 0.39728689568337305, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015246980023356452, "throat_radius": 0.011529344786680527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548947952558676}], "aerodynamic_surfaces": [{"length": 0.5580959563573027, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343815839748497}, {"n": 4, "root_chord": 0.12120255139504334, "tip_chord": 0.060670357562923105, "span": 0.10968920515358886, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508903223114139}, {"top_radius": 0.06218890611712263, "bottom_radius": 0.044013238155710274, "length": 0.06049815429317426, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996482925172948, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176327189520902, "upper_button_position": 0.08201557356520461}], "rail_length": 5, "inclination": 84.8313558250421, "heading": 51.64816776221661} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.063504364336264, "mass": 15.577014347678256, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316872653870287, "I_33_without_motor": 0.04684194588129432, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.053782925950255, "trigger": 800, "sampling_rate": 105, "lag": 1.6092902062361685, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9746685392137535, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5016831694907844, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6416.782374952336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248176428415398, "grain_number": 5, "grain_density": 1864.9662643417007, "grain_outer_radius": 0.032864405056241504, "grain_initial_inner_radius": 0.014524781064739948, "grain_initial_height": 0.12057988275129841, "grain_separation": 0.004183618937047273, "grains_center_of_mass_position": 0.39741171425971517, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006954014316442791, "throat_radius": 0.011034974564439684, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536742310540916}], "aerodynamic_surfaces": [{"length": 0.5582170125686764, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347421693224593}, {"n": 4, "root_chord": 0.12024315435945944, "tip_chord": 0.0589772673879039, "span": 0.1101187617398641, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047307318754066}, {"top_radius": 0.06601214484312734, "bottom_radius": 0.044760777443226964, "length": 0.058336815705963094, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991878726847791, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200487161818139, "upper_button_position": 0.07913915650296521}], "rail_length": 5, "inclination": 85.89911061320122, "heading": 50.48512685939315} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350107701496381, "mass": 16.224114228951116, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318090123657085, "I_33_without_motor": 0.03446392354368619, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.145604373488577, "trigger": 800, "sampling_rate": 105, "lag": 1.4475853673195802, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9869974352723179, "trigger": "apogee", "sampling_rate": 105, "lag": 1.555555561248939, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7446.941931902455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375195674849046, "grain_number": 5, "grain_density": 1823.0181290375199, "grain_outer_radius": 0.033122881384274064, "grain_initial_inner_radius": 0.014798007478156114, "grain_initial_height": 0.12110518585518532, "grain_separation": 0.007542708874304655, "grains_center_of_mass_position": 0.39681226906559597, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00030018147572222664, "throat_radius": 0.011536895953893995, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561288750182327}], "aerodynamic_surfaces": [{"length": 0.5591736876077531, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343795355530535}, {"n": 4, "root_chord": 0.11999693151319057, "tip_chord": 0.05914311902003162, "span": 0.11076737804957855, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051874870293988}, {"top_radius": 0.06382877203024756, "bottom_radius": 0.042081912693108556, "length": 0.06122123533246738, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000697207521237, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175150699545793, "upper_button_position": 0.08255465079754443}], "rail_length": 5, "inclination": 83.17774948192276, "heading": 50.65996553046244} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350090991874352, "mass": 15.904802697707549, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335485083812596, "I_33_without_motor": 0.036407292525584764, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.942021626203347, "trigger": 800, "sampling_rate": 105, "lag": 1.6360240581105034, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.98326097797749, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3179832538302003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8468.759088928255, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033223114437832914, "grain_number": 5, "grain_density": 1842.7337868578397, "grain_outer_radius": 0.033201773781822506, "grain_initial_inner_radius": 0.014445201170566463, "grain_initial_height": 0.11836681108209275, "grain_separation": 0.0043903967413711515, "grains_center_of_mass_position": 0.39712719544060743, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017967484537934819, "throat_radius": 0.01163104047068946, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557335917911747}], "aerodynamic_surfaces": [{"length": 0.5601549055277314, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334054419648232}, {"n": 4, "root_chord": 0.12034437374005641, "tip_chord": 0.059735338133124295, "span": 0.11066873278331008, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483558410957776}, {"top_radius": 0.06342829381754868, "bottom_radius": 0.0431452009516794, "length": 0.05900593995393827, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000064936516026, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616907330360803, "upper_button_position": 0.08309916329079958}], "rail_length": 5, "inclination": 83.46302563616625, "heading": 54.3725217177071} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350042574034626, "mass": 15.416090025141125, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32198630797265, "I_33_without_motor": 0.028922681968413758, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916916096301291, "trigger": 800, "sampling_rate": 105, "lag": 1.5632565739421544, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0484435929555278, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5998903887302913, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6007.602458728309, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033193311522475726, "grain_number": 5, "grain_density": 1851.1953899170087, "grain_outer_radius": 0.03294400943123391, "grain_initial_inner_radius": 0.015232047206584809, "grain_initial_height": 0.12077966708231988, "grain_separation": 0.004116036503100613, "grains_center_of_mass_position": 0.3965791066533947, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004350109420159302, "throat_radius": 0.010416445190966815, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254985896224875}], "aerodynamic_surfaces": [{"length": 0.5580034371399888, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334533757992908}, {"n": 4, "root_chord": 0.12002028572543344, "tip_chord": 0.05933581025413382, "span": 0.11063296861822786, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049527689671282}, {"top_radius": 0.06490810263474049, "bottom_radius": 0.04336236562332606, "length": 0.05896224457591015, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998260842678888, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175642342913025, "upper_button_position": 0.08226184997658637}], "rail_length": 5, "inclination": 85.95185572575598, "heading": 54.42815584972668} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350355048587777, "mass": 15.522008876839557, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309593147108469, "I_33_without_motor": 0.03301214737597261, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.828380868370486, "trigger": 800, "sampling_rate": 105, "lag": 1.618738384529881, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.917721372009533, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8838040585219882, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7000.195312236084, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348812011145412, "grain_number": 5, "grain_density": 1832.7920735641542, "grain_outer_radius": 0.033647263624879485, "grain_initial_inner_radius": 0.01467405120298908, "grain_initial_height": 0.11997844687960592, "grain_separation": 0.006130041769342161, "grains_center_of_mass_position": 0.39740469421927616, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001612734200199196, "throat_radius": 0.010188143104148872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555743265838832}], "aerodynamic_surfaces": [{"length": 0.559297201834306, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326492377935748}, {"n": 4, "root_chord": 0.12024695639959587, "tip_chord": 0.05968709797462842, "span": 0.11068837772133554, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506020030982253}, {"top_radius": 0.06211319824963878, "bottom_radius": 0.04449205197735512, "length": 0.06004529091555985, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994263085523564, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179191900970524, "upper_button_position": 0.081507118455304}], "rail_length": 5, "inclination": 83.42896601800047, "heading": 54.21471341373417} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349053597075997, "mass": 14.887290025142912, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332700252164449, "I_33_without_motor": 0.03282106532145743, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956211622952148, "trigger": 800, "sampling_rate": 105, "lag": 1.570384664400308, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0382089118057536, "trigger": "apogee", "sampling_rate": 105, "lag": 1.943585152996374, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5916.245783860689, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320792957083623, "grain_number": 5, "grain_density": 1857.7312392110841, "grain_outer_radius": 0.032895445761868015, "grain_initial_inner_radius": 0.015215163877973215, "grain_initial_height": 0.12027801364898981, "grain_separation": 0.006280345888354306, "grains_center_of_mass_position": 0.3967887384527946, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00048559612019355615, "throat_radius": 0.011225183353755655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547042690704056}], "aerodynamic_surfaces": [{"length": 0.5590085517993265, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340892476717674}, {"n": 4, "root_chord": 0.11962286354881255, "tip_chord": 0.06005927687120738, "span": 0.11081617750248181, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501845693910203}, {"top_radius": 0.062217577281200184, "bottom_radius": 0.04615663523957653, "length": 0.059858031359456304, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987121115446517, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61928163696385, "upper_button_position": 0.07943047458080177}], "rail_length": 5, "inclination": 84.766040073892, "heading": 53.9612811224555} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350980810565254, "mass": 15.594970424257019, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329049034065322, "I_33_without_motor": 0.03244515018555449, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984777426626145, "trigger": 800, "sampling_rate": 105, "lag": 1.6130138692693405, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0405734212182374, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3227676314079395, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7051.743974991911, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256472806600695, "grain_number": 5, "grain_density": 1872.4802056787412, "grain_outer_radius": 0.03289715228010311, "grain_initial_inner_radius": 0.015122319598498933, "grain_initial_height": 0.11821806370008622, "grain_separation": 0.0061287298013688605, "grains_center_of_mass_position": 0.3960802356711631, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015329899931580497, "throat_radius": 0.010640651179845, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256780702931707}], "aerodynamic_surfaces": [{"length": 0.55934999802088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351439265566297}, {"n": 4, "root_chord": 0.12083510876515671, "tip_chord": 0.059890534331671165, "span": 0.11030389144496713, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503203267301964}, {"top_radius": 0.06468265815194345, "bottom_radius": 0.04534023802871909, "length": 0.05989834214447587, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013633209175109, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168448710981224, "upper_button_position": 0.0845184498193885}], "rail_length": 5, "inclination": 84.94037223695648, "heading": 55.41169384977013} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349559521553617, "mass": 14.981877428447321, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324833443258268, "I_33_without_motor": 0.04526019032633237, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031983500452094, "trigger": 800, "sampling_rate": 105, "lag": 1.563075176035668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8661992631387225, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8500918860089082, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7489.20166945403, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032241256538161046, "grain_number": 5, "grain_density": 1836.1592782733003, "grain_outer_radius": 0.03274841030229667, "grain_initial_inner_radius": 0.015198401760179088, "grain_initial_height": 0.12000721415835305, "grain_separation": 0.005545077870872106, "grains_center_of_mass_position": 0.3966897667300016, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001145107654091696, "throat_radius": 0.010419404006696243, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552643745415841}], "aerodynamic_surfaces": [{"length": 0.5590857464315206, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344960491804512}, {"n": 4, "root_chord": 0.12009012796232586, "tip_chord": 0.06049221192968604, "span": 0.11034275038387745, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500745728280525}, {"top_radius": 0.06255458149551614, "bottom_radius": 0.043602985665167265, "length": 0.05994992092315143, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003578009978595, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195887307195728, "upper_button_position": 0.08076907027828673}], "rail_length": 5, "inclination": 83.41960093150337, "heading": 51.947363168431174} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0634886141068208, "mass": 16.067180694486982, "I_11_without_motor": 6.321, "I_22_without_motor": 6.344285263975397, "I_33_without_motor": 0.028854181979704255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.809664872231794, "trigger": 800, "sampling_rate": 105, "lag": 1.444277390387796, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0226172371498643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6395873428260355, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5714.709569981169, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249321455893528, "grain_number": 5, "grain_density": 1774.610700672463, "grain_outer_radius": 0.033485106793936875, "grain_initial_inner_radius": 0.015145146172586563, "grain_initial_height": 0.11937455512472261, "grain_separation": 0.00476440434440536, "grains_center_of_mass_position": 0.3956615772244012, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0028665825588268965, "throat_radius": 0.010314336128262016, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560800419315141}], "aerodynamic_surfaces": [{"length": 0.5592974878368064, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132610937710585}, {"n": 4, "root_chord": 0.12059983108493114, "tip_chord": 0.06044724408307024, "span": 0.11010599107370056, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483399009026833}, {"top_radius": 0.06342655686655059, "bottom_radius": 0.04312643406614467, "length": 0.05976306449024588, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012392965914643, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192325619090756, "upper_button_position": 0.08200673468238873}], "rail_length": 5, "inclination": 83.24245270689299, "heading": 55.42120041268247} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350070980967339, "mass": 15.16176441092866, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327174941590485, "I_33_without_motor": 0.04179193549389934, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.904020065791395, "trigger": 800, "sampling_rate": 105, "lag": 1.4869016875815206, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0976124539315455, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5146672466174376, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7377.511916199385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293314069719315, "grain_number": 5, "grain_density": 1840.1445923571468, "grain_outer_radius": 0.0330025651524716, "grain_initial_inner_radius": 0.015401584755787862, "grain_initial_height": 0.12088044376490382, "grain_separation": 0.0036739010428217386, "grains_center_of_mass_position": 0.39686360014876176, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012187947785555662, "throat_radius": 0.011023061956013663, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563757427902444}], "aerodynamic_surfaces": [{"length": 0.557295049520706, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134827444952176}, {"n": 4, "root_chord": 0.11993867173128116, "tip_chord": 0.05982353057943303, "span": 0.10925600722355662, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491910777770654}, {"top_radius": 0.062059513842721105, "bottom_radius": 0.045845711119197344, "length": 0.058183945646710235, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986547350755301, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190112772262406, "upper_button_position": 0.0796434578492895}], "rail_length": 5, "inclination": 84.14643654726746, "heading": 52.825945302752935} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06351097321773423, "mass": 15.56241228471256, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303904025962685, "I_33_without_motor": 0.01312659555280575, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.046104879095843, "trigger": 800, "sampling_rate": 105, "lag": 1.601155395970093, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0340109336332242, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6024442584846585, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6200.500911669871, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269699716015127, "grain_number": 5, "grain_density": 1859.9466746350633, "grain_outer_radius": 0.0330885005823308, "grain_initial_inner_radius": 0.01609626496979501, "grain_initial_height": 0.12075141489451467, "grain_separation": 0.005723228384964181, "grains_center_of_mass_position": 0.3967163030539205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001241556696208446, "throat_radius": 0.0106561752319036, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254262053446642}], "aerodynamic_surfaces": [{"length": 0.5593046209116922, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332856553453232}, {"n": 4, "root_chord": 0.12055695746913168, "tip_chord": 0.060065685638743926, "span": 0.11095189247755868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510959549032606}, {"top_radius": 0.06294542219401995, "bottom_radius": 0.04316328065455426, "length": 0.060480883192852705, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992197846151538, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178367348822084, "upper_button_position": 0.08138304973294541}], "rail_length": 5, "inclination": 83.83095027003907, "heading": 51.66487976767092} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350216396057552, "mass": 15.650654825788518, "I_11_without_motor": 6.321, "I_22_without_motor": 6.2930049952234555, "I_33_without_motor": 0.025653536830204257, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986173291880634, "trigger": 800, "sampling_rate": 105, "lag": 1.4204343079819473, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9412218268030474, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7838728880099568, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5212.363969080781, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0337828376874008, "grain_number": 5, "grain_density": 1794.863892192482, "grain_outer_radius": 0.0330347947062013, "grain_initial_inner_radius": 0.015456533039013487, "grain_initial_height": 0.12194448641787489, "grain_separation": 0.004026447481443489, "grains_center_of_mass_position": 0.3975604378343574, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005725310667855966, "throat_radius": 0.010759401896250374, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547798646344224}], "aerodynamic_surfaces": [{"length": 0.5584244169964271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334678741471191}, {"n": 4, "root_chord": 0.1203762876537493, "tip_chord": 0.060245283190676485, "span": 0.11028048219255038, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509965594924644}, {"top_radius": 0.06351658539194285, "bottom_radius": 0.04201734301908633, "length": 0.0592193829671038, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002252855865998, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170374276756773, "upper_button_position": 0.08318785791092254}], "rail_length": 5, "inclination": 84.60860201573632, "heading": 53.44339167765524} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349599313397085, "mass": 14.63661466347575, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3165793818603895, "I_33_without_motor": 0.031652103153779386, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.950452012697637, "trigger": 800, "sampling_rate": 105, "lag": 1.378382326444069, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.057341378094228, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3201101884561441, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5352.68602580723, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321932120366496, "grain_number": 5, "grain_density": 1800.7452450422056, "grain_outer_radius": 0.03297741469724584, "grain_initial_inner_radius": 0.015173880835441668, "grain_initial_height": 0.11938956492302624, "grain_separation": 0.005707407151028062, "grains_center_of_mass_position": 0.3966840044917908, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00041281370631891237, "throat_radius": 0.011199921352069802, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557819710350981}], "aerodynamic_surfaces": [{"length": 0.5587475725918846, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349434418636304}, {"n": 4, "root_chord": 0.12013280476309719, "tip_chord": 0.06078088936249657, "span": 0.11046842069518044, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0464386942031767}, {"top_radius": 0.06227615299544844, "bottom_radius": 0.041689504289771286, "length": 0.06118544342257026, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004073729368004, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182441338137249, "upper_button_position": 0.08216323912307555}], "rail_length": 5, "inclination": 85.21767398468182, "heading": 50.8154656561457} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349836334078414, "mass": 14.933479160571766, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326333949857529, "I_33_without_motor": 0.023458886156183623, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.068966833807883, "trigger": 800, "sampling_rate": 105, "lag": 1.6361512343959796, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9270130925114347, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6400698589273082, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4538.292366882325, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351806092318179, "grain_number": 5, "grain_density": 1781.3580645114173, "grain_outer_radius": 0.032751937317919914, "grain_initial_inner_radius": 0.014891640149688242, "grain_initial_height": 0.11899117512756828, "grain_separation": 0.003610972806604981, "grains_center_of_mass_position": 0.3961691676512289, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00023529842222298132, "throat_radius": 0.010242143326723711, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545366339157473}], "aerodynamic_surfaces": [{"length": 0.5579244961412232, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353689650924503}, {"n": 4, "root_chord": 0.1191808374178724, "tip_chord": 0.060190924725249166, "span": 0.11087418124771752, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497329662025563}, {"top_radius": 0.06371853982987792, "bottom_radius": 0.04199558640127334, "length": 0.06078494322887584, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700961535711029, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173413258811103, "upper_button_position": 0.08362020982991869}], "rail_length": 5, "inclination": 84.3614589930867, "heading": 53.172987323614144} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349403388744378, "mass": 15.754233227666402, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333573960586209, "I_33_without_motor": 0.015570754809717424, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037087257770276, "trigger": 800, "sampling_rate": 105, "lag": 1.5097460091871708, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.872770484363232, "trigger": "apogee", "sampling_rate": 105, "lag": 1.952423152379134, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5329.6334603451905, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375807261374374, "grain_number": 5, "grain_density": 1891.2296039351234, "grain_outer_radius": 0.03186997877952587, "grain_initial_inner_radius": 0.015133533793832792, "grain_initial_height": 0.12046990439728159, "grain_separation": 0.005164152592508127, "grains_center_of_mass_position": 0.39483929400427775, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003212786909806322, "throat_radius": 0.011224929702219251, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558961910288688}], "aerodynamic_surfaces": [{"length": 0.5588598585280353, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1360047414259624}, {"n": 4, "root_chord": 0.12019372737337207, "tip_chord": 0.05929479102057719, "span": 0.11023694699192188, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486089203508338}, {"top_radius": 0.06355014336535393, "bottom_radius": 0.04377298736882903, "length": 0.0594496404538715, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998249122179755, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199108108930875, "upper_button_position": 0.07991410132488797}], "rail_length": 5, "inclination": 84.1708402238646, "heading": 54.05618254218703} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0634939935883631, "mass": 15.372727990843451, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311400967717081, "I_33_without_motor": 0.03194694001012864, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09140532722483, "trigger": 800, "sampling_rate": 105, "lag": 1.6654614038717226, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.964281026117568, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8425677915990166, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6886.458702306616, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03380362664532298, "grain_number": 5, "grain_density": 1817.299238651189, "grain_outer_radius": 0.03262542774059764, "grain_initial_inner_radius": 0.014905335338194095, "grain_initial_height": 0.12051687569347044, "grain_separation": 0.007121461319995117, "grains_center_of_mass_position": 0.3972898372720478, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007460951799287957, "throat_radius": 0.011288340393219036, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532495930302112}], "aerodynamic_surfaces": [{"length": 0.5589556112247774, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1313995722455958}, {"n": 4, "root_chord": 0.12092320745223262, "tip_chord": 0.05964532202861801, "span": 0.11008644281693726, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488595325472931}, {"top_radius": 0.06386478205298583, "bottom_radius": 0.045263812040992994, "length": 0.059365847417141446, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996501466662611, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195352975182139, "upper_button_position": 0.08011484914804723}], "rail_length": 5, "inclination": 84.85089202841745, "heading": 53.85793595402366} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349256437366971, "mass": 14.413325133667247, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330416258822674, "I_33_without_motor": 0.03977861016392752, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.144961689441223, "trigger": 800, "sampling_rate": 105, "lag": 1.5286365899216765, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9759371172065254, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4134613153487185, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6690.024943329209, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0333580166042124, "grain_number": 5, "grain_density": 1749.2095613640076, "grain_outer_radius": 0.032974050308360564, "grain_initial_inner_radius": 0.015074497978420202, "grain_initial_height": 0.11925876882803506, "grain_separation": 0.005550590982781787, "grains_center_of_mass_position": 0.3969876198429397, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025544075475467115, "throat_radius": 0.01151969294218036, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253091593755873}], "aerodynamic_surfaces": [{"length": 0.5573871063288081, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327688512588885}, {"n": 4, "root_chord": 0.11902955914707242, "tip_chord": 0.06078587177941458, "span": 0.11026058945566013, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505950141517033}, {"top_radius": 0.06451974628422646, "bottom_radius": 0.04228152948015605, "length": 0.06026704885424979, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002234967053224, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617664570516915, "upper_button_position": 0.08255892618840732}], "rail_length": 5, "inclination": 84.20763825682506, "heading": 53.663455052608285} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350833172935863, "mass": 15.74258481286786, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305742479313474, "I_33_without_motor": 0.018721448586489393, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051027005440403, "trigger": 800, "sampling_rate": 105, "lag": 1.236280008807039, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0519430184347411, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4011020861652579, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5873.562216237229, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307749141381339, "grain_number": 5, "grain_density": 1720.6891831143437, "grain_outer_radius": 0.033336452492083696, "grain_initial_inner_radius": 0.014827201318905666, "grain_initial_height": 0.11856222072062483, "grain_separation": 0.006129606364139953, "grains_center_of_mass_position": 0.39795537628992017, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.560387165058099e-05, "throat_radius": 0.011702204991311626, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559047663855962}], "aerodynamic_surfaces": [{"length": 0.5584515059266202, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132349040136473}, {"n": 4, "root_chord": 0.11946398851995838, "tip_chord": 0.059701865313897796, "span": 0.10920453815859706, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482742490971768}, {"top_radius": 0.062312825989896396, "bottom_radius": 0.04477859910780114, "length": 0.05899796256871815, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994282282054856, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192144563710902, "upper_button_position": 0.08021377183439538}], "rail_length": 5, "inclination": 82.39630723295733, "heading": 53.8597851537057} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349787896668029, "mass": 16.24266450008756, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325453229337194, "I_33_without_motor": 0.027392976397706274, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.981393696980561, "trigger": 800, "sampling_rate": 105, "lag": 1.3061133630011668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9786463205062484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5025920575528855, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6628.583503157343, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0339850573159836, "grain_number": 5, "grain_density": 1864.8799658415066, "grain_outer_radius": 0.03356702171332339, "grain_initial_inner_radius": 0.01494864060253506, "grain_initial_height": 0.11916839113336211, "grain_separation": 0.005491551964649676, "grains_center_of_mass_position": 0.3970071322319693, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006566266553806939, "throat_radius": 0.011167706719343739, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549129357884445}], "aerodynamic_surfaces": [{"length": 0.5586027371134656, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133446013847187}, {"n": 4, "root_chord": 0.12070684483881274, "tip_chord": 0.06045369352410334, "span": 0.10955790095603524, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049133904780211}, {"top_radius": 0.06383479113437018, "bottom_radius": 0.0439591001686058, "length": 0.06019392463554138, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987410510147878, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179990346225044, "upper_button_position": 0.0807420163922834}], "rail_length": 5, "inclination": 83.95244692646294, "heading": 54.2429026216737} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350533496288473, "mass": 14.98475678367554, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3194470975452335, "I_33_without_motor": 0.03094400153953502, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99793499673067, "trigger": 800, "sampling_rate": 105, "lag": 1.5683319632735402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0350139333833472, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6234523849378735, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6612.079181529753, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250363464191145, "grain_number": 5, "grain_density": 1829.8571485879322, "grain_outer_radius": 0.03284668233197168, "grain_initial_inner_radius": 0.014777717619139022, "grain_initial_height": 0.12065377576098824, "grain_separation": 0.0051445130516206165, "grains_center_of_mass_position": 0.39870505851557486, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010476935013389065, "throat_radius": 0.010890934530621378, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255293969462925}], "aerodynamic_surfaces": [{"length": 0.5561779620445177, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355217598665555}, {"n": 4, "root_chord": 0.1203853547524856, "tip_chord": 0.05969767689687844, "span": 0.10947519460914633, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051042938659576}, {"top_radius": 0.0622298741769254, "bottom_radius": 0.043974504000916556, "length": 0.06011714598155074, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698767251424549, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171580651826108, "upper_button_position": 0.08160918624193814}], "rail_length": 5, "inclination": 84.26548343955982, "heading": 56.21036340697723} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635038407861523, "mass": 15.732820361521977, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3198927750913745, "I_33_without_motor": 0.03783185118077682, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000466770696953, "trigger": 800, "sampling_rate": 105, "lag": 1.4073736442296387, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1823797780007261, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3331305858402773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7683.205966027957, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03378463570308234, "grain_number": 5, "grain_density": 1834.6003797901444, "grain_outer_radius": 0.032733723583881, "grain_initial_inner_radius": 0.014859012560617803, "grain_initial_height": 0.12039263923855797, "grain_separation": 0.004590994405599137, "grains_center_of_mass_position": 0.39804851955483156, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020896813865856236, "throat_radius": 0.010724775027459383, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551841373506054}], "aerodynamic_surfaces": [{"length": 0.558462719931744, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.130960977065315}, {"n": 4, "root_chord": 0.12053727932366917, "tip_chord": 0.05940302697385833, "span": 0.10903110994382041, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050300684899131}, {"top_radius": 0.06331782180274538, "bottom_radius": 0.04198270923468672, "length": 0.05993979293646871, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000911782619064, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174548425600775, "upper_button_position": 0.08263633570182882}], "rail_length": 5, "inclination": 83.86056253739591, "heading": 51.790081906409654} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349895598879383, "mass": 14.936677504089115, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312282269488567, "I_33_without_motor": 0.04741727479186802, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039278595118306, "trigger": 800, "sampling_rate": 105, "lag": 1.5334973347362, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9863288878207086, "trigger": "apogee", "sampling_rate": 105, "lag": 1.494717595086195, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6760.188613197262, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328310884443615, "grain_number": 5, "grain_density": 1866.8860541009244, "grain_outer_radius": 0.03298373233342427, "grain_initial_inner_radius": 0.01460043047179382, "grain_initial_height": 0.12024005005414361, "grain_separation": 0.004546059867869884, "grains_center_of_mass_position": 0.3968878540744007, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015646842924562706, "throat_radius": 0.010014180439532604, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544082054172145}], "aerodynamic_surfaces": [{"length": 0.5579641425544848, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323616866259065}, {"n": 4, "root_chord": 0.11943643154477443, "tip_chord": 0.059890226035505034, "span": 0.11107409036136394, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498219897573484}, {"top_radius": 0.06402697758734277, "bottom_radius": 0.04392637267963104, "length": 0.05961720789476425, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699353852824021, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6206878791652217, "upper_button_position": 0.07866597365879924}], "rail_length": 5, "inclination": 84.71663494300476, "heading": 50.719878110542524} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350822400441045, "mass": 15.56041353676845, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313344572143, "I_33_without_motor": 0.03859704614652953, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125381257001235, "trigger": 800, "sampling_rate": 105, "lag": 1.4994967781174124, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8835725125910601, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4347187552785583, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6753.254345733905, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033239303640082, "grain_number": 5, "grain_density": 1836.586649613336, "grain_outer_radius": 0.033367176736392515, "grain_initial_inner_radius": 0.014984725908609674, "grain_initial_height": 0.12054043703675348, "grain_separation": 0.004867475629606741, "grains_center_of_mass_position": 0.3952988218721786, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005597312255503131, "throat_radius": 0.011193662443984573, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255253784072494}], "aerodynamic_surfaces": [{"length": 0.5580826760564589, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135914371856836}, {"n": 4, "root_chord": 0.11980581394304228, "tip_chord": 0.060344617219377755, "span": 0.1102661192383796, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502510061897752}, {"top_radius": 0.06116317372842769, "bottom_radius": 0.04515080038420933, "length": 0.057179900933719684, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014824207477096, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173100145901687, "upper_button_position": 0.08417240615754096}], "rail_length": 5, "inclination": 85.87987732682903, "heading": 55.32871279720054} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349792579442586, "mass": 14.718321337221273, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331465049184066, "I_33_without_motor": 0.011026729062006572, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059140206789536, "trigger": 800, "sampling_rate": 105, "lag": 1.6216352631931323, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9500968425094658, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4602479210632766, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6690.1197055542725, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032358463677032656, "grain_number": 5, "grain_density": 1845.1258914023042, "grain_outer_radius": 0.032799097416191976, "grain_initial_inner_radius": 0.014573783430301933, "grain_initial_height": 0.11923466262289462, "grain_separation": 0.005633746892287961, "grains_center_of_mass_position": 0.395350621067536, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005173753460009867, "throat_radius": 0.01137842782548784, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533954603876014}], "aerodynamic_surfaces": [{"length": 0.5565577022607973, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348399191217662}, {"n": 4, "root_chord": 0.11989425599773276, "tip_chord": 0.06020135962435424, "span": 0.1099258177161092, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487513415638332}, {"top_radius": 0.0635195662332565, "bottom_radius": 0.04351027186561641, "length": 0.0597371229949774, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002759897601193, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191636305574811, "upper_button_position": 0.08111235920263815}], "rail_length": 5, "inclination": 85.35486441483883, "heading": 52.55376246025942} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349965913796951, "mass": 15.74137521700824, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314356348369021, "I_33_without_motor": 0.028329076693096235, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.796215496239299, "trigger": 800, "sampling_rate": 105, "lag": 1.6101041701340282, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9645025828383761, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6116894152904686, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5869.924039769586, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03379261933802013, "grain_number": 5, "grain_density": 1858.9417013506402, "grain_outer_radius": 0.03319223585358343, "grain_initial_inner_radius": 0.014852694324868397, "grain_initial_height": 0.12098384713559619, "grain_separation": 0.006867723333880229, "grains_center_of_mass_position": 0.39554171672500577, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018038736693129216, "throat_radius": 0.010209689735260178, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254006930973198}], "aerodynamic_surfaces": [{"length": 0.5599606126072845, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331913381658154}, {"n": 4, "root_chord": 0.12001314043059085, "tip_chord": 0.05952509739911067, "span": 0.10956623658531234, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496950762185815}, {"top_radius": 0.06453240655178234, "bottom_radius": 0.04349925188814924, "length": 0.05873412066303517, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012625073734523, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194956429266568, "upper_button_position": 0.08176686444679548}], "rail_length": 5, "inclination": 86.06391842433479, "heading": 53.91893798939323} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349760827255604, "mass": 16.496215769560596, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316234847478926, "I_33_without_motor": 0.05560892814520328, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079766647394353, "trigger": 800, "sampling_rate": 105, "lag": 1.51277781887962, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.994986772786876, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6267353621136222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6846.488097834698, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03257833025386445, "grain_number": 5, "grain_density": 1791.392209430536, "grain_outer_radius": 0.032881516977524575, "grain_initial_inner_radius": 0.014432583293831699, "grain_initial_height": 0.12065874784471246, "grain_separation": 0.005993335205711923, "grains_center_of_mass_position": 0.39669175119750727, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007197780710318176, "throat_radius": 0.011779100211813148, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557702487915614}], "aerodynamic_surfaces": [{"length": 0.5580812122728321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355827974426937}, {"n": 4, "root_chord": 0.12038154510002298, "tip_chord": 0.06024834139735713, "span": 0.10992900297935926, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489983942873382}, {"top_radius": 0.0649885317176783, "bottom_radius": 0.044535156909539714, "length": 0.06125975157995971, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990006202908198, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189752354392322, "upper_button_position": 0.08002538485158761}], "rail_length": 5, "inclination": 85.75454264559797, "heading": 50.76916076663843} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0634967543381922, "mass": 16.318011742906062, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323207745124666, "I_33_without_motor": 0.046431943081441565, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.844771237844713, "trigger": 800, "sampling_rate": 105, "lag": 1.6711514028734866, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1359395684030715, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2935466689755228, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6872.194000312043, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032563222477069276, "grain_number": 5, "grain_density": 1858.9996968935927, "grain_outer_radius": 0.032889076962025025, "grain_initial_inner_radius": 0.015066892451526915, "grain_initial_height": 0.1201758520541838, "grain_separation": 0.004729451361096205, "grains_center_of_mass_position": 0.39789849853501646, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005511280994760541, "throat_radius": 0.01207261891448197, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564946099097403}], "aerodynamic_surfaces": [{"length": 0.5586260718789803, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331651254533714}, {"n": 4, "root_chord": 0.12030176780193004, "tip_chord": 0.05942183271533807, "span": 0.10852321899960454, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507766255465039}, {"top_radius": 0.06316210522095973, "bottom_radius": 0.0420721528045183, "length": 0.06058888112485051, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983576034594074, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195294130084289, "upper_button_position": 0.07882819045097855}], "rail_length": 5, "inclination": 83.44697758625216, "heading": 56.766205966014724} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349318135408967, "mass": 14.951707136149382, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308685079031188, "I_33_without_motor": 0.05176236690536458, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03972464743124, "trigger": 800, "sampling_rate": 105, "lag": 1.5235333900093957, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9326114529212759, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4745739790687566, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6125.375886335419, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336172377368019, "grain_number": 5, "grain_density": 1802.9261839749709, "grain_outer_radius": 0.032864797486047724, "grain_initial_inner_radius": 0.015238944584497517, "grain_initial_height": 0.1215920865308087, "grain_separation": 0.005967068259605316, "grains_center_of_mass_position": 0.39688549837683834, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00011584004517692056, "throat_radius": 0.01148517779811335, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567267095540389}], "aerodynamic_surfaces": [{"length": 0.5574858192342768, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357929760912642}, {"n": 4, "root_chord": 0.11986714193137181, "tip_chord": 0.059472079352430623, "span": 0.1101016422896186, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049920328929315}, {"top_radius": 0.06248786027552832, "bottom_radius": 0.042656462916488426, "length": 0.05961586293825381, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015097903515047, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170889614148729, "upper_button_position": 0.08442082893663183}], "rail_length": 5, "inclination": 83.74672847931353, "heading": 52.878305113922} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635036020539578, "mass": 15.359690918537291, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324683819581831, "I_33_without_motor": 0.04115103855216691, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890767150114968, "trigger": 800, "sampling_rate": 105, "lag": 1.5466704513553813, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8876171899221599, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5127133323816198, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5639.961577736045, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03447896618207922, "grain_number": 5, "grain_density": 1828.164985374234, "grain_outer_radius": 0.03357393407265642, "grain_initial_inner_radius": 0.0149900754194918, "grain_initial_height": 0.12020100523804622, "grain_separation": 0.006726182750733195, "grains_center_of_mass_position": 0.39699823533596407, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00062373925206998, "throat_radius": 0.01099057058156429, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563644719346119}], "aerodynamic_surfaces": [{"length": 0.5571176629631894, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345604803190852}, {"n": 4, "root_chord": 0.12032743107227166, "tip_chord": 0.059590716562162555, "span": 0.10974015892567258, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509987155201195}, {"top_radius": 0.06169205482756996, "bottom_radius": 0.04374727918784012, "length": 0.059977655064160376, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990479283462205, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171468227068116, "upper_button_position": 0.08190110563940889}], "rail_length": 5, "inclination": 84.43794513442799, "heading": 50.733784359498785} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350803492077554, "mass": 14.73689149356911, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314041396969052, "I_33_without_motor": 0.03354734892182922, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95338170004942, "trigger": 800, "sampling_rate": 105, "lag": 1.482000808427873, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0073502010663664, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7994010072353501, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7380.064511733412, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254268856580937, "grain_number": 5, "grain_density": 1817.1837639355258, "grain_outer_radius": 0.03339637734026199, "grain_initial_inner_radius": 0.015377414326698669, "grain_initial_height": 0.12129381276765168, "grain_separation": 0.004447227532496221, "grains_center_of_mass_position": 0.3964767981473227, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006447520207496117, "throat_radius": 0.011947692832593027, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553658740878821}], "aerodynamic_surfaces": [{"length": 0.5576078716685412, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339855213590349}, {"n": 4, "root_chord": 0.12066908818232852, "tip_chord": 0.059631439138707415, "span": 0.110430172365801, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486229634831652}, {"top_radius": 0.062201790076229536, "bottom_radius": 0.042951467385389505, "length": 0.059955946276193724, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989433439076217, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618500678038154, "upper_button_position": 0.08044266586946769}], "rail_length": 5, "inclination": 84.06133207873195, "heading": 54.17643371798448} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350015246752558, "mass": 15.409374177981567, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326779923773911, "I_33_without_motor": 0.03182598388773019, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94467168799156, "trigger": 800, "sampling_rate": 105, "lag": 1.413831739449524, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0096238512758517, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3562913662256137, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4161.436495608052, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033279574381890824, "grain_number": 5, "grain_density": 1851.4841655751766, "grain_outer_radius": 0.033104053225684674, "grain_initial_inner_radius": 0.015109556622626563, "grain_initial_height": 0.12019194211418646, "grain_separation": 0.00348029162003042, "grains_center_of_mass_position": 0.3969258835471899, "center_of_dry_mass_position": 0.317, "nozzle_position": -8.82911509759567e-05, "throat_radius": 0.010907420049395825, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555495055299961}], "aerodynamic_surfaces": [{"length": 0.5581733225077693, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327695457576168}, {"n": 4, "root_chord": 0.11930442827603915, "tip_chord": 0.059446253131082975, "span": 0.10968935154754612, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049347942742788}, {"top_radius": 0.06265422697870271, "bottom_radius": 0.04367800352948674, "length": 0.05945253234630286, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001994355348397, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181456270692023, "upper_button_position": 0.08205380846563737}], "rail_length": 5, "inclination": 84.5204444861084, "heading": 54.40390144480826} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0635014296371819, "mass": 15.16142007740667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311194080163738, "I_33_without_motor": 0.04300678615022145, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.060805966273799, "trigger": 800, "sampling_rate": 105, "lag": 1.5023682143577806, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9518081488342063, "trigger": "apogee", "sampling_rate": 105, "lag": 1.740404952625746, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6947.323550362799, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285718264640058, "grain_number": 5, "grain_density": 1756.0603951030255, "grain_outer_radius": 0.0331317449135069, "grain_initial_inner_radius": 0.01563029552952159, "grain_initial_height": 0.120038167499132, "grain_separation": 0.005010322373122243, "grains_center_of_mass_position": 0.397548836717089, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008633109761220324, "throat_radius": 0.011777497343158645, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551987003353204}], "aerodynamic_surfaces": [{"length": 0.5568620796484929, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330935370009327}, {"n": 4, "root_chord": 0.12009727504584128, "tip_chord": 0.0600844843618971, "span": 0.1098297045974304, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498301134539854}, {"top_radius": 0.0631828290859389, "bottom_radius": 0.043370765817390126, "length": 0.061749253914787805, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004690253787863, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165153574548856, "upper_button_position": 0.08395366792390069}], "rail_length": 5, "inclination": 82.56324876587394, "heading": 52.71156380549302} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635047629962732, "mass": 16.01653986102141, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321429653833113, "I_33_without_motor": 0.03551507512132477, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.935009649084362, "trigger": 800, "sampling_rate": 105, "lag": 1.402162734763322, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0138222695647767, "trigger": "apogee", "sampling_rate": 105, "lag": 1.653642285207316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5931.549037048471, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033795916410641356, "grain_number": 5, "grain_density": 1831.4824588886172, "grain_outer_radius": 0.032621302323117815, "grain_initial_inner_radius": 0.01499835425990156, "grain_initial_height": 0.11850720435435398, "grain_separation": 0.004432554219101511, "grains_center_of_mass_position": 0.3983716846027081, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00015259856590578094, "throat_radius": 0.010693025487861841, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548113881117768}], "aerodynamic_surfaces": [{"length": 0.5587043097978195, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133305443478025}, {"n": 4, "root_chord": 0.12089401522535959, "tip_chord": 0.059279637686113724, "span": 0.11013130946484999, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050180751621229}, {"top_radius": 0.06071552396513335, "bottom_radius": 0.04471264949487653, "length": 0.06109306458897182, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006487557069333, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197316438565464, "upper_button_position": 0.08091711185038686}], "rail_length": 5, "inclination": 86.65640621964143, "heading": 54.03563078415969} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350139954825103, "mass": 15.771757098609303, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305779694473962, "I_33_without_motor": 0.0490186810860184, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079252460841763, "trigger": 800, "sampling_rate": 105, "lag": 1.4746484429075586, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.038455418895519, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4267837144563689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7712.982787009245, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03411449529447221, "grain_number": 5, "grain_density": 1783.8286411866964, "grain_outer_radius": 0.031928874829516174, "grain_initial_inner_radius": 0.014674803896594648, "grain_initial_height": 0.11843030679062103, "grain_separation": 0.002314721634348052, "grains_center_of_mass_position": 0.3953084602166875, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006847693544124795, "throat_radius": 0.010766472990590123, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536535582718134}], "aerodynamic_surfaces": [{"length": 0.558743588161591, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345304322805274}, {"n": 4, "root_chord": 0.11936622867002551, "tip_chord": 0.06014600169300525, "span": 0.10931515681791668, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502251213030143}, {"top_radius": 0.06355549507409915, "bottom_radius": 0.0443505639022923, "length": 0.06013714952246947, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987325585279155, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195900683225897, "upper_button_position": 0.07914249020532582}], "rail_length": 5, "inclination": 84.81192467392971, "heading": 52.84524872893145} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350393744751626, "mass": 15.4756336433756, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3258258208223275, "I_33_without_motor": 0.0385904894175243, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.999914950237331, "trigger": 800, "sampling_rate": 105, "lag": 1.5742361032879326, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9171319032591824, "trigger": "apogee", "sampling_rate": 105, "lag": 1.627088884337174, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5218.094418203055, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033116044293517825, "grain_number": 5, "grain_density": 1789.1110674317858, "grain_outer_radius": 0.033518970407460956, "grain_initial_inner_radius": 0.015188779607708477, "grain_initial_height": 0.119651628689796, "grain_separation": 0.004725457566049846, "grains_center_of_mass_position": 0.3969809854300442, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001988207020455178, "throat_radius": 0.01089866497187174, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552130606764769}], "aerodynamic_surfaces": [{"length": 0.5573265735306998, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345517223928911}, {"n": 4, "root_chord": 0.11911433582727898, "tip_chord": 0.0605910286368355, "span": 0.11059360232953239, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049930774691506}, {"top_radius": 0.06247180208054516, "bottom_radius": 0.04218472903673976, "length": 0.06023268712097427, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002599575175148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181210859369272, "upper_button_position": 0.08213887158058764}], "rail_length": 5, "inclination": 84.39552839356492, "heading": 54.4810293169001} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349748633052954, "mass": 15.423757163796836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324485120414689, "I_33_without_motor": 0.033093705814812184, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.18601129849732, "trigger": 800, "sampling_rate": 105, "lag": 1.4958579678032418, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0692124669507934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.086912175684398, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5490.883106163635, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278261821197437, "grain_number": 5, "grain_density": 1820.142093385113, "grain_outer_radius": 0.03276367485211082, "grain_initial_inner_radius": 0.014936500509237975, "grain_initial_height": 0.12040123410453674, "grain_separation": 0.00457692926138866, "grains_center_of_mass_position": 0.39672368637798955, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008944851412652386, "throat_radius": 0.010496279623071612, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564304854280215}], "aerodynamic_surfaces": [{"length": 0.5575901766439794, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133926353872063}, {"n": 4, "root_chord": 0.11905266485898729, "tip_chord": 0.06034100333624427, "span": 0.11024783209970158, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495121674177315}, {"top_radius": 0.06314120828061393, "bottom_radius": 0.04402924998562106, "length": 0.06172413441176648, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996159967133238, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165574653177126, "upper_button_position": 0.08305853139561115}], "rail_length": 5, "inclination": 84.0005507267018, "heading": 56.1032865226731} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350670657244596, "mass": 15.98357251394452, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331426872346246, "I_33_without_motor": 0.01839519172653053, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.097449831618636, "trigger": 800, "sampling_rate": 105, "lag": 1.5319663942479758, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.017654063340764, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4149369306458468, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7707.788749671088, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333988766689767, "grain_number": 5, "grain_density": 1856.1800540104775, "grain_outer_radius": 0.03302799567420098, "grain_initial_inner_radius": 0.015067328978271337, "grain_initial_height": 0.12068800723672235, "grain_separation": 0.005062728593338646, "grains_center_of_mass_position": 0.39694574573811886, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015791321989732778, "throat_radius": 0.011041958762161836, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550415988499861}], "aerodynamic_surfaces": [{"length": 0.5593292364355023, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347433584340862}, {"n": 4, "root_chord": 0.11970339486479631, "tip_chord": 0.06034238777036113, "span": 0.10961370634827798, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490586409890288}, {"top_radius": 0.06426593925841975, "bottom_radius": 0.042878343532437566, "length": 0.05998304078118651, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007650320940285, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183070630460291, "upper_button_position": 0.0824579690479994}], "rail_length": 5, "inclination": 86.1532884188181, "heading": 53.01138028786779} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349391097313077, "mass": 15.726120638009219, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3149515807535685, "I_33_without_motor": 0.03149447519349258, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916403990039528, "trigger": 800, "sampling_rate": 105, "lag": 1.503548647276021, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.10737843334934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6047620092624126, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6761.420982945564, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310627255631231, "grain_number": 5, "grain_density": 1775.3420942629043, "grain_outer_radius": 0.033032357571857254, "grain_initial_inner_radius": 0.014746999127180525, "grain_initial_height": 0.11949251193354876, "grain_separation": 0.004632908804806731, "grains_center_of_mass_position": 0.39663671698301767, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009595043667659198, "throat_radius": 0.010463604550916645, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544100285966728}], "aerodynamic_surfaces": [{"length": 0.5576576746580434, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328861257509826}, {"n": 4, "root_chord": 0.12006131815717515, "tip_chord": 0.060587044687937665, "span": 0.110109497203452, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506592868840212}, {"top_radius": 0.06375803240058117, "bottom_radius": 0.042905037304777995, "length": 0.059196763467197586, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699239620684426, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187840653142549, "upper_button_position": 0.08045555537017113}], "rail_length": 5, "inclination": 85.11943013530276, "heading": 50.66094924231645} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350138001114178, "mass": 15.602192752482157, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319353953827834, "I_33_without_motor": 0.030412350174298403, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.231092995456693, "trigger": 800, "sampling_rate": 105, "lag": 1.5882281786059667, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0276005439467162, "trigger": "apogee", "sampling_rate": 105, "lag": 1.47881464090282, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6689.505387911645, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03292653747820096, "grain_number": 5, "grain_density": 1814.4811248821154, "grain_outer_radius": 0.03284321286565058, "grain_initial_inner_radius": 0.015164893703658417, "grain_initial_height": 0.12070790985062231, "grain_separation": 0.005426946142688895, "grains_center_of_mass_position": 0.3986946588689667, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006832585661433923, "throat_radius": 0.010590979401207169, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546259733116567}], "aerodynamic_surfaces": [{"length": 0.5590085219265649, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134226909872238}, {"n": 4, "root_chord": 0.12081069382147774, "tip_chord": 0.05979833847078352, "span": 0.10953469591227148, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496655752484194}, {"top_radius": 0.06203432912049676, "bottom_radius": 0.04384677728146213, "length": 0.060742583454737896, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6979765708488986, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6203928434209383, "upper_button_position": 0.07758372742796038}], "rail_length": 5, "inclination": 85.0911649647349, "heading": 52.13989689586369} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349723045535424, "mass": 15.370305949521915, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316401456275962, "I_33_without_motor": 0.027566133663192556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063276590547746, "trigger": 800, "sampling_rate": 105, "lag": 1.5226185522958966, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0584239024828612, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5297152169916188, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7171.455321037732, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276982154254231, "grain_number": 5, "grain_density": 1726.3634967119842, "grain_outer_radius": 0.03248074488836279, "grain_initial_inner_radius": 0.014753105027047589, "grain_initial_height": 0.11892802221419642, "grain_separation": 0.0047834023406946756, "grains_center_of_mass_position": 0.3986049277048008, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.8810263950826603e-05, "throat_radius": 0.01116375376320135, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255431072654683}], "aerodynamic_surfaces": [{"length": 0.559228506950799, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339010697293983}, {"n": 4, "root_chord": 0.11984392050182621, "tip_chord": 0.059439443026882074, "span": 0.10992949739205038, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497225440169793}, {"top_radius": 0.06313014400552228, "bottom_radius": 0.04336062294019146, "length": 0.059134965501738614, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001904156416754, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200174609966744, "upper_button_position": 0.08017295464500096}], "rail_length": 5, "inclination": 85.59304757568675, "heading": 55.155965450602736} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350309993933803, "mass": 16.009559272131582, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304226516034162, "I_33_without_motor": 0.026910045014886495, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92730955381141, "trigger": 800, "sampling_rate": 105, "lag": 1.1884161686719203, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0405300083170266, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7973959294425799, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 9267.173690414793, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033073556090803924, "grain_number": 5, "grain_density": 1925.7135469340697, "grain_outer_radius": 0.03254600286760556, "grain_initial_inner_radius": 0.015042495002664687, "grain_initial_height": 0.1201962706135904, "grain_separation": 0.0050231328910842294, "grains_center_of_mass_position": 0.39659356047474975, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015018960554690644, "throat_radius": 0.010459793057602527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546726642704884}], "aerodynamic_surfaces": [{"length": 0.5556189027369665, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336363685174848}, {"n": 4, "root_chord": 0.12047878770541887, "tip_chord": 0.06031869828673501, "span": 0.10937630380789017, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488399737966903}, {"top_radius": 0.06312589418773877, "bottom_radius": 0.04466587339331902, "length": 0.0613277341932041, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991077635076558, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171428422915977, "upper_button_position": 0.08196492121605814}], "rail_length": 5, "inclination": 86.15538833749576, "heading": 49.58965928864696} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349767271203824, "mass": 15.708427955746837, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311689255607734, "I_33_without_motor": 0.041298387916554304, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.07539565305896, "trigger": 800, "sampling_rate": 105, "lag": 1.6019421958064362, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9809506478365488, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8150917090150884, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5277.736360614514, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03243420442227879, "grain_number": 5, "grain_density": 1790.0409779920058, "grain_outer_radius": 0.03331666652061369, "grain_initial_inner_radius": 0.015199436235493309, "grain_initial_height": 0.12002593946202307, "grain_separation": 0.007199441357245559, "grains_center_of_mass_position": 0.39596801304865736, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001450419629673433, "throat_radius": 0.010613701343408105, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255533464174096}], "aerodynamic_surfaces": [{"length": 0.5586889750259563, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340253759383938}, {"n": 4, "root_chord": 0.12044058586001219, "tip_chord": 0.059573864051775643, "span": 0.11042159670448809, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490979102283502}, {"top_radius": 0.062338642470736866, "bottom_radius": 0.04438230279559305, "length": 0.06101659732550543, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002297253214935, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187381901175232, "upper_button_position": 0.08149153520397034}], "rail_length": 5, "inclination": 85.69117536659019, "heading": 53.32596221872815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350494920802258, "mass": 15.975342290986697, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323027106315734, "I_33_without_motor": 0.036625435939699115, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.912840189775867, "trigger": 800, "sampling_rate": 105, "lag": 1.485512901470117, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0926045009260854, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5675993809979754, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6850.237370525196, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248323281135586, "grain_number": 5, "grain_density": 1839.7163890983172, "grain_outer_radius": 0.03368812970307774, "grain_initial_inner_radius": 0.01514382448479541, "grain_initial_height": 0.11973283959542338, "grain_separation": 0.007676424560111593, "grains_center_of_mass_position": 0.3963769641187597, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.425943254228786e-05, "throat_radius": 0.010792812051040889, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548639785148181}], "aerodynamic_surfaces": [{"length": 0.5575987967955347, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135906039630785}, {"n": 4, "root_chord": 0.1200987037980279, "tip_chord": 0.060716548554079736, "span": 0.10918439391829583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048555105109233}, {"top_radius": 0.06439222473525402, "bottom_radius": 0.04221201297345741, "length": 0.061764198521487394, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010727254837025, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179257422876268, "upper_button_position": 0.08314698319607572}], "rail_length": 5, "inclination": 83.77822440699053, "heading": 53.59327194294548} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349097280396451, "mass": 15.327689276302763, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312352071969141, "I_33_without_motor": 0.029262320406559017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.115493164103471, "trigger": 800, "sampling_rate": 105, "lag": 1.5379853137366932, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.886651782392229, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4721145477203983, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5678.239571120625, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286674686147231, "grain_number": 5, "grain_density": 1742.8194098370996, "grain_outer_radius": 0.03388054559712993, "grain_initial_inner_radius": 0.015048622380326556, "grain_initial_height": 0.11974152007680922, "grain_separation": 0.00500959033076795, "grains_center_of_mass_position": 0.39790827581070454, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010539920037228642, "throat_radius": 0.010528456789975285, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544613909286002}], "aerodynamic_surfaces": [{"length": 0.5582683289088741, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344256177201688}, {"n": 4, "root_chord": 0.12037051980399442, "tip_chord": 0.0601175135549207, "span": 0.10950198928599122, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494467166774202}, {"top_radius": 0.0629744167006502, "bottom_radius": 0.042577721871136384, "length": 0.05963938376512202, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699274961304969, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173838030166642, "upper_button_position": 0.08189115828830484}], "rail_length": 5, "inclination": 84.45419008875149, "heading": 52.71031562993313} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350105868409933, "mass": 14.909692150156664, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313635807510779, "I_33_without_motor": 0.027585928612870098, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035696585472824, "trigger": 800, "sampling_rate": 105, "lag": 1.651056570392248, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.894259882187005, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5611727692185147, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6402.110704313486, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032663341453899264, "grain_number": 5, "grain_density": 1818.8421019463617, "grain_outer_radius": 0.032587016528416085, "grain_initial_inner_radius": 0.014793674753997501, "grain_initial_height": 0.12041158730715805, "grain_separation": 0.004658502066639016, "grains_center_of_mass_position": 0.39479335265726223, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007941899217323608, "throat_radius": 0.012004805670350838, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541636919024859}], "aerodynamic_surfaces": [{"length": 0.5589281800039833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346689505274599}, {"n": 4, "root_chord": 0.12047420298779499, "tip_chord": 0.060496460263619656, "span": 0.10873943787428243, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049138843623403}, {"top_radius": 0.06427608393704111, "bottom_radius": 0.04340405126066506, "length": 0.058147071430030006, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001451539570223, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188980909620816, "upper_button_position": 0.08124706299494067}], "rail_length": 5, "inclination": 87.70676768891573, "heading": 53.919422905089306} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350869551843198, "mass": 14.788670401918871, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315495939058142, "I_33_without_motor": 0.0238151832675548, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031141653543925, "trigger": 800, "sampling_rate": 105, "lag": 1.4819447451850167, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8955853517912564, "trigger": "apogee", "sampling_rate": 105, "lag": 1.461739475376574, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7706.134497751738, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329205621147672, "grain_number": 5, "grain_density": 1810.7732532657878, "grain_outer_radius": 0.03338604900573271, "grain_initial_inner_radius": 0.015054870846829684, "grain_initial_height": 0.12075909609035124, "grain_separation": 0.005226787412651207, "grains_center_of_mass_position": 0.397826891399926, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014992923706586016, "throat_radius": 0.010666192442598041, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553678805096127}], "aerodynamic_surfaces": [{"length": 0.5575014717573508, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133534625914485}, {"n": 4, "root_chord": 0.12009608071986098, "tip_chord": 0.0606462918789901, "span": 0.10953304580538885, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492706056642396}, {"top_radius": 0.06260447990874937, "bottom_radius": 0.040479183631143, "length": 0.059306533937511376, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995718981206797, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179779303042312, "upper_button_position": 0.08159396781644845}], "rail_length": 5, "inclination": 86.55715922203477, "heading": 51.0348924839791} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0634991289562895, "mass": 15.69773647604914, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306593467569656, "I_33_without_motor": 0.03739942506515295, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.228922857162766, "trigger": 800, "sampling_rate": 105, "lag": 1.580263909357806, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9247061646926851, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7775466984153176, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6651.60785919794, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033206838412425804, "grain_number": 5, "grain_density": 1819.5198342932847, "grain_outer_radius": 0.03308653454266232, "grain_initial_inner_radius": 0.015257531550768932, "grain_initial_height": 0.12121633933852624, "grain_separation": 0.006215555760299375, "grains_center_of_mass_position": 0.39574226306591853, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.034486124880929e-05, "throat_radius": 0.010636667237708553, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569382870028707}], "aerodynamic_surfaces": [{"length": 0.5587076398413673, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340152010433464}, {"n": 4, "root_chord": 0.11975864826832287, "tip_chord": 0.059591373721927174, "span": 0.11097959686986111, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497484959354042}, {"top_radius": 0.06314007141281908, "bottom_radius": 0.04518457612407325, "length": 0.06108210589017128, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984030719584495, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192933887526139, "upper_button_position": 0.07910968320583567}], "rail_length": 5, "inclination": 84.92084349828977, "heading": 48.248690272592725} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349905656753027, "mass": 14.611046654998658, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300220431707187, "I_33_without_motor": 0.03180226807101223, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956156929877913, "trigger": 800, "sampling_rate": 105, "lag": 1.4396844751148885, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0282279536844656, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4435303951904712, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4485.11519892073, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033639794518619766, "grain_number": 5, "grain_density": 1792.4499497661245, "grain_outer_radius": 0.03262267080029155, "grain_initial_inner_radius": 0.01462279735596127, "grain_initial_height": 0.12100552909483304, "grain_separation": 0.005727653175414687, "grains_center_of_mass_position": 0.3979610020342305, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039089123455932474, "throat_radius": 0.010751999732821349, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25507497486213}], "aerodynamic_surfaces": [{"length": 0.5580210976849451, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132876432725826}, {"n": 4, "root_chord": 0.12051645070321271, "tip_chord": 0.05996682899017409, "span": 0.10929953164380507, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050272987957775}, {"top_radius": 0.06101241348751826, "bottom_radius": 0.0425218364201002, "length": 0.06001963584813248, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002562220322669, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171365983012645, "upper_button_position": 0.08311962373100235}], "rail_length": 5, "inclination": 83.19693194869593, "heading": 55.771629617862644} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350032918172616, "mass": 14.932377595983091, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3123110924249906, "I_33_without_motor": 0.036761159914834134, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.143076984716771, "trigger": 800, "sampling_rate": 105, "lag": 1.5868834800863858, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9844085642956619, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5875611940572665, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4862.871439573324, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318119615763959, "grain_number": 5, "grain_density": 1810.298017981141, "grain_outer_radius": 0.032819082887380904, "grain_initial_inner_radius": 0.015200188796788973, "grain_initial_height": 0.12060736834705811, "grain_separation": 0.005356738109071382, "grains_center_of_mass_position": 0.3964145759261258, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008159558507646415, "throat_radius": 0.01157554979305335, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561259374593263}], "aerodynamic_surfaces": [{"length": 0.5566430889430654, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134887440455877}, {"n": 4, "root_chord": 0.12132791290753595, "tip_chord": 0.05982472765893057, "span": 0.10972238725217605, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051034983204005}, {"top_radius": 0.06241812200369838, "bottom_radius": 0.04307056235302421, "length": 0.059719147872494084, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003654688843626, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186425355257503, "upper_button_position": 0.08172293335861225}], "rail_length": 5, "inclination": 84.81158152290013, "heading": 53.80090696739505} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06351234626745811, "mass": 14.25023081619426, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333122086802094, "I_33_without_motor": 0.05014565726331221, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.76141380077145, "trigger": 800, "sampling_rate": 105, "lag": 1.6409032920335167, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8563069693910768, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5872945258365947, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5309.972310868496, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033414444025651864, "grain_number": 5, "grain_density": 1862.7064374477363, "grain_outer_radius": 0.03313720541251279, "grain_initial_inner_radius": 0.015153492942191914, "grain_initial_height": 0.11929974137486313, "grain_separation": 0.005403916520453345, "grains_center_of_mass_position": 0.39760419271149033, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.4530419758834598e-05, "throat_radius": 0.011897675286013739, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552073977822655}], "aerodynamic_surfaces": [{"length": 0.5565556336366674, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338462009999035}, {"n": 4, "root_chord": 0.12004227853193196, "tip_chord": 0.059895136643847796, "span": 0.10988219816500928, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050123971419132}, {"top_radius": 0.06205120039922996, "bottom_radius": 0.04297567232726815, "length": 0.05819931208804564, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988811531668427, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181264436445195, "upper_button_position": 0.08075470952232322}], "rail_length": 5, "inclination": 83.40633565081576, "heading": 52.985483952341006} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635062243693551, "mass": 15.096316375621184, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303326746786863, "I_33_without_motor": 0.03855818111074504, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06254316531176, "trigger": 800, "sampling_rate": 105, "lag": 1.483234426343517, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0548617967462546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5095632985680594, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6233.922451922173, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03203994475633622, "grain_number": 5, "grain_density": 1788.848783968194, "grain_outer_radius": 0.03290905839988603, "grain_initial_inner_radius": 0.014735812676886078, "grain_initial_height": 0.1203588663430844, "grain_separation": 0.0054285379919673075, "grains_center_of_mass_position": 0.39840712462426703, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015167642627251195, "throat_radius": 0.011361641167054863, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549416656210992}], "aerodynamic_surfaces": [{"length": 0.5587888967984269, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344278859688888}, {"n": 4, "root_chord": 0.11928660784393509, "tip_chord": 0.05941071469719067, "span": 0.10969544813059323, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487875092654664}, {"top_radius": 0.06387550407221489, "bottom_radius": 0.04412460472075953, "length": 0.059923003038452785, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997858281339546, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181929334914521, "upper_button_position": 0.08159289464250252}], "rail_length": 5, "inclination": 84.82429089941989, "heading": 53.59819520732888} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350681320349079, "mass": 15.181257652866417, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315832562504364, "I_33_without_motor": 0.02453773913569834, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.947447858844743, "trigger": 800, "sampling_rate": 105, "lag": 1.62370823249293, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9736653857131713, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7516837558463483, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5965.138601888383, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308296767485168, "grain_number": 5, "grain_density": 1819.3574968539247, "grain_outer_radius": 0.03297648032699183, "grain_initial_inner_radius": 0.014222484226548149, "grain_initial_height": 0.1192330264434416, "grain_separation": 0.005982591269957219, "grains_center_of_mass_position": 0.39613532437324334, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014094659732131623, "throat_radius": 0.011291326698253053, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536166760725247}], "aerodynamic_surfaces": [{"length": 0.5591040691546733, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344505684803412}, {"n": 4, "root_chord": 0.1202052686528984, "tip_chord": 0.059288235507371764, "span": 0.11049313885909508, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499758591826407}, {"top_radius": 0.06426197009952232, "bottom_radius": 0.043857963468509974, "length": 0.06144069899708359, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991451846847182, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177135179593799, "upper_button_position": 0.0814316667253383}], "rail_length": 5, "inclination": 83.12084192843142, "heading": 52.97057102581782} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349565158088939, "mass": 14.702520055806126, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311116783811624, "I_33_without_motor": 0.04081105460827132, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8600720881714, "trigger": 800, "sampling_rate": 105, "lag": 1.504442591738476, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0585609063132595, "trigger": "apogee", "sampling_rate": 105, "lag": 1.418732730475512, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6128.427698875281, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032621285468407056, "grain_number": 5, "grain_density": 1806.7593233527716, "grain_outer_radius": 0.03281106300025637, "grain_initial_inner_radius": 0.015368967174054629, "grain_initial_height": 0.11950928950973765, "grain_separation": 0.005204081200255845, "grains_center_of_mass_position": 0.3978779877644541, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006403441726714884, "throat_radius": 0.01113129519923024, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254927831435675}], "aerodynamic_surfaces": [{"length": 0.5576571180110378, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1318564370417477}, {"n": 4, "root_chord": 0.12010353840005528, "tip_chord": 0.0599659558324925, "span": 0.11008282209973377, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498023176910347}, {"top_radius": 0.06296131667564557, "bottom_radius": 0.0430354301881619, "length": 0.06007153576457076, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.70035119067503, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189299880081927, "upper_button_position": 0.08142120266683739}], "rail_length": 5, "inclination": 85.85542190733224, "heading": 53.391161951389996} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0635008577701647, "mass": 15.786673956546377, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329697254520813, "I_33_without_motor": 0.025362142254698405, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.875595977676838, "trigger": 800, "sampling_rate": 105, "lag": 1.6007019444438482, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9335685685405894, "trigger": "apogee", "sampling_rate": 105, "lag": 1.353253459757048, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6657.931663241509, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0322054397419748, "grain_number": 5, "grain_density": 1913.6110080954295, "grain_outer_radius": 0.03361297911720974, "grain_initial_inner_radius": 0.01524339310668104, "grain_initial_height": 0.1199466053743128, "grain_separation": 0.006417600078373007, "grains_center_of_mass_position": 0.39658391785270214, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006328536283250486, "throat_radius": 0.01190048136233295, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552390713612345}], "aerodynamic_surfaces": [{"length": 0.5579718537638912, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333565500443143}, {"n": 4, "root_chord": 0.1196293398922843, "tip_chord": 0.060368399244510776, "span": 0.11025081484261066, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501869261779821}, {"top_radius": 0.06577411993047459, "bottom_radius": 0.04358212844606355, "length": 0.05981158798123055, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999526999763908, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188070714068387, "upper_button_position": 0.0811456285695521}], "rail_length": 5, "inclination": 82.81561284584627, "heading": 51.68093222074188} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349642077954162, "mass": 15.738404778836617, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3248880597942385, "I_33_without_motor": 0.02192466258475742, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.013432048822198, "trigger": 800, "sampling_rate": 105, "lag": 1.4431968354269018, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0731350787063603, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2805491162060534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7093.993493129051, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303317937896977, "grain_number": 5, "grain_density": 1832.421280656093, "grain_outer_radius": 0.033824577618273774, "grain_initial_inner_radius": 0.014839275070781343, "grain_initial_height": 0.12054497065572604, "grain_separation": 0.00499953746128409, "grains_center_of_mass_position": 0.3976041953832807, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017060539257607104, "throat_radius": 0.01186392354419166, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549306493760854}], "aerodynamic_surfaces": [{"length": 0.5586441971388828, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328180813414943}, {"n": 4, "root_chord": 0.12042268466453428, "tip_chord": 0.060091563685512356, "span": 0.1102858949208097, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482877821972156}, {"top_radius": 0.06411123247541507, "bottom_radius": 0.04489961949608542, "length": 0.0584648007849633, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993846377069671, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159588993827804, "upper_button_position": 0.08342573832418676}], "rail_length": 5, "inclination": 83.48580001648456, "heading": 50.41531501440338} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350740684081409, "mass": 15.658819005982354, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32356119006669, "I_33_without_motor": 0.025727031541695256, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.850861677966067, "trigger": 800, "sampling_rate": 105, "lag": 1.6607931999697776, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9261109759711189, "trigger": "apogee", "sampling_rate": 105, "lag": 1.332798721943771, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6507.503595068063, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033844975441957456, "grain_number": 5, "grain_density": 1872.636686295676, "grain_outer_radius": 0.032953362305314704, "grain_initial_inner_radius": 0.014705835677349278, "grain_initial_height": 0.12070545849871198, "grain_separation": 0.0057215465932674596, "grains_center_of_mass_position": 0.3982042797101349, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.0877632994892635e-05, "throat_radius": 0.010581048965001822, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557993789216768}], "aerodynamic_surfaces": [{"length": 0.5590362060755133, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339811803735687}, {"n": 4, "root_chord": 0.11992059553581923, "tip_chord": 0.060311455046709345, "span": 0.11108064820729523, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480567092845208}, {"top_radius": 0.06424267136244953, "bottom_radius": 0.04157974046820569, "length": 0.06182229850164248, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995056685718758, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176553878307227, "upper_button_position": 0.08185028074115308}], "rail_length": 5, "inclination": 83.67153581133296, "heading": 47.651312376663206} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350739127026764, "mass": 16.23024382704552, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328001407711391, "I_33_without_motor": 0.024799148191439652, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954703631045238, "trigger": 800, "sampling_rate": 105, "lag": 1.4974648076586015, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0086862099390967, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5200712021383114, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5414.091416235647, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362060038344002, "grain_number": 5, "grain_density": 1829.4013573804673, "grain_outer_radius": 0.03340128192409403, "grain_initial_inner_radius": 0.015171044552954786, "grain_initial_height": 0.11931335761700147, "grain_separation": 0.006169584946483949, "grains_center_of_mass_position": 0.39610557441770244, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0023283666002126093, "throat_radius": 0.011601334440663167, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552398197480021}], "aerodynamic_surfaces": [{"length": 0.5569927413593285, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352833425914446}, {"n": 4, "root_chord": 0.12069407443540688, "tip_chord": 0.059728284988917996, "span": 0.10901668996148231, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049880900693303}, {"top_radius": 0.06321076205281424, "bottom_radius": 0.04370161872750996, "length": 0.05972616058888968, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699760798667833, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616183284909368, "upper_button_position": 0.083577513758465}], "rail_length": 5, "inclination": 84.41769403717002, "heading": 54.22156474164309} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349194237016646, "mass": 15.362778589615585, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322023156646526, "I_33_without_motor": 0.039949960930324026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.923158547127022, "trigger": 800, "sampling_rate": 105, "lag": 1.3400496851345969, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9145915608971148, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5169714415401792, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6799.916903805995, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03279871532011707, "grain_number": 5, "grain_density": 1859.5740286753658, "grain_outer_radius": 0.03201379077996792, "grain_initial_inner_radius": 0.014925834071760135, "grain_initial_height": 0.12123232726416425, "grain_separation": 0.0064750088552335905, "grains_center_of_mass_position": 0.39647979453709686, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00031063884053163015, "throat_radius": 0.011681092204090431, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554500541719926}], "aerodynamic_surfaces": [{"length": 0.5558419640907605, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13559186753128}, {"n": 4, "root_chord": 0.11997216511257704, "tip_chord": 0.06058744790679979, "span": 0.11040601277285861, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499470644216107}, {"top_radius": 0.06331042337458678, "bottom_radius": 0.04650517899580321, "length": 0.059278672565297987, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002565321300771, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182241661018504, "upper_button_position": 0.08203236602822672}], "rail_length": 5, "inclination": 84.86377607603684, "heading": 51.117479239534624} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06351188191494705, "mass": 15.334731461284381, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334154737227241, "I_33_without_motor": 0.03874983388343871, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932818114600433, "trigger": 800, "sampling_rate": 105, "lag": 1.4092550622723417, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0181067206776366, "trigger": "apogee", "sampling_rate": 105, "lag": 1.605323958523906, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5719.085795002617, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305998635087004, "grain_number": 5, "grain_density": 1823.598477844839, "grain_outer_radius": 0.03350419498194751, "grain_initial_inner_radius": 0.015541645204091587, "grain_initial_height": 0.1189471480585829, "grain_separation": 0.004423211448510771, "grains_center_of_mass_position": 0.3961906523092869, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005583986270167648, "throat_radius": 0.0109667940879333, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546313291477402}], "aerodynamic_surfaces": [{"length": 0.5580955038493549, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339947083070046}, {"n": 4, "root_chord": 0.12063055941959049, "tip_chord": 0.05996334043283791, "span": 0.11057850906844827, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493455486682939}, {"top_radius": 0.06339432287280998, "bottom_radius": 0.04562415248645623, "length": 0.05976096948727641, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001724652874424, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190372857850283, "upper_button_position": 0.08113517950241411}], "rail_length": 5, "inclination": 83.1929223101229, "heading": 55.520771024747} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350489182960296, "mass": 14.993522100987528, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327107697903323, "I_33_without_motor": 0.048189286767083804, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.127345997535794, "trigger": 800, "sampling_rate": 105, "lag": 1.7126396707409923, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9052186338343182, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2572911437865981, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4855.188428100491, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033302724082816065, "grain_number": 5, "grain_density": 1746.9265845181872, "grain_outer_radius": 0.032990326781757826, "grain_initial_inner_radius": 0.015073165386400996, "grain_initial_height": 0.11976509413868805, "grain_separation": 0.0063100022642071235, "grains_center_of_mass_position": 0.39772037880994837, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00041497803607421895, "throat_radius": 0.010529555550645116, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254893492570956}], "aerodynamic_surfaces": [{"length": 0.5577506009683638, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134246315847716}, {"n": 4, "root_chord": 0.12087968408048404, "tip_chord": 0.06006831926738098, "span": 0.10993507138739358, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050549682955784}, {"top_radius": 0.06329163908278418, "bottom_radius": 0.044409022542103195, "length": 0.060485541095549766, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003976780646636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179064240116738, "upper_button_position": 0.08249125405298974}], "rail_length": 5, "inclination": 83.29713501657542, "heading": 53.00188346285316} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06351841417553945, "mass": 15.165660625473409, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311418079743158, "I_33_without_motor": 0.032795569099164736, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96867089562064, "trigger": 800, "sampling_rate": 105, "lag": 1.5551914336402664, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9144354655087553, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3273312193178277, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5376.537037999679, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033342915674622185, "grain_number": 5, "grain_density": 1857.6514807038193, "grain_outer_radius": 0.032339480462866846, "grain_initial_inner_radius": 0.01521648469843243, "grain_initial_height": 0.1197408535762862, "grain_separation": 0.004049177232892863, "grains_center_of_mass_position": 0.39793340824435053, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00042164867674609563, "throat_radius": 0.010420653416745758, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2573965746815352}], "aerodynamic_surfaces": [{"length": 0.5570023621664982, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134142053502012}, {"n": 4, "root_chord": 0.11958300538816495, "tip_chord": 0.05981939512140969, "span": 0.11008244101153128, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05047057253839}, {"top_radius": 0.0643237448574833, "bottom_radius": 0.041564377435408605, "length": 0.059753757764390146, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008219487135547, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174693312822067, "upper_button_position": 0.08335261743134803}], "rail_length": 5, "inclination": 84.16056136617475, "heading": 50.910984544653225} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350735100153862, "mass": 16.03343863137604, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318135026737232, "I_33_without_motor": 0.021051482378331376, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039411686101174, "trigger": 800, "sampling_rate": 105, "lag": 1.534350891924794, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0563286266020093, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5519303304394365, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5762.332193620749, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293885803763011, "grain_number": 5, "grain_density": 1819.658713336741, "grain_outer_radius": 0.033064744633481094, "grain_initial_inner_radius": 0.015332985006751561, "grain_initial_height": 0.11993469580350634, "grain_separation": 0.00719693923618852, "grains_center_of_mass_position": 0.3967339987228937, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006840174647647037, "throat_radius": 0.010355152300518486, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550287028193372}], "aerodynamic_surfaces": [{"length": 0.5592222451536778, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133006087045109}, {"n": 4, "root_chord": 0.12052456769998281, "tip_chord": 0.05989970896374489, "span": 0.10902072965866537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488538356347872}, {"top_radius": 0.0637663776322805, "bottom_radius": 0.04366097263529988, "length": 0.05875583617524293, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994106773855934, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188170621900727, "upper_button_position": 0.08059361519552066}], "rail_length": 5, "inclination": 84.765106057027, "heading": 52.83618948936808} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0634970815378009, "mass": 15.182911670254388, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312413812868506, "I_33_without_motor": 0.04983852986161381, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.210195480929544, "trigger": 800, "sampling_rate": 105, "lag": 1.5897560781442237, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9138047453731784, "trigger": "apogee", "sampling_rate": 105, "lag": 1.444954187007202, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5555.775172368401, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032756074474073645, "grain_number": 5, "grain_density": 1792.3420065020043, "grain_outer_radius": 0.0322313455514708, "grain_initial_inner_radius": 0.014921814454339027, "grain_initial_height": 0.11936349043503933, "grain_separation": 0.005068562662211438, "grains_center_of_mass_position": 0.3972726666589813, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008725592943305305, "throat_radius": 0.010561224307284574, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552545706223317}], "aerodynamic_surfaces": [{"length": 0.5598099631553044, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339031107765671}, {"n": 4, "root_chord": 0.12027907831345955, "tip_chord": 0.05969695880033669, "span": 0.11058730305932415, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487492855726193}, {"top_radius": 0.06385403744821681, "bottom_radius": 0.04385618960262196, "length": 0.05884978597079261, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011449262540979, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174379731719496, "upper_button_position": 0.08370695308214826}], "rail_length": 5, "inclination": 86.07692830236893, "heading": 56.10245568910191} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349659112068107, "mass": 16.596210787144155, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3170337925906255, "I_33_without_motor": 0.03389842968036387, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998454418126853, "trigger": 800, "sampling_rate": 105, "lag": 1.4089507583455827, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1000890073165168, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5716586610832257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6959.922853737883, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03356203666326683, "grain_number": 5, "grain_density": 1862.5130239564535, "grain_outer_radius": 0.033045301519616654, "grain_initial_inner_radius": 0.014487197705395746, "grain_initial_height": 0.12076722396325491, "grain_separation": 0.0040917805234776655, "grains_center_of_mass_position": 0.39672295518820816, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018887491688607335, "throat_radius": 0.011001020104749997, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538414741145123}], "aerodynamic_surfaces": [{"length": 0.5598953385010629, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329485638541639}, {"n": 4, "root_chord": 0.12034700596723678, "tip_chord": 0.059772527069342406, "span": 0.11071312858211682, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491357540720168}, {"top_radius": 0.06408112417491402, "bottom_radius": 0.041831078807946946, "length": 0.060581271641146, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011495594559879, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180371674762329, "upper_button_position": 0.08311239197975495}], "rail_length": 5, "inclination": 84.29529397644949, "heading": 51.19200586907713} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635112152969096, "mass": 15.470086084265294, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322617614100295, "I_33_without_motor": 0.009569680903181388, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.783586866276988, "trigger": 800, "sampling_rate": 105, "lag": 1.499167233336856, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9267097442190083, "trigger": "apogee", "sampling_rate": 105, "lag": 1.488873755826733, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6190.441611860021, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03169022173229581, "grain_number": 5, "grain_density": 1781.6963371084275, "grain_outer_radius": 0.033504964858797094, "grain_initial_inner_radius": 0.015631398213654932, "grain_initial_height": 0.12063687359366713, "grain_separation": 0.00473175491139163, "grains_center_of_mass_position": 0.3968717911497418, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008526396329730139, "throat_radius": 0.011527408428134472, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552960956061947}], "aerodynamic_surfaces": [{"length": 0.5577487448583806, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345772032468828}, {"n": 4, "root_chord": 0.12019111240652748, "tip_chord": 0.059628719144865956, "span": 0.11022437458040164, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501784465579336}, {"top_radius": 0.060588912127680083, "bottom_radius": 0.04507411741386897, "length": 0.060959481969841536, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997820958224603, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177480946396651, "upper_button_position": 0.08203400118279525}], "rail_length": 5, "inclination": 86.88346088927257, "heading": 54.06838213211423} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349937941807944, "mass": 15.514196292319262, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324480940701667, "I_33_without_motor": 0.030314660517085583, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.041933038084904, "trigger": 800, "sampling_rate": 105, "lag": 1.3992127210366705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8936964786554814, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3451529707259586, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6817.803640711651, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323363679848428, "grain_number": 5, "grain_density": 1767.9724629358102, "grain_outer_radius": 0.032866244750319955, "grain_initial_inner_radius": 0.014741461862261515, "grain_initial_height": 0.12152308384533471, "grain_separation": 0.005272982884459283, "grains_center_of_mass_position": 0.39717082812746884, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011657726429262728, "throat_radius": 0.011730878829010456, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550696154503265}], "aerodynamic_surfaces": [{"length": 0.5579992879026124, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343272921425254}, {"n": 4, "root_chord": 0.12025254109979225, "tip_chord": 0.05955468679197316, "span": 0.1097162026247771, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050215108733573}, {"top_radius": 0.06381773547567017, "bottom_radius": 0.04412374947417248, "length": 0.057659590035763764, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983856919134461, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185303361451763, "upper_button_position": 0.07985535576826985}], "rail_length": 5, "inclination": 83.3142273276402, "heading": 55.97170675051771} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.0635083439392283, "mass": 15.813342337769358, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315194137360908, "I_33_without_motor": 0.003957349593424583, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961957662343213, "trigger": 800, "sampling_rate": 105, "lag": 1.6207041776279183, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9993663185898145, "trigger": "apogee", "sampling_rate": 105, "lag": 1.931854893877969, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7158.336159333094, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372734670127292, "grain_number": 5, "grain_density": 1773.8784795288345, "grain_outer_radius": 0.032446274368981884, "grain_initial_inner_radius": 0.015072671031493406, "grain_initial_height": 0.11934622509885764, "grain_separation": 0.004470395894639158, "grains_center_of_mass_position": 0.39579754726318833, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016050002009360375, "throat_radius": 0.011431965291263228, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256071193121352}], "aerodynamic_surfaces": [{"length": 0.5598644352566736, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133695093353546}, {"n": 4, "root_chord": 0.12086814395608504, "tip_chord": 0.06040669222893011, "span": 0.11042106090819716, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496138292305708}, {"top_radius": 0.06270000010392902, "bottom_radius": 0.04430065281423518, "length": 0.060991883163306115, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011911677674706, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183477824424557, "upper_button_position": 0.0828433853250149}], "rail_length": 5, "inclination": 84.78051213819317, "heading": 54.1525527765922} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349646107808442, "mass": 14.808550329224849, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325041443641652, "I_33_without_motor": 0.021275797390227426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003960141287703, "trigger": 800, "sampling_rate": 105, "lag": 1.5932699985419996, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9345068749525357, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6144159321049556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6297.563099523883, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03187350183077137, "grain_number": 5, "grain_density": 1846.035155297684, "grain_outer_radius": 0.033660035478433985, "grain_initial_inner_radius": 0.01511494900023864, "grain_initial_height": 0.1196049093651084, "grain_separation": 0.0039017739618242963, "grains_center_of_mass_position": 0.39670964595922115, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00044598772736840244, "throat_radius": 0.011190817384361012, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551915832209717}], "aerodynamic_surfaces": [{"length": 0.558867334580969, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332387466359661}, {"n": 4, "root_chord": 0.11998407503118888, "tip_chord": 0.06000884396680189, "span": 0.11017510047355986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487049617890822}, {"top_radius": 0.06438487197595726, "bottom_radius": 0.04170716903465371, "length": 0.06034240492882807, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005412072477121, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178212892266098, "upper_button_position": 0.08271991802110223}], "rail_length": 5, "inclination": 85.41128752387029, "heading": 56.3511297824269} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350463203406789, "mass": 14.944659897146053, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3135843815154296, "I_33_without_motor": 0.03736264461518946, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.012508430594917, "trigger": 800, "sampling_rate": 105, "lag": 1.6055611978300321, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1049498342610964, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1274806037410208, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5816.182721299798, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033812936276730605, "grain_number": 5, "grain_density": 1863.871029175705, "grain_outer_radius": 0.033233342715621554, "grain_initial_inner_radius": 0.01451067647583063, "grain_initial_height": 0.12044309093540112, "grain_separation": 0.004449609839115823, "grains_center_of_mass_position": 0.39631948424549684, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018381938687091056, "throat_radius": 0.010970429843900523, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548873739761341}], "aerodynamic_surfaces": [{"length": 0.5569049449358288, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342622132613975}, {"n": 4, "root_chord": 0.12017706297908116, "tip_chord": 0.059574768702119134, "span": 0.11003476101726604, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483697202238578}, {"top_radius": 0.06389529583070061, "bottom_radius": 0.04237971440727398, "length": 0.0597697114403862, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000257426522066, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61768366339439, "upper_button_position": 0.08234207925781667}], "rail_length": 5, "inclination": 86.50926017152631, "heading": 50.61470069930485} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.0634929692155114, "mass": 15.188671011259526, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323551081179378, "I_33_without_motor": 0.03195380711798338, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03257450529855, "trigger": 800, "sampling_rate": 105, "lag": 1.452323858392826, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9727111064287256, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5866494161310807, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5634.1996588510465, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033058191375916667, "grain_number": 5, "grain_density": 1799.553007170559, "grain_outer_radius": 0.03298809614983399, "grain_initial_inner_radius": 0.015064940560516177, "grain_initial_height": 0.12050726215434239, "grain_separation": 0.006405811531103794, "grains_center_of_mass_position": 0.39716268601922233, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006169362312496229, "throat_radius": 0.011286538306757977, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561743635083873}], "aerodynamic_surfaces": [{"length": 0.5593990747730991, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326973011091217}, {"n": 4, "root_chord": 0.1211126960488701, "tip_chord": 0.059008919326543584, "span": 0.10998835287756684, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488554006279165}, {"top_radius": 0.06355912598490909, "bottom_radius": 0.04356147150835287, "length": 0.06006861562776047, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994973623599886, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178888257547536, "upper_button_position": 0.08160853660523504}], "rail_length": 5, "inclination": 84.47973439114298, "heading": 50.697093486853454} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06348987088149906, "mass": 15.330577921528183, "I_11_without_motor": 6.321, "I_22_without_motor": 6.298391880148868, "I_33_without_motor": 0.04120771749604153, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908572582283993, "trigger": 800, "sampling_rate": 105, "lag": 1.41165070573393, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0067271249266563, "trigger": "apogee", "sampling_rate": 105, "lag": 1.275154001842243, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6681.364948059298, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032890043786685995, "grain_number": 5, "grain_density": 1855.7821127159868, "grain_outer_radius": 0.03233849914869956, "grain_initial_inner_radius": 0.01515045657700754, "grain_initial_height": 0.11840922682315193, "grain_separation": 0.003790133649710924, "grains_center_of_mass_position": 0.39576950012481704, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001169248839641443, "throat_radius": 0.0106212287890661, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554824357881382}], "aerodynamic_surfaces": [{"length": 0.5584811901843808, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340934263043285}, {"n": 4, "root_chord": 0.1201019487489429, "tip_chord": 0.060190024363935155, "span": 0.11051924815728022, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497929893950138}, {"top_radius": 0.06320794936736378, "bottom_radius": 0.04348814445374567, "length": 0.05905504092513617, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987489517561325, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183957753902289, "upper_button_position": 0.08035317636590356}], "rail_length": 5, "inclination": 84.72347040476882, "heading": 51.18023193539569} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.063505562733996, "mass": 15.593394772365272, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327038659232019, "I_33_without_motor": 0.027286587705366107, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.922929215540734, "trigger": 800, "sampling_rate": 105, "lag": 1.3973554858384392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0002524174940404, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2673664773934052, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6795.601235709222, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032488691843378076, "grain_number": 5, "grain_density": 1860.5556873302326, "grain_outer_radius": 0.03296919147575202, "grain_initial_inner_radius": 0.014434011565986348, "grain_initial_height": 0.12045850200487375, "grain_separation": 0.00558607365698771, "grains_center_of_mass_position": 0.3949439240183211, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005238704732263281, "throat_radius": 0.010800425482567402, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544240084030998}], "aerodynamic_surfaces": [{"length": 0.5575951380880866, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351311663630268}, {"n": 4, "root_chord": 0.11878822470743511, "tip_chord": 0.0600672016803251, "span": 0.10973980288334002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492248502028276}, {"top_radius": 0.06384976811374181, "bottom_radius": 0.04338909153436504, "length": 0.06121173984765268, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999017501384752, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179010387713744, "upper_button_position": 0.08200071136710085}], "rail_length": 5, "inclination": 84.77046654570465, "heading": 51.40056528606455} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349245207451996, "mass": 14.908863808304666, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329446000218247, "I_33_without_motor": 0.022666620087501404, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001004574338847, "trigger": 800, "sampling_rate": 105, "lag": 1.45126623508501, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.090965951986724, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1518045338090974, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5470.610540538924, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0313859705254416, "grain_number": 5, "grain_density": 1907.0650535867576, "grain_outer_radius": 0.03293215416762784, "grain_initial_inner_radius": 0.01491218595187004, "grain_initial_height": 0.11928788622058584, "grain_separation": 0.0029746262530944327, "grains_center_of_mass_position": 0.39797629728085376, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00034530093202555216, "throat_radius": 0.01124805534732965, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558683201939713}], "aerodynamic_surfaces": [{"length": 0.5576840226157745, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352644794204902}, {"n": 4, "root_chord": 0.11922759635493832, "tip_chord": 0.06003132595267845, "span": 0.11077147383116313, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04977534171851}, {"top_radius": 0.06304289708274718, "bottom_radius": 0.042408743787853205, "length": 0.0590603546789989, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007921487505083, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61656696128361, "upper_button_position": 0.08422518746689833}], "rail_length": 5, "inclination": 84.07926430142206, "heading": 51.252003135241125} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349039999825525, "mass": 14.667031599093896, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3409444119998, "I_33_without_motor": 0.022580973546270297, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.226226580100398, "trigger": 800, "sampling_rate": 105, "lag": 1.4851938404004854, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1684433264832004, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5617997288216212, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6814.026180513255, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324631464018244, "grain_number": 5, "grain_density": 1871.0602483089763, "grain_outer_radius": 0.03302465069017899, "grain_initial_inner_radius": 0.01524688030302496, "grain_initial_height": 0.1205464057809005, "grain_separation": 0.004619464466884049, "grains_center_of_mass_position": 0.3972607531325933, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00032388041228713225, "throat_radius": 0.010485545870765263, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542596321251775}], "aerodynamic_surfaces": [{"length": 0.5583778247345351, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337558767874742}, {"n": 4, "root_chord": 0.12007091337983616, "tip_chord": 0.05918399718495655, "span": 0.11044170459516256, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494556165519036}, {"top_radius": 0.06364554418502165, "bottom_radius": 0.04469958623026924, "length": 0.059760745921013304, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997491151437466, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183001529283286, "upper_button_position": 0.08144896221541797}], "rail_length": 5, "inclination": 85.59888960216408, "heading": 54.28384655350344} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349573980393629, "mass": 15.386621711970667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323494839643632, "I_33_without_motor": 0.04158194185377357, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93908635731882, "trigger": 800, "sampling_rate": 105, "lag": 1.6415710441791729, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0314909032435144, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3740489895808221, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5772.043746787833, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330018900791767, "grain_number": 5, "grain_density": 1844.742183042389, "grain_outer_radius": 0.032747502886500204, "grain_initial_inner_radius": 0.014410658316135368, "grain_initial_height": 0.11915656400551373, "grain_separation": 0.005970081962295601, "grains_center_of_mass_position": 0.3973894070414711, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000956752555582758, "throat_radius": 0.011393561663856277, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255035247093087}], "aerodynamic_surfaces": [{"length": 0.557569383877849, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343444144395258}, {"n": 4, "root_chord": 0.11981113052097593, "tip_chord": 0.06067987386577597, "span": 0.11018565999475675, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493334428256358}, {"top_radius": 0.06350541342046101, "bottom_radius": 0.04285561828822834, "length": 0.06083353569422855, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000352915172696, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619446142620992, "upper_button_position": 0.08058914889627766}], "rail_length": 5, "inclination": 84.67110845172273, "heading": 52.14916492865215} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350346057086151, "mass": 14.363988139155472, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320072823016508, "I_33_without_motor": 0.04024589603080901, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.075895299242449, "trigger": 800, "sampling_rate": 105, "lag": 1.6337991059867514, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0823528552359436, "trigger": "apogee", "sampling_rate": 105, "lag": 1.636583376980761, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7335.315627520718, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0331213747912555, "grain_number": 5, "grain_density": 1843.2852238917897, "grain_outer_radius": 0.03381551913651015, "grain_initial_inner_radius": 0.014408676692764825, "grain_initial_height": 0.11962131816098034, "grain_separation": 0.005380208064807152, "grains_center_of_mass_position": 0.39654620943612867, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005168990794148976, "throat_radius": 0.011094454201797957, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254954662829989}], "aerodynamic_surfaces": [{"length": 0.5596565848430803, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1360609097863787}, {"n": 4, "root_chord": 0.12026270384408956, "tip_chord": 0.0593017777221956, "span": 0.11009255049115864, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049211903999395}, {"top_radius": 0.06293158549347974, "bottom_radius": 0.04537783547538933, "length": 0.06088572322527651, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991438428116071, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186477839273791, "upper_button_position": 0.08049605888422806}], "rail_length": 5, "inclination": 85.45212281498324, "heading": 54.78613174385292} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350190287422712, "mass": 15.819447734742496, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320937373573597, "I_33_without_motor": 0.04780512425118195, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03245681139734, "trigger": 800, "sampling_rate": 105, "lag": 1.48387558023057, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9051427855171278, "trigger": "apogee", "sampling_rate": 105, "lag": 1.510801884252732, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7857.902241611058, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334301895519162, "grain_number": 5, "grain_density": 1865.403505557643, "grain_outer_radius": 0.03273063092591823, "grain_initial_inner_radius": 0.014556263860048674, "grain_initial_height": 0.12026899800009584, "grain_separation": 0.005781577304559297, "grains_center_of_mass_position": 0.3973531184375484, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008389763513767908, "throat_radius": 0.01099622475588889, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553339310116032}], "aerodynamic_surfaces": [{"length": 0.5573433796144972, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350055648583737}, {"n": 4, "root_chord": 0.11972696256704235, "tip_chord": 0.060146254145851015, "span": 0.11026284693886923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500543768243982}, {"top_radius": 0.06291302967404275, "bottom_radius": 0.042125534212063845, "length": 0.06178801039881843, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699831420069593, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185276025582993, "upper_button_position": 0.08130381751129367}], "rail_length": 5, "inclination": 84.2673757534641, "heading": 53.1748809738283} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634945689682497, "mass": 15.285450230607236, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322763809552942, "I_33_without_motor": 0.04150862157774594, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952910173639987, "trigger": 800, "sampling_rate": 105, "lag": 1.6222986363062826, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0404865241116732, "trigger": "apogee", "sampling_rate": 105, "lag": 1.54801509538143, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6264.712354017019, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0320215469855382, "grain_number": 5, "grain_density": 1822.5003409923877, "grain_outer_radius": 0.03322493386434162, "grain_initial_inner_radius": 0.014983329178969601, "grain_initial_height": 0.11861928989690804, "grain_separation": 0.005130344970924306, "grains_center_of_mass_position": 0.39744921353883067, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005401461200900961, "throat_radius": 0.011255889701481546, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254173272229317}], "aerodynamic_surfaces": [{"length": 0.557752736185839, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343941620183606}, {"n": 4, "root_chord": 0.12016851841798695, "tip_chord": 0.05991469717663373, "span": 0.11013008929454676, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050283424245253}, {"top_radius": 0.0634594958152563, "bottom_radius": 0.040733581338840134, "length": 0.060524667501469516, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008940582124954, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168367725404903, "upper_button_position": 0.0840572856720051}], "rail_length": 5, "inclination": 84.70383209236381, "heading": 53.34395304613215} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350765036648563, "mass": 15.417479376757433, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3267168487639065, "I_33_without_motor": 0.04253654533078979, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.994012556857353, "trigger": 800, "sampling_rate": 105, "lag": 1.3693207195099888, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8968563620148611, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9481715974645155, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6124.376837831003, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033375213986082494, "grain_number": 5, "grain_density": 1844.5591359138912, "grain_outer_radius": 0.033413551882666204, "grain_initial_inner_radius": 0.015369750535517722, "grain_initial_height": 0.11902934257277627, "grain_separation": 0.004181414163296492, "grains_center_of_mass_position": 0.3963054642420637, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001828613175952348, "throat_radius": 0.010564658328947917, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542729492312512}], "aerodynamic_surfaces": [{"length": 0.558608083362676, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328854734809028}, {"n": 4, "root_chord": 0.12032499646985735, "tip_chord": 0.06020073651130479, "span": 0.11057056434936578, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495518707134894}, {"top_radius": 0.06348631244069998, "bottom_radius": 0.04433833912341684, "length": 0.06058047949567449, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014137160525011, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169649707761823, "upper_button_position": 0.08444874527631885}], "rail_length": 5, "inclination": 85.0318170935272, "heading": 51.15290068140242} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350032119561987, "mass": 15.98692082919414, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318345494689392, "I_33_without_motor": 0.033729230461974326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8760357950028, "trigger": 800, "sampling_rate": 105, "lag": 1.4734043739234244, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1270586548603536, "trigger": "apogee", "sampling_rate": 105, "lag": 1.257166424650189, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7470.035742727953, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033238346881410336, "grain_number": 5, "grain_density": 1878.5039597022467, "grain_outer_radius": 0.03276040718312841, "grain_initial_inner_radius": 0.014967011967161305, "grain_initial_height": 0.1187334172053152, "grain_separation": 0.004893908620953493, "grains_center_of_mass_position": 0.3961296502253954, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016167775087574494, "throat_radius": 0.010737537459818184, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2571710948450043}], "aerodynamic_surfaces": [{"length": 0.5578824435339247, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341244045433583}, {"n": 4, "root_chord": 0.12046188264996578, "tip_chord": 0.059583004335212034, "span": 0.11080173083291359, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498805023205857}, {"top_radius": 0.06463694405472746, "bottom_radius": 0.04387131511992219, "length": 0.0587898259498514, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.702180254744861, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185636881442789, "upper_button_position": 0.08361656660058214}], "rail_length": 5, "inclination": 86.00570359648776, "heading": 49.9540780572039} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349971356282098, "mass": 16.35161726443807, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3019531434934395, "I_33_without_motor": 0.03399859851680522, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958545686970862, "trigger": 800, "sampling_rate": 105, "lag": 1.6640030723685855, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0288209551485625, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6295102511028374, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5487.408761688775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032877116424277604, "grain_number": 5, "grain_density": 1813.256224075918, "grain_outer_radius": 0.03307310973919273, "grain_initial_inner_radius": 0.01526085130358597, "grain_initial_height": 0.12051088071585749, "grain_separation": 0.005149024081649454, "grains_center_of_mass_position": 0.3966902435761642, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010728686732175044, "throat_radius": 0.010183045553428098, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551712503748882}], "aerodynamic_surfaces": [{"length": 0.5581115298550298, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333710177940588}, {"n": 4, "root_chord": 0.1196515761990374, "tip_chord": 0.0600334418355882, "span": 0.1093648321308278, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499227801057314}, {"top_radius": 0.06395286827172722, "bottom_radius": 0.04340464415127743, "length": 0.05956483553316062, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989551411081465, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174830647692474, "upper_button_position": 0.08147207633889908}], "rail_length": 5, "inclination": 84.31025922261107, "heading": 52.564002563961196} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350047788833958, "mass": 16.39461869320807, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317069375449507, "I_33_without_motor": 0.055505744271590225, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.889819611450413, "trigger": 800, "sampling_rate": 105, "lag": 1.524446185454582, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9742709752362392, "trigger": "apogee", "sampling_rate": 105, "lag": 1.155487064890429, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7759.082940824469, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03358501646446184, "grain_number": 5, "grain_density": 1863.1420632696086, "grain_outer_radius": 0.032670964331979475, "grain_initial_inner_radius": 0.014857267757566331, "grain_initial_height": 0.12173133199481417, "grain_separation": 0.0045381663788473655, "grains_center_of_mass_position": 0.3971865519604138, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012221343193549283, "throat_radius": 0.011033786516062188, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558153830796301}], "aerodynamic_surfaces": [{"length": 0.5570654781427304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333329618523877}, {"n": 4, "root_chord": 0.11931437789994354, "tip_chord": 0.05878558726217626, "span": 0.11081452633157066, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049671010156657}, {"top_radius": 0.06482188787908182, "bottom_radius": 0.0439856247895532, "length": 0.06083525201140122, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000372067344839, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174611889311568, "upper_button_position": 0.08257601780332713}], "rail_length": 5, "inclination": 84.73903348031345, "heading": 51.473579854514995} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349947395335855, "mass": 15.50265575481992, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320516527830924, "I_33_without_motor": 0.04143675990553045, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034986618142588, "trigger": 800, "sampling_rate": 105, "lag": 1.7141175341209292, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9741422550557052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7615625285638121, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6186.140720130158, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03229949333725667, "grain_number": 5, "grain_density": 1760.7248835325797, "grain_outer_radius": 0.03248937407855108, "grain_initial_inner_radius": 0.014260273040709303, "grain_initial_height": 0.11835958300892181, "grain_separation": 0.005248079963057467, "grains_center_of_mass_position": 0.39616392009781015, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001978125338965451, "throat_radius": 0.011068468627965771, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554977435868953}], "aerodynamic_surfaces": [{"length": 0.5584964770683729, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336095033483184}, {"n": 4, "root_chord": 0.12010901474261293, "tip_chord": 0.05988025045469361, "span": 0.10953622822767492, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498654781762855}, {"top_radius": 0.0629971331051521, "bottom_radius": 0.04275117807189034, "length": 0.06015199529691407, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989767836074089, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186894332168116, "upper_button_position": 0.08028735039059731}], "rail_length": 5, "inclination": 85.53732074321009, "heading": 52.440455793431525} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348044094486614, "mass": 16.029353565841944, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315666833374493, "I_33_without_motor": 0.04441753106842069, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.862748595058175, "trigger": 800, "sampling_rate": 105, "lag": 1.450666283047022, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0458276815535454, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4858116390705005, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5869.663882362011, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345776836855281, "grain_number": 5, "grain_density": 1806.7466700551204, "grain_outer_radius": 0.033170439658527846, "grain_initial_inner_radius": 0.014998655382688209, "grain_initial_height": 0.12140883678661482, "grain_separation": 0.00467749664800248, "grains_center_of_mass_position": 0.39644000284685005, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013567823061692455, "throat_radius": 0.011252477787763419, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548739545245347}], "aerodynamic_surfaces": [{"length": 0.5564141181526732, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335238368472151}, {"n": 4, "root_chord": 0.12007538584954115, "tip_chord": 0.059938145863688855, "span": 0.10983917503998111, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499887118864915}, {"top_radius": 0.06291063586365808, "bottom_radius": 0.042561753976116515, "length": 0.058319289047619044, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7010753643845639, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164330821546693, "upper_button_position": 0.08464228222989456}], "rail_length": 5, "inclination": 83.87756340130244, "heading": 51.74429369076972} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349583944074899, "mass": 15.909910505238745, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332394076268363, "I_33_without_motor": 0.03622220310946698, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015737438684253, "trigger": 800, "sampling_rate": 105, "lag": 1.541578097827786, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0074612819854603, "trigger": "apogee", "sampling_rate": 105, "lag": 1.309459682839689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6218.137752045106, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03460102314595849, "grain_number": 5, "grain_density": 1860.144917819781, "grain_outer_radius": 0.03332236985332926, "grain_initial_inner_radius": 0.014350324310399122, "grain_initial_height": 0.11879359169424888, "grain_separation": 0.004328324267680671, "grains_center_of_mass_position": 0.39585187415371287, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005176311097398321, "throat_radius": 0.01006992710448437, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566819689375233}], "aerodynamic_surfaces": [{"length": 0.5592017889423304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1319819379205018}, {"n": 4, "root_chord": 0.12002063582714595, "tip_chord": 0.061112373899445085, "span": 0.11024953713401761, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491116603920918}, {"top_radius": 0.06404816613850298, "bottom_radius": 0.04394157427312884, "length": 0.059059451962849216, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7021743018850495, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180713721839106, "upper_button_position": 0.08410292970113886}], "rail_length": 5, "inclination": 86.10702502706066, "heading": 50.4570787573822} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06348838267800269, "mass": 15.858253279901465, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323797948396878, "I_33_without_motor": 0.024669358071705092, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.076406044897958, "trigger": 800, "sampling_rate": 105, "lag": 1.5005393829964397, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0422969532658664, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2559293709504267, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6925.917179161024, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366573320000714, "grain_number": 5, "grain_density": 1766.3943574842506, "grain_outer_radius": 0.03304469895898915, "grain_initial_inner_radius": 0.015312769774307953, "grain_initial_height": 0.12072347164740914, "grain_separation": 0.006624048043319222, "grains_center_of_mass_position": 0.39647494468118816, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009166624902536313, "throat_radius": 0.011054701182635155, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547157323542035}], "aerodynamic_surfaces": [{"length": 0.5578888692350099, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342584517643153}, {"n": 4, "root_chord": 0.12016906398698603, "tip_chord": 0.05973878263960935, "span": 0.11000031998561285, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049488584300108}, {"top_radius": 0.06426716548244084, "bottom_radius": 0.04473906328525602, "length": 0.061076183584393304, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988881578326528, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188873742804496, "upper_button_position": 0.08000078355220319}], "rail_length": 5, "inclination": 83.96437610345866, "heading": 50.85490983074992} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349224154896228, "mass": 15.503622537210186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327867894454276, "I_33_without_motor": 0.02272213304458503, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.019291246211912, "trigger": 800, "sampling_rate": 105, "lag": 1.427328139896899, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8897204721679354, "trigger": "apogee", "sampling_rate": 105, "lag": 1.406194380636628, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6574.490071773194, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316948497604842, "grain_number": 5, "grain_density": 1746.824077746946, "grain_outer_radius": 0.03279879327826356, "grain_initial_inner_radius": 0.01455986331314872, "grain_initial_height": 0.12142742744598185, "grain_separation": 0.003729789158380343, "grains_center_of_mass_position": 0.395614237767832, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011981080928111117, "throat_radius": 0.011424048796092897, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564550577161784}], "aerodynamic_surfaces": [{"length": 0.5583339313858795, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1362569694667282}, {"n": 4, "root_chord": 0.119781999795519, "tip_chord": 0.05979988096200324, "span": 0.11069344839042462, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049972042630843}, {"top_radius": 0.06411662993778793, "bottom_radius": 0.04477208626169185, "length": 0.060553936811063, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992954570551915, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187584204142694, "upper_button_position": 0.08053703664092204}], "rail_length": 5, "inclination": 84.11527729207599, "heading": 54.15833645771333} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350580067902407, "mass": 15.904905414192449, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323576354269247, "I_33_without_motor": 0.03817917506685181, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.061967352449381, "trigger": 800, "sampling_rate": 105, "lag": 1.3525717994777247, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9687964297464181, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5123603704431632, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5758.119442461446, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03217198823131759, "grain_number": 5, "grain_density": 1857.4320910125602, "grain_outer_radius": 0.033454748334303924, "grain_initial_inner_radius": 0.014829264152114429, "grain_initial_height": 0.12118562779753736, "grain_separation": 0.004788547241575032, "grains_center_of_mass_position": 0.395633922683751, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009872323811556908, "throat_radius": 0.010312200311410913, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552284489714904}], "aerodynamic_surfaces": [{"length": 0.5589865329260241, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344362465197186}, {"n": 4, "root_chord": 0.11961247438703657, "tip_chord": 0.05996655948228912, "span": 0.11011728785320969, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051777913694185}, {"top_radius": 0.06322345174100831, "bottom_radius": 0.0421038725498198, "length": 0.05970167418771835, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008256768015021, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193850029869928, "upper_button_position": 0.08144067381450926}], "rail_length": 5, "inclination": 85.10408560738834, "heading": 51.54925710687794} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349633268622772, "mass": 15.222571309136828, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312861936009342, "I_33_without_motor": 0.01597491336582694, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.150381257285128, "trigger": 800, "sampling_rate": 105, "lag": 1.379808056691949, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0784671701972677, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4233916051393547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4922.190662789807, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237937329513456, "grain_number": 5, "grain_density": 1771.7499720037063, "grain_outer_radius": 0.03270652413076661, "grain_initial_inner_radius": 0.014741158759470477, "grain_initial_height": 0.12138314803403447, "grain_separation": 0.0067515326077775455, "grains_center_of_mass_position": 0.395694795360068, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010495662873812388, "throat_radius": 0.011565146768856874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547414278580318}], "aerodynamic_surfaces": [{"length": 0.5585589858872395, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133489666771339}, {"n": 4, "root_chord": 0.11957807968551712, "tip_chord": 0.0606889218619868, "span": 0.11022794867608697, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499701562602306}, {"top_radius": 0.06426432201444254, "bottom_radius": 0.04204345000680394, "length": 0.060750586699481704, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009798220811988, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177041780484523, "upper_button_position": 0.08327564403274645}], "rail_length": 5, "inclination": 83.73976494267616, "heading": 52.36131316270707} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349696824749251, "mass": 14.625767013047296, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308906684904926, "I_33_without_motor": 0.033755997218179984, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.050349347192276, "trigger": 800, "sampling_rate": 105, "lag": 1.464702400442197, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9674560078235922, "trigger": "apogee", "sampling_rate": 105, "lag": 1.504285569538012, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5783.28243919996, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281862097471772, "grain_number": 5, "grain_density": 1779.8791447345116, "grain_outer_radius": 0.032588907470056654, "grain_initial_inner_radius": 0.0151022078820697, "grain_initial_height": 0.11918324492795725, "grain_separation": 0.004774342492894082, "grains_center_of_mass_position": 0.3966338733845272, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000318339055048595, "throat_radius": 0.01073685939511779, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568356344259737}], "aerodynamic_surfaces": [{"length": 0.5593048594877986, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133520417438416}, {"n": 4, "root_chord": 0.12030979327995792, "tip_chord": 0.059819304574111797, "span": 0.11014167575638785, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0468488719381623}, {"top_radius": 0.06389179108351029, "bottom_radius": 0.04409706218615782, "length": 0.05940993494259226, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985265682110355, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177698226675135, "upper_button_position": 0.08075674554352208}], "rail_length": 5, "inclination": 84.368190487296, "heading": 52.72102497798122} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06348771921416774, "mass": 14.958853607846914, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319115965337112, "I_33_without_motor": 0.02674186321061768, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000199223652963, "trigger": 800, "sampling_rate": 105, "lag": 1.4418201284947123, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8021628038900354, "trigger": "apogee", "sampling_rate": 105, "lag": 1.068268546072808, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6172.8233239838455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03206552673972219, "grain_number": 5, "grain_density": 1810.1220380228542, "grain_outer_radius": 0.03361939101296317, "grain_initial_inner_radius": 0.014991127779792019, "grain_initial_height": 0.11950444216875049, "grain_separation": 0.00511753907878547, "grains_center_of_mass_position": 0.39815726075796143, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010623283455681446, "throat_radius": 0.011703730321246506, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256058214742202}], "aerodynamic_surfaces": [{"length": 0.5572304156048057, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331278667697675}, {"n": 4, "root_chord": 0.11984596522676845, "tip_chord": 0.059297255862003254, "span": 0.11032270878643342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050160135982942}, {"top_radius": 0.06354438856185021, "bottom_radius": 0.043339077772874775, "length": 0.05973362983245742, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008647017222874, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182403524840413, "upper_button_position": 0.08262434923824613}], "rail_length": 5, "inclination": 84.16504662013017, "heading": 55.01978615322846} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349420927726072, "mass": 16.1238244995194, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306039435321741, "I_33_without_motor": 0.024551104610271244, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992549948362331, "trigger": 800, "sampling_rate": 105, "lag": 1.5344206207290525, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9997268784519233, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3865409366750647, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6128.3195379765775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264590090896665, "grain_number": 5, "grain_density": 1710.5163705955283, "grain_outer_radius": 0.033084846673437605, "grain_initial_inner_radius": 0.015260125055341264, "grain_initial_height": 0.12124008395877095, "grain_separation": 0.0034861214682539643, "grains_center_of_mass_position": 0.39807539411150067, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004864286465987761, "throat_radius": 0.011162319700632818, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253842174060294}], "aerodynamic_surfaces": [{"length": 0.5571449084624325, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334522455987175}, {"n": 4, "root_chord": 0.11910361160820646, "tip_chord": 0.060604433828311134, "span": 0.109581299671181, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508734841236698}, {"top_radius": 0.06477212033020786, "bottom_radius": 0.04392155300392177, "length": 0.060092180060862914, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015248972410896, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161011989053015, "upper_button_position": 0.08542369833578811}], "rail_length": 5, "inclination": 84.72092868140754, "heading": 56.63659512464313} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349561281059433, "mass": 15.372942463139264, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332011315024008, "I_33_without_motor": 0.03853271568674038, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.834396846783815, "trigger": 800, "sampling_rate": 105, "lag": 1.5696749488016122, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9835667387970989, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7521307394355528, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4921.674113589168, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032507089299443986, "grain_number": 5, "grain_density": 1802.1539209368252, "grain_outer_radius": 0.032661335406713184, "grain_initial_inner_radius": 0.014997319232274122, "grain_initial_height": 0.12157431554729534, "grain_separation": 0.00467395277948397, "grains_center_of_mass_position": 0.39710351807017735, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002635273896102939, "throat_radius": 0.010783382237691798, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547375197144415}], "aerodynamic_surfaces": [{"length": 0.5571358314907047, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322024805338562}, {"n": 4, "root_chord": 0.12011228759507067, "tip_chord": 0.06000566396805879, "span": 0.1093642749972002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477076646893269}, {"top_radius": 0.06253654660172613, "bottom_radius": 0.04559644151173715, "length": 0.05847341310764742, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7019976226530759, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195781615002712, "upper_button_position": 0.08241946115280463}], "rail_length": 5, "inclination": 85.34708792590425, "heading": 48.86714920492764} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350335601483965, "mass": 15.73949362483803, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324770483332484, "I_33_without_motor": 0.023885184358242505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.880468034765835, "trigger": 800, "sampling_rate": 105, "lag": 1.7241656300187942, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0057335005927428, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5818470346501847, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5656.479652356449, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332863660438671, "grain_number": 5, "grain_density": 1823.6801300182642, "grain_outer_radius": 0.032521020886536564, "grain_initial_inner_radius": 0.015454583880365929, "grain_initial_height": 0.11876155271239966, "grain_separation": 0.005846904470162803, "grains_center_of_mass_position": 0.39662842143869476, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008289438677905188, "throat_radius": 0.011625062924950925, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550328407927636}], "aerodynamic_surfaces": [{"length": 0.5587889102183835, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134854774851812}, {"n": 4, "root_chord": 0.12085315054660217, "tip_chord": 0.060331691077046355, "span": 0.10998581172690447, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500226968346469}, {"top_radius": 0.0638519719111916, "bottom_radius": 0.04379136504793316, "length": 0.05763470100862744, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987423914412408, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187784341329883, "upper_button_position": 0.07996395730825256}], "rail_length": 5, "inclination": 83.49707332502561, "heading": 53.09586632765948} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349125025787206, "mass": 14.955966507623744, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316243994446691, "I_33_without_motor": 0.026709311524418022, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.899196768811942, "trigger": 800, "sampling_rate": 105, "lag": 1.5617709762926961, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9113248461461597, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4980109949987954, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6328.900970966967, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274397458438398, "grain_number": 5, "grain_density": 1820.0585590282767, "grain_outer_radius": 0.033459710267454965, "grain_initial_inner_radius": 0.015199764199205724, "grain_initial_height": 0.1210069877131966, "grain_separation": 0.005133515171074662, "grains_center_of_mass_position": 0.39697025260780555, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003567584977277657, "throat_radius": 0.010945899593145233, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551745889180534}], "aerodynamic_surfaces": [{"length": 0.5581890000797153, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329235752807758}, {"n": 4, "root_chord": 0.11954188482342788, "tip_chord": 0.06042258101406226, "span": 0.11046156562419512, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490952916304639}, {"top_radius": 0.06458994637244454, "bottom_radius": 0.04317624204912902, "length": 0.06134372919695817, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7021113792208807, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182921119264668, "upper_button_position": 0.08381926729441391}], "rail_length": 5, "inclination": 84.46992757338508, "heading": 51.7588559209316} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349678544029613, "mass": 16.216042173462746, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319165543553844, "I_33_without_motor": 0.030827060294323468, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957069119978588, "trigger": 800, "sampling_rate": 105, "lag": 1.649740615759169, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0219988427489983, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4467115831257487, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8334.406543530487, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03226170400874562, "grain_number": 5, "grain_density": 1788.0085388576128, "grain_outer_radius": 0.033233547402463544, "grain_initial_inner_radius": 0.014918180912516508, "grain_initial_height": 0.11941946634966548, "grain_separation": 0.0036835818469192812, "grains_center_of_mass_position": 0.39751434142658143, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006764080314187904, "throat_radius": 0.010235867888932215, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255915650800535}], "aerodynamic_surfaces": [{"length": 0.5591418255947622, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345357995499248}, {"n": 4, "root_chord": 0.12029566155516504, "tip_chord": 0.060805877223988156, "span": 0.1092032183640634, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504451418645413}, {"top_radius": 0.06439389322103331, "bottom_radius": 0.0435216335575759, "length": 0.06196418514454357, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000272962968435, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618208509334899, "upper_button_position": 0.08181878696194445}], "rail_length": 5, "inclination": 84.14997205696507, "heading": 54.80337322823908} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634896161240461, "mass": 16.329309084695602, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335271438054827, "I_33_without_motor": 0.009460099780854894, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953655497493292, "trigger": 800, "sampling_rate": 105, "lag": 1.584225051852109, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0715063101246765, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5812182337201222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7287.024142883654, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328891169681448, "grain_number": 5, "grain_density": 1829.5626383299657, "grain_outer_radius": 0.032898710221195136, "grain_initial_inner_radius": 0.015740331443497856, "grain_initial_height": 0.1193093928651607, "grain_separation": 0.0046736225064451875, "grains_center_of_mass_position": 0.3952155862258003, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004975426645834604, "throat_radius": 0.011652263040804006, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548665377389858}], "aerodynamic_surfaces": [{"length": 0.5588890000841278, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133551493514959}, {"n": 4, "root_chord": 0.12041106415282542, "tip_chord": 0.060132476100943494, "span": 0.1095621747564292, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049964763022926}, {"top_radius": 0.06372611504489822, "bottom_radius": 0.043193137879864285, "length": 0.05932995373223147, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004372015980027, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178568003767757, "upper_button_position": 0.082580401221227}], "rail_length": 5, "inclination": 84.19952764601892, "heading": 50.49167116137796} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0635074199231784, "mass": 15.470199704038425, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321425611743911, "I_33_without_motor": 0.04534298460210463, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956647660944727, "trigger": 800, "sampling_rate": 105, "lag": 1.5592229824481874, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.03430532808286, "trigger": "apogee", "sampling_rate": 105, "lag": 1.852015820609307, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6423.549071773269, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03213587772957337, "grain_number": 5, "grain_density": 1853.0593061145655, "grain_outer_radius": 0.03319522545254149, "grain_initial_inner_radius": 0.015012641431235887, "grain_initial_height": 0.11952843131347124, "grain_separation": 0.004162629338685422, "grains_center_of_mass_position": 0.3983952227259839, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002327448497340686, "throat_radius": 0.010944512349630753, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537938107709148}], "aerodynamic_surfaces": [{"length": 0.558125469889385, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340635156486294}, {"n": 4, "root_chord": 0.1193219177218539, "tip_chord": 0.0594479984398824, "span": 0.11068805580190888, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488610598121721}, {"top_radius": 0.06436437364959018, "bottom_radius": 0.04307979080819027, "length": 0.06099262526160718, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992959376780042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170072962083935, "upper_button_position": 0.08228864146961079}], "rail_length": 5, "inclination": 85.28724378939879, "heading": 49.68406198830715} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634945170722345, "mass": 15.091350299197362, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315016617087088, "I_33_without_motor": 0.03615585732436084, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.129385567616048, "trigger": 800, "sampling_rate": 105, "lag": 1.4974596065547676, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8951062132802862, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5867468381623913, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6657.4780433374635, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337990573921591, "grain_number": 5, "grain_density": 1864.0774238591755, "grain_outer_radius": 0.033613779173849834, "grain_initial_inner_radius": 0.015080702766461625, "grain_initial_height": 0.1189311743258308, "grain_separation": 0.005306934889650087, "grains_center_of_mass_position": 0.3982713850685515, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000772164334027109, "throat_radius": 0.012153303147901754, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535969782006948}], "aerodynamic_surfaces": [{"length": 0.557269434080561, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135139117487651}, {"n": 4, "root_chord": 0.12032539476295666, "tip_chord": 0.06017696645409609, "span": 0.11043298604313563, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488869809269914}, {"top_radius": 0.06207994483717079, "bottom_radius": 0.044390180827552035, "length": 0.06028821376132161, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994491886768601, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187027375635491, "upper_button_position": 0.08074645111331102}], "rail_length": 5, "inclination": 82.92456035867804, "heading": 53.77193986043102} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350234601158937, "mass": 15.896870601541227, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319098134607969, "I_33_without_motor": 0.06136617568842152, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001980540263263, "trigger": 800, "sampling_rate": 105, "lag": 1.5371963414118177, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1137543323775791, "trigger": "apogee", "sampling_rate": 105, "lag": 1.508872601981167, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7463.700678568273, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341118870699767, "grain_number": 5, "grain_density": 1794.5047745935506, "grain_outer_radius": 0.03357135243493428, "grain_initial_inner_radius": 0.014236014327898089, "grain_initial_height": 0.12067428074743414, "grain_separation": 0.005506469055200093, "grains_center_of_mass_position": 0.39582323514225637, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.728994667596192e-05, "throat_radius": 0.010838962005691104, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550055539641993}], "aerodynamic_surfaces": [{"length": 0.5570304891504179, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342053634951605}, {"n": 4, "root_chord": 0.12103813993886915, "tip_chord": 0.05989926349276146, "span": 0.11013650018717504, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504892663791534}, {"top_radius": 0.06341205859853498, "bottom_radius": 0.04385302336121198, "length": 0.059549174479225316, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012340537116946, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161415195132501, "upper_button_position": 0.08509253419844443}], "rail_length": 5, "inclination": 83.61702891665641, "heading": 53.77845062882038} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350163537814094, "mass": 15.511115610875892, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309949308990951, "I_33_without_motor": 0.019572218011506798, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.078730404451422, "trigger": 800, "sampling_rate": 105, "lag": 1.5268134818069585, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9959154166459596, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6536699402459465, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6101.478679973828, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032615757542168625, "grain_number": 5, "grain_density": 1879.1954218656479, "grain_outer_radius": 0.03247185433202101, "grain_initial_inner_radius": 0.015139008535151417, "grain_initial_height": 0.12113576780479064, "grain_separation": 0.0035980833578741185, "grains_center_of_mass_position": 0.3972990067874325, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014808624988414448, "throat_radius": 0.010578220966690793, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552007416902848}], "aerodynamic_surfaces": [{"length": 0.5563823317160002, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342734782500419}, {"n": 4, "root_chord": 0.1197450122008792, "tip_chord": 0.06017451082670373, "span": 0.1100731757066297, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493663457490396}, {"top_radius": 0.06498711100693996, "bottom_radius": 0.043703899738758364, "length": 0.060020668484445185, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004849737521942, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184168461794086, "upper_button_position": 0.08206812757278559}], "rail_length": 5, "inclination": 83.81397252329066, "heading": 51.932142453299434} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349874864915546, "mass": 15.179012487997078, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321018904206979, "I_33_without_motor": 0.026789115572613643, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.13553423888303, "trigger": 800, "sampling_rate": 105, "lag": 1.5401398627450897, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0613950268307624, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6715607244176711, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4946.106966734945, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301469875653238, "grain_number": 5, "grain_density": 1747.2762956273439, "grain_outer_radius": 0.03259449916319652, "grain_initial_inner_radius": 0.015283024780977929, "grain_initial_height": 0.11903045493864989, "grain_separation": 0.0056770585880767215, "grains_center_of_mass_position": 0.39676975972541884, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013775277906481142, "throat_radius": 0.011063095537010282, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548964182507694}], "aerodynamic_surfaces": [{"length": 0.5590056033997303, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334662742290578}, {"n": 4, "root_chord": 0.11984428477150998, "tip_chord": 0.059625781654131946, "span": 0.10968437761405175, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04991459846837}, {"top_radius": 0.06465382504661593, "bottom_radius": 0.043541129262757716, "length": 0.05986792663121158, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700784946203797, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163771958638956, "upper_button_position": 0.08440775033990144}], "rail_length": 5, "inclination": 86.07055947369571, "heading": 52.920913807800346} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350272661488217, "mass": 14.702056862456443, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3207571000095975, "I_33_without_motor": 0.03836580109141423, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.858936736932524, "trigger": 800, "sampling_rate": 105, "lag": 1.6247762951523577, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9674921091396026, "trigger": "apogee", "sampling_rate": 105, "lag": 1.486913901038311, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7463.762971499232, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03166255574025866, "grain_number": 5, "grain_density": 1820.5426122993604, "grain_outer_radius": 0.03330962923514212, "grain_initial_inner_radius": 0.014978548448173642, "grain_initial_height": 0.12001785940804396, "grain_separation": 0.005025251140024757, "grains_center_of_mass_position": 0.3955282112563149, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015837999650086243, "throat_radius": 0.011221051404363544, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565891919440595}], "aerodynamic_surfaces": [{"length": 0.55919419472832, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134692779790339}, {"n": 4, "root_chord": 0.11986486750447468, "tip_chord": 0.06043820054055574, "span": 0.10949739362989387, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048318232459525}, {"top_radius": 0.06138214150811997, "bottom_radius": 0.045057330319336446, "length": 0.060003249522203275, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002722827368721, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618162318802552, "upper_button_position": 0.08210996393432013}], "rail_length": 5, "inclination": 83.9025677275448, "heading": 56.72911593791698} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349952188757339, "mass": 14.863664411379558, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32346186161593, "I_33_without_motor": 0.037864007986865865, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.173594092752188, "trigger": 800, "sampling_rate": 105, "lag": 1.5326625572642385, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9413278263241807, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7753605454823642, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7116.349400450705, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03369929464850726, "grain_number": 5, "grain_density": 1805.9821067175162, "grain_outer_radius": 0.0329183805598675, "grain_initial_inner_radius": 0.015183959975365657, "grain_initial_height": 0.12189242911841687, "grain_separation": 0.005092701370413831, "grains_center_of_mass_position": 0.39581873830802783, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006409487211799229, "throat_radius": 0.010853258156861785, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542077971735806}], "aerodynamic_surfaces": [{"length": 0.558508094281799, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348912199430174}, {"n": 4, "root_chord": 0.11889922104872105, "tip_chord": 0.060226755469417206, "span": 0.11071933521975229, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049482700221344}, {"top_radius": 0.0641887882516173, "bottom_radius": 0.04353054378148016, "length": 0.06129192979538084, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998055132275824, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188497301584835, "upper_button_position": 0.0809557830690989}], "rail_length": 5, "inclination": 81.299252525712, "heading": 54.25254759362718} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349200229029933, "mass": 15.108754219142797, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327977755907571, "I_33_without_motor": 0.04966284648679247, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.124535603571973, "trigger": 800, "sampling_rate": 105, "lag": 1.4155784118687893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1033106551580403, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3087628908398994, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7121.708567016993, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327941892201004, "grain_number": 5, "grain_density": 1845.8312042223483, "grain_outer_radius": 0.03383886268559924, "grain_initial_inner_radius": 0.014991278901277593, "grain_initial_height": 0.11997467947133819, "grain_separation": 0.003655806971589166, "grains_center_of_mass_position": 0.3964967679083126, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003431440087883499, "throat_radius": 0.01098429735616078, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255744423373455}], "aerodynamic_surfaces": [{"length": 0.5580032051865611, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322285554468599}, {"n": 4, "root_chord": 0.12052281161134422, "tip_chord": 0.05996779713402041, "span": 0.10891176329342585, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492708617254591}, {"top_radius": 0.06300470313069496, "bottom_radius": 0.043000800203840596, "length": 0.05933490341254324, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990029248680164, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171790583200845, "upper_button_position": 0.08182386654793194}], "rail_length": 5, "inclination": 84.49285878736204, "heading": 50.695232987755944} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.0634981805770399, "mass": 15.117439893742985, "I_11_without_motor": 6.321, "I_22_without_motor": 6.297608463075989, "I_33_without_motor": 0.03713735185453575, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.185150355618147, "trigger": 800, "sampling_rate": 105, "lag": 1.524334295359672, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0209957905122202, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3663093334140715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4270.967414196304, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033215862613646396, "grain_number": 5, "grain_density": 1689.2558265971136, "grain_outer_radius": 0.033615461995824616, "grain_initial_inner_radius": 0.015085006653919528, "grain_initial_height": 0.11989439262367352, "grain_separation": 0.004159198983410978, "grains_center_of_mass_position": 0.3962371481796037, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006588304176419538, "throat_radius": 0.01205037551155848, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255817973156072}], "aerodynamic_surfaces": [{"length": 0.5567172725906487, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353054232766657}, {"n": 4, "root_chord": 0.11942415641470856, "tip_chord": 0.06005319381426605, "span": 0.11034962620317945, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484954635866153}, {"top_radius": 0.06367221620540393, "bottom_radius": 0.045150438037199425, "length": 0.06008998105165639, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699659413659099, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169475543051439, "upper_button_position": 0.08271185935395509}], "rail_length": 5, "inclination": 86.19276063890646, "heading": 54.76358993233559} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348522808430442, "mass": 15.656307237189997, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3122922557984165, "I_33_without_motor": 0.043188284243501705, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.951917722071414, "trigger": 800, "sampling_rate": 105, "lag": 1.490126410998432, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0617887684972043, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4832055771804804, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5572.613863139877, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294448879787425, "grain_number": 5, "grain_density": 1714.3255824673058, "grain_outer_radius": 0.032982917214125655, "grain_initial_inner_radius": 0.015215314614884417, "grain_initial_height": 0.1204688544412585, "grain_separation": 0.004672278846261367, "grains_center_of_mass_position": 0.3982274786425592, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012080219968444337, "throat_radius": 0.01083758945932451, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547311765375844}], "aerodynamic_surfaces": [{"length": 0.5582641643257892, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132142932668316}, {"n": 4, "root_chord": 0.1201147609181722, "tip_chord": 0.05967595716409015, "span": 0.10891523351189543, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500682638247991}, {"top_radius": 0.06356653948142364, "bottom_radius": 0.04509990585412275, "length": 0.059865442041930665, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995140017166488, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619265272826177, "upper_button_position": 0.08024872889047174}], "rail_length": 5, "inclination": 85.67459788599075, "heading": 53.02077626293343} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0634921483440822, "mass": 15.043486530634695, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312812617236149, "I_33_without_motor": 0.03120392151862802, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.065816125599794, "trigger": 800, "sampling_rate": 105, "lag": 1.4429081252724922, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0699543392175739, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4641540499271042, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4514.454629101702, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237747217068748, "grain_number": 5, "grain_density": 1867.0243183922155, "grain_outer_radius": 0.033037107430198984, "grain_initial_inner_radius": 0.014862703539624307, "grain_initial_height": 0.118442901096567, "grain_separation": 0.005425261874576562, "grains_center_of_mass_position": 0.3959009024266607, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000915636669073041, "throat_radius": 0.010469162384392616, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539074642625134}], "aerodynamic_surfaces": [{"length": 0.5579617171013501, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325523420163455}, {"n": 4, "root_chord": 0.1203333099266697, "tip_chord": 0.060040677384389673, "span": 0.11037071245315372, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049746808351666}, {"top_radius": 0.06439580382934666, "bottom_radius": 0.04442005608481712, "length": 0.06192078138413794, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990518716558576, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177428905730099, "upper_button_position": 0.08130898108284768}], "rail_length": 5, "inclination": 84.05758077629905, "heading": 55.78764420208075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350672575642044, "mass": 14.877302379782044, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333614648078883, "I_33_without_motor": 0.04192456683573141, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957939447159456, "trigger": 800, "sampling_rate": 105, "lag": 1.4353126753465766, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0906066843612205, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4765007747992687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7109.488663968508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350004141490341, "grain_number": 5, "grain_density": 1845.447956045782, "grain_outer_radius": 0.032896876626144336, "grain_initial_inner_radius": 0.015383146711732552, "grain_initial_height": 0.1174028169988616, "grain_separation": 0.0064951518600869715, "grains_center_of_mass_position": 0.3977055213144828, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020873520769204997, "throat_radius": 0.010717686510407302, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536026528812791}], "aerodynamic_surfaces": [{"length": 0.5574899040077294, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338889977343931}, {"n": 4, "root_chord": 0.11960689713488681, "tip_chord": 0.06066797821756021, "span": 0.10973651302560446, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504492725824643}, {"top_radius": 0.06342929217050378, "bottom_radius": 0.04418667703918942, "length": 0.05885255881478538, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005082988272688, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617165080345092, "upper_button_position": 0.08334321848217685}], "rail_length": 5, "inclination": 84.75023262559182, "heading": 52.71466645091846} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350033952831388, "mass": 15.257772398094408, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322545613234406, "I_33_without_motor": 0.03611094463692792, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022533700308365, "trigger": 800, "sampling_rate": 105, "lag": 1.5152020777046835, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.974359844697127, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6629310830896329, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6746.5807980508125, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324522913181361, "grain_number": 5, "grain_density": 1902.0105791475323, "grain_outer_radius": 0.033296910197836774, "grain_initial_inner_radius": 0.015356123042756013, "grain_initial_height": 0.12012014729897076, "grain_separation": 0.007136654034662746, "grains_center_of_mass_position": 0.3964513187389608, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007860337694955469, "throat_radius": 0.010974450196576726, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544514830928344}], "aerodynamic_surfaces": [{"length": 0.559794873830401, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334547160122779}, {"n": 4, "root_chord": 0.12022309147644102, "tip_chord": 0.06030497784642053, "span": 0.10998230881107167, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486757466542058}, {"top_radius": 0.06306801521033925, "bottom_radius": 0.04582197246335357, "length": 0.058703922220774245, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000375838827517, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172351443480059, "upper_button_position": 0.08280243953474586}], "rail_length": 5, "inclination": 85.31245655255667, "heading": 52.338742747358914} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635087728333798, "mass": 15.709278706421209, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34410566921371, "I_33_without_motor": 0.04898566398368086, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932477150003695, "trigger": 800, "sampling_rate": 105, "lag": 1.4227543699310161, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9066495321052453, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5286745528772265, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6979.3152937565765, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298706896672929, "grain_number": 5, "grain_density": 1830.2867566336515, "grain_outer_radius": 0.032995507638731714, "grain_initial_inner_radius": 0.015034290938406556, "grain_initial_height": 0.12067844725350237, "grain_separation": 0.004381459314812267, "grains_center_of_mass_position": 0.39933229845805374, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0024200704476005316, "throat_radius": 0.01080741891920192, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559243148819916}], "aerodynamic_surfaces": [{"length": 0.5591535697820295, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344723589151402}, {"n": 4, "root_chord": 0.11918506194036103, "tip_chord": 0.059696201717016624, "span": 0.11009189151013246, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496612525892155}, {"top_radius": 0.06380248844036746, "bottom_radius": 0.04466993790556677, "length": 0.06034481400724863, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.70017539509335, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6149780516928961, "upper_button_position": 0.08519734340045393}], "rail_length": 5, "inclination": 85.02504909695584, "heading": 48.60191365644261} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349377061483372, "mass": 15.464067595839639, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342670715814353, "I_33_without_motor": 0.016165682997921614, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090793732724498, "trigger": 800, "sampling_rate": 105, "lag": 1.6110161046898002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9948200814730994, "trigger": "apogee", "sampling_rate": 105, "lag": 1.345730971696312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5760.945574469296, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033901677506223984, "grain_number": 5, "grain_density": 1767.6360900645248, "grain_outer_radius": 0.03251482011948328, "grain_initial_inner_radius": 0.015664014936390917, "grain_initial_height": 0.12024401002700129, "grain_separation": 0.007651648859934053, "grains_center_of_mass_position": 0.39697804118521623, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001856729695665439, "throat_radius": 0.011482757011966301, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558855535033122}], "aerodynamic_surfaces": [{"length": 0.5582265159675321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323234104362045}, {"n": 4, "root_chord": 0.12002427785163941, "tip_chord": 0.06074645874668078, "span": 0.11013906809460577, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500489299222617}, {"top_radius": 0.0634000254322366, "bottom_radius": 0.04297133732410664, "length": 0.059961317907234024, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995153383628115, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187304610976858, "upper_button_position": 0.08078487726512573}], "rail_length": 5, "inclination": 84.63612514969847, "heading": 54.765347360571184} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349065342388005, "mass": 15.656866343294677, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3211766308175354, "I_33_without_motor": 0.04047416754423752, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980404222839015, "trigger": 800, "sampling_rate": 105, "lag": 1.521355737517161, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027063689901043, "trigger": "apogee", "sampling_rate": 105, "lag": 1.371142389902559, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4367.561742443828, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324833206942306, "grain_number": 5, "grain_density": 1809.136642018346, "grain_outer_radius": 0.03267253410422276, "grain_initial_inner_radius": 0.015170669136152412, "grain_initial_height": 0.1185183800792717, "grain_separation": 0.003925359157336555, "grains_center_of_mass_position": 0.3978361225304176, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.382641244042519e-05, "throat_radius": 0.009936403150871485, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559359200917874}], "aerodynamic_surfaces": [{"length": 0.5566197128419413, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1355665022824946}, {"n": 4, "root_chord": 0.11974649559332878, "tip_chord": 0.06035167351864026, "span": 0.10995830249569429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0479659239283936}, {"top_radius": 0.06282186519834071, "bottom_radius": 0.04341566095176763, "length": 0.06154877941464533, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993529049005629, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61907247934395, "upper_button_position": 0.08028042555661286}], "rail_length": 5, "inclination": 85.08077091078967, "heading": 49.56417716227334} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349642801820862, "mass": 15.496919890336192, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320861431660141, "I_33_without_motor": 0.03203366624022167, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979015854183139, "trigger": 800, "sampling_rate": 105, "lag": 1.6515498384106093, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1126017929212098, "trigger": "apogee", "sampling_rate": 105, "lag": 1.395155425168961, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4714.292500240889, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0332652239483223, "grain_number": 5, "grain_density": 1759.8303203176115, "grain_outer_radius": 0.03220806979369486, "grain_initial_inner_radius": 0.014664334930686966, "grain_initial_height": 0.1202378466173783, "grain_separation": 0.004306083020644059, "grains_center_of_mass_position": 0.39425376321091676, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011542704652125397, "throat_radius": 0.010431875027328898, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256819182365277}], "aerodynamic_surfaces": [{"length": 0.5577461679925111, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338358637613482}, {"n": 4, "root_chord": 0.12012441439447626, "tip_chord": 0.05953047885961394, "span": 0.11033872765273033, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.046898530311948}, {"top_radius": 0.06387664388093203, "bottom_radius": 0.04421190507914448, "length": 0.06011231737701846, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004032983133341, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182234647426009, "upper_button_position": 0.08217983357073322}], "rail_length": 5, "inclination": 84.66451258290815, "heading": 53.52149551562766} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06351006511257438, "mass": 14.933107230073782, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316245703585885, "I_33_without_motor": 0.02236779030881364, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99264973978591, "trigger": 800, "sampling_rate": 105, "lag": 1.337595190646103, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8916959183094025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5612046085541305, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7487.2500686305475, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252768918755051, "grain_number": 5, "grain_density": 1814.058037297487, "grain_outer_radius": 0.03313371286278896, "grain_initial_inner_radius": 0.015114390138026092, "grain_initial_height": 0.12075586682464258, "grain_separation": 0.004475357153121041, "grains_center_of_mass_position": 0.3963055710109639, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006371552151480423, "throat_radius": 0.010786637217212715, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541911174506062}], "aerodynamic_surfaces": [{"length": 0.5581734689479347, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341831630907682}, {"n": 4, "root_chord": 0.11938162354372633, "tip_chord": 0.05976978647155689, "span": 0.11012575262202005, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500021978621263}, {"top_radius": 0.06503135158830178, "bottom_radius": 0.04490420225543326, "length": 0.05950146673955854, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981640554183598, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6203592518314157, "upper_button_position": 0.07780480358694408}], "rail_length": 5, "inclination": 85.22773977562044, "heading": 54.618607817274295} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.063495854731584, "mass": 16.160722983852413, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324384218864833, "I_33_without_motor": 0.04734011978703114, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.067119058737596, "trigger": 800, "sampling_rate": 105, "lag": 1.6013730039222234, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0898635207059917, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6260712815372218, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6521.938377730623, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297562630945312, "grain_number": 5, "grain_density": 1813.0030083494112, "grain_outer_radius": 0.03303321652069171, "grain_initial_inner_radius": 0.015345615929199712, "grain_initial_height": 0.11876844771945319, "grain_separation": 0.004389393661116121, "grains_center_of_mass_position": 0.3969862597256224, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005685525300978018, "throat_radius": 0.010676893751630582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2576685281223585}], "aerodynamic_surfaces": [{"length": 0.5577228786123308, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134701424800015}, {"n": 4, "root_chord": 0.12017110081402453, "tip_chord": 0.06005019024722223, "span": 0.10954303067449017, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486458225305455}, {"top_radius": 0.06309671458041567, "bottom_radius": 0.04447118220390387, "length": 0.06141947029677415, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700172573794904, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618682492228292, "upper_button_position": 0.08149008156661208}], "rail_length": 5, "inclination": 85.66012806866169, "heading": 52.02888046448024} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349957274773857, "mass": 14.69602438391413, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32405962913558, "I_33_without_motor": 0.034598003553365834, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851763210323615, "trigger": 800, "sampling_rate": 105, "lag": 1.3648539457543385, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0767210320687097, "trigger": "apogee", "sampling_rate": 105, "lag": 1.155673314040986, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6935.045823286734, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032622726724799586, "grain_number": 5, "grain_density": 1776.3014513773867, "grain_outer_radius": 0.03284260189237975, "grain_initial_inner_radius": 0.015570245679336374, "grain_initial_height": 0.1201599074037644, "grain_separation": 0.004872861693087162, "grains_center_of_mass_position": 0.3964832661253262, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020745136828941062, "throat_radius": 0.011609055701937047, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546611349229968}], "aerodynamic_surfaces": [{"length": 0.5597522828954558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343433893460941}, {"n": 4, "root_chord": 0.11937575242566185, "tip_chord": 0.05893023798937512, "span": 0.10990866618159155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487521554161146}, {"top_radius": 0.0643036542542218, "bottom_radius": 0.04451200696804311, "length": 0.060259833786140526, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991146807165329, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186717861510018, "upper_button_position": 0.08044289456553111}], "rail_length": 5, "inclination": 83.38283554395765, "heading": 51.99933413556276} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06351344456688945, "mass": 15.047493945586579, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324149018667146, "I_33_without_motor": 0.03848731806758914, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.062332360155533, "trigger": 800, "sampling_rate": 105, "lag": 1.5554203461042742, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9783577146880202, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2170297727846306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6044.97496712741, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244010672979978, "grain_number": 5, "grain_density": 1821.0108180808475, "grain_outer_radius": 0.03265861070598829, "grain_initial_inner_radius": 0.014958971781485518, "grain_initial_height": 0.11818437383433228, "grain_separation": 0.004362983014566544, "grains_center_of_mass_position": 0.3983357724676317, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006711318586450475, "throat_radius": 0.011675496798019632, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551457128209202}], "aerodynamic_surfaces": [{"length": 0.5583978113628929, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339462384077321}, {"n": 4, "root_chord": 0.12005162461041911, "tip_chord": 0.060279832546751594, "span": 0.1099274836326746, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492091072423584}, {"top_radius": 0.0632281858101692, "bottom_radius": 0.044045814310530965, "length": 0.06058421945224582, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988159988569651, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619300149462489, "upper_button_position": 0.07951584939447609}], "rail_length": 5, "inclination": 83.95508385938616, "heading": 55.57520740368481} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350287406811167, "mass": 16.244661960312825, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31154367906728, "I_33_without_motor": 0.04436348543132293, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10263874024049, "trigger": 800, "sampling_rate": 105, "lag": 1.6087220850646016, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9641774199174314, "trigger": "apogee", "sampling_rate": 105, "lag": 1.43071189325627, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5261.58968548308, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296686156733544, "grain_number": 5, "grain_density": 1910.7432957997326, "grain_outer_radius": 0.03252174049676654, "grain_initial_inner_radius": 0.015085820041813231, "grain_initial_height": 0.11979620609753198, "grain_separation": 0.006180862532413621, "grains_center_of_mass_position": 0.39726933547368887, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023283326110560046, "throat_radius": 0.012369892246162008, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562264056013788}], "aerodynamic_surfaces": [{"length": 0.5594667687364578, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334546717564713}, {"n": 4, "root_chord": 0.11951374284693227, "tip_chord": 0.060130195843372924, "span": 0.10924569269204339, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489978108527303}, {"top_radius": 0.06433782482154596, "bottom_radius": 0.04423186801344152, "length": 0.061452215799948855, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002064064511886, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191866350094645, "upper_button_position": 0.08101977144172412}], "rail_length": 5, "inclination": 84.17470210531619, "heading": 54.17239757139231} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350555433206355, "mass": 15.336954997966325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317170702731769, "I_33_without_motor": 0.03875865579324962, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.139091642568067, "trigger": 800, "sampling_rate": 105, "lag": 1.4988235246722263, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9642685543613414, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7601463873600318, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3890.2991581889805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345219903914816, "grain_number": 5, "grain_density": 1835.2872778841179, "grain_outer_radius": 0.032344361582811516, "grain_initial_inner_radius": 0.014961825746224944, "grain_initial_height": 0.1196824910881126, "grain_separation": 0.005928688763517279, "grains_center_of_mass_position": 0.3977991170114286, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00013194242524379167, "throat_radius": 0.011808615598215368, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551344763564463}], "aerodynamic_surfaces": [{"length": 0.5592437309302285, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344213116020754}, {"n": 4, "root_chord": 0.12057030316262553, "tip_chord": 0.06017048689635271, "span": 0.10996589671619672, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487221855331976}, {"top_radius": 0.06517635010845438, "bottom_radius": 0.04405266403956029, "length": 0.05800522475259121, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005677755512009, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179527339993902, "upper_button_position": 0.08261504155181065}], "rail_length": 5, "inclination": 83.9470906317959, "heading": 48.69614937203076} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06351690993730809, "mass": 14.692472606363413, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334893855570663, "I_33_without_motor": 0.03553607017435403, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.87180209636844, "trigger": 800, "sampling_rate": 105, "lag": 1.5443267096928694, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.042303796959836, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3364587560890484, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7996.512842678829, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311696566213634, "grain_number": 5, "grain_density": 1823.780155689727, "grain_outer_radius": 0.03265820451753537, "grain_initial_inner_radius": 0.01463021925543282, "grain_initial_height": 0.1199934711443423, "grain_separation": 0.005250380599042719, "grains_center_of_mass_position": 0.3981922925306999, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016091205022163116, "throat_radius": 0.011822528944037685, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254990307419153}], "aerodynamic_surfaces": [{"length": 0.5582067341853905, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341907251751984}, {"n": 4, "root_chord": 0.12112876754703034, "tip_chord": 0.0591770560422542, "span": 0.10981858261788051, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492277301262403}, {"top_radius": 0.06233604382248501, "bottom_radius": 0.04478181469925164, "length": 0.05869768861654447, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992496085242675, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182526910638546, "upper_button_position": 0.08099691746041293}], "rail_length": 5, "inclination": 85.58051669313657, "heading": 52.93553076543922} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349305438528781, "mass": 16.105095450743917, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319592177471706, "I_33_without_motor": 0.03545902401039303, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029544217094223, "trigger": 800, "sampling_rate": 105, "lag": 1.4687074624614502, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9657524636691439, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3524013182057362, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5756.6501253120905, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03205791135582405, "grain_number": 5, "grain_density": 1790.7279394522695, "grain_outer_radius": 0.03309403791854917, "grain_initial_inner_radius": 0.014878687203652765, "grain_initial_height": 0.11910597337167818, "grain_separation": 0.005280617127384184, "grains_center_of_mass_position": 0.3961949917377508, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000880248404137181, "throat_radius": 0.011060461157192778, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547775993183452}], "aerodynamic_surfaces": [{"length": 0.5578351463352348, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332928375594578}, {"n": 4, "root_chord": 0.1204801082810929, "tip_chord": 0.06035156090630587, "span": 0.11076336385849346, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507004596060756}, {"top_radius": 0.06231180017054802, "bottom_radius": 0.043206882747411995, "length": 0.059728802926710706, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999270701951549, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180349711179572, "upper_button_position": 0.08189209907719763}], "rail_length": 5, "inclination": 85.52521230973183, "heading": 53.192546489980636} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350438284207693, "mass": 15.232256530652672, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32443852056014, "I_33_without_motor": 0.015891185692272086, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925479738673465, "trigger": 800, "sampling_rate": 105, "lag": 1.5509544505359174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9193525865083916, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2413950721204512, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5847.896901819748, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03261640780177846, "grain_number": 5, "grain_density": 1790.2306811244905, "grain_outer_radius": 0.033093614433933806, "grain_initial_inner_radius": 0.014598492604324708, "grain_initial_height": 0.11900704506855396, "grain_separation": 0.005466754059902256, "grains_center_of_mass_position": 0.3975289224122607, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031312496178670526, "throat_radius": 0.012135342821950985, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546289898796779}], "aerodynamic_surfaces": [{"length": 0.5591249232873697, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333451094602902}, {"n": 4, "root_chord": 0.1208260957757625, "tip_chord": 0.05966265843085574, "span": 0.10959764383312061, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484189192681013}, {"top_radius": 0.063868578445441, "bottom_radius": 0.042425768567274987, "length": 0.06031390468172948, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016370732286011, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188740502800005, "upper_button_position": 0.0827630229486006}], "rail_length": 5, "inclination": 85.11725151906796, "heading": 53.68458952984809} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350193601562143, "mass": 16.490013855540393, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308289080464931, "I_33_without_motor": 0.012121949602614961, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.181691030461934, "trigger": 800, "sampling_rate": 105, "lag": 1.6068229617793854, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8242262408674315, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1264706870433194, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7574.070154898738, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305298727726442, "grain_number": 5, "grain_density": 1850.030947167178, "grain_outer_radius": 0.03327199451754103, "grain_initial_inner_radius": 0.015530056780315537, "grain_initial_height": 0.12063927449239437, "grain_separation": 0.00712503212507379, "grains_center_of_mass_position": 0.397192879317598, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010254266238470806, "throat_radius": 0.010986641062071591, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556696491895178}], "aerodynamic_surfaces": [{"length": 0.5598450705621062, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342277478444853}, {"n": 4, "root_chord": 0.11997991423382173, "tip_chord": 0.06045656758473589, "span": 0.10979033326552641, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051359619476104}, {"top_radius": 0.06406525541265098, "bottom_radius": 0.045546969373484715, "length": 0.06189679621048501, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991333728338434, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167971980174198, "upper_button_position": 0.08233617481642352}], "rail_length": 5, "inclination": 84.83245248536879, "heading": 56.14179599087208} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350115600057549, "mass": 15.406921888893418, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324809872987988, "I_33_without_motor": 0.04424700769687879, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.842805354198154, "trigger": 800, "sampling_rate": 105, "lag": 1.5343573025677266, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9945053281872841, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7435750771840592, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6550.987252303132, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03255276891633927, "grain_number": 5, "grain_density": 1876.790231444388, "grain_outer_radius": 0.03291962302973861, "grain_initial_inner_radius": 0.015693898683838206, "grain_initial_height": 0.11985694044306405, "grain_separation": 0.00494629387202565, "grains_center_of_mass_position": 0.39646373063585927, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038061348681286473, "throat_radius": 0.01025996941850167, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532582396134182}], "aerodynamic_surfaces": [{"length": 0.557413459091172, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345905948262365}, {"n": 4, "root_chord": 0.11978480438540669, "tip_chord": 0.061097206859148635, "span": 0.11024203070806436, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506162027161197}, {"top_radius": 0.06335428700757281, "bottom_radius": 0.042511476028801565, "length": 0.059835017045158145, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7026243339299602, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202660107755269, "upper_button_position": 0.08235832315443326}], "rail_length": 5, "inclination": 83.0010936264545, "heading": 53.418811315157264} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350870672732922, "mass": 15.336824121742355, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321484179830767, "I_33_without_motor": 0.03799407146210339, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.07274273521471, "trigger": 800, "sampling_rate": 105, "lag": 1.6438292845882643, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9750131473737624, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6560153871314969, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6587.863726232988, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247968571748889, "grain_number": 5, "grain_density": 1827.6509233446202, "grain_outer_radius": 0.03328599700881604, "grain_initial_inner_radius": 0.015210402574083497, "grain_initial_height": 0.12045166142533174, "grain_separation": 0.005778151573704662, "grains_center_of_mass_position": 0.398274495363557, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013735241788279055, "throat_radius": 0.010874092198498433, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559280855159745}], "aerodynamic_surfaces": [{"length": 0.5581743612055515, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132521256895275}, {"n": 4, "root_chord": 0.12077491725530598, "tip_chord": 0.05937397607581354, "span": 0.10941874605214859, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489142512448957}, {"top_radius": 0.062270683973347715, "bottom_radius": 0.04312156455812355, "length": 0.05975589219459637, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004665862810601, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177557915626634, "upper_button_position": 0.08271079471839671}], "rail_length": 5, "inclination": 83.70433413427027, "heading": 53.42751438568756} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635012464089676, "mass": 15.575178144832973, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316950722850184, "I_33_without_motor": 0.029202773558752185, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.864848419248455, "trigger": 800, "sampling_rate": 105, "lag": 1.6181631792861317, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0851678134135954, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7308388316770469, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6034.937571076293, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251936058077746, "grain_number": 5, "grain_density": 1807.9069538334102, "grain_outer_radius": 0.03299718748133515, "grain_initial_inner_radius": 0.014838269016208203, "grain_initial_height": 0.1192268594498655, "grain_separation": 0.004121412899049712, "grains_center_of_mass_position": 0.39580348580907915, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009883796685455977, "throat_radius": 0.01168444119804474, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256896083624794}], "aerodynamic_surfaces": [{"length": 0.5580597567633698, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347882061036845}, {"n": 4, "root_chord": 0.11997967737442533, "tip_chord": 0.060080686240342226, "span": 0.10940761181690313, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498978245400206}, {"top_radius": 0.06320638197882532, "bottom_radius": 0.0429465128221842, "length": 0.058512815727925445, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995992301561603, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183013797060382, "upper_button_position": 0.08129785045012217}], "rail_length": 5, "inclination": 84.54842074271733, "heading": 55.78653920084839} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350845164199136, "mass": 14.808230183023763, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308227202532914, "I_33_without_motor": 0.029540537179238113, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.103787956422362, "trigger": 800, "sampling_rate": 105, "lag": 1.5154344916694944, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.013000804956481, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6571189358549634, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8104.44604966267, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377621818361043, "grain_number": 5, "grain_density": 1776.1718478962912, "grain_outer_radius": 0.032261768601444744, "grain_initial_inner_radius": 0.015355018257871483, "grain_initial_height": 0.12130644635822858, "grain_separation": 0.004362143345060275, "grains_center_of_mass_position": 0.39730470224025066, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013563122979011904, "throat_radius": 0.010293120020622631, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253880104804078}], "aerodynamic_surfaces": [{"length": 0.5571214315957759, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338167175286566}, {"n": 4, "root_chord": 0.12042074883025478, "tip_chord": 0.06078600579275683, "span": 0.10982384255049893, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500348686115566}, {"top_radius": 0.06255026814795793, "bottom_radius": 0.04467498375216515, "length": 0.06178271481182618, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998950708642601, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618684594321989, "upper_button_position": 0.08121047654227109}], "rail_length": 5, "inclination": 83.13578800406853, "heading": 50.22038294128258} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635033561713297, "mass": 14.93786731646821, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337380768337551, "I_33_without_motor": 0.0399045812287938, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00030520139953, "trigger": 800, "sampling_rate": 105, "lag": 1.4956008654626602, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8976675115148206, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4082130110229918, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7782.331222466291, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271311263027876, "grain_number": 5, "grain_density": 1788.677682285769, "grain_outer_radius": 0.033203076643058604, "grain_initial_inner_radius": 0.015170135167971114, "grain_initial_height": 0.12064666334188348, "grain_separation": 0.006541732559378268, "grains_center_of_mass_position": 0.39643419941250796, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005167002198100768, "throat_radius": 0.010811573088222462, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257100428564945}], "aerodynamic_surfaces": [{"length": 0.5559692653813585, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348944297408339}, {"n": 4, "root_chord": 0.11946124585773511, "tip_chord": 0.059849041830136576, "span": 0.1098144902536436, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492363226193744}, {"top_radius": 0.06262923378573133, "bottom_radius": 0.043784112514454396, "length": 0.06011507369296286, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002174032505175, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194076175267941, "upper_button_position": 0.08080978572372344}], "rail_length": 5, "inclination": 83.54842319693633, "heading": 51.80196717235856} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349994245558008, "mass": 16.38883275243986, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329696343953255, "I_33_without_motor": 0.03179033332369073, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971818544344753, "trigger": 800, "sampling_rate": 105, "lag": 1.5331350603409637, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0510347886152194, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4146853106437143, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6644.876597942894, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032452320386439436, "grain_number": 5, "grain_density": 1758.503654173581, "grain_outer_radius": 0.03453822043477151, "grain_initial_inner_radius": 0.015031704986025143, "grain_initial_height": 0.12240166823284485, "grain_separation": 0.005600736645189048, "grains_center_of_mass_position": 0.3957970117402941, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007285055925390797, "throat_radius": 0.0101295585149584, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540332017051428}], "aerodynamic_surfaces": [{"length": 0.5574736357232564, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134137985568306}, {"n": 4, "root_chord": 0.11861156844574737, "tip_chord": 0.06040126954764863, "span": 0.10988629290652388, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503731384279296}, {"top_radius": 0.06313443319919804, "bottom_radius": 0.04367082596525566, "length": 0.06050189737667602, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007170721433531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191298162299328, "upper_button_position": 0.08158725591342031}], "rail_length": 5, "inclination": 84.19197644386219, "heading": 53.65029470263687} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350444627277843, "mass": 16.27593145652235, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300792290142084, "I_33_without_motor": 0.019257480977903686, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021299969745193, "trigger": 800, "sampling_rate": 105, "lag": 1.39749577746685, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0304228223652607, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4978593548275823, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5805.689009096952, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300745987329461, "grain_number": 5, "grain_density": 1905.8365512951789, "grain_outer_radius": 0.03291258151416344, "grain_initial_inner_radius": 0.01471505678155763, "grain_initial_height": 0.12028828972507762, "grain_separation": 0.005036195676855693, "grains_center_of_mass_position": 0.39624185329977873, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007963080602185568, "throat_radius": 0.011206592459098033, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558181961194586}], "aerodynamic_surfaces": [{"length": 0.5595393045714498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339343442509984}, {"n": 4, "root_chord": 0.12030142901127146, "tip_chord": 0.05938989959534676, "span": 0.10951012364783348, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0521689782428094}, {"top_radius": 0.06107430873228683, "bottom_radius": 0.04363722801415575, "length": 0.05944685848462882, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986799756302704, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175760630811913, "upper_button_position": 0.08110391254907912}], "rail_length": 5, "inclination": 85.6920400709986, "heading": 51.84845239759948} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349405268292099, "mass": 14.668944143483218, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341638040770175, "I_33_without_motor": 0.0361411493281217, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.113035352911131, "trigger": 800, "sampling_rate": 105, "lag": 1.3723870959371087, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0266804527197053, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4280637053110437, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3851.7882362766663, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282422082622956, "grain_number": 5, "grain_density": 1767.2707274841448, "grain_outer_radius": 0.033139233529540894, "grain_initial_inner_radius": 0.01524405103485306, "grain_initial_height": 0.12145821732721386, "grain_separation": 0.004238711768685508, "grains_center_of_mass_position": 0.3962463600059255, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009804607897239245, "throat_radius": 0.010503062636768522, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255735009978977}], "aerodynamic_surfaces": [{"length": 0.5581656759025834, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322623618306644}, {"n": 4, "root_chord": 0.12081431375150424, "tip_chord": 0.05994573845302299, "span": 0.10974302893105388, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484796860796493}, {"top_radius": 0.06359216248873353, "bottom_radius": 0.043261773478360334, "length": 0.05756418287729842, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997427153194913, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165719442502476, "upper_button_position": 0.08317077106924364}], "rail_length": 5, "inclination": 83.49867088450246, "heading": 54.08404660335846} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350125797225377, "mass": 15.66056272209282, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319716613304499, "I_33_without_motor": 0.03749036385262135, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.113791811541732, "trigger": 800, "sampling_rate": 105, "lag": 1.5418186618693668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9509801564239326, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4996824163831748, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7169.7229810969975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266108617619039, "grain_number": 5, "grain_density": 1827.0860029966923, "grain_outer_radius": 0.032873586681895016, "grain_initial_inner_radius": 0.014723114828366173, "grain_initial_height": 0.12061950227447449, "grain_separation": 0.004011247920541493, "grains_center_of_mass_position": 0.39622441367865263, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005649786263540573, "throat_radius": 0.010827819449170866, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545395961707848}], "aerodynamic_surfaces": [{"length": 0.5564079835091392, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343913038588616}, {"n": 4, "root_chord": 0.1202744081061941, "tip_chord": 0.0604042170342649, "span": 0.10950583403966933, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505481714427092}, {"top_radius": 0.06250522165101355, "bottom_radius": 0.0444380473074977, "length": 0.05980550187645998, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001792466325638, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182358959184732, "upper_button_position": 0.08194335071409065}], "rail_length": 5, "inclination": 84.33929077599365, "heading": 54.764878782656446} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0635061383370333, "mass": 15.59701731750061, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335586126832497, "I_33_without_motor": 0.0412048982793516, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05703013848411, "trigger": 800, "sampling_rate": 105, "lag": 1.4879550240819035, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8901714737259345, "trigger": "apogee", "sampling_rate": 105, "lag": 1.280836951342327, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5231.821848569386, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377237799682548, "grain_number": 5, "grain_density": 1849.3166133107688, "grain_outer_radius": 0.03318525637871522, "grain_initial_inner_radius": 0.014883953346218198, "grain_initial_height": 0.12061971692632839, "grain_separation": 0.006503531931956049, "grains_center_of_mass_position": 0.3975229480899434, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001079962781220969, "throat_radius": 0.011369479440217557, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531434276025564}], "aerodynamic_surfaces": [{"length": 0.5581000581637248, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329098757305112}, {"n": 4, "root_chord": 0.11950329012230662, "tip_chord": 0.0595861761203475, "span": 0.1098430541804381, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049436761787167}, {"top_radius": 0.06438228424704741, "bottom_radius": 0.04299471574043308, "length": 0.05946039977819311, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992205856251098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166388733965799, "upper_button_position": 0.08258171222852995}], "rail_length": 5, "inclination": 83.84556729566438, "heading": 50.73302130679726} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349001751250857, "mass": 16.209749583064653, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301983493388434, "I_33_without_motor": 0.031596185477915165, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095123452329739, "trigger": 800, "sampling_rate": 105, "lag": 1.4666926585881133, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0459664864628322, "trigger": "apogee", "sampling_rate": 105, "lag": 1.627146142959487, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7981.388803636224, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032610392684585085, "grain_number": 5, "grain_density": 1708.7616576932924, "grain_outer_radius": 0.03272662260858426, "grain_initial_inner_radius": 0.01511298346166128, "grain_initial_height": 0.12171436461847172, "grain_separation": 0.0031686307465490816, "grains_center_of_mass_position": 0.39731901269702213, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00137013329842827, "throat_radius": 0.011878251399754212, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537501508994056}], "aerodynamic_surfaces": [{"length": 0.5590678893031545, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353623322586788}, {"n": 4, "root_chord": 0.11976992406241166, "tip_chord": 0.060172099518352486, "span": 0.10975580330799538, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491952806518703}, {"top_radius": 0.06310930251179274, "bottom_radius": 0.04171009691316476, "length": 0.059443689061894636, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002868200128045, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177142476338436, "upper_button_position": 0.08257257237896087}], "rail_length": 5, "inclination": 85.9108451445156, "heading": 54.39566335874173} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06351148155425271, "mass": 15.330016637866278, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306070943471035, "I_33_without_motor": 0.03431966090999991, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97766568873321, "trigger": 800, "sampling_rate": 105, "lag": 1.5297033929265413, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9374867709010235, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9533242297690425, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6586.140629526703, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033724719305985335, "grain_number": 5, "grain_density": 1732.6133520209182, "grain_outer_radius": 0.032712930830784234, "grain_initial_inner_radius": 0.015246302014283437, "grain_initial_height": 0.12187556481663286, "grain_separation": 0.005540354494774646, "grains_center_of_mass_position": 0.3980657688539186, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008835804491157881, "throat_radius": 0.010773930787462818, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256874076228567}], "aerodynamic_surfaces": [{"length": 0.5588035167719174, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340541834600542}, {"n": 4, "root_chord": 0.12020496260855959, "tip_chord": 0.06025386377486868, "span": 0.10970112130661847, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504387443462542}, {"top_radius": 0.06371536056548353, "bottom_radius": 0.04254547248664668, "length": 0.05980391569281601, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995949517068603, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189848587362667, "upper_button_position": 0.08061009297059352}], "rail_length": 5, "inclination": 84.7262367754845, "heading": 51.32192077607144} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.0635103017570266, "mass": 15.211414461605193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326095172238902, "I_33_without_motor": 0.046333966816176915, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090109609927268, "trigger": 800, "sampling_rate": 105, "lag": 1.4392349900262371, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9550382748073781, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7811508975337431, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6056.915924394959, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033727049772017514, "grain_number": 5, "grain_density": 1879.3536124115737, "grain_outer_radius": 0.032685586456789685, "grain_initial_inner_radius": 0.015043195759744568, "grain_initial_height": 0.12000956188974618, "grain_separation": 0.00530527226466618, "grains_center_of_mass_position": 0.3972922155927978, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001372734430897971, "throat_radius": 0.011920807066489653, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564062788857848}], "aerodynamic_surfaces": [{"length": 0.5570623007315161, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353008922335894}, {"n": 4, "root_chord": 0.12020158018699079, "tip_chord": 0.05953479498372125, "span": 0.11023571664053843, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.052043821233084}, {"top_radius": 0.0625820239566629, "bottom_radius": 0.04252712204085274, "length": 0.05983166701218094, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992357880995014, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.620256033104568, "upper_button_position": 0.07897975499493337}], "rail_length": 5, "inclination": 85.39602506115892, "heading": 51.23112581176852} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350863683456, "mass": 15.85795104214075, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301583791378115, "I_33_without_motor": 0.044110983051418105, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980100236691538, "trigger": 800, "sampling_rate": 105, "lag": 1.5299310132115396, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0397901391606383, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4839495326103922, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6444.089884535882, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297241561429972, "grain_number": 5, "grain_density": 1805.1474104657755, "grain_outer_radius": 0.033184185515606125, "grain_initial_inner_radius": 0.015119487264472813, "grain_initial_height": 0.12099660215112015, "grain_separation": 0.0051432435543747644, "grains_center_of_mass_position": 0.39556234354029224, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000873474215458539, "throat_radius": 0.00991561111747873, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555983614883333}], "aerodynamic_surfaces": [{"length": 0.5576305481170166, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339968780872527}, {"n": 4, "root_chord": 0.12083134470295653, "tip_chord": 0.05957985371717761, "span": 0.10930765421296186, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509070380568257}, {"top_radius": 0.06472377475130313, "bottom_radius": 0.04419262812525516, "length": 0.060263150834854125, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699972876739818, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617964788267807, "upper_button_position": 0.08200808847201102}], "rail_length": 5, "inclination": 85.15466407004152, "heading": 55.895335174066105} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634927019886302, "mass": 15.907324018873332, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312758699963345, "I_33_without_motor": 0.042351257264661685, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979363550163937, "trigger": 800, "sampling_rate": 105, "lag": 1.5250207503835758, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9738443636658795, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8616965650301336, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7068.14785717838, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254666048967628, "grain_number": 5, "grain_density": 1816.7136608585047, "grain_outer_radius": 0.03249118832460645, "grain_initial_inner_radius": 0.015084523046029271, "grain_initial_height": 0.12027089346946623, "grain_separation": 0.005512712685183761, "grains_center_of_mass_position": 0.39751950354175086, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007226072706324191, "throat_radius": 0.011237830914408846, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533888610973407}], "aerodynamic_surfaces": [{"length": 0.5596919089685104, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352026437531448}, {"n": 4, "root_chord": 0.11950783236371407, "tip_chord": 0.06022947142032633, "span": 0.11044904038966667, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503366553839448}, {"top_radius": 0.062256302065508744, "bottom_radius": 0.04367316918921661, "length": 0.06133803505913626, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013237975227596, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191693978962566, "upper_button_position": 0.08215439962650306}], "rail_length": 5, "inclination": 83.66475011038168, "heading": 52.15383025514171} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350700818081996, "mass": 14.985599277984493, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315898509568427, "I_33_without_motor": 0.02210245998920675, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.838738855150616, "trigger": 800, "sampling_rate": 105, "lag": 1.4907211320235323, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1125326634857196, "trigger": "apogee", "sampling_rate": 105, "lag": 1.94047035506229, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7412.761720684615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03381833590620761, "grain_number": 5, "grain_density": 1851.2117972410515, "grain_outer_radius": 0.032494585629268005, "grain_initial_inner_radius": 0.015162787516023693, "grain_initial_height": 0.12105472635283548, "grain_separation": 0.0059456809099498005, "grains_center_of_mass_position": 0.39701338918287177, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001641600473790034, "throat_radius": 0.012021058082529205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556080391110607}], "aerodynamic_surfaces": [{"length": 0.5561345269446655, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333151716912861}, {"n": 4, "root_chord": 0.11976245827406881, "tip_chord": 0.060130348676258764, "span": 0.10980817097341218, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498010054006224}, {"top_radius": 0.06261909889605964, "bottom_radius": 0.04393263957862042, "length": 0.060252606052588434, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015795871090231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197742701577714, "upper_button_position": 0.0818053169512517}], "rail_length": 5, "inclination": 85.23408207413921, "heading": 52.785588896031456} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349492558219275, "mass": 15.3176547835481, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311317331479921, "I_33_without_motor": 0.023608993828977604, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04166884798756, "trigger": 800, "sampling_rate": 105, "lag": 1.3388823933089515, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.981671436906136, "trigger": "apogee", "sampling_rate": 105, "lag": 1.810442197518187, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5623.191938662325, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283274085450745, "grain_number": 5, "grain_density": 1773.1503147621092, "grain_outer_radius": 0.03331671938825367, "grain_initial_inner_radius": 0.01461887818426411, "grain_initial_height": 0.12235896232461256, "grain_separation": 0.005222053699414678, "grains_center_of_mass_position": 0.3976870393398111, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00027552030663637305, "throat_radius": 0.012014044471551582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254664286472174}], "aerodynamic_surfaces": [{"length": 0.5594493540532559, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349771967406428}, {"n": 4, "root_chord": 0.12035726363309096, "tip_chord": 0.06025838633361449, "span": 0.11076516231347966, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049031903973996}, {"top_radius": 0.06347674994611223, "bottom_radius": 0.04429229579199667, "length": 0.05749865316773383, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700277348881613, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168734266467291, "upper_button_position": 0.08340392223488391}], "rail_length": 5, "inclination": 84.49625843656386, "heading": 51.57673347704116} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350313977177899, "mass": 15.424943514440887, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323156876183631, "I_33_without_motor": 0.03637530301894958, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885920085457595, "trigger": 800, "sampling_rate": 105, "lag": 1.5014829503729614, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8771732193320301, "trigger": "apogee", "sampling_rate": 105, "lag": 1.766995035152192, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6584.809064048625, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251437393868458, "grain_number": 5, "grain_density": 1859.7242275835144, "grain_outer_radius": 0.032850852606687006, "grain_initial_inner_radius": 0.015312824041171697, "grain_initial_height": 0.1205025876497952, "grain_separation": 0.004844667686660366, "grains_center_of_mass_position": 0.39755954519311837, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010838098317941453, "throat_radius": 0.010308154434032914, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254399850694552}], "aerodynamic_surfaces": [{"length": 0.5593137512801512, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343375489703356}, {"n": 4, "root_chord": 0.12062018141095884, "tip_chord": 0.06073650802884207, "span": 0.1101559279629185, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492234092900237}, {"top_radius": 0.06320164129096806, "bottom_radius": 0.04222987708420749, "length": 0.05872893440213862, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004085042901533, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167173156367727, "upper_button_position": 0.08369118865338065}], "rail_length": 5, "inclination": 84.24458678006407, "heading": 51.642221514020356} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349228296859437, "mass": 15.822787083306402, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331540688813927, "I_33_without_motor": 0.03983731851133577, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.049573587306652, "trigger": 800, "sampling_rate": 105, "lag": 1.4967477220794034, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1217980555523914, "trigger": "apogee", "sampling_rate": 105, "lag": 1.442847301509835, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6595.793935531795, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032252991390079616, "grain_number": 5, "grain_density": 1854.6814956914, "grain_outer_radius": 0.033527677659509786, "grain_initial_inner_radius": 0.014501753920182237, "grain_initial_height": 0.11732680913385785, "grain_separation": 0.004122392239442828, "grains_center_of_mass_position": 0.39712628480547807, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000249217487781352, "throat_radius": 0.011258893198693816, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552290235618153}], "aerodynamic_surfaces": [{"length": 0.5571202053140012, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133140235899574}, {"n": 4, "root_chord": 0.11949528862552514, "tip_chord": 0.060906619713687465, "span": 0.10981903967378305, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507120005359543}, {"top_radius": 0.0633140834431278, "bottom_radius": 0.04136438410543811, "length": 0.05900876279393867, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001251410841746, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173297111089338, "upper_button_position": 0.08279542997524081}], "rail_length": 5, "inclination": 85.47436622325343, "heading": 52.30409136310977} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350751964697535, "mass": 14.714821573394813, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322914664588241, "I_33_without_motor": 0.04781903244492475, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.891489120144273, "trigger": 800, "sampling_rate": 105, "lag": 1.5069881845982078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9363403822988585, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4226927779884975, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6423.482304146281, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031974347827702074, "grain_number": 5, "grain_density": 1830.3813769122955, "grain_outer_radius": 0.03307864684106567, "grain_initial_inner_radius": 0.014955288068046704, "grain_initial_height": 0.11829604555521918, "grain_separation": 0.005568119631450093, "grains_center_of_mass_position": 0.39735244186137025, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.1568810208559376e-05, "throat_radius": 0.010802277199882937, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534215257214312}], "aerodynamic_surfaces": [{"length": 0.5582689097285792, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328548921014716}, {"n": 4, "root_chord": 0.11996401566681668, "tip_chord": 0.05922338005845067, "span": 0.1105966852928127, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499856465685102}, {"top_radius": 0.06468387381454228, "bottom_radius": 0.04294775882569813, "length": 0.059119588575116136, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989699728294049, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6157151654603796, "upper_button_position": 0.08325480736902524}], "rail_length": 5, "inclination": 83.88992758522507, "heading": 53.39746322842373} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350589292246252, "mass": 15.050094933609843, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307969537593382, "I_33_without_motor": 0.03357483343400055, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983626448595937, "trigger": 800, "sampling_rate": 105, "lag": 1.4210327625308095, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0351114798832222, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5946866941575224, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4907.972329244335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033266357563631686, "grain_number": 5, "grain_density": 1754.416377527325, "grain_outer_radius": 0.03323172335507069, "grain_initial_inner_radius": 0.014770883709081396, "grain_initial_height": 0.1213921172824763, "grain_separation": 0.0050593670231441675, "grains_center_of_mass_position": 0.39703199928873606, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002830316633563863, "throat_radius": 0.010737703586656142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536450053645023}], "aerodynamic_surfaces": [{"length": 0.5588240487695932, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343474005762655}, {"n": 4, "root_chord": 0.11976569087481577, "tip_chord": 0.06017613818306094, "span": 0.11114618390107846, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049644849245606}, {"top_radius": 0.06224667602995854, "bottom_radius": 0.04208065741891775, "length": 0.060857886939588914, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014258709655103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186121891466196, "upper_button_position": 0.0828136818188907}], "rail_length": 5, "inclination": 82.65713000706245, "heading": 50.76983352190036} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349867978028276, "mass": 16.04999798178607, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326245333269238, "I_33_without_motor": 0.028797370077464916, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.21815402110111, "trigger": 800, "sampling_rate": 105, "lag": 1.546406548924392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.096606443637828, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8091959749804591, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5642.394910381362, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362003408677565, "grain_number": 5, "grain_density": 1839.461162876706, "grain_outer_radius": 0.032392614557310344, "grain_initial_inner_radius": 0.014872115550611503, "grain_initial_height": 0.12008705158710624, "grain_separation": 0.00629853595332245, "grains_center_of_mass_position": 0.3973701180067678, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011416618798405153, "throat_radius": 0.010975792047159098, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552865658590366}], "aerodynamic_surfaces": [{"length": 0.557939575978359, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349228089773773}, {"n": 4, "root_chord": 0.11973042349043313, "tip_chord": 0.05968463388666797, "span": 0.10957351423295514, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499729474159702}, {"top_radius": 0.06252694010531244, "bottom_radius": 0.04455590903493302, "length": 0.059376371763943364, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982596178834558, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166844444125955, "upper_button_position": 0.0815751734708603}], "rail_length": 5, "inclination": 86.57840174972624, "heading": 53.0177197972397} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350055474957479, "mass": 16.21922578804642, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310164215935404, "I_33_without_motor": 0.03810162967356904, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.215774609282535, "trigger": 800, "sampling_rate": 105, "lag": 1.6725176347651225, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.008770403559962, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5848572197470432, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6476.097481412715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275975425845636, "grain_number": 5, "grain_density": 1857.6887595315695, "grain_outer_radius": 0.03339333833627356, "grain_initial_inner_radius": 0.015324351101281226, "grain_initial_height": 0.11816237711851235, "grain_separation": 0.004649062138788528, "grains_center_of_mass_position": 0.3977451827179445, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006096350110070964, "throat_radius": 0.010762100475882313, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554491840765505}], "aerodynamic_surfaces": [{"length": 0.5595842118018621, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333921556279714}, {"n": 4, "root_chord": 0.12027089771946736, "tip_chord": 0.060284423625271075, "span": 0.10919021934832839, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506747448574678}, {"top_radius": 0.06384747736024363, "bottom_radius": 0.04443509696557749, "length": 0.061873257372050385, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996630258722626, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181394854322565, "upper_button_position": 0.08152354044000609}], "rail_length": 5, "inclination": 83.48872985676368, "heading": 58.390262824665655} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.0634934742930306, "mass": 15.10000442548076, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316541346475918, "I_33_without_motor": 0.03729303316215159, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990660723910167, "trigger": 800, "sampling_rate": 105, "lag": 1.6540177175884354, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.956378555339713, "trigger": "apogee", "sampling_rate": 105, "lag": 1.558490205729261, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5776.541512473939, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03240467783297502, "grain_number": 5, "grain_density": 1778.8804235053406, "grain_outer_radius": 0.03277495412930337, "grain_initial_inner_radius": 0.014765554765036559, "grain_initial_height": 0.11981071592271798, "grain_separation": 0.007150082101840221, "grains_center_of_mass_position": 0.3965537749557799, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.78376024486457e-05, "throat_radius": 0.01137724641484198, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255347363887983}], "aerodynamic_surfaces": [{"length": 0.5586609997017453, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131687329381975}, {"n": 4, "root_chord": 0.11961806828978758, "tip_chord": 0.05923597482670359, "span": 0.11025890653392886, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050406164270669}, {"top_radius": 0.06454819942555426, "bottom_radius": 0.041823666248762374, "length": 0.0604008338398882, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006026971522066, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183172768845839, "upper_button_position": 0.08228542026762264}], "rail_length": 5, "inclination": 84.77491609289818, "heading": 51.137699385972326} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350884111125256, "mass": 15.117203837092836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33301865463664, "I_33_without_motor": 0.039769185315205124, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.169446503197964, "trigger": 800, "sampling_rate": 105, "lag": 1.5304645862853854, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.097042241218204, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6582557881403515, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6096.23267350198, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03355311334240219, "grain_number": 5, "grain_density": 1825.409466713124, "grain_outer_radius": 0.03339390747695233, "grain_initial_inner_radius": 0.015202328258462508, "grain_initial_height": 0.12002805301813442, "grain_separation": 0.006452358956189119, "grains_center_of_mass_position": 0.39699803518065135, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012492830278910544, "throat_radius": 0.011297410623801688, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253824088073441}], "aerodynamic_surfaces": [{"length": 0.5578741855295081, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332955237758262}, {"n": 4, "root_chord": 0.12009114044653378, "tip_chord": 0.06020763323909932, "span": 0.10970106380502151, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049822777970236}, {"top_radius": 0.06293746061190701, "bottom_radius": 0.04290974606215839, "length": 0.05808156682456262, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006206469088321, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184538169911368, "upper_button_position": 0.0821668299176953}], "rail_length": 5, "inclination": 85.08635619987407, "heading": 51.07951327048273} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0635025671591334, "mass": 15.569789542698024, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328014829880955, "I_33_without_motor": 0.024308707799671293, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.775926426550274, "trigger": 800, "sampling_rate": 105, "lag": 1.4795142057916488, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0375613798456664, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5541426460604222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6527.053805263382, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034219830986351146, "grain_number": 5, "grain_density": 1848.1124301706766, "grain_outer_radius": 0.0332059187538801, "grain_initial_inner_radius": 0.015077483694252835, "grain_initial_height": 0.12258962499846746, "grain_separation": 0.004765551746016673, "grains_center_of_mass_position": 0.39807898008798365, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013772457605465463, "throat_radius": 0.010232805233434927, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254372942604839}], "aerodynamic_surfaces": [{"length": 0.5584547700668269, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1353328623310044}, {"n": 4, "root_chord": 0.11929287504654647, "tip_chord": 0.06057907542673541, "span": 0.10921934883253469, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494459041483626}, {"top_radius": 0.06192203516944039, "bottom_radius": 0.04460339025627046, "length": 0.06108181690600313, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014728232622828, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182720257285663, "upper_button_position": 0.08320079753371645}], "rail_length": 5, "inclination": 84.3855767760068, "heading": 51.778022086943} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350489984447266, "mass": 15.860405727487743, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312365963624746, "I_33_without_motor": 0.034704414712499215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92252608649707, "trigger": 800, "sampling_rate": 105, "lag": 1.416491915960304, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9213187241123838, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3721948218361857, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7379.604007750317, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032824560921681616, "grain_number": 5, "grain_density": 1843.755893348307, "grain_outer_radius": 0.03320302048110775, "grain_initial_inner_radius": 0.014589883687597777, "grain_initial_height": 0.12053800358335544, "grain_separation": 0.006379614576969119, "grains_center_of_mass_position": 0.3970836053668714, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011662905033695316, "throat_radius": 0.010147617382098914, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548851385453297}], "aerodynamic_surfaces": [{"length": 0.5595466685437082, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334988625546336}, {"n": 4, "root_chord": 0.11965674524512425, "tip_chord": 0.06051155725136048, "span": 0.11047687467148011, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485366679805734}, {"top_radius": 0.0645912705661017, "bottom_radius": 0.043871646121531965, "length": 0.06128736206384057, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006950514883132, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182505250267492, "upper_button_position": 0.08244452646156408}], "rail_length": 5, "inclination": 85.05571941013986, "heading": 53.253841720800295} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350426605175176, "mass": 15.3732941410169, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326059200051882, "I_33_without_motor": 0.034200359345213587, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.119832278938356, "trigger": 800, "sampling_rate": 105, "lag": 1.5381793966522195, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0367142651256378, "trigger": "apogee", "sampling_rate": 105, "lag": 1.809942068811632, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7219.796087828687, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03299760792296077, "grain_number": 5, "grain_density": 1835.9694317966885, "grain_outer_radius": 0.033322745024607664, "grain_initial_inner_radius": 0.014971851276383402, "grain_initial_height": 0.11968375254171155, "grain_separation": 0.003687800716837401, "grains_center_of_mass_position": 0.39598823670509875, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011808932142343873, "throat_radius": 0.011546749426103831, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535118359290507}], "aerodynamic_surfaces": [{"length": 0.5572890735782458, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332706540617428}, {"n": 4, "root_chord": 0.12022726539071456, "tip_chord": 0.060211207552714086, "span": 0.1101351331323741, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050052450031028}, {"top_radius": 0.06351006930389376, "bottom_radius": 0.044183032379920884, "length": 0.059492822292683344, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999228553929098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172605419327538, "upper_button_position": 0.08266231346015596}], "rail_length": 5, "inclination": 85.13355608845569, "heading": 54.370570210011245} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06351242428908346, "mass": 14.423549209770822, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328027350281258, "I_33_without_motor": 0.036698963441118414, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.154210840618909, "trigger": 800, "sampling_rate": 105, "lag": 1.3017046759136313, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9021783734309794, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3672901549185474, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7277.06593703849, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03371721023362179, "grain_number": 5, "grain_density": 1932.5617446222823, "grain_outer_radius": 0.03334442470592136, "grain_initial_inner_radius": 0.01520831690866442, "grain_initial_height": 0.11988624320865945, "grain_separation": 0.0064206759731669, "grains_center_of_mass_position": 0.39635922087723613, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009222718245781359, "throat_radius": 0.011127186039757986, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540941343836807}], "aerodynamic_surfaces": [{"length": 0.5579357689777278, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134057029019816}, {"n": 4, "root_chord": 0.11956004559205298, "tip_chord": 0.059648709074225224, "span": 0.11030072237032477, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507419405462004}, {"top_radius": 0.06222068213849808, "bottom_radius": 0.04245658766982096, "length": 0.0605008003170961, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980843300383365, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6153154183888295, "upper_button_position": 0.08276891164950695}], "rail_length": 5, "inclination": 85.49776215994011, "heading": 53.49965282661439} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350196612899765, "mass": 15.044717377094493, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3120269466818035, "I_33_without_motor": 0.0387411583976188, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929850749674653, "trigger": 800, "sampling_rate": 105, "lag": 1.6506875958892464, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0102573724444268, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2001967496123322, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7193.300747737389, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03352563015900827, "grain_number": 5, "grain_density": 1803.11487049387, "grain_outer_radius": 0.032891621563680265, "grain_initial_inner_radius": 0.015154893787875271, "grain_initial_height": 0.11819847880904681, "grain_separation": 0.004762045982923889, "grains_center_of_mass_position": 0.3955720866862539, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008338486113961756, "throat_radius": 0.011381829422617116, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548487991460477}], "aerodynamic_surfaces": [{"length": 0.5581280440879608, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134370805703569}, {"n": 4, "root_chord": 0.12100136223094052, "tip_chord": 0.05963963716426746, "span": 0.11093632442421902, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508904632167517}, {"top_radius": 0.06330988965454365, "bottom_radius": 0.04403094060962448, "length": 0.05965631588865588, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000702560510387, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182660989922639, "upper_button_position": 0.08180415705877475}], "rail_length": 5, "inclination": 87.0300503478144, "heading": 52.6120672982271} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349818534981129, "mass": 15.187113404376376, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322740826130806, "I_33_without_motor": 0.03814656202547393, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.878585531818128, "trigger": 800, "sampling_rate": 105, "lag": 1.4206703571908939, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0135549540580557, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3375202945148987, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7420.9526430656315, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339578820148188, "grain_number": 5, "grain_density": 1788.8613798005372, "grain_outer_radius": 0.03284278039380235, "grain_initial_inner_radius": 0.014897681527885238, "grain_initial_height": 0.11941913307335997, "grain_separation": 0.005282247725176232, "grains_center_of_mass_position": 0.39915861541559533, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006397748843203119, "throat_radius": 0.01111511317810539, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548549018046915}], "aerodynamic_surfaces": [{"length": 0.5587315916821292, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342151744871907}, {"n": 4, "root_chord": 0.12079881792374676, "tip_chord": 0.06031019331058898, "span": 0.1092495863869853, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490489339670732}, {"top_radius": 0.06271596608986207, "bottom_radius": 0.04335065381981382, "length": 0.06016838266501556, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995628071168103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170399515205418, "upper_button_position": 0.08252285559626849}], "rail_length": 5, "inclination": 83.99113229756163, "heading": 55.701319658082156} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350223124383952, "mass": 16.140221334664897, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337205010708329, "I_33_without_motor": 0.033439144893789026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985073598323915, "trigger": 800, "sampling_rate": 105, "lag": 1.558478046630004, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0184803162076181, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4949544227769689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5115.526561629428, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032983365280036904, "grain_number": 5, "grain_density": 1740.654518651808, "grain_outer_radius": 0.03251138899064157, "grain_initial_inner_radius": 0.015409162352040703, "grain_initial_height": 0.12152113349698969, "grain_separation": 0.004791285292489034, "grains_center_of_mass_position": 0.3948566183133612, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006849298410268702, "throat_radius": 0.011463283481764026, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558665795373742}], "aerodynamic_surfaces": [{"length": 0.5584067203811128, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343110105704755}, {"n": 4, "root_chord": 0.11969243513180215, "tip_chord": 0.060119214430632444, "span": 0.10940725536574353, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516828134597118}, {"top_radius": 0.0637066824532389, "bottom_radius": 0.04444583035549078, "length": 0.06013175400473442, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985572400133727, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190987945777765, "upper_button_position": 0.07945844543559621}], "rail_length": 5, "inclination": 85.70794216687797, "heading": 51.196851108554945} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635028394324399, "mass": 15.555408128000938, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322883495741443, "I_33_without_motor": 0.03812678227860078, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.879232201560791, "trigger": 800, "sampling_rate": 105, "lag": 1.500872472285142, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9388451832812009, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3990671854217336, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6465.713753854372, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032458817960924424, "grain_number": 5, "grain_density": 1870.8855677099064, "grain_outer_radius": 0.032632581220730365, "grain_initial_inner_radius": 0.01505813426338055, "grain_initial_height": 0.11937048338612169, "grain_separation": 0.004529202725262434, "grains_center_of_mass_position": 0.39758032907623525, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003804338273277866, "throat_radius": 0.01039553857037505, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548731997553397}], "aerodynamic_surfaces": [{"length": 0.5571586682694935, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343374079487416}, {"n": 4, "root_chord": 0.11976879312854925, "tip_chord": 0.059586079687370834, "span": 0.1100981784741442, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488173291471514}, {"top_radius": 0.06340949378804528, "bottom_radius": 0.04287542192020005, "length": 0.060324448507039274, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983879455885591, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185203037487107, "upper_button_position": 0.0798676418398484}], "rail_length": 5, "inclination": 85.81389474594306, "heading": 53.97313048349335} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06351827763258544, "mass": 15.347278071433111, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3082013602866525, "I_33_without_motor": 0.05355659622635401, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.093096531147024, "trigger": 800, "sampling_rate": 105, "lag": 1.4550599909970157, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8184177135318123, "trigger": "apogee", "sampling_rate": 105, "lag": 1.443691971881985, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6445.975468522268, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033548904588886236, "grain_number": 5, "grain_density": 1763.9770668800654, "grain_outer_radius": 0.03300184923045421, "grain_initial_inner_radius": 0.015299054052886401, "grain_initial_height": 0.11921286871022238, "grain_separation": 0.004723187994014351, "grains_center_of_mass_position": 0.39709650147934883, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014163251153342877, "throat_radius": 0.010670469328868384, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551237019028918}], "aerodynamic_surfaces": [{"length": 0.5579705400379676, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1362271953432448}, {"n": 4, "root_chord": 0.11995841503949561, "tip_chord": 0.059623734358460134, "span": 0.11078705486433986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495328556881038}, {"top_radius": 0.06362651741124614, "bottom_radius": 0.04281393058458292, "length": 0.0603555004291408, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990319913883004, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189966506258726, "upper_button_position": 0.0800353407624278}], "rail_length": 5, "inclination": 84.66092878813011, "heading": 51.93774625081311} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349752882046662, "mass": 16.105489194806637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32883559667878, "I_33_without_motor": 0.04032759153829975, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963279662994275, "trigger": 800, "sampling_rate": 105, "lag": 1.5977131084304887, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.988453383935817, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8016948097190222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6957.926346689147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032157852023438425, "grain_number": 5, "grain_density": 1830.5273575591345, "grain_outer_radius": 0.03324626513163767, "grain_initial_inner_radius": 0.014642152659565878, "grain_initial_height": 0.11918130968662644, "grain_separation": 0.0038086190954856637, "grains_center_of_mass_position": 0.3958264939894987, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015481297163651736, "throat_radius": 0.01110523637857115, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553202359861457}], "aerodynamic_surfaces": [{"length": 0.5580998558210197, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333897712814418}, {"n": 4, "root_chord": 0.11977855188957535, "tip_chord": 0.06055052326235116, "span": 0.10945856027725534, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497176595952638}, {"top_radius": 0.06252746504725218, "bottom_radius": 0.04261345335029566, "length": 0.06009956009148136, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700269692761581, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176613659125509, "upper_button_position": 0.08260832684903008}], "rail_length": 5, "inclination": 86.48799487253432, "heading": 54.3961701715884} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350186413673439, "mass": 15.709405553926578, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318211924462614, "I_33_without_motor": 0.037449510089269895, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.920314470266868, "trigger": 800, "sampling_rate": 105, "lag": 1.5707560834124932, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9985970557464549, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3662864102868992, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6361.517926362542, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282709074903209, "grain_number": 5, "grain_density": 1803.1133469169183, "grain_outer_radius": 0.0327965497449767, "grain_initial_inner_radius": 0.014292426595481418, "grain_initial_height": 0.12083621261527487, "grain_separation": 0.005622262394525249, "grains_center_of_mass_position": 0.39566074088013337, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006302251491451448, "throat_radius": 0.011244338666898014, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554774609502373}], "aerodynamic_surfaces": [{"length": 0.5585677293105251, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339647722940975}, {"n": 4, "root_chord": 0.12013662491979799, "tip_chord": 0.06005033111930218, "span": 0.10973393368210059, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509266719663481}, {"top_radius": 0.06253945252940751, "bottom_radius": 0.04370294552945968, "length": 0.06096637123591181, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997334340044539, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182386475882484, "upper_button_position": 0.08149478641620544}], "rail_length": 5, "inclination": 83.21658210609783, "heading": 51.241524794024436} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350745911991147, "mass": 15.326661933925037, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313639991596311, "I_33_without_motor": 0.040212545657256724, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.962943602357408, "trigger": 800, "sampling_rate": 105, "lag": 1.5156678552505087, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9934229988972559, "trigger": "apogee", "sampling_rate": 105, "lag": 1.525990765669865, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6188.705048165023, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033598028250791105, "grain_number": 5, "grain_density": 1822.1810262835588, "grain_outer_radius": 0.03361859936415736, "grain_initial_inner_radius": 0.01572275701710494, "grain_initial_height": 0.12030272364680071, "grain_separation": 0.0069810662631195845, "grains_center_of_mass_position": 0.3972991401366064, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001475438992887983, "throat_radius": 0.011085229940972222, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2517878750570375}], "aerodynamic_surfaces": [{"length": 0.5587278032010755, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135097693528444}, {"n": 4, "root_chord": 0.119299582028058, "tip_chord": 0.060109138151727644, "span": 0.11054093827020539, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507665291474844}, {"top_radius": 0.06449917332668656, "bottom_radius": 0.04366039943719413, "length": 0.06016603266902135, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998264390985435, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169861060124725, "upper_button_position": 0.08284033308607097}], "rail_length": 5, "inclination": 85.89206293794403, "heading": 54.93982010648309} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349840709873893, "mass": 15.758171579578885, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3199026324207646, "I_33_without_motor": 0.04339089271742776, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.069772593004497, "trigger": 800, "sampling_rate": 105, "lag": 1.2622250192921036, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1495274742427368, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4374262406305673, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6625.264185881891, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032032991225006566, "grain_number": 5, "grain_density": 1770.0319738208598, "grain_outer_radius": 0.03294743806535184, "grain_initial_inner_radius": 0.014633686731399635, "grain_initial_height": 0.11874126993468734, "grain_separation": 0.005667017559827806, "grains_center_of_mass_position": 0.39698313734894924, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005742913285322729, "throat_radius": 0.011368688375196074, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563871226821326}], "aerodynamic_surfaces": [{"length": 0.5576933524843305, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1360271060029832}, {"n": 4, "root_chord": 0.11895493083993965, "tip_chord": 0.06019612417177196, "span": 0.10964935542749693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515150245611342}, {"top_radius": 0.0634778706272055, "bottom_radius": 0.044139971710224615, "length": 0.05995776268351404, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994085799066971, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188425884345637, "upper_button_position": 0.08056599147213339}], "rail_length": 5, "inclination": 83.70044547836476, "heading": 52.0253650494161} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.0635049506430074, "mass": 15.628199401078925, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303892614575907, "I_33_without_motor": 0.04475486052133396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.987223357037317, "trigger": 800, "sampling_rate": 105, "lag": 1.5524634562265622, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9850513976070879, "trigger": "apogee", "sampling_rate": 105, "lag": 1.396340007628531, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7593.722465225113, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032708386849441745, "grain_number": 5, "grain_density": 1899.5484113724629, "grain_outer_radius": 0.03222461092794386, "grain_initial_inner_radius": 0.015432378838872678, "grain_initial_height": 0.11843279436427501, "grain_separation": 0.0036943330240126557, "grains_center_of_mass_position": 0.3968171877205657, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008054166120458671, "throat_radius": 0.01135284584439259, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254263129596018}], "aerodynamic_surfaces": [{"length": 0.5589053147553638, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346822168673796}, {"n": 4, "root_chord": 0.11982752463181355, "tip_chord": 0.060373649915788294, "span": 0.11010569470139307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0512234087831585}, {"top_radius": 0.06497545107161301, "bottom_radius": 0.04415178257277685, "length": 0.06030392029097292, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.69991586532134, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182311620908193, "upper_button_position": 0.08168470323052068}], "rail_length": 5, "inclination": 84.26151769207071, "heading": 54.8219126227212} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.0634963818765535, "mass": 15.334973607847656, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3115075700849435, "I_33_without_motor": 0.018948654139836464, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.792924320063975, "trigger": 800, "sampling_rate": 105, "lag": 1.4309159114582108, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9384813733514002, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5416304888023464, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6837.532511352792, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032953641599237894, "grain_number": 5, "grain_density": 1720.1788842864983, "grain_outer_radius": 0.03264035715108013, "grain_initial_inner_radius": 0.015217402727560033, "grain_initial_height": 0.11893282684117161, "grain_separation": 0.0035450242980085865, "grains_center_of_mass_position": 0.3987695919171374, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005156413817504319, "throat_radius": 0.01060878212289821, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555981821737365}], "aerodynamic_surfaces": [{"length": 0.558330830555191, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349104385702853}, {"n": 4, "root_chord": 0.12042074398202518, "tip_chord": 0.060661042645885364, "span": 0.11033808704065766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513663675590266}, {"top_radius": 0.063753858923723, "bottom_radius": 0.04267821479685554, "length": 0.05726432431616519, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015374564344825, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194634985746019, "upper_button_position": 0.08207395785988059}], "rail_length": 5, "inclination": 84.0978125150737, "heading": 55.14326019031273} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.0634945052851471, "mass": 15.881348358450449, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320629560591499, "I_33_without_motor": 0.02514087696669036, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.07412092835932, "trigger": 800, "sampling_rate": 105, "lag": 1.53386228232976, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1925301376221478, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6862681058308187, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6429.96338576928, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330971013127956, "grain_number": 5, "grain_density": 1801.689745014264, "grain_outer_radius": 0.03295076522174163, "grain_initial_inner_radius": 0.014436250199388372, "grain_initial_height": 0.12038626769084619, "grain_separation": 0.003123973431554912, "grains_center_of_mass_position": 0.3973467239397888, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002658621023390335, "throat_radius": 0.010793919435126535, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546932076872792}], "aerodynamic_surfaces": [{"length": 0.5566597296364857, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354358483373124}, {"n": 4, "root_chord": 0.11938112772769405, "tip_chord": 0.06005692841801481, "span": 0.109827583633213, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0474380208631153}, {"top_radius": 0.06443158147478738, "bottom_radius": 0.04401012864315714, "length": 0.059851513302054155, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997962927676643, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163938066947731, "upper_button_position": 0.08340248607289125}], "rail_length": 5, "inclination": 85.35967338774297, "heading": 54.3366445427115} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350964428581542, "mass": 14.233179713427125, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322166577849723, "I_33_without_motor": 0.03687342654855414, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079076989807184, "trigger": 800, "sampling_rate": 105, "lag": 1.6554539992922759, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8896037469224428, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6118579145514378, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5748.954674953012, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03205970687498472, "grain_number": 5, "grain_density": 1835.6243052884847, "grain_outer_radius": 0.033034777789402205, "grain_initial_inner_radius": 0.015338961578406161, "grain_initial_height": 0.12161858446116129, "grain_separation": 0.004555454490945752, "grains_center_of_mass_position": 0.3981294847378228, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006068030960537757, "throat_radius": 0.011084471286692777, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256752381975465}], "aerodynamic_surfaces": [{"length": 0.5580645078345732, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324657424218167}, {"n": 4, "root_chord": 0.12024620871314567, "tip_chord": 0.06034984351743852, "span": 0.11034207074661907, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487258007484752}, {"top_radius": 0.06366162861018906, "bottom_radius": 0.04282908148551152, "length": 0.06057713497473912, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001026108660698, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185230004700873, "upper_button_position": 0.0815796103959825}], "rail_length": 5, "inclination": 85.47394502850636, "heading": 57.27749122190503} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635068646622093, "mass": 14.307443742705864, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319410531723628, "I_33_without_motor": 0.03570239415598942, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.123424524742138, "trigger": 800, "sampling_rate": 105, "lag": 1.3420800587131934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1187955227346937, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4314141654767196, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7190.705320806063, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03219694812014219, "grain_number": 5, "grain_density": 1735.655068217699, "grain_outer_radius": 0.03314195437769426, "grain_initial_inner_radius": 0.014866280216922451, "grain_initial_height": 0.12094312292843627, "grain_separation": 0.003898727160042324, "grains_center_of_mass_position": 0.3977639446129201, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006438666191096131, "throat_radius": 0.010486028107934807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255135031501491}], "aerodynamic_surfaces": [{"length": 0.5578440760652926, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134073254095103}, {"n": 4, "root_chord": 0.11924213522365583, "tip_chord": 0.05961661654212759, "span": 0.1095332447929693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495414853371565}, {"top_radius": 0.06382821768732713, "bottom_radius": 0.04379822473581304, "length": 0.06042572499487664, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.698173081331392, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184162434647772, "upper_button_position": 0.0797568378666148}], "rail_length": 5, "inclination": 84.00597026343542, "heading": 52.70703101932076} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349496917745441, "mass": 15.342961215580914, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331674914212685, "I_33_without_motor": 0.04122330044168533, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961754378912921, "trigger": 800, "sampling_rate": 105, "lag": 1.4333467968724067, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.146430857591217, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3992788722727083, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7211.601641497992, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0321046671527893, "grain_number": 5, "grain_density": 1857.4573041218248, "grain_outer_radius": 0.03209086636092542, "grain_initial_inner_radius": 0.014837960218081226, "grain_initial_height": 0.1203346817812028, "grain_separation": 0.0042968058728077236, "grains_center_of_mass_position": 0.39655183628953494, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007966856644794063, "throat_radius": 0.010970426499697702, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253399839807886}], "aerodynamic_surfaces": [{"length": 0.5591541991444074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338856223632967}, {"n": 4, "root_chord": 0.1201548572612052, "tip_chord": 0.06021276544563115, "span": 0.10959071093518684, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494397370692115}, {"top_radius": 0.06193780057226768, "bottom_radius": 0.043153832748512304, "length": 0.0609586372762877, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7020831026802428, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174567292753179, "upper_button_position": 0.08462637340492485}], "rail_length": 5, "inclination": 85.90142702704708, "heading": 52.09430499966574} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349408592453464, "mass": 15.266183887182901, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305794613112339, "I_33_without_motor": 0.03484478216463001, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932986778542443, "trigger": 800, "sampling_rate": 105, "lag": 1.6397619142256494, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9782723317222025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2066861088943748, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5789.062650209592, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033154590907199806, "grain_number": 5, "grain_density": 1717.5633799804152, "grain_outer_radius": 0.032867320224348635, "grain_initial_inner_radius": 0.015018260208997295, "grain_initial_height": 0.11860680450470867, "grain_separation": 0.004563486475660249, "grains_center_of_mass_position": 0.39677818339778675, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024434417274324166, "throat_radius": 0.010442300820731982, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254489483995029}], "aerodynamic_surfaces": [{"length": 0.5583254576283204, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351016688199802}, {"n": 4, "root_chord": 0.11966637215500188, "tip_chord": 0.059496920333514905, "span": 0.11000348512395924, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490930380712413}, {"top_radius": 0.06527091857944471, "bottom_radius": 0.04211932496179026, "length": 0.05946316686941054, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980220739494871, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199052955111106, "upper_button_position": 0.0781167784383765}], "rail_length": 5, "inclination": 83.42506923666068, "heading": 53.775845983490434} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06348902123202878, "mass": 15.403734904963507, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326829979922125, "I_33_without_motor": 0.04460557244132365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97488790870234, "trigger": 800, "sampling_rate": 105, "lag": 1.5779588140178125, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.053542438602496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.321324374568696, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5835.903639373465, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03409143537398791, "grain_number": 5, "grain_density": 1791.7077007168903, "grain_outer_radius": 0.03294045190940684, "grain_initial_inner_radius": 0.014930286501713864, "grain_initial_height": 0.12058487573701447, "grain_separation": 0.006532098789854647, "grains_center_of_mass_position": 0.39528441910035145, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001566728748933368, "throat_radius": 0.011327788096462298, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254229674201086}], "aerodynamic_surfaces": [{"length": 0.5592415429257659, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344961418002868}, {"n": 4, "root_chord": 0.12046048639290398, "tip_chord": 0.05944870760219429, "span": 0.10900862037599922, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485315350963218}, {"top_radius": 0.06301084372640783, "bottom_radius": 0.04054365631265396, "length": 0.06189190495449164, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001932984516953, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617288748817983, "upper_button_position": 0.0829045496337123}], "rail_length": 5, "inclination": 83.1167759491275, "heading": 52.448879443553096} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349376632680985, "mass": 15.897069077740305, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30315805562054, "I_33_without_motor": 0.02696747637428875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.973225077872119, "trigger": 800, "sampling_rate": 105, "lag": 1.4035745675404192, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9492573372454982, "trigger": "apogee", "sampling_rate": 105, "lag": 1.514602363102729, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7119.056031645783, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03412753219185723, "grain_number": 5, "grain_density": 1785.2387761074183, "grain_outer_radius": 0.03317871597683212, "grain_initial_inner_radius": 0.015004974441250745, "grain_initial_height": 0.11913072843649043, "grain_separation": 0.0055725428532136835, "grains_center_of_mass_position": 0.3965580223249115, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009725665970326188, "throat_radius": 0.010175893562904586, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254005905860032}], "aerodynamic_surfaces": [{"length": 0.5581158455799146, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341795021993988}, {"n": 4, "root_chord": 0.1196640518799673, "tip_chord": 0.05984631320894601, "span": 0.11022944759181003, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492732754168577}, {"top_radius": 0.06296473129554936, "bottom_radius": 0.043392867887722224, "length": 0.060303556695809425, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004932985107559, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165532127534281, "upper_button_position": 0.08394008575732781}], "rail_length": 5, "inclination": 83.47491342788999, "heading": 51.99508358042325} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350734544254165, "mass": 14.352121195558137, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320513340276154, "I_33_without_motor": 0.044751795378508756, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051984702714245, "trigger": 800, "sampling_rate": 105, "lag": 1.4309746930542302, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1388458957117369, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1457287151667184, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6634.160349802181, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032676013057741905, "grain_number": 5, "grain_density": 1792.3597143028376, "grain_outer_radius": 0.033129280702803986, "grain_initial_inner_radius": 0.014871593781929334, "grain_initial_height": 0.12089841971401508, "grain_separation": 0.00489846454880309, "grains_center_of_mass_position": 0.3966236447960741, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00048728459315250004, "throat_radius": 0.01039974239012534, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537191940808312}], "aerodynamic_surfaces": [{"length": 0.5583340372341566, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357776604590326}, {"n": 4, "root_chord": 0.12020248414651448, "tip_chord": 0.06053709860536021, "span": 0.11037673683602389, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050813173500577}, {"top_radius": 0.06294880816645981, "bottom_radius": 0.043123202939093726, "length": 0.05938367360498772, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990163976367222, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179018333685977, "upper_button_position": 0.08111456426812447}], "rail_length": 5, "inclination": 84.92369483982853, "heading": 55.87402219305576} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350180942513446, "mass": 15.927360596505595, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327220030469067, "I_33_without_motor": 0.01616333733599135, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8899827319521, "trigger": 800, "sampling_rate": 105, "lag": 1.6557770250977613, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0187852549815173, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5282588900212613, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6147.624028472998, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032947239118488826, "grain_number": 5, "grain_density": 1797.5932850023812, "grain_outer_radius": 0.03343837092503445, "grain_initial_inner_radius": 0.015263494970179056, "grain_initial_height": 0.11980889316234605, "grain_separation": 0.006274621818746219, "grains_center_of_mass_position": 0.39522625618204676, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.714475586129576e-05, "throat_radius": 0.009908663582024257, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549235823349731}], "aerodynamic_surfaces": [{"length": 0.5589732178896044, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339211589189298}, {"n": 4, "root_chord": 0.1194118810435227, "tip_chord": 0.059530072804965514, "span": 0.10928021044300681, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491132454760592}, {"top_radius": 0.06340431811993166, "bottom_radius": 0.04395648540038107, "length": 0.06061438603036873, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011352535085111, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172192449855757, "upper_button_position": 0.08391600852293546}], "rail_length": 5, "inclination": 82.95723305972062, "heading": 54.00622790382088} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350103261247417, "mass": 14.417623924133057, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331761860811825, "I_33_without_motor": 0.029812871974440137, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0622872664408, "trigger": 800, "sampling_rate": 105, "lag": 1.2959441622733152, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9510926555648891, "trigger": "apogee", "sampling_rate": 105, "lag": 1.265663170857529, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5828.616988563053, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03216277541830737, "grain_number": 5, "grain_density": 1767.1532036243595, "grain_outer_radius": 0.03271675054905847, "grain_initial_inner_radius": 0.014512754337916888, "grain_initial_height": 0.12089289538776914, "grain_separation": 0.005069343843851396, "grains_center_of_mass_position": 0.3962490247637502, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013365956335489484, "throat_radius": 0.011426803431205067, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558395157236357}], "aerodynamic_surfaces": [{"length": 0.5570080041854746, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335557444225337}, {"n": 4, "root_chord": 0.11947922896221266, "tip_chord": 0.06038453653331813, "span": 0.10987802624552544, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048652943522373}, {"top_radius": 0.06297868372514343, "bottom_radius": 0.04291871069770836, "length": 0.05892517721177713, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003731295488821, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193091813352791, "upper_button_position": 0.08106394821360297}], "rail_length": 5, "inclination": 85.91254759091292, "heading": 51.79682137413908} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635024818906089, "mass": 14.71834525196283, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307902990644172, "I_33_without_motor": 0.028012177555253915, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.047390993592895, "trigger": 800, "sampling_rate": 105, "lag": 1.6552807754062553, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.900149768049665, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4535226381022346, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7696.678425086755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03214935161904195, "grain_number": 5, "grain_density": 1813.985229074668, "grain_outer_radius": 0.033501182978910214, "grain_initial_inner_radius": 0.01524035799532831, "grain_initial_height": 0.12015431407603235, "grain_separation": 0.005485242405340523, "grains_center_of_mass_position": 0.3962408449072484, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016221919802792084, "throat_radius": 0.010474360013579624, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549720383729686}], "aerodynamic_surfaces": [{"length": 0.5589223754225744, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133608779858412}, {"n": 4, "root_chord": 0.1199338352091876, "tip_chord": 0.059858093298638324, "span": 0.11067444219920411, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050633484759353}, {"top_radius": 0.06453173673376951, "bottom_radius": 0.043305938787779275, "length": 0.05898877803221431, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009865074576228, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616901858942763, "upper_button_position": 0.08408464851485986}], "rail_length": 5, "inclination": 83.3825943560516, "heading": 55.36651045109356} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350240516221202, "mass": 16.319975350143817, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326780250867204, "I_33_without_motor": 0.02733115986399325, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.942094640317684, "trigger": 800, "sampling_rate": 105, "lag": 1.4460580440281174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0489373657616738, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9253607293689332, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5929.842594486089, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033039329159160566, "grain_number": 5, "grain_density": 1824.4569238058402, "grain_outer_radius": 0.033301024693383384, "grain_initial_inner_radius": 0.015272538660529723, "grain_initial_height": 0.12080210625423692, "grain_separation": 0.005292173023337835, "grains_center_of_mass_position": 0.396033473881816, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008608135121840155, "throat_radius": 0.011289739344717418, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542150621291515}], "aerodynamic_surfaces": [{"length": 0.5596946496938655, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347959472077223}, {"n": 4, "root_chord": 0.11930273815670632, "tip_chord": 0.06091384880661498, "span": 0.10990144417690345, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495546227137056}, {"top_radius": 0.06311251598178412, "bottom_radius": 0.04392287547234084, "length": 0.06006597598537636, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7020383958023256, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166861891188409, "upper_button_position": 0.08535220668348475}], "rail_length": 5, "inclination": 83.97096780050578, "heading": 52.19380819871509} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350802619582213, "mass": 14.40998929425234, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3246856516011745, "I_33_without_motor": 0.023337026603905374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009549364936634, "trigger": 800, "sampling_rate": 105, "lag": 1.4707965649103085, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1124000870484463, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5161089039893363, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7040.000183467777, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290453540142834, "grain_number": 5, "grain_density": 1705.122890085358, "grain_outer_radius": 0.03219140368263184, "grain_initial_inner_radius": 0.015225579139273936, "grain_initial_height": 0.12050336473873706, "grain_separation": 0.003414384789920214, "grains_center_of_mass_position": 0.39576797444636064, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010722864906813428, "throat_radius": 0.01094970369658928, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556563087474992}], "aerodynamic_surfaces": [{"length": 0.5579396162724632, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343923302488546}, {"n": 4, "root_chord": 0.11968384454667691, "tip_chord": 0.06054778071021139, "span": 0.10997843616012647, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507833359593455}, {"top_radius": 0.0604478648265494, "bottom_radius": 0.04493201739679032, "length": 0.060171427554889766, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987346538640328, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168268641473642, "upper_button_position": 0.08190778971666857}], "rail_length": 5, "inclination": 84.40049052942699, "heading": 56.527076708455624} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349758365539551, "mass": 15.333736218010378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319992211503371, "I_33_without_motor": 0.03523286536758579, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.075132806264026, "trigger": 800, "sampling_rate": 105, "lag": 1.4992536497425022, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9969266891710581, "trigger": "apogee", "sampling_rate": 105, "lag": 1.387261622606314, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5865.163492739005, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032782658417254265, "grain_number": 5, "grain_density": 1866.2957586430107, "grain_outer_radius": 0.032493498259262565, "grain_initial_inner_radius": 0.015040526594747413, "grain_initial_height": 0.12140239231601835, "grain_separation": 0.005697844028432398, "grains_center_of_mass_position": 0.39709481732081137, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006323071384663798, "throat_radius": 0.010591804914611001, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540035968599816}], "aerodynamic_surfaces": [{"length": 0.5576484449747833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336518651061125}, {"n": 4, "root_chord": 0.12049120615621385, "tip_chord": 0.060155408351702425, "span": 0.1106828429391441, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499441138537093}, {"top_radius": 0.06321384440245816, "bottom_radius": 0.043720847552069966, "length": 0.061449021978462796, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998750701508821, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170796737312394, "upper_button_position": 0.08279539641964273}], "rail_length": 5, "inclination": 83.89383506069375, "heading": 50.90675877798869} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350424003727241, "mass": 15.26681272330636, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339273795436426, "I_33_without_motor": 0.016286513874184443, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.888781347237092, "trigger": 800, "sampling_rate": 105, "lag": 1.4996049440714074, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9865114417354988, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5660618950123482, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7200.013140070036, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313044557124685, "grain_number": 5, "grain_density": 1914.5803410158865, "grain_outer_radius": 0.033089620808144996, "grain_initial_inner_radius": 0.014408819389762559, "grain_initial_height": 0.11998299854940178, "grain_separation": 0.0054372099502844355, "grains_center_of_mass_position": 0.39759942998729764, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.5599373002126887e-05, "throat_radius": 0.010414400318240197, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554201867720323}], "aerodynamic_surfaces": [{"length": 0.5590428644615767, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346137233335047}, {"n": 4, "root_chord": 0.11938337935788772, "tip_chord": 0.06068310832587939, "span": 0.11088100205495155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500074078731343}, {"top_radius": 0.06209276593283498, "bottom_radius": 0.04488295547272205, "length": 0.061060118736965895, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001140850704347, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173832264236454, "upper_button_position": 0.08273085864678931}], "rail_length": 5, "inclination": 83.97468936576574, "heading": 51.56282657291593} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351350623002182, "mass": 15.315695851653683, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3181103225208055, "I_33_without_motor": 0.033572539860901515, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045773855264995, "trigger": 800, "sampling_rate": 105, "lag": 1.551290340281641, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1208878950118835, "trigger": "apogee", "sampling_rate": 105, "lag": 1.444010556373668, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6353.78652217723, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032414684189028174, "grain_number": 5, "grain_density": 1821.8786159543959, "grain_outer_radius": 0.033432414853677456, "grain_initial_inner_radius": 0.01506202427480871, "grain_initial_height": 0.12000995710984158, "grain_separation": 0.005252800672046524, "grains_center_of_mass_position": 0.3965928991422861, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010501930315474936, "throat_radius": 0.010611233148116699, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559080687075046}], "aerodynamic_surfaces": [{"length": 0.5574885324013517, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133730654943713}, {"n": 4, "root_chord": 0.12097071174224788, "tip_chord": 0.05976957277291196, "span": 0.11073520873873985, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499677241948453}, {"top_radius": 0.06502392153629098, "bottom_radius": 0.04405150165545347, "length": 0.06059595454997323, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002334979621541, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181548830774886, "upper_button_position": 0.0820786148846655}], "rail_length": 5, "inclination": 85.98508561963452, "heading": 50.95809571984709} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350150835110036, "mass": 15.514707064358515, "I_11_without_motor": 6.321, "I_22_without_motor": 6.343633891962469, "I_33_without_motor": 0.0298616999956476, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10645730433373, "trigger": 800, "sampling_rate": 105, "lag": 1.6059515029268463, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0327058352338083, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2271195231742689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6976.082337553963, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032295105984577514, "grain_number": 5, "grain_density": 1730.8896697637406, "grain_outer_radius": 0.03296195046181809, "grain_initial_inner_radius": 0.014781554775037798, "grain_initial_height": 0.11850505392778649, "grain_separation": 0.004902982007160669, "grains_center_of_mass_position": 0.39651631125455966, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013969746367896224, "throat_radius": 0.010595771709172995, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563704387188814}], "aerodynamic_surfaces": [{"length": 0.5588184559624493, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135722527538811}, {"n": 4, "root_chord": 0.11978162332885217, "tip_chord": 0.05964971440240618, "span": 0.11015554902925476, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494044508130818}, {"top_radius": 0.06151713299037048, "bottom_radius": 0.042192168041609274, "length": 0.05881383781105307, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998632467448102, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186148308128503, "upper_button_position": 0.08124841593195986}], "rail_length": 5, "inclination": 86.21110277353435, "heading": 54.78405142219952} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350963223190793, "mass": 15.409476717485683, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3286267419994795, "I_33_without_motor": 0.04050766002987693, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954051803312783, "trigger": 800, "sampling_rate": 105, "lag": 1.4745625101206976, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9858247515932534, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1158774665673552, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5007.780997402116, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359847594458005, "grain_number": 5, "grain_density": 1905.8990909322938, "grain_outer_radius": 0.033442501640440214, "grain_initial_inner_radius": 0.01458213814393599, "grain_initial_height": 0.11798435652985241, "grain_separation": 0.006150390322900179, "grains_center_of_mass_position": 0.3961966515872131, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006415864850067264, "throat_radius": 0.011499851273021755, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548975956179942}], "aerodynamic_surfaces": [{"length": 0.5585448205051431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335818821344181}, {"n": 4, "root_chord": 0.12008181260815709, "tip_chord": 0.059904914721808936, "span": 0.10974399817741136, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482605349664758}, {"top_radius": 0.06273717027012841, "bottom_radius": 0.042902525524811094, "length": 0.0599979974459354, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7021046082104332, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180978695962288, "upper_button_position": 0.08400673861420438}], "rail_length": 5, "inclination": 84.80633099570038, "heading": 51.16372299631511} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350133447324038, "mass": 15.624883956854912, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316554032876692, "I_33_without_motor": 0.014653594090146837, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051363200795148, "trigger": 800, "sampling_rate": 105, "lag": 1.6343681780977757, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9537859100453127, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5148425279862345, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6634.033909060977, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329882806774822, "grain_number": 5, "grain_density": 1895.7415613210926, "grain_outer_radius": 0.032926492576008964, "grain_initial_inner_radius": 0.015283963721077124, "grain_initial_height": 0.12055298017187369, "grain_separation": 0.0022280878549084636, "grains_center_of_mass_position": 0.39708511210156633, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023287859816747183, "throat_radius": 0.01157287036732906, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546731614825215}], "aerodynamic_surfaces": [{"length": 0.559081034577351, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134307823157822}, {"n": 4, "root_chord": 0.11984806563501754, "tip_chord": 0.061002767300572906, "span": 0.11055183260211555, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049816600805135}, {"top_radius": 0.06353956519265043, "bottom_radius": 0.043443203994822044, "length": 0.05906537651553744, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994374238578405, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163455477877133, "upper_button_position": 0.08309187607012714}], "rail_length": 5, "inclination": 84.57050115203616, "heading": 54.73681942186123} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349480445707892, "mass": 15.805357825360707, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326852164161494, "I_33_without_motor": 0.04970108290696454, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.866897631107603, "trigger": 800, "sampling_rate": 105, "lag": 1.5623243827819449, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.048404328325434, "trigger": "apogee", "sampling_rate": 105, "lag": 1.483944918860492, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7401.143912915145, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034545446653917754, "grain_number": 5, "grain_density": 1830.857606380125, "grain_outer_radius": 0.0332214352915949, "grain_initial_inner_radius": 0.0152927745423092, "grain_initial_height": 0.11889138523565518, "grain_separation": 0.0029117096019979317, "grains_center_of_mass_position": 0.3974418308912394, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003926739060068119, "throat_radius": 0.011023664130381727, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554171693441982}], "aerodynamic_surfaces": [{"length": 0.5573467507728095, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1359209227520408}, {"n": 4, "root_chord": 0.1193585877293603, "tip_chord": 0.059455212158389406, "span": 0.11003271869891766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482667203391767}, {"top_radius": 0.0636805864453084, "bottom_radius": 0.042579661738933086, "length": 0.05873657895269904, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985888704351846, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171136534078668, "upper_button_position": 0.08147521702731775}], "rail_length": 5, "inclination": 83.76274570767652, "heading": 49.1162402268143} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350513193146674, "mass": 15.804295346742212, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304185626939164, "I_33_without_motor": 0.03988169859876433, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.881744703803783, "trigger": 800, "sampling_rate": 105, "lag": 1.2074656814168754, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9909745697917646, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4630093611088593, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6632.279261135973, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348846964322409, "grain_number": 5, "grain_density": 1808.2129494790433, "grain_outer_radius": 0.03245068876107048, "grain_initial_inner_radius": 0.015001371917105271, "grain_initial_height": 0.11814553811821825, "grain_separation": 0.004597091583716568, "grains_center_of_mass_position": 0.3990482687484476, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00011001033621105997, "throat_radius": 0.011203470308474265, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539831060325946}], "aerodynamic_surfaces": [{"length": 0.5569475478544244, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337162520377477}, {"n": 4, "root_chord": 0.11979585590151581, "tip_chord": 0.05933904580226481, "span": 0.11035365411315824, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0496014752088036}, {"top_radius": 0.0657474831633742, "bottom_radius": 0.04240971593495542, "length": 0.059333032750989785, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003548789096314, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182185769131939, "upper_button_position": 0.08213630199643751}], "rail_length": 5, "inclination": 84.09758595242512, "heading": 54.59614671514492} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350341228699907, "mass": 15.279333356109674, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320156759357706, "I_33_without_motor": 0.030673136728683603, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08847699568004, "trigger": 800, "sampling_rate": 105, "lag": 1.7312198567355224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9972919610157143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6547691491395597, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5881.482053661815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337415860663313, "grain_number": 5, "grain_density": 1848.0129473165002, "grain_outer_radius": 0.032526149535657564, "grain_initial_inner_radius": 0.015093278218701732, "grain_initial_height": 0.12161128332660072, "grain_separation": 0.0057091370848972875, "grains_center_of_mass_position": 0.3969997707726986, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015466624475052892, "throat_radius": 0.011044777025768072, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553980322439453}], "aerodynamic_surfaces": [{"length": 0.5603607807685852, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333032945787622}, {"n": 4, "root_chord": 0.11986510960878259, "tip_chord": 0.06006261486757444, "span": 0.1097933119950818, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495099249231716}, {"top_radius": 0.06272035937378549, "bottom_radius": 0.043110357944741454, "length": 0.0611743355946028, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005206928636852, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617733434498612, "upper_button_position": 0.08278725836507328}], "rail_length": 5, "inclination": 84.11002861202628, "heading": 51.230974753502984} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06351349505858406, "mass": 15.15359099550991, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335148637983021, "I_33_without_motor": 0.035208895848224016, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.176872291514972, "trigger": 800, "sampling_rate": 105, "lag": 1.4938600180649881, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0530744045068052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.491031850373446, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6833.780193691701, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032241508634604406, "grain_number": 5, "grain_density": 1903.3326009754512, "grain_outer_radius": 0.03324052153820212, "grain_initial_inner_radius": 0.01516812347314999, "grain_initial_height": 0.11931438861253581, "grain_separation": 0.00583091460415354, "grains_center_of_mass_position": 0.39759883572188176, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004404605236989517, "throat_radius": 0.011205583580881582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548693449524948}], "aerodynamic_surfaces": [{"length": 0.557570483505241, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348143670740722}, {"n": 4, "root_chord": 0.11978848692662712, "tip_chord": 0.059824801010716515, "span": 0.10897443411555925, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509642793595206}, {"top_radius": 0.06262391971132965, "bottom_radius": 0.04399417161648547, "length": 0.06102912789456598, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701011834456267, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186247175428494, "upper_button_position": 0.0823871169134176}], "rail_length": 5, "inclination": 84.16755795711046, "heading": 53.39274532453883} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350848595124423, "mass": 15.20259178824711, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340204338277686, "I_33_without_motor": 0.02528910941534361, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.013385790751373, "trigger": 800, "sampling_rate": 105, "lag": 1.4900244085344048, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0335246699780933, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5181682291661878, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8690.207361419778, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033120195861238794, "grain_number": 5, "grain_density": 1898.7793205629998, "grain_outer_radius": 0.031989861766629726, "grain_initial_inner_radius": 0.014592023744085645, "grain_initial_height": 0.12082171231413771, "grain_separation": 0.005287059675834563, "grains_center_of_mass_position": 0.3977786593933873, "center_of_dry_mass_position": 0.317, "nozzle_position": 7.357489592052185e-05, "throat_radius": 0.010627399879725953, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563041140888835}], "aerodynamic_surfaces": [{"length": 0.558098570978067, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135741627177542}, {"n": 4, "root_chord": 0.12120522689737175, "tip_chord": 0.059988541870114, "span": 0.11001209097436722, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477127488090474}, {"top_radius": 0.06596876999171485, "bottom_radius": 0.04480658808040222, "length": 0.0592419781705254, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994177079809321, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177949695869127, "upper_button_position": 0.08162273839401935}], "rail_length": 5, "inclination": 84.0547179655459, "heading": 56.613884297800965} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349915763153718, "mass": 15.443376743021366, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313218264415357, "I_33_without_motor": 0.018278922673330828, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.930961715136975, "trigger": 800, "sampling_rate": 105, "lag": 1.4120778653258843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1291224766019026, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2881587718527454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6588.52669746722, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252880694391389, "grain_number": 5, "grain_density": 1791.1745133552718, "grain_outer_radius": 0.03277339465785376, "grain_initial_inner_radius": 0.015061930610235542, "grain_initial_height": 0.11924349396790374, "grain_separation": 0.0046377203768977445, "grains_center_of_mass_position": 0.398770411078999, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020400997184965512, "throat_radius": 0.010755261845144571, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539696143609047}], "aerodynamic_surfaces": [{"length": 0.5566525792660485, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349602738569935}, {"n": 4, "root_chord": 0.11963392586749975, "tip_chord": 0.060215382416685524, "span": 0.10999940938547415, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0512449244400046}, {"top_radius": 0.06457973268031597, "bottom_radius": 0.04422725009079568, "length": 0.06127279998051569, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008600150005084, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175395727432402, "upper_button_position": 0.0833204422572682}], "rail_length": 5, "inclination": 86.07510725355097, "heading": 52.773331166897094} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349675451355503, "mass": 16.096321446050336, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314889804492819, "I_33_without_motor": 0.042189060559629746, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989929224592055, "trigger": 800, "sampling_rate": 105, "lag": 1.6897007717562844, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9082745015412893, "trigger": "apogee", "sampling_rate": 105, "lag": 1.427152822931887, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6326.387618468839, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03370163676645696, "grain_number": 5, "grain_density": 1798.5143119287789, "grain_outer_radius": 0.03289571656223651, "grain_initial_inner_radius": 0.015348438226842372, "grain_initial_height": 0.11823655301997253, "grain_separation": 0.00456265151526638, "grains_center_of_mass_position": 0.3964032573685034, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006053137875240278, "throat_radius": 0.011281424328595234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565020898995751}], "aerodynamic_surfaces": [{"length": 0.5605252206818321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343668732548517}, {"n": 4, "root_chord": 0.11958392408005071, "tip_chord": 0.060457949720495084, "span": 0.11008731890028114, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484610117614737}, {"top_radius": 0.06247569782552082, "bottom_radius": 0.04348702021982834, "length": 0.05944436278451877, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005024855803512, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160013009087731, "upper_button_position": 0.08450118467157808}], "rail_length": 5, "inclination": 84.30577099178497, "heading": 53.29520689218167} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349288281337079, "mass": 15.730834258985656, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3200621019223515, "I_33_without_motor": 0.03955990371738993, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036259414410857, "trigger": 800, "sampling_rate": 105, "lag": 1.4400416130469171, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.984470159837417, "trigger": "apogee", "sampling_rate": 105, "lag": 1.40481357653435, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6747.747082289516, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032635529138826815, "grain_number": 5, "grain_density": 1825.9590554616914, "grain_outer_radius": 0.03257138163425478, "grain_initial_inner_radius": 0.015044588558470065, "grain_initial_height": 0.11986589193083094, "grain_separation": 0.002781321529984572, "grains_center_of_mass_position": 0.39849860454151387, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015056210129507964, "throat_radius": 0.011281438702562815, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539410903076416}], "aerodynamic_surfaces": [{"length": 0.5588142232700725, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132820907616245}, {"n": 4, "root_chord": 0.11980109163321923, "tip_chord": 0.05882624507440525, "span": 0.10990269771741991, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482960620500592}, {"top_radius": 0.06362123630757496, "bottom_radius": 0.045781268342058465, "length": 0.05975813270161104, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7013152084860866, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178414474899774, "upper_button_position": 0.08347376099610926}], "rail_length": 5, "inclination": 83.46409043167539, "heading": 52.768661587194686} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350257587815406, "mass": 15.705382593314411, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336693577702653, "I_33_without_motor": 0.0444919896663848, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005255155717792, "trigger": 800, "sampling_rate": 105, "lag": 1.4110723178714026, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9672182084299874, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1495938838578006, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4833.141605209829, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286422353323911, "grain_number": 5, "grain_density": 1826.4212748416387, "grain_outer_radius": 0.03316271938456209, "grain_initial_inner_radius": 0.015094101248745927, "grain_initial_height": 0.12150366660384446, "grain_separation": 0.006682443279115342, "grains_center_of_mass_position": 0.39716512834941436, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000767794552793192, "throat_radius": 0.011268048610649239, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255890027840592}], "aerodynamic_surfaces": [{"length": 0.5560087709405729, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332748657515042}, {"n": 4, "root_chord": 0.11968719746898912, "tip_chord": 0.06052281340469252, "span": 0.10969825366517481, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507662191768588}, {"top_radius": 0.06267330956544459, "bottom_radius": 0.04388818808444196, "length": 0.060044350696346914, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999916310968786, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178637285312997, "upper_button_position": 0.08212790256557889}], "rail_length": 5, "inclination": 85.69406719147968, "heading": 53.20646647476175} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351404006920305, "mass": 15.306975244625493, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317946695429252, "I_33_without_motor": 0.035420817459141794, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928977475694118, "trigger": 800, "sampling_rate": 105, "lag": 1.5739739744129677, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9635874076697524, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5572547711648825, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7498.467626391407, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262838684195723, "grain_number": 5, "grain_density": 1801.6680849578188, "grain_outer_radius": 0.03244010783036861, "grain_initial_inner_radius": 0.014567806053639467, "grain_initial_height": 0.12042370296845364, "grain_separation": 0.005138578295533886, "grains_center_of_mass_position": 0.3975843424841667, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.106707606317476e-05, "throat_radius": 0.010245851347063196, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558977632607864}], "aerodynamic_surfaces": [{"length": 0.558147952291614, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134602531684675}, {"n": 4, "root_chord": 0.12004034782500976, "tip_chord": 0.0592982120149875, "span": 0.10959147244394757, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492765226454754}, {"top_radius": 0.06222000369497579, "bottom_radius": 0.04365088381261339, "length": 0.06030754094655848, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997215372197391, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179201870350233, "upper_button_position": 0.0818013501847158}], "rail_length": 5, "inclination": 83.67835134730802, "heading": 49.929351846388634} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0635023563376047, "mass": 15.320432757127437, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309439899073038, "I_33_without_motor": 0.023284411630057254, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.007478262411494, "trigger": 800, "sampling_rate": 105, "lag": 1.570624917699055, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9076321087258539, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6628495958592806, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5355.58610925346, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03238920448056589, "grain_number": 5, "grain_density": 1793.4771549521233, "grain_outer_radius": 0.03299456001307441, "grain_initial_inner_radius": 0.014787479872830913, "grain_initial_height": 0.12074986637476219, "grain_separation": 0.006259408830575613, "grains_center_of_mass_position": 0.39754667249842957, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0029917397684280484, "throat_radius": 0.010516255471040589, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256319822689597}], "aerodynamic_surfaces": [{"length": 0.5573439757278634, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346996410594774}, {"n": 4, "root_chord": 0.1198480409186315, "tip_chord": 0.06052897216295773, "span": 0.10950688837507677, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049920840365889}, {"top_radius": 0.06290976914983659, "bottom_radius": 0.0431210679872271, "length": 0.0599633310700066, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009883659724186, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186437648541673, "upper_button_position": 0.08234460111825137}], "rail_length": 5, "inclination": 83.23156178301545, "heading": 53.05358994765894} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634949996859166, "mass": 16.035180895437094, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332096089612494, "I_33_without_motor": 0.031947065077847385, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.275448197573548, "trigger": 800, "sampling_rate": 105, "lag": 1.5559955920682746, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8981937610609947, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5593142923841257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5717.742777261455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031817007217264937, "grain_number": 5, "grain_density": 1823.3277192053579, "grain_outer_radius": 0.032996361540304955, "grain_initial_inner_radius": 0.014529916718688597, "grain_initial_height": 0.11938661900829486, "grain_separation": 0.003588860175335608, "grains_center_of_mass_position": 0.3969709444031316, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006721970985018781, "throat_radius": 0.010686817805746405, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530723485862467}], "aerodynamic_surfaces": [{"length": 0.5578039717866069, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345144483196334}, {"n": 4, "root_chord": 0.11989774483347308, "tip_chord": 0.060758174151691845, "span": 0.10960893817148533, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506783127554538}, {"top_radius": 0.06319359204478431, "bottom_radius": 0.04436727589688338, "length": 0.059513859724808646, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983079158175902, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183110590110236, "upper_button_position": 0.07999685680656665}], "rail_length": 5, "inclination": 83.62490251555934, "heading": 56.86135482680507} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349507214171242, "mass": 14.954896076580553, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34003876180457, "I_33_without_motor": 0.017550073888356853, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01881635301426, "trigger": 800, "sampling_rate": 105, "lag": 1.5085407162706495, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9782955928119834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.436092997061205, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5631.292198993067, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317039851483486, "grain_number": 5, "grain_density": 1810.9730907370395, "grain_outer_radius": 0.03362141894994356, "grain_initial_inner_radius": 0.014792503804973666, "grain_initial_height": 0.11811292679462897, "grain_separation": 0.004329331608719684, "grains_center_of_mass_position": 0.39583770257271395, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010521291523135899, "throat_radius": 0.01203146220334554, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529156128436434}], "aerodynamic_surfaces": [{"length": 0.5585690168562724, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133373184168893}, {"n": 4, "root_chord": 0.11930603978143534, "tip_chord": 0.06028133217785949, "span": 0.11000840286438068, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483698840070712}, {"top_radius": 0.06172849958665658, "bottom_radius": 0.041522406768716345, "length": 0.0600286154100952, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990811465043577, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186891189114113, "upper_button_position": 0.08039202759294639}], "rail_length": 5, "inclination": 84.50172320235791, "heading": 49.84481243953314} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350835981642454, "mass": 15.631612229459959, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338842924156079, "I_33_without_motor": 0.03727134410152496, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070696894654667, "trigger": 800, "sampling_rate": 105, "lag": 1.610441235136367, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0665147970678415, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2881001838914887, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6631.626799298607, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296982860637169, "grain_number": 5, "grain_density": 1853.7295572555738, "grain_outer_radius": 0.032534515196002325, "grain_initial_inner_radius": 0.015088508509750952, "grain_initial_height": 0.11933812181712412, "grain_separation": 0.0035730699156063537, "grains_center_of_mass_position": 0.3972822996663679, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015447419662192898, "throat_radius": 0.010023283889801957, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554945884881255}], "aerodynamic_surfaces": [{"length": 0.5581924419251805, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336101883137946}, {"n": 4, "root_chord": 0.11977097941919514, "tip_chord": 0.06071815856873747, "span": 0.10960713870508824, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504246720120742}, {"top_radius": 0.06220487818454438, "bottom_radius": 0.04187953710828801, "length": 0.06074796014302347, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983657267043435, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176819165614689, "upper_button_position": 0.08068381014287462}], "rail_length": 5, "inclination": 83.72814869548053, "heading": 52.70234984075392} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350062556969643, "mass": 14.656910571480095, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314738221679625, "I_33_without_motor": 0.02240020688380955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.845784868723946, "trigger": 800, "sampling_rate": 105, "lag": 1.427126256413314, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1072233475050595, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5669029244082282, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6390.768126633267, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032461252262964715, "grain_number": 5, "grain_density": 1827.9669083118663, "grain_outer_radius": 0.03345542889083931, "grain_initial_inner_radius": 0.014834414754610777, "grain_initial_height": 0.12044078357500702, "grain_separation": 0.0034743898770785795, "grains_center_of_mass_position": 0.39647992317814335, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012000176027347279, "throat_radius": 0.010962091732965792, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531831393712214}], "aerodynamic_surfaces": [{"length": 0.5589121663403169, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332966707957763}, {"n": 4, "root_chord": 0.12021583434447056, "tip_chord": 0.061021710222857996, "span": 0.1102598476568429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486474971610389}, {"top_radius": 0.0639274436875473, "bottom_radius": 0.042421434282378816, "length": 0.060853408094629434, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004143465196842, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187181887593514, "upper_button_position": 0.08169615776033279}], "rail_length": 5, "inclination": 85.21133129712022, "heading": 51.94567090721547} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350582486715041, "mass": 15.18521486235173, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329222161286833, "I_33_without_motor": 0.02534016299240481, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.064848418872373, "trigger": 800, "sampling_rate": 105, "lag": 1.7129009197943006, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9134676124740464, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3985536309996396, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6919.812202062027, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288672971960808, "grain_number": 5, "grain_density": 1817.422781320874, "grain_outer_radius": 0.03239276678528696, "grain_initial_inner_radius": 0.014775950215792982, "grain_initial_height": 0.11895747762958438, "grain_separation": 0.0038629902272171667, "grains_center_of_mass_position": 0.39687843191918865, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011724372102899768, "throat_radius": 0.011082017213722893, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254888514639739}], "aerodynamic_surfaces": [{"length": 0.5587484080760943, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347025079800228}, {"n": 4, "root_chord": 0.11964740679673093, "tip_chord": 0.060263708687214444, "span": 0.1099689203238827, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498378391562926}, {"top_radius": 0.06389042930723787, "bottom_radius": 0.046136793749177604, "length": 0.059818777653133086, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6977869029342221, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61861911005035, "upper_button_position": 0.0791677928838721}], "rail_length": 5, "inclination": 84.01960856463471, "heading": 51.0263971694131} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350062735662847, "mass": 15.781882187206271, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329114090896003, "I_33_without_motor": 0.033174610793933, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.065638834396937, "trigger": 800, "sampling_rate": 105, "lag": 1.368051001025925, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.10069339863483, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7940421862133555, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7773.227745956978, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033475106878016365, "grain_number": 5, "grain_density": 1910.9209746642593, "grain_outer_radius": 0.03270159852512783, "grain_initial_inner_radius": 0.015286063419590908, "grain_initial_height": 0.12089840543650306, "grain_separation": 0.005563098612236437, "grains_center_of_mass_position": 0.3961770728553039, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010563665926663455, "throat_radius": 0.010739296864879315, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549463903012636}], "aerodynamic_surfaces": [{"length": 0.5581050075345476, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134896930244507}, {"n": 4, "root_chord": 0.12046589243908554, "tip_chord": 0.05993202335717639, "span": 0.11004549013455439, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494813686303301}, {"top_radius": 0.061709927535039205, "bottom_radius": 0.04440242040945943, "length": 0.06092879770520465, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009317202079629, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617574183986761, "upper_button_position": 0.0833575362212019}], "rail_length": 5, "inclination": 85.06212391954872, "heading": 52.411417018608816} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350422880198786, "mass": 15.782056227818696, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323241454595989, "I_33_without_motor": 0.02859567359276783, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988077691946213, "trigger": 800, "sampling_rate": 105, "lag": 1.4595786593397386, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0439806792801172, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5807467251376155, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6536.519818181401, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237162319349685, "grain_number": 5, "grain_density": 1786.9407481090245, "grain_outer_radius": 0.03310903715093881, "grain_initial_inner_radius": 0.01482205521129405, "grain_initial_height": 0.1195828599502277, "grain_separation": 0.006683736524046165, "grains_center_of_mass_position": 0.396020058049611, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015592829297291807, "throat_radius": 0.011274388541914038, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543702520979865}], "aerodynamic_surfaces": [{"length": 0.5585166568854542, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132941643091862}, {"n": 4, "root_chord": 0.11949399051467452, "tip_chord": 0.06000805122330816, "span": 0.1101719809500346, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497052188110247}, {"top_radius": 0.06248740959017891, "bottom_radius": 0.04290044367823296, "length": 0.05853267652673809, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985395126251273, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172208369717994, "upper_button_position": 0.08131867565332784}], "rail_length": 5, "inclination": 82.69943605444834, "heading": 55.61900092979311} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349722164453418, "mass": 15.0854647994318, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307733466036321, "I_33_without_motor": 0.030959020708256655, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.148248852330983, "trigger": 800, "sampling_rate": 105, "lag": 1.5679256725619537, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9450229447042541, "trigger": "apogee", "sampling_rate": 105, "lag": 1.473636846869842, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7771.138781736272, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308284952912427, "grain_number": 5, "grain_density": 1827.4542233953102, "grain_outer_radius": 0.03301849255640111, "grain_initial_inner_radius": 0.014876226540644575, "grain_initial_height": 0.11976762475211994, "grain_separation": 0.005496848367634142, "grains_center_of_mass_position": 0.39743024598113397, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009136705022932065, "throat_radius": 0.01018875511271743, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540791097603103}], "aerodynamic_surfaces": [{"length": 0.5585119104553233, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1323847719187061}, {"n": 4, "root_chord": 0.12055549447750824, "tip_chord": 0.05989634036234212, "span": 0.11061059956943015, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490300099728596}, {"top_radius": 0.06325832337450929, "bottom_radius": 0.04092099254024788, "length": 0.06234041453328999, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999534653663341, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186410545427341, "upper_button_position": 0.08131241082359997}], "rail_length": 5, "inclination": 84.83045269013968, "heading": 49.814394076149206} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350014516877231, "mass": 15.3324783940799, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31950378832545, "I_33_without_motor": 0.030668229218308276, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.896933208945459, "trigger": 800, "sampling_rate": 105, "lag": 1.3320535169109369, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0873171880346715, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5564932126767619, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7387.749015803178, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032552332397868, "grain_number": 5, "grain_density": 1925.4606459693507, "grain_outer_radius": 0.032963003566862756, "grain_initial_inner_radius": 0.014585437099800208, "grain_initial_height": 0.11992498757293425, "grain_separation": 0.0042095471542279925, "grains_center_of_mass_position": 0.395962691574414, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003071215762188559, "throat_radius": 0.010445612683778223, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536339822313831}], "aerodynamic_surfaces": [{"length": 0.5579112469144227, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324031365072527}, {"n": 4, "root_chord": 0.1198701862157901, "tip_chord": 0.05954160786228328, "span": 0.1091064347183318, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491326817870956}, {"top_radius": 0.06321313521717263, "bottom_radius": 0.04446458110456865, "length": 0.05965360803132257, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7018142644306535, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616814952638388, "upper_button_position": 0.0849993117922655}], "rail_length": 5, "inclination": 84.48912776053665, "heading": 54.00649046952435} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0635016210032479, "mass": 15.693978055470927, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326684335406912, "I_33_without_motor": 0.03034614092131312, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979304361289344, "trigger": 800, "sampling_rate": 105, "lag": 1.445028850272865, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.950506429660198, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4908508240995504, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6327.239541936026, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326792173036218, "grain_number": 5, "grain_density": 1910.248829364755, "grain_outer_radius": 0.03235938179064608, "grain_initial_inner_radius": 0.014573019770884151, "grain_initial_height": 0.11965409917037985, "grain_separation": 0.005158283362929221, "grains_center_of_mass_position": 0.39789651645476287, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006552481956384695, "throat_radius": 0.010929502069595358, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255423060753787}], "aerodynamic_surfaces": [{"length": 0.55805340183655, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333492128849232}, {"n": 4, "root_chord": 0.12060704281657866, "tip_chord": 0.06018639661492964, "span": 0.10885586417119554, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507030693764485}, {"top_radius": 0.06446571872999575, "bottom_radius": 0.04235144517765611, "length": 0.05982784693509861, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004971706678595, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184047634085841, "upper_button_position": 0.08209240725927547}], "rail_length": 5, "inclination": 84.78978057087608, "heading": 52.45753560367388} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349694936645367, "mass": 15.449589737523732, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313409695275956, "I_33_without_motor": 0.013457852993375017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.973126468839455, "trigger": 800, "sampling_rate": 105, "lag": 1.4726503950542662, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1139832077949632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4982800548485096, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8920.277123919916, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303059778469572, "grain_number": 5, "grain_density": 1805.088242244217, "grain_outer_radius": 0.03254678778409561, "grain_initial_inner_radius": 0.01478667736062448, "grain_initial_height": 0.12018313109622322, "grain_separation": 0.004456329881236868, "grains_center_of_mass_position": 0.3937026801373975, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004384200504190242, "throat_radius": 0.011212568238679298, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254629537574991}], "aerodynamic_surfaces": [{"length": 0.5574254733772714, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1367585950634387}, {"n": 4, "root_chord": 0.12079215861340235, "tip_chord": 0.05974127992668554, "span": 0.11040162283479031, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487195153525501}, {"top_radius": 0.0634567643568383, "bottom_radius": 0.044304114333758186, "length": 0.05931481852022037, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007282388863331, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178009321734612, "upper_button_position": 0.08292730671287185}], "rail_length": 5, "inclination": 84.27143160248951, "heading": 49.83012095629834} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349441891255672, "mass": 15.758738725600825, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3156663130539785, "I_33_without_motor": 0.029782200343558083, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93155663022587, "trigger": 800, "sampling_rate": 105, "lag": 1.5779132948751562, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9447263182561711, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6828355883271324, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5694.083578543777, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033529793105387305, "grain_number": 5, "grain_density": 1749.6351827764151, "grain_outer_radius": 0.03337617315701845, "grain_initial_inner_radius": 0.015125716190997923, "grain_initial_height": 0.12047439254189535, "grain_separation": 0.0029699408829277686, "grains_center_of_mass_position": 0.3955099259778309, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011918102871030336, "throat_radius": 0.010861719358836085, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547928556610795}], "aerodynamic_surfaces": [{"length": 0.5573789856232787, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335061025471018}, {"n": 4, "root_chord": 0.11994538102588917, "tip_chord": 0.060195244427233396, "span": 0.11049802885571315, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047958549292581}, {"top_radius": 0.063753093279053, "bottom_radius": 0.0440399201663176, "length": 0.05984485703160547, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011855356557571, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61819073961733, "upper_button_position": 0.08299479603842719}], "rail_length": 5, "inclination": 83.81187052511994, "heading": 51.68517592972495} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349058772322658, "mass": 16.01080622603946, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322259554175174, "I_33_without_motor": 0.02268626538024695, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.973699698973677, "trigger": 800, "sampling_rate": 105, "lag": 1.4568545072145602, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9270530016780137, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3150611330336541, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4725.2240882918795, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329823365887356, "grain_number": 5, "grain_density": 1750.384109904149, "grain_outer_radius": 0.0327704578811309, "grain_initial_inner_radius": 0.0156451223208455, "grain_initial_height": 0.11903245683195045, "grain_separation": 0.0048502816056007385, "grains_center_of_mass_position": 0.3963752772601372, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.7093797130410775e-05, "throat_radius": 0.011092804160102993, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552144820618374}], "aerodynamic_surfaces": [{"length": 0.5588087385096736, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337823283422424}, {"n": 4, "root_chord": 0.12030948834127056, "tip_chord": 0.05984657815692177, "span": 0.1080405724598141, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500270290497122}, {"top_radius": 0.06366746874081068, "bottom_radius": 0.04380006645128368, "length": 0.0586825272005741, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011463869554013, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172325388202059, "upper_button_position": 0.08391384813519542}], "rail_length": 5, "inclination": 85.57047678953207, "heading": 51.98636876304106} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350256612982481, "mass": 15.591745111398012, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311241243432403, "I_33_without_motor": 0.022537029047266854, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.130955129722969, "trigger": 800, "sampling_rate": 105, "lag": 1.406947103975135, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.089524803767254, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5561299470267975, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4794.392803367818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285401656166664, "grain_number": 5, "grain_density": 1869.0599429783178, "grain_outer_radius": 0.033325404324700256, "grain_initial_inner_radius": 0.01475853194914041, "grain_initial_height": 0.11976119800393026, "grain_separation": 0.0051325577983681835, "grains_center_of_mass_position": 0.3960324898367714, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015508912435960327, "throat_radius": 0.009871573651457712, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551363047041717}], "aerodynamic_surfaces": [{"length": 0.5572097691405691, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338928614418087}, {"n": 4, "root_chord": 0.12067470489980169, "tip_chord": 0.05987621354539456, "span": 0.11063763060094603, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494575948342797}, {"top_radius": 0.0642884203211059, "bottom_radius": 0.04393956164812584, "length": 0.059887487258416444, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000311410549191, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171594765054877, "upper_button_position": 0.0828716645494314}], "rail_length": 5, "inclination": 87.27889163480837, "heading": 53.93133901882222} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350190444320157, "mass": 15.620378394762866, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3383971820416845, "I_33_without_motor": 0.0331227273570142, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939547248493707, "trigger": 800, "sampling_rate": 105, "lag": 1.5111744151245519, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1660774065115203, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6775757237538491, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5467.985604938003, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032377581088641375, "grain_number": 5, "grain_density": 1855.5444305909766, "grain_outer_radius": 0.033870339810757745, "grain_initial_inner_radius": 0.014389050118559383, "grain_initial_height": 0.11976087743346374, "grain_separation": 0.004771473891575985, "grains_center_of_mass_position": 0.39766013981671705, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011429182240525668, "throat_radius": 0.011032746353332358, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536371226051017}], "aerodynamic_surfaces": [{"length": 0.5578584092764749, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134772942214356}, {"n": 4, "root_chord": 0.12067874025338785, "tip_chord": 0.06006260904438819, "span": 0.1104984601776684, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0521132861450444}, {"top_radius": 0.06226445710731568, "bottom_radius": 0.04374599751963727, "length": 0.058907520993169676, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012086161576718, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177619068131003, "upper_button_position": 0.08344670934457155}], "rail_length": 5, "inclination": 85.33860242717215, "heading": 51.150271796632815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350221607644993, "mass": 16.351740951960366, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334399418185816, "I_33_without_motor": 0.05314599856816141, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89052937324484, "trigger": 800, "sampling_rate": 105, "lag": 1.461416471059828, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0574100274797438, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4395014508159993, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5439.719614617876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032375988962209, "grain_number": 5, "grain_density": 1889.3614341311918, "grain_outer_radius": 0.03314194281539544, "grain_initial_inner_radius": 0.014473021179736542, "grain_initial_height": 0.11957642575815906, "grain_separation": 0.004950530982813312, "grains_center_of_mass_position": 0.39502817071669444, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012219659793136063, "throat_radius": 0.010978572912764132, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560709567283075}], "aerodynamic_surfaces": [{"length": 0.5592956453109712, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348510276024024}, {"n": 4, "root_chord": 0.11973374887220771, "tip_chord": 0.059283579033114035, "span": 0.11030581607333724, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050043194037379}, {"top_radius": 0.06449583608291935, "bottom_radius": 0.043444032649046296, "length": 0.0583773628615547, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7023306035681449, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617301791926612, "upper_button_position": 0.08502881164153286}], "rail_length": 5, "inclination": 84.2512174658725, "heading": 51.83421572657554} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.0634912421714552, "mass": 15.713266253704656, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331371877718711, "I_33_without_motor": 0.027369030675354074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8529981192303, "trigger": 800, "sampling_rate": 105, "lag": 1.699979843809591, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.971697427081185, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5770807797255402, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5339.882735811041, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03259076706455401, "grain_number": 5, "grain_density": 1718.534690175787, "grain_outer_radius": 0.03303944007439208, "grain_initial_inner_radius": 0.015044762083773713, "grain_initial_height": 0.12081275016352695, "grain_separation": 0.004557555634943111, "grains_center_of_mass_position": 0.3984740141837999, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011737680433265086, "throat_radius": 0.01128750077534104, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547578012060487}], "aerodynamic_surfaces": [{"length": 0.559027155764402, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347267476779568}, {"n": 4, "root_chord": 0.12075911146922341, "tip_chord": 0.06096580986193544, "span": 0.10968869401696939, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487412419071958}, {"top_radius": 0.06478119377165771, "bottom_radius": 0.04400921132465079, "length": 0.0608307938491026, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006318757104738, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191675200069567, "upper_button_position": 0.08146435570351707}], "rail_length": 5, "inclination": 85.06400190482546, "heading": 55.23344317988241} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349457239067721, "mass": 15.574814463119012, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325091759610674, "I_33_without_motor": 0.029382509424738065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.081336368612886, "trigger": 800, "sampling_rate": 105, "lag": 1.5467020695242195, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0402044897305875, "trigger": "apogee", "sampling_rate": 105, "lag": 1.746680697842528, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6052.670560847864, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315970993873494, "grain_number": 5, "grain_density": 1768.1195700234111, "grain_outer_radius": 0.03264290119920827, "grain_initial_inner_radius": 0.01465952954159979, "grain_initial_height": 0.11913155941911538, "grain_separation": 0.006571463953611579, "grains_center_of_mass_position": 0.397808601144281, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.31120696419062e-06, "throat_radius": 0.010727547480869635, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557699608802888}], "aerodynamic_surfaces": [{"length": 0.5558771922494602, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338987385374566}, {"n": 4, "root_chord": 0.1203806882987374, "tip_chord": 0.059171069847967384, "span": 0.11051666600272515, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490753668976374}, {"top_radius": 0.0644109925963705, "bottom_radius": 0.042821738261174545, "length": 0.060992553089836865, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994190363003496, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168981631462093, "upper_button_position": 0.08252087315414036}], "rail_length": 5, "inclination": 83.62364887141935, "heading": 53.243566034098514} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06348864266647661, "mass": 16.020116979249735, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326170761931862, "I_33_without_motor": 0.04858129589059991, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.066614309545914, "trigger": 800, "sampling_rate": 105, "lag": 1.5502258112489815, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9956590446669668, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6021495098712084, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7299.804544495513, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252001926009215, "grain_number": 5, "grain_density": 1755.7004596283102, "grain_outer_radius": 0.03296589883843595, "grain_initial_inner_radius": 0.014939542859818048, "grain_initial_height": 0.12140991696551194, "grain_separation": 0.004161171972852305, "grains_center_of_mass_position": 0.396525422914704, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008747104748502364, "throat_radius": 0.011250989904750715, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543706251843993}], "aerodynamic_surfaces": [{"length": 0.5580116669704595, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345039279924556}, {"n": 4, "root_chord": 0.12007235251235636, "tip_chord": 0.060247715119005334, "span": 0.10928047604417877, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049152296273825}, {"top_radius": 0.06421382745418361, "bottom_radius": 0.0439316969344357, "length": 0.058313637676527946, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992451973354126, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182500888194183, "upper_button_position": 0.08099510851599423}], "rail_length": 5, "inclination": 83.91516872832193, "heading": 53.62542233478624} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349272806868332, "mass": 15.00981704620158, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315146551027831, "I_33_without_motor": 0.04297192538207546, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.970661737648731, "trigger": 800, "sampling_rate": 105, "lag": 1.3890354752463838, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9416409358186182, "trigger": "apogee", "sampling_rate": 105, "lag": 1.207000295680661, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7138.217589150028, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033232141253683525, "grain_number": 5, "grain_density": 1868.5273356495175, "grain_outer_radius": 0.03293576775726146, "grain_initial_inner_radius": 0.015080177045733657, "grain_initial_height": 0.11927482292375227, "grain_separation": 0.005536210083196877, "grains_center_of_mass_position": 0.3961936004384863, "center_of_dry_mass_position": 0.317, "nozzle_position": 3.650890103171271e-05, "throat_radius": 0.01088623541507661, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551717957246629}], "aerodynamic_surfaces": [{"length": 0.5573682685860851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333039694766232}, {"n": 4, "root_chord": 0.1196852080861276, "tip_chord": 0.059609657626958544, "span": 0.10946198931196051, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501134697951588}, {"top_radius": 0.06321065254991232, "bottom_radius": 0.04289759574154612, "length": 0.060442200460827315, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989824015906576, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164133161484243, "upper_button_position": 0.08256908544223329}], "rail_length": 5, "inclination": 85.17857945585655, "heading": 53.98569865151314} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350331068290702, "mass": 15.588815646517723, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320314496688822, "I_33_without_motor": 0.04068136039008933, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12012344315782, "trigger": 800, "sampling_rate": 105, "lag": 1.385335621633475, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9297941247315882, "trigger": "apogee", "sampling_rate": 105, "lag": 1.383960035579884, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5875.169462616547, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03241326396138955, "grain_number": 5, "grain_density": 1773.2915512625532, "grain_outer_radius": 0.033067592292874246, "grain_initial_inner_radius": 0.014875891464755564, "grain_initial_height": 0.11982224389510741, "grain_separation": 0.005222232424906427, "grains_center_of_mass_position": 0.3978958924610339, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008747276361475199, "throat_radius": 0.011010844592766173, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535268315297767}], "aerodynamic_surfaces": [{"length": 0.5570690953017352, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133655397795348}, {"n": 4, "root_chord": 0.11978526423187401, "tip_chord": 0.060540710624425516, "span": 0.11023603176465221, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491580371904041}, {"top_radius": 0.06464519773346217, "bottom_radius": 0.04293532853649873, "length": 0.06076837754337902, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006101059629091, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181945271941671, "upper_button_position": 0.08241557876874195}], "rail_length": 5, "inclination": 84.8842215523448, "heading": 53.834341567229956} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349564485403267, "mass": 14.84997712668715, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310177329116812, "I_33_without_motor": 0.04812418442070504, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.276567088212799, "trigger": 800, "sampling_rate": 105, "lag": 1.448858336694269, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0143923381490865, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4874857107653416, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6661.489137353167, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324731852944389, "grain_number": 5, "grain_density": 1812.5725388889218, "grain_outer_radius": 0.03259924387271906, "grain_initial_inner_radius": 0.01519575183793338, "grain_initial_height": 0.1205243342494967, "grain_separation": 0.005791919788428597, "grains_center_of_mass_position": 0.396330596778323, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016384876377317544, "throat_radius": 0.01193006243009063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546519611361329}], "aerodynamic_surfaces": [{"length": 0.559352220123216, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342582209995073}, {"n": 4, "root_chord": 0.12061748678823803, "tip_chord": 0.059897913795309364, "span": 0.11058910076911063, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.05066369869204}, {"top_radius": 0.063201470143063, "bottom_radius": 0.0431462293234358, "length": 0.060063201283194534, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6976765813987099, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172807345819934, "upper_button_position": 0.08039584681671652}], "rail_length": 5, "inclination": 82.54880491925708, "heading": 53.84102220678574} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635019130597404, "mass": 14.856316961931407, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331327301282966, "I_33_without_motor": 0.028470922398954428, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88571775676996, "trigger": 800, "sampling_rate": 105, "lag": 1.3905290652862372, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0004972451348153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6267267734495294, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5659.051170305228, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281324944544463, "grain_number": 5, "grain_density": 1826.8487702719708, "grain_outer_radius": 0.0327430506811288, "grain_initial_inner_radius": 0.01505030267859374, "grain_initial_height": 0.12116757210314515, "grain_separation": 0.005409431750049898, "grains_center_of_mass_position": 0.39647778746407, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011917022244287547, "throat_radius": 0.010467703296710172, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552987068374002}], "aerodynamic_surfaces": [{"length": 0.5571659469867156, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133351926720468}, {"n": 4, "root_chord": 0.1191677136855739, "tip_chord": 0.05985959865172807, "span": 0.11043503128907368, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0481860629716202}, {"top_radius": 0.06396842642690936, "bottom_radius": 0.041760357748741046, "length": 0.05950436297510766, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998168813410984, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195161171558358, "upper_button_position": 0.08030076418526266}], "rail_length": 5, "inclination": 84.23579667425327, "heading": 51.330946991041046} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.063499353278983, "mass": 14.651012379508341, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332299400819915, "I_33_without_motor": 0.0586683557664895, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051291861354718, "trigger": 800, "sampling_rate": 105, "lag": 1.497827937510171, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9653836506776935, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1585678564363677, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7169.270164932508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311588783314396, "grain_number": 5, "grain_density": 1768.443940157639, "grain_outer_radius": 0.033100510885676324, "grain_initial_inner_radius": 0.014668671191472889, "grain_initial_height": 0.11997776921674884, "grain_separation": 0.0049320365768151615, "grains_center_of_mass_position": 0.3968847227010985, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00043411094209128576, "throat_radius": 0.010597138020086003, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551018142789119}], "aerodynamic_surfaces": [{"length": 0.5585609515115697, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347536332458317}, {"n": 4, "root_chord": 0.11940279283374344, "tip_chord": 0.06006017835491875, "span": 0.10979035804366907, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493164962491999}, {"top_radius": 0.06254342898390043, "bottom_radius": 0.04444206084375876, "length": 0.060240672863453915, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7011058916437306, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173649687679276, "upper_button_position": 0.08374092287580304}], "rail_length": 5, "inclination": 85.3895315267231, "heading": 52.847418838390304} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.063498413277112, "mass": 15.40388371944625, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322529592146623, "I_33_without_motor": 0.04030393159318462, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.016446383343709, "trigger": 800, "sampling_rate": 105, "lag": 1.4413462752869897, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9558933563951466, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8510608519209073, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6997.169751570401, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03358211419191533, "grain_number": 5, "grain_density": 1732.637311710055, "grain_outer_radius": 0.03318050342869283, "grain_initial_inner_radius": 0.014897276471477459, "grain_initial_height": 0.12115725712579907, "grain_separation": 0.004738165916815023, "grains_center_of_mass_position": 0.3969129951010182, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007995754639997974, "throat_radius": 0.01085123057491378, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548659036565948}], "aerodynamic_surfaces": [{"length": 0.5589100628670834, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335403060228493}, {"n": 4, "root_chord": 0.11995310963400213, "tip_chord": 0.05952723528656302, "span": 0.10997434140515307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497743562631074}, {"top_radius": 0.0645770037156956, "bottom_radius": 0.04370985401454453, "length": 0.06117067431603777, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990580649355367, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202134948419977, "upper_button_position": 0.07884457009353896}], "rail_length": 5, "inclination": 84.27727130467652, "heading": 53.94376263891585} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06351341310735377, "mass": 14.68020609863345, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330709444702324, "I_33_without_motor": 0.04752293824446524, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14781995110654, "trigger": 800, "sampling_rate": 105, "lag": 1.4165338381151271, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0710299418125337, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3363143966889584, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6151.19704161141, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262356745692028, "grain_number": 5, "grain_density": 1795.3738615208658, "grain_outer_radius": 0.033020331254321376, "grain_initial_inner_radius": 0.015446576280686275, "grain_initial_height": 0.12004889746632426, "grain_separation": 0.0060316175684507955, "grains_center_of_mass_position": 0.3968299974473631, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024138203450210744, "throat_radius": 0.010810977419159451, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255023038763996}], "aerodynamic_surfaces": [{"length": 0.5567869903691506, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134518048138086}, {"n": 4, "root_chord": 0.1198376324957026, "tip_chord": 0.05973404330103827, "span": 0.10955464711405523, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048921912048372}, {"top_radius": 0.06320576991603663, "bottom_radius": 0.04296556335741648, "length": 0.060077398527520226, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998659390756878, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181430709304503, "upper_button_position": 0.08172286814523755}], "rail_length": 5, "inclination": 85.13781938728692, "heading": 53.53534032291595} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0635055505081538, "mass": 15.246782718754734, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3262060001508535, "I_33_without_motor": 0.035690663941121394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.097037034089913, "trigger": 800, "sampling_rate": 105, "lag": 1.6237609181024744, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8712324971550643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5796444781141608, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5687.381939181255, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268646702812526, "grain_number": 5, "grain_density": 1831.4281079800483, "grain_outer_radius": 0.032152964372967587, "grain_initial_inner_radius": 0.015225816334653294, "grain_initial_height": 0.12036180840632989, "grain_separation": 0.004612510937959347, "grains_center_of_mass_position": 0.39764396621069886, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005670548610613258, "throat_radius": 0.010413712825152778, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534063900532122}], "aerodynamic_surfaces": [{"length": 0.5572174375209306, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357882388007474}, {"n": 4, "root_chord": 0.11982104766199174, "tip_chord": 0.06050499762451876, "span": 0.11034406643642077, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494382944713625}, {"top_radius": 0.06325505372766335, "bottom_radius": 0.04343236602102315, "length": 0.0582110090480505, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990799523845295, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180727398620673, "upper_button_position": 0.08100721252246212}], "rail_length": 5, "inclination": 85.7082015471236, "heading": 53.77496841001827} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349719200729124, "mass": 15.916800385183269, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313388475782686, "I_33_without_motor": 0.02935121422533407, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851142076451818, "trigger": 800, "sampling_rate": 105, "lag": 1.609122304245615, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0184524522221632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7367804918477276, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5360.684187904575, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362705822893152, "grain_number": 5, "grain_density": 1754.2774437687385, "grain_outer_radius": 0.03320574149600042, "grain_initial_inner_radius": 0.015067817907066695, "grain_initial_height": 0.12007192719530327, "grain_separation": 0.004105365967982355, "grains_center_of_mass_position": 0.39712055419529285, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008988927326463505, "throat_radius": 0.01107636749471518, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255661096069513}], "aerodynamic_surfaces": [{"length": 0.5566304163054289, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325334281323176}, {"n": 4, "root_chord": 0.12044351914551725, "tip_chord": 0.06032077807066272, "span": 0.11050292505937803, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051643512354124}, {"top_radius": 0.06402109147118284, "bottom_radius": 0.04340390155193692, "length": 0.05872212311041412, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700418145069759, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186711747527581, "upper_button_position": 0.08174697031700084}], "rail_length": 5, "inclination": 86.10215947423715, "heading": 51.95834650524761} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349923241601589, "mass": 15.668286832663584, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31910928111129, "I_33_without_motor": 0.022721904764914133, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063503025280331, "trigger": 800, "sampling_rate": 105, "lag": 1.500534597547479, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0542324956003344, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4274789598445556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7106.710455008328, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033892612462689396, "grain_number": 5, "grain_density": 1836.448757506291, "grain_outer_radius": 0.03294488993455898, "grain_initial_inner_radius": 0.014778322072181492, "grain_initial_height": 0.11924944909546109, "grain_separation": 0.0057656890341303245, "grains_center_of_mass_position": 0.39721654650421273, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008304310337785353, "throat_radius": 0.010931799818906046, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554605437295638}], "aerodynamic_surfaces": [{"length": 0.5595143091759874, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13141173508333}, {"n": 4, "root_chord": 0.12099282336304601, "tip_chord": 0.059433373964065936, "span": 0.11003880636238442, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477786979528119}, {"top_radius": 0.0618734531213815, "bottom_radius": 0.042314217187534926, "length": 0.05971957018182493, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700577128612674, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159066947555694, "upper_button_position": 0.0846704338571046}], "rail_length": 5, "inclination": 84.4410183428191, "heading": 52.46328185160885} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349527356917284, "mass": 15.869810785253653, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3095131008035725, "I_33_without_motor": 0.04454439495800584, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.930344468153587, "trigger": 800, "sampling_rate": 105, "lag": 1.4791197483742555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0297653895234853, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2254809387927166, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6928.395443726381, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327880061484404, "grain_number": 5, "grain_density": 1833.1522338821685, "grain_outer_radius": 0.03281477639038042, "grain_initial_inner_radius": 0.015022622715700602, "grain_initial_height": 0.1199158618313783, "grain_separation": 0.0028773602122798394, "grains_center_of_mass_position": 0.3948173547641272, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008195954706913726, "throat_radius": 0.011116429391195289, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544604238976311}], "aerodynamic_surfaces": [{"length": 0.5587233159292407, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326971351197885}, {"n": 4, "root_chord": 0.11971046505876141, "tip_chord": 0.060338157029221545, "span": 0.11020586918761813, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502874208420208}, {"top_radius": 0.0636170476639579, "bottom_radius": 0.04386141313027969, "length": 0.06043372935925669, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003445223297525, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180649791483261, "upper_button_position": 0.08227954318142638}], "rail_length": 5, "inclination": 85.37734032245044, "heading": 54.23166502825542} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349180667331324, "mass": 15.443935259665643, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330345088252888, "I_33_without_motor": 0.04604525063333153, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.074833320226558, "trigger": 800, "sampling_rate": 105, "lag": 1.3588939396436377, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9778361173036729, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5191008629029978, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4928.111770286472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03390191668713672, "grain_number": 5, "grain_density": 1811.6325587646586, "grain_outer_radius": 0.03288922314322386, "grain_initial_inner_radius": 0.015204455388576163, "grain_initial_height": 0.11811782843046506, "grain_separation": 0.00516089631071237, "grains_center_of_mass_position": 0.39718330695441356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005627098749639466, "throat_radius": 0.010505331104014852, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535839214433295}], "aerodynamic_surfaces": [{"length": 0.5583306179377059, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341109475555293}, {"n": 4, "root_chord": 0.12070701463398927, "tip_chord": 0.05993485045007502, "span": 0.1101605113936197, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486290589625165}, {"top_radius": 0.06372306723493083, "bottom_radius": 0.044077270271762226, "length": 0.06087454576598124, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993567551058124, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188867964719068, "upper_button_position": 0.0804699586339056}], "rail_length": 5, "inclination": 84.40818151362286, "heading": 53.41498341779259} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350801204618264, "mass": 15.610994390721805, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32848156739817, "I_33_without_motor": 0.043142321977104305, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.914868841281777, "trigger": 800, "sampling_rate": 105, "lag": 1.3521465247500162, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0371555144494413, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5692516801462857, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5976.398335259892, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262579251752797, "grain_number": 5, "grain_density": 1766.5012126225092, "grain_outer_radius": 0.03297400261572069, "grain_initial_inner_radius": 0.014957571322349213, "grain_initial_height": 0.11966307709311352, "grain_separation": 0.0034904969690560264, "grains_center_of_mass_position": 0.39591153741919777, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013445353378966935, "throat_radius": 0.011999374253178452, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2524127790931021}], "aerodynamic_surfaces": [{"length": 0.559650452892874, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133498895638621}, {"n": 4, "root_chord": 0.11903894636536534, "tip_chord": 0.059970490823837104, "span": 0.10996944871202403, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050745991668631}, {"top_radius": 0.06459563664734161, "bottom_radius": 0.04441191074316669, "length": 0.05985354123967283, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992343687765963, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618635609394689, "upper_button_position": 0.0805987593819073}], "rail_length": 5, "inclination": 84.29461714697294, "heading": 52.105151254480056} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350413239173665, "mass": 15.458389485510432, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312454660535781, "I_33_without_motor": 0.019006193978175913, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.082001255584757, "trigger": 800, "sampling_rate": 105, "lag": 1.5139630577094452, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0882620703470673, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5343366409555084, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6309.240625078346, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033907230594933745, "grain_number": 5, "grain_density": 1787.0236943230725, "grain_outer_radius": 0.03292151290229115, "grain_initial_inner_radius": 0.015723338168852363, "grain_initial_height": 0.12024147667860367, "grain_separation": 0.007923508973487956, "grains_center_of_mass_position": 0.3969984800093564, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011712656628275519, "throat_radius": 0.010163359527325616, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256554981122137}], "aerodynamic_surfaces": [{"length": 0.5585267687511752, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342462881356736}, {"n": 4, "root_chord": 0.12036907186326475, "tip_chord": 0.05956358433495167, "span": 0.11056397544624925, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501991687753658}, {"top_radius": 0.06452957107302729, "bottom_radius": 0.04459371884711442, "length": 0.060593509280713234, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980556098252283, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190627831419175, "upper_button_position": 0.07899282668331076}], "rail_length": 5, "inclination": 83.29817279094296, "heading": 50.86247268951675} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349881921672362, "mass": 15.328973780607834, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323885370418771, "I_33_without_motor": 0.03642484479323454, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998072976275969, "trigger": 800, "sampling_rate": 105, "lag": 1.4429275636705736, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1024567071027436, "trigger": "apogee", "sampling_rate": 105, "lag": 1.493284474316313, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6748.176851872659, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03241835459623543, "grain_number": 5, "grain_density": 1640.6384494206343, "grain_outer_radius": 0.03264213506443041, "grain_initial_inner_radius": 0.014051056863987079, "grain_initial_height": 0.11930926584584843, "grain_separation": 0.0036750229916667045, "grains_center_of_mass_position": 0.39637747508054194, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009935844649763591, "throat_radius": 0.011014888264490357, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555885461497716}], "aerodynamic_surfaces": [{"length": 0.5583260356321268, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331919873766965}, {"n": 4, "root_chord": 0.11941918234454163, "tip_chord": 0.060675164737095846, "span": 0.11028990524819061, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0491674550745125}, {"top_radius": 0.06292871082348148, "bottom_radius": 0.04450956443678068, "length": 0.05794560605716634, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993698730283597, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194411747419432, "upper_button_position": 0.07992869828641658}], "rail_length": 5, "inclination": 85.436558245987, "heading": 54.54696167328668} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349577627982571, "mass": 15.296344912774217, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318516730811255, "I_33_without_motor": 0.013978257781024513, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.948360832813089, "trigger": 800, "sampling_rate": 105, "lag": 1.4999459563985913, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0505072672417293, "trigger": "apogee", "sampling_rate": 105, "lag": 1.093587252714183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7773.812841572051, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03368579694690984, "grain_number": 5, "grain_density": 1830.703197102522, "grain_outer_radius": 0.033154867707571305, "grain_initial_inner_radius": 0.015117536477346717, "grain_initial_height": 0.12008097076381014, "grain_separation": 0.004989426132071934, "grains_center_of_mass_position": 0.39660643822341046, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001395771729913209, "throat_radius": 0.01074705235072735, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542579821391566}], "aerodynamic_surfaces": [{"length": 0.5571913042158753, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344315533115081}, {"n": 4, "root_chord": 0.11934862401705951, "tip_chord": 0.0605903531100229, "span": 0.1097258605194972, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486442099607491}, {"top_radius": 0.06356918850340545, "bottom_radius": 0.04488304570667786, "length": 0.06018910897823852, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999639553746008, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170765816199845, "upper_button_position": 0.0828873737546163}], "rail_length": 5, "inclination": 84.92910734694264, "heading": 53.61804242606453} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349668082640442, "mass": 15.813002395897898, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325274791733413, "I_33_without_motor": 0.038465026035881686, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885534386028668, "trigger": 800, "sampling_rate": 105, "lag": 1.5763144332123213, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.007524783334614, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6661581826998855, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6436.155751179346, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256104977822013, "grain_number": 5, "grain_density": 1822.469856015375, "grain_outer_radius": 0.03296494887073178, "grain_initial_inner_radius": 0.015539559291616968, "grain_initial_height": 0.11831238176481094, "grain_separation": 0.0064108277897173965, "grains_center_of_mass_position": 0.39835887395873826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015446349782027968, "throat_radius": 0.010382676338319352, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254791079173839}], "aerodynamic_surfaces": [{"length": 0.5570460599684245, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1349294627330049}, {"n": 4, "root_chord": 0.12003572781829337, "tip_chord": 0.06008112690316572, "span": 0.11023102182240752, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497824068989312}, {"top_radius": 0.06402356258117235, "bottom_radius": 0.04422793364820905, "length": 0.06022741429558583, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699403784798881, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190193649251874, "upper_button_position": 0.0803844198736936}], "rail_length": 5, "inclination": 85.6086508038111, "heading": 53.55769918812469} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06348185939567065, "mass": 16.23382770892236, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30475712465964, "I_33_without_motor": 0.02486297329999505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05151072062981, "trigger": 800, "sampling_rate": 105, "lag": 1.4890447342607167, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0690749253667462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.46606811495207, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7849.000726863084, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335753889170087, "grain_number": 5, "grain_density": 1806.4760969598744, "grain_outer_radius": 0.03320431145119263, "grain_initial_inner_radius": 0.015002815004005252, "grain_initial_height": 0.12092313662969334, "grain_separation": 0.0038149136187508583, "grains_center_of_mass_position": 0.39842926903133097, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018350660839296078, "throat_radius": 0.01109947035342356, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539536224875656}], "aerodynamic_surfaces": [{"length": 0.558259599704287, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338960434943923}, {"n": 4, "root_chord": 0.11996108929445072, "tip_chord": 0.06035616986402454, "span": 0.11048105930254555, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502553432241841}, {"top_radius": 0.06409589192610626, "bottom_radius": 0.04505567269595459, "length": 0.06080942206049029, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992709034032923, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184750245907645, "upper_button_position": 0.08079587881252781}], "rail_length": 5, "inclination": 84.4604975595205, "heading": 53.660550320895425} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350278812462207, "mass": 15.679949781569475, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317862022347124, "I_33_without_motor": 0.03893085333174746, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005300306844882, "trigger": 800, "sampling_rate": 105, "lag": 1.398055958558474, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9218090303658509, "trigger": "apogee", "sampling_rate": 105, "lag": 1.176313413614036, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5755.491953315391, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032109803644505504, "grain_number": 5, "grain_density": 1830.4303419755952, "grain_outer_radius": 0.033180866053489105, "grain_initial_inner_radius": 0.015164316530364675, "grain_initial_height": 0.11938343714284723, "grain_separation": 0.00560345429661989, "grains_center_of_mass_position": 0.39590661564220697, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001582957595094645, "throat_radius": 0.010972191432078175, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550964354488343}], "aerodynamic_surfaces": [{"length": 0.5576163357784137, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135132195574391}, {"n": 4, "root_chord": 0.12002506449223727, "tip_chord": 0.060494242608088174, "span": 0.10953343803501023, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050177515265764}, {"top_radius": 0.06401622928608086, "bottom_radius": 0.044204847170137555, "length": 0.05918257743763092, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990203553931725, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619366013463438, "upper_button_position": 0.07965434192973453}], "rail_length": 5, "inclination": 82.60421424866104, "heading": 55.759960553006934} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349689290766646, "mass": 15.287406716633038, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313493694707317, "I_33_without_motor": 0.027156595352900194, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.907711388481541, "trigger": 800, "sampling_rate": 105, "lag": 1.5332368649364383, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0596096933699148, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7694653370533653, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5226.646924393132, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033125949839193126, "grain_number": 5, "grain_density": 1802.3989328934804, "grain_outer_radius": 0.032702048962722254, "grain_initial_inner_radius": 0.014822849804377366, "grain_initial_height": 0.11851128142533768, "grain_separation": 0.004685451542164443, "grains_center_of_mass_position": 0.3965581070132657, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011524209958542865, "throat_radius": 0.011265820580217694, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537337368536012}], "aerodynamic_surfaces": [{"length": 0.5585733920402084, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134572710319406}, {"n": 4, "root_chord": 0.11941706933712266, "tip_chord": 0.05975479491653192, "span": 0.11012894302014523, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048459371627066}, {"top_radius": 0.06476344976751149, "bottom_radius": 0.04271292814763674, "length": 0.059522423512789795, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6987406277075643, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616652920718908, "upper_button_position": 0.0820877069886563}], "rail_length": 5, "inclination": 85.76882820138569, "heading": 54.102694864161855} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349223201961937, "mass": 16.055475433221186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316391634408685, "I_33_without_motor": 0.00682800721069407, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913052017957154, "trigger": 800, "sampling_rate": 105, "lag": 1.5788147407347435, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9796139093029506, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3465932119670714, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7305.410699483472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327955016711396, "grain_number": 5, "grain_density": 1789.3410928758385, "grain_outer_radius": 0.03243886554131192, "grain_initial_inner_radius": 0.01445264906904543, "grain_initial_height": 0.12016935574683171, "grain_separation": 0.0043519113836310306, "grains_center_of_mass_position": 0.397425745637148, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014479079886564963, "throat_radius": 0.01147202850019607, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542842766687936}], "aerodynamic_surfaces": [{"length": 0.5583284923899483, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132774772145401}, {"n": 4, "root_chord": 0.12020200271637022, "tip_chord": 0.05944137767273463, "span": 0.1094866803642336, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051630529481766}, {"top_radius": 0.06214934396872, "bottom_radius": 0.045040587463511216, "length": 0.06296431558151928, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999136110480144, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166645133435169, "upper_button_position": 0.08324909770449751}], "rail_length": 5, "inclination": 83.46420824402064, "heading": 55.58867035638214} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350342548024938, "mass": 15.827862635111236, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32580554354522, "I_33_without_motor": 0.02419182582896183, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.85264032298043, "trigger": 800, "sampling_rate": 105, "lag": 1.3151059940598726, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9000092681276941, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4907306923232257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6021.322149797308, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03354987989460545, "grain_number": 5, "grain_density": 1850.848260076352, "grain_outer_radius": 0.03345875069995948, "grain_initial_inner_radius": 0.015214712301090786, "grain_initial_height": 0.12050721166405845, "grain_separation": 0.003974291021781748, "grains_center_of_mass_position": 0.3975743683322653, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002703167180438947, "throat_radius": 0.011222753727694924, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25489245723884}], "aerodynamic_surfaces": [{"length": 0.5600627015140806, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132920650640713}, {"n": 4, "root_chord": 0.1199899899449933, "tip_chord": 0.05984814819290539, "span": 0.10982215046665306, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493800459622067}, {"top_radius": 0.0640093396601023, "bottom_radius": 0.042696954505798676, "length": 0.05972933931501451, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999692632938151, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189716951301842, "upper_button_position": 0.0809975681636309}], "rail_length": 5, "inclination": 84.6915670754933, "heading": 54.69974791352665} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349177065803747, "mass": 14.403768944140147, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315837309996075, "I_33_without_motor": 0.02903245189055765, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.845687770247363, "trigger": 800, "sampling_rate": 105, "lag": 1.3763943012614852, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0424086919730462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.074465733675767, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4069.9461230143697, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033636497189096635, "grain_number": 5, "grain_density": 1861.4360133918851, "grain_outer_radius": 0.03336737234638339, "grain_initial_inner_radius": 0.014534196283352282, "grain_initial_height": 0.12127148008267356, "grain_separation": 0.0069968578450807575, "grains_center_of_mass_position": 0.39902616187154527, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002436168333597444, "throat_radius": 0.010620936589486065, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558885198232854}], "aerodynamic_surfaces": [{"length": 0.5576389525036097, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333570808284323}, {"n": 4, "root_chord": 0.11880458734722998, "tip_chord": 0.06036095343414096, "span": 0.11019287936975597, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507902521963777}, {"top_radius": 0.06298395873516432, "bottom_radius": 0.04333789323712267, "length": 0.05888535258110316, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012105132781695, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166018925968864, "upper_button_position": 0.08460862068128316}], "rail_length": 5, "inclination": 85.65034594262629, "heading": 50.628947145792054} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349751002854578, "mass": 15.417990728441158, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331772067302603, "I_33_without_motor": 0.03325216744408652, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.889343259676105, "trigger": 800, "sampling_rate": 105, "lag": 1.4637263502285023, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1015189847298128, "trigger": "apogee", "sampling_rate": 105, "lag": 1.847142902111514, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5904.273025044164, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032437696132406685, "grain_number": 5, "grain_density": 1825.8737846662966, "grain_outer_radius": 0.032770099014718314, "grain_initial_inner_radius": 0.014937420993848928, "grain_initial_height": 0.12004579463962854, "grain_separation": 0.006289045913583421, "grains_center_of_mass_position": 0.3976651902012874, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009652642128416478, "throat_radius": 0.011048511094883189, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253768296623125}], "aerodynamic_surfaces": [{"length": 0.5586009760762947, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338687405220165}, {"n": 4, "root_chord": 0.12060320116302696, "tip_chord": 0.05911052360219182, "span": 0.11041759070791728, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049808424842924}, {"top_radius": 0.06144426359671585, "bottom_radius": 0.04364492680946638, "length": 0.059626286440211555, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004742292126815, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179147075230238, "upper_button_position": 0.08255952168965774}], "rail_length": 5, "inclination": 84.92999846849003, "heading": 53.56114506766201} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350343618939912, "mass": 15.22305049219264, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301955004758847, "I_33_without_motor": 0.027778665703432844, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.184791252270221, "trigger": 800, "sampling_rate": 105, "lag": 1.654943994891131, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9833916459537052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2539720508596646, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5023.095663007344, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03436763921527534, "grain_number": 5, "grain_density": 1789.3741197947836, "grain_outer_radius": 0.032997081938550714, "grain_initial_inner_radius": 0.01462747141654468, "grain_initial_height": 0.11990685067159147, "grain_separation": 0.0067548128124522155, "grains_center_of_mass_position": 0.3985962723586402, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016763016109594242, "throat_radius": 0.011676328292431504, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546164867685246}], "aerodynamic_surfaces": [{"length": 0.5569072655426855, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324342949207886}, {"n": 4, "root_chord": 0.12064825269253975, "tip_chord": 0.059460944211310256, "span": 0.10990476806229428, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048407225872096}, {"top_radius": 0.06398560622243352, "bottom_radius": 0.04441038822276504, "length": 0.05976817150109508, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7020618784066449, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178339103726269, "upper_button_position": 0.084227968034018}], "rail_length": 5, "inclination": 86.12002949131461, "heading": 52.895508686277985} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349691665053454, "mass": 15.767530662898567, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336507156209013, "I_33_without_motor": 0.05048661020192083, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967137166572325, "trigger": 800, "sampling_rate": 105, "lag": 1.430063534037564, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9757988743052705, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3980169917627498, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5343.813375210447, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338052044055368, "grain_number": 5, "grain_density": 1814.984115424545, "grain_outer_radius": 0.03229376347938792, "grain_initial_inner_radius": 0.014396738680105573, "grain_initial_height": 0.12162713338887385, "grain_separation": 0.004469817719870114, "grains_center_of_mass_position": 0.39823974501027976, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008318740099310431, "throat_radius": 0.011148258163638852, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552852166035091}], "aerodynamic_surfaces": [{"length": 0.5585334789803363, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1319475316301026}, {"n": 4, "root_chord": 0.12025372062032924, "tip_chord": 0.06005590584124169, "span": 0.10979183870314284, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0477299876550912}, {"top_radius": 0.06334396300069464, "bottom_radius": 0.044526352192995576, "length": 0.06233943726632088, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999209818948462, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6157927031640922, "upper_button_position": 0.08412827873075401}], "rail_length": 5, "inclination": 85.58286617087768, "heading": 50.5199278966913} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.0635039624315113, "mass": 15.23640268371854, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3090291828278735, "I_33_without_motor": 0.03956340951934128, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01652652233237, "trigger": 800, "sampling_rate": 105, "lag": 1.5216134874996798, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.894636346398634, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3702832269738363, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7920.740768491078, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287761297791299, "grain_number": 5, "grain_density": 1824.6662971126514, "grain_outer_radius": 0.033287685493578814, "grain_initial_inner_radius": 0.014846070728985134, "grain_initial_height": 0.11962169682524136, "grain_separation": 0.006660304003753694, "grains_center_of_mass_position": 0.3968729744667562, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013285004050560757, "throat_radius": 0.011420312497778752, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255256790149882}], "aerodynamic_surfaces": [{"length": 0.5586670608170305, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338760239878345}, {"n": 4, "root_chord": 0.12001288999998844, "tip_chord": 0.059840043947512175, "span": 0.11022271024843211, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050374196368974}, {"top_radius": 0.06315430416571506, "bottom_radius": 0.04426665746459136, "length": 0.05986045541385511, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7014560907381839, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177375087779642, "upper_button_position": 0.08371858196021975}], "rail_length": 5, "inclination": 83.14567206576679, "heading": 53.69458513213769} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350140530341798, "mass": 15.474430136278063, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322828323807365, "I_33_without_motor": 0.04643337086370376, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908676999505643, "trigger": 800, "sampling_rate": 105, "lag": 1.4108882386719501, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0166838717884317, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5046550972836519, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6279.438565414556, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311024885543246, "grain_number": 5, "grain_density": 1694.633808783238, "grain_outer_radius": 0.03311564162430932, "grain_initial_inner_radius": 0.015214400786283062, "grain_initial_height": 0.11893447059823352, "grain_separation": 0.006927329234135866, "grains_center_of_mass_position": 0.39545447707087683, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008132847272057203, "throat_radius": 0.010986729635018951, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253929171464433}], "aerodynamic_surfaces": [{"length": 0.5590057396568875, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1356160958540162}, {"n": 4, "root_chord": 0.12013656701399303, "tip_chord": 0.05961796302962165, "span": 0.1099882431698948, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484757303109273}, {"top_radius": 0.06531663841101507, "bottom_radius": 0.04330106203511384, "length": 0.06123757408650712, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995915682756526, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180607737817687, "upper_button_position": 0.0815307944938839}], "rail_length": 5, "inclination": 85.90667506461135, "heading": 52.55586087914798} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350666539193325, "mass": 16.26549454652488, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31812354941728, "I_33_without_motor": 0.04087689067832272, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95423917123349, "trigger": 800, "sampling_rate": 105, "lag": 1.5796856992597297, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.035684544891642, "trigger": "apogee", "sampling_rate": 105, "lag": 1.349271457827394, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4338.892787782608, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283117238700038, "grain_number": 5, "grain_density": 1867.6009169279357, "grain_outer_radius": 0.032598717870101115, "grain_initial_inner_radius": 0.015338980506890462, "grain_initial_height": 0.11977522588199327, "grain_separation": 0.004951922122179916, "grains_center_of_mass_position": 0.3963783489278026, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010634539091591488, "throat_radius": 0.011330686948294807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553445290710048}], "aerodynamic_surfaces": [{"length": 0.5597685474336435, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347051017013678}, {"n": 4, "root_chord": 0.12093515261206347, "tip_chord": 0.05979126691861329, "span": 0.10952516250220662, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490959372658126}, {"top_radius": 0.06408885430740713, "bottom_radius": 0.042679630346266685, "length": 0.06113309208834641, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6983350078750149, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167725922140577, "upper_button_position": 0.08156241566095723}], "rail_length": 5, "inclination": 85.81558840374512, "heading": 54.024459995563575} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350648817649128, "mass": 14.674318643913129, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310334787364355, "I_33_without_motor": 0.0457281268094647, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928773750582518, "trigger": 800, "sampling_rate": 105, "lag": 1.574096676593872, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.020547404041642, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7826514485546134, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5687.03102092832, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03390582612011467, "grain_number": 5, "grain_density": 1783.6747029497951, "grain_outer_radius": 0.03279616160853747, "grain_initial_inner_radius": 0.015208924172636277, "grain_initial_height": 0.12000241397266541, "grain_separation": 0.004834030763768699, "grains_center_of_mass_position": 0.39779188460129766, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010543666957646804, "throat_radius": 0.011034297574247018, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538786727227698}], "aerodynamic_surfaces": [{"length": 0.5583290977786275, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1356189064220337}, {"n": 4, "root_chord": 0.120001753081237, "tip_chord": 0.061377165331623317, "span": 0.11019805788554804, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482989161554332}, {"top_radius": 0.06389875918722357, "bottom_radius": 0.04433695904596912, "length": 0.06029651527008684, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986325901062629, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189755222940223, "upper_button_position": 0.07965706781224058}], "rail_length": 5, "inclination": 85.33446450022198, "heading": 50.849041105062724} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350796825425918, "mass": 15.916667341943675, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311133352212137, "I_33_without_motor": 0.027376093842448154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956291419634306, "trigger": 800, "sampling_rate": 105, "lag": 1.656919731478486, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0242098653962757, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0945594687898967, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5622.515405987292, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321744664412348, "grain_number": 5, "grain_density": 1825.4220942442564, "grain_outer_radius": 0.03291258764699499, "grain_initial_inner_radius": 0.014958388299606514, "grain_initial_height": 0.11832224728442026, "grain_separation": 0.006101625328367299, "grains_center_of_mass_position": 0.3979882604979536, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.054377780949299e-05, "throat_radius": 0.01011312804991887, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549718180591196}], "aerodynamic_surfaces": [{"length": 0.5589983425513874, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340575756953153}, {"n": 4, "root_chord": 0.11934075019018694, "tip_chord": 0.059623267023949614, "span": 0.1100411341165479, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506555904813217}, {"top_radius": 0.06437689265882754, "bottom_radius": 0.04424838241297806, "length": 0.06036596687095581, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699288298041611, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187615037149445, "upper_button_position": 0.08052679432666643}], "rail_length": 5, "inclination": 85.65238565451456, "heading": 56.38145478220005} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350201066738184, "mass": 15.953711018403991, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314817197476057, "I_33_without_motor": 0.0256335977634949, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873103386127694, "trigger": 800, "sampling_rate": 105, "lag": 1.4839992307180514, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9875231481021292, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7743850672142263, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6540.965199898815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032181495585438175, "grain_number": 5, "grain_density": 1793.4601599517396, "grain_outer_radius": 0.032942557787790545, "grain_initial_inner_radius": 0.015180178309926925, "grain_initial_height": 0.11943508870562439, "grain_separation": 0.005383579012011445, "grains_center_of_mass_position": 0.39605668954156903, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001843804775713451, "throat_radius": 0.010552838097204201, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545046741884056}], "aerodynamic_surfaces": [{"length": 0.5584466437577913, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343190982705948}, {"n": 4, "root_chord": 0.12003349475104054, "tip_chord": 0.0597136698261293, "span": 0.10991221432752396, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494374824074326}, {"top_radius": 0.06304081906106536, "bottom_radius": 0.04434029597773008, "length": 0.06047397375798734, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001951751144656, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186719448891126, "upper_button_position": 0.08152323022535302}], "rail_length": 5, "inclination": 83.58698828768142, "heading": 54.30569837255918} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06351008848297998, "mass": 14.7859357557792, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335103606157227, "I_33_without_motor": 0.029172987600071584, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931278573509553, "trigger": 800, "sampling_rate": 105, "lag": 1.4410129421153264, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.983490891607222, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7734233099985186, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5447.706213795818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033436363000976445, "grain_number": 5, "grain_density": 1839.201882429747, "grain_outer_radius": 0.0329850903923891, "grain_initial_inner_radius": 0.014662452657972096, "grain_initial_height": 0.1190367543864572, "grain_separation": 0.0030697786101070565, "grains_center_of_mass_position": 0.3978376807225483, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.1584909033036664e-05, "throat_radius": 0.01129912058024965, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539887889611594}], "aerodynamic_surfaces": [{"length": 0.5593524486947989, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333750306777675}, {"n": 4, "root_chord": 0.12046685232130558, "tip_chord": 0.05925118834824563, "span": 0.1093000475893226, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505502723507558}, {"top_radius": 0.06331879340863057, "bottom_radius": 0.043768699750467537, "length": 0.05980151355669512, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008182751781055, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617287144506535, "upper_button_position": 0.08353113067157047}], "rail_length": 5, "inclination": 83.61695457531401, "heading": 54.40772018031557} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349303662887522, "mass": 15.786080612539756, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3375317516984015, "I_33_without_motor": 0.030323682175480256, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054779753984436, "trigger": 800, "sampling_rate": 105, "lag": 1.4897925408658617, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0657640860921966, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5415600267121254, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7282.084783062925, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337873855042818, "grain_number": 5, "grain_density": 1844.7926044263584, "grain_outer_radius": 0.0332036108389178, "grain_initial_inner_radius": 0.013987250492484863, "grain_initial_height": 0.1207123941446959, "grain_separation": 0.005728339411735485, "grains_center_of_mass_position": 0.3981018826332878, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00020948221946189347, "throat_radius": 0.011697838685607968, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534438913358144}], "aerodynamic_surfaces": [{"length": 0.5596910844177856, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133994787935459}, {"n": 4, "root_chord": 0.12009719742064826, "tip_chord": 0.06007751660707861, "span": 0.11038830583198088, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503598157770573}, {"top_radius": 0.06342827418792348, "bottom_radius": 0.044033218470175474, "length": 0.059088090744353255, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999745725873632, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183539947737082, "upper_button_position": 0.08162057781365495}], "rail_length": 5, "inclination": 86.27162564696197, "heading": 53.71818906205748} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06351054255261947, "mass": 14.664501017997265, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3174486858119785, "I_33_without_motor": 0.04210561339978389, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.119781805626133, "trigger": 800, "sampling_rate": 105, "lag": 1.6372528425610473, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8692232728888685, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2854779419699685, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6730.987419548605, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03234816719395865, "grain_number": 5, "grain_density": 1814.7627524628226, "grain_outer_radius": 0.0323828288263115, "grain_initial_inner_radius": 0.01491463952681223, "grain_initial_height": 0.11990981022295044, "grain_separation": 0.004978545630508454, "grains_center_of_mass_position": 0.39662591700745, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.178129970477624e-05, "throat_radius": 0.011004048627225128, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560489323043111}], "aerodynamic_surfaces": [{"length": 0.5585922869610882, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133765345210739}, {"n": 4, "root_chord": 0.12062519537370292, "tip_chord": 0.05974490762138353, "span": 0.10993742673011818, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487130012084265}, {"top_radius": 0.06386667154549348, "bottom_radius": 0.04262010980778935, "length": 0.06138564243850183, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992081377344552, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189078643140647, "upper_button_position": 0.08030027342039048}], "rail_length": 5, "inclination": 84.32248658668074, "heading": 51.380117522329} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350127937108244, "mass": 15.454235593016858, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337758343910044, "I_33_without_motor": 0.029748068509370083, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022693164516062, "trigger": 800, "sampling_rate": 105, "lag": 1.4494601130801588, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1046090164009008, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7025344426556375, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7125.407768604593, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031930311786842594, "grain_number": 5, "grain_density": 1759.9627295579817, "grain_outer_radius": 0.03323111384911931, "grain_initial_inner_radius": 0.014550051623535116, "grain_initial_height": 0.1193182197813576, "grain_separation": 0.006668942163044282, "grains_center_of_mass_position": 0.39657743807538715, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007564580285869749, "throat_radius": 0.010398069606141369, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574162696880076}], "aerodynamic_surfaces": [{"length": 0.5577941076830105, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343399047039142}, {"n": 4, "root_chord": 0.12016686734308775, "tip_chord": 0.060009385521463086, "span": 0.10938690169915022, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497164170372542}, {"top_radius": 0.06309805272147788, "bottom_radius": 0.043569710773316075, "length": 0.0602700402571929, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995416531072681, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182808324708688, "upper_button_position": 0.08126082063639928}], "rail_length": 5, "inclination": 85.49604200750565, "heading": 50.59611472931327} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349339083784379, "mass": 15.927012918987288, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32986587665597, "I_33_without_motor": 0.04397827018101831, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018995439368785, "trigger": 800, "sampling_rate": 105, "lag": 1.5053710692195563, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9886753461573394, "trigger": "apogee", "sampling_rate": 105, "lag": 1.870273938572434, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5489.704226047807, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316669735595339, "grain_number": 5, "grain_density": 1875.9705527414994, "grain_outer_radius": 0.0329619479550123, "grain_initial_inner_radius": 0.014870046085191057, "grain_initial_height": 0.11933053453128405, "grain_separation": 0.004469686216514121, "grains_center_of_mass_position": 0.39700605863513044, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003759751180829574, "throat_radius": 0.010468354938207566, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544432669224381}], "aerodynamic_surfaces": [{"length": 0.5587367344146086, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336998812125685}, {"n": 4, "root_chord": 0.12033506008643545, "tip_chord": 0.060707840879246154, "span": 0.11069848495374093, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508250472248304}, {"top_radius": 0.06220969596329775, "bottom_radius": 0.04326853311288693, "length": 0.06023759032051616, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990449375528236, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186857775470915, "upper_button_position": 0.08035916000573207}], "rail_length": 5, "inclination": 84.16149667440999, "heading": 50.121004896612725} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349908924689382, "mass": 16.26893445709193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3090058232748065, "I_33_without_motor": 0.04036245713856345, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925848706227864, "trigger": 800, "sampling_rate": 105, "lag": 1.4684156989192043, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0330409845122357, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5556569032799519, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6689.749873640498, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333360091424389, "grain_number": 5, "grain_density": 1800.0097739998232, "grain_outer_radius": 0.03380530085288468, "grain_initial_inner_radius": 0.014774905036693486, "grain_initial_height": 0.11987987448828172, "grain_separation": 0.004536812810322767, "grains_center_of_mass_position": 0.3957910002967403, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038092974394479304, "throat_radius": 0.011063135034582844, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546888005688288}], "aerodynamic_surfaces": [{"length": 0.5585517477634194, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339500307432544}, {"n": 4, "root_chord": 0.11990949666906892, "tip_chord": 0.05943025075469844, "span": 0.11028846252519726, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500910290512129}, {"top_radius": 0.0641618087186115, "bottom_radius": 0.04518098398482895, "length": 0.05990574101372718, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984969712450921, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163963186766914, "upper_button_position": 0.08210065256840071}], "rail_length": 5, "inclination": 83.49431412987498, "heading": 53.52625989258314} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350300547251844, "mass": 15.757003868590626, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315084820939461, "I_33_without_motor": 0.021979226138089683, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.934044815519764, "trigger": 800, "sampling_rate": 105, "lag": 1.4720137540188352, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0185599554084457, "trigger": "apogee", "sampling_rate": 105, "lag": 1.350720768402961, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6223.874311596688, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306022892176257, "grain_number": 5, "grain_density": 1791.2275137886809, "grain_outer_radius": 0.033338886181562576, "grain_initial_inner_radius": 0.015460361660487787, "grain_initial_height": 0.11997613614813087, "grain_separation": 0.005277444098203793, "grains_center_of_mass_position": 0.39685886705893975, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007858285824055188, "throat_radius": 0.011526338275236565, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544901166308466}], "aerodynamic_surfaces": [{"length": 0.5583539593741471, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354758047302074}, {"n": 4, "root_chord": 0.12035697641545647, "tip_chord": 0.06075936485650431, "span": 0.11081415687390052, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489823944933434}, {"top_radius": 0.061851232988660354, "bottom_radius": 0.04382491277969156, "length": 0.060672251490637374, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998312914559414, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184105376451042, "upper_button_position": 0.08142075381083713}], "rail_length": 5, "inclination": 84.24650687376122, "heading": 51.27022238808487} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350075501283789, "mass": 16.09649641710021, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3167913707253245, "I_33_without_motor": 0.018945778740197317, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961256126940643, "trigger": 800, "sampling_rate": 105, "lag": 1.353834305833898, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9143963616573604, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3328567709206405, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5298.038901977174, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033817774198212074, "grain_number": 5, "grain_density": 1797.040240481869, "grain_outer_radius": 0.03267237799291012, "grain_initial_inner_radius": 0.015725671496227233, "grain_initial_height": 0.11905543412518552, "grain_separation": 0.005409251262864222, "grains_center_of_mass_position": 0.3978085601724477, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010486420736784895, "throat_radius": 0.011181654433599208, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254680541747488}], "aerodynamic_surfaces": [{"length": 0.5584561550994783, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131726284205448}, {"n": 4, "root_chord": 0.11983612777712979, "tip_chord": 0.060100824369269445, "span": 0.10968462922761454, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499331389078788}, {"top_radius": 0.06206945204669741, "bottom_radius": 0.041946521598243684, "length": 0.06018321152362291, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991046538552117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175388818151151, "upper_button_position": 0.08156577204009663}], "rail_length": 5, "inclination": 85.44819092381111, "heading": 54.32757119125432} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349871883936967, "mass": 15.103439215037504, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312647707695864, "I_33_without_motor": 0.02666506291582478, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014036310955188, "trigger": 800, "sampling_rate": 105, "lag": 1.4836869106250556, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8821627867749503, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5364779069520045, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6680.137942097931, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337500070655209, "grain_number": 5, "grain_density": 1850.6505825666259, "grain_outer_radius": 0.03288665812945294, "grain_initial_inner_radius": 0.015354974010840213, "grain_initial_height": 0.11896177393982076, "grain_separation": 0.006626729717940993, "grains_center_of_mass_position": 0.39651323514296144, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006994912221031294, "throat_radius": 0.010442912315586172, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549951258847116}], "aerodynamic_surfaces": [{"length": 0.5594878292411982, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13407399536019}, {"n": 4, "root_chord": 0.11983144032759654, "tip_chord": 0.059527385917544876, "span": 0.11021732116292374, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485138558954057}, {"top_radius": 0.06441238288027504, "bottom_radius": 0.0435153355309601, "length": 0.06005280508201788, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000111317930134, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180520195215743, "upper_button_position": 0.08195911227143915}], "rail_length": 5, "inclination": 84.74358945610558, "heading": 54.779020288521686} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349683587402127, "mass": 15.331416121142466, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309285479009527, "I_33_without_motor": 0.04833173759421649, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02109303219881, "trigger": 800, "sampling_rate": 105, "lag": 1.5629234981150237, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.05498446353846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6400026700714376, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6849.770620024408, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03371954304227589, "grain_number": 5, "grain_density": 1779.044923989062, "grain_outer_radius": 0.033630109509169115, "grain_initial_inner_radius": 0.015086545210061062, "grain_initial_height": 0.11891876589342293, "grain_separation": 0.0056325645704752, "grains_center_of_mass_position": 0.3961283244136966, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002026973583313344, "throat_radius": 0.011733246453154355, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558906723485346}], "aerodynamic_surfaces": [{"length": 0.5571074955489628, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330828246538966}, {"n": 4, "root_chord": 0.11909077825492322, "tip_chord": 0.059893613468179625, "span": 0.10988264443361993, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489290364195847}, {"top_radius": 0.06387022658564288, "bottom_radius": 0.0422792452579731, "length": 0.05844937096918752, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990100634718168, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178938256538352, "upper_button_position": 0.0811162378179816}], "rail_length": 5, "inclination": 85.58690220251434, "heading": 53.85074349824231} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349358149610114, "mass": 15.375365640629635, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301038646448312, "I_33_without_motor": 0.021060076529672764, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933140537505839, "trigger": 800, "sampling_rate": 105, "lag": 1.4973219751596791, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0970240714721915, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3805170294974294, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5664.229178299551, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033170624250226786, "grain_number": 5, "grain_density": 1815.0130185344103, "grain_outer_radius": 0.03303051465492581, "grain_initial_inner_radius": 0.015314697047812121, "grain_initial_height": 0.11984130923690169, "grain_separation": 0.004854629576534432, "grains_center_of_mass_position": 0.39833045390592015, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000800558554290517, "throat_radius": 0.011479069575863752, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556455190933473}], "aerodynamic_surfaces": [{"length": 0.5599380507275222, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1361650245785309}, {"n": 4, "root_chord": 0.11971813888582755, "tip_chord": 0.05885143822542701, "span": 0.1096029163358801, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0478784231571092}, {"top_radius": 0.06475587983279418, "bottom_radius": 0.042401351003425236, "length": 0.05986794225760797, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7016482030449321, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191225239037239, "upper_button_position": 0.08252567914120823}], "rail_length": 5, "inclination": 84.43116436368138, "heading": 53.661270557321856} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349992694472291, "mass": 16.177965914276204, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318411421248713, "I_33_without_motor": 0.04204585924818891, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.134751185997954, "trigger": 800, "sampling_rate": 105, "lag": 1.5574012001201616, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9731839256866563, "trigger": "apogee", "sampling_rate": 105, "lag": 1.677881495282152, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7025.457010276133, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308489687644635, "grain_number": 5, "grain_density": 1858.024423590766, "grain_outer_radius": 0.032533967922318344, "grain_initial_inner_radius": 0.015259752103143013, "grain_initial_height": 0.1192223511394567, "grain_separation": 0.006189795081629866, "grains_center_of_mass_position": 0.3974825697433854, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00040534093974179904, "throat_radius": 0.010709750567907473, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256270315390121}], "aerodynamic_surfaces": [{"length": 0.5573762499997408, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329040696799408}, {"n": 4, "root_chord": 0.12023185380951257, "tip_chord": 0.059184146892987025, "span": 0.11004804598895512, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0480614807135882}, {"top_radius": 0.06422918999136623, "bottom_radius": 0.043919561137755025, "length": 0.05982889025399614, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699590830308736, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186688577482284, "upper_button_position": 0.0809219725605076}], "rail_length": 5, "inclination": 84.58730121111891, "heading": 55.601729745630536} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350243872607898, "mass": 15.307806059313531, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324713460312006, "I_33_without_motor": 0.03460754682830145, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.847394491445264, "trigger": 800, "sampling_rate": 105, "lag": 1.4869437798353111, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9455401172863149, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6421931304394586, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6665.781732133598, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332294101830185, "grain_number": 5, "grain_density": 1798.279032884547, "grain_outer_radius": 0.0330240324663084, "grain_initial_inner_radius": 0.014832986081439316, "grain_initial_height": 0.12111932122173379, "grain_separation": 0.005270482057057051, "grains_center_of_mass_position": 0.3982305324287315, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004634392965843325, "throat_radius": 0.011642405878725316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256233096821382}], "aerodynamic_surfaces": [{"length": 0.5586236656659772, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346237901126266}, {"n": 4, "root_chord": 0.11999040362438287, "tip_chord": 0.05994306531593927, "span": 0.11039412553065188, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487077248850518}, {"top_radius": 0.0631797587232052, "bottom_radius": 0.044327498259700025, "length": 0.059675911996877426, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008874243466492, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195746868629894, "upper_button_position": 0.08131273748365975}], "rail_length": 5, "inclination": 84.46870236734011, "heading": 55.6077207115463} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350706536131766, "mass": 15.253585486584056, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310262261966286, "I_33_without_motor": 0.02548261474814479, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141322350641994, "trigger": 800, "sampling_rate": 105, "lag": 1.5036728677689384, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9922972730064494, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3821708736520746, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6637.21136919303, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03365391011297497, "grain_number": 5, "grain_density": 1835.3631210138965, "grain_outer_radius": 0.03300305796065363, "grain_initial_inner_radius": 0.01573947301518505, "grain_initial_height": 0.12026963358160524, "grain_separation": 0.005132127619654249, "grains_center_of_mass_position": 0.39663201196498316, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003559738165189887, "throat_radius": 0.011593159779027903, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547288504929204}], "aerodynamic_surfaces": [{"length": 0.5586119104163081, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329531829077375}, {"n": 4, "root_chord": 0.11997738199646642, "tip_chord": 0.06046196390298482, "span": 0.11051232670245252, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504871167656014}, {"top_radius": 0.06298060750100597, "bottom_radius": 0.04303976698489436, "length": 0.06117539377418487, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982002310544748, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177694007107193, "upper_button_position": 0.08043083034375553}], "rail_length": 5, "inclination": 84.47475113291807, "heading": 56.779485085276384} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350277642948457, "mass": 15.538150784344738, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327362745521264, "I_33_without_motor": 0.03656089583493286, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.969195197333491, "trigger": 800, "sampling_rate": 105, "lag": 1.672097874395475, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0672903233760016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5642368990741504, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6026.677832075479, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03417435090429245, "grain_number": 5, "grain_density": 1809.9868764693874, "grain_outer_radius": 0.03345478258002131, "grain_initial_inner_radius": 0.014864633401218654, "grain_initial_height": 0.12054186170554274, "grain_separation": 0.005782227784658631, "grains_center_of_mass_position": 0.39781673133453765, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024179848728605902, "throat_radius": 0.011129781434025961, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254487413034888}], "aerodynamic_surfaces": [{"length": 0.5598937783838499, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351613558601192}, {"n": 4, "root_chord": 0.12000786108005566, "tip_chord": 0.059917920320622424, "span": 0.1094844166095069, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508468622100688}, {"top_radius": 0.06524299648748187, "bottom_radius": 0.04321661428846937, "length": 0.060171811473235665, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006561425402846, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189327841157342, "upper_button_position": 0.08172335842455047}], "rail_length": 5, "inclination": 84.69379641206024, "heading": 55.0129037130403} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349726866966666, "mass": 14.479259501026409, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317186619212412, "I_33_without_motor": 0.023063719790035755, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.011521439399583, "trigger": 800, "sampling_rate": 105, "lag": 1.5673410128311824, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0625778163474984, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5243351784162888, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7320.6142990049275, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03312253011643381, "grain_number": 5, "grain_density": 1865.7522073754449, "grain_outer_radius": 0.033438810804206985, "grain_initial_inner_radius": 0.01543722710623245, "grain_initial_height": 0.12201200925233496, "grain_separation": 0.002817436113133994, "grains_center_of_mass_position": 0.3979998095815015, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0019380628138442226, "throat_radius": 0.010909727071797529, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558661489229677}], "aerodynamic_surfaces": [{"length": 0.558709388194242, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330757693654017}, {"n": 4, "root_chord": 0.11991031056160383, "tip_chord": 0.060619459895030856, "span": 0.10958568688893004, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487663042326663}, {"top_radius": 0.06237266353603786, "bottom_radius": 0.04317368708149592, "length": 0.06030754478288, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008204649694125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183069003126814, "upper_button_position": 0.0825135646567311}], "rail_length": 5, "inclination": 85.6473206031136, "heading": 52.78389923473354} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350663501781784, "mass": 15.043769721358954, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310757882630163, "I_33_without_motor": 0.04429584582622318, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977214173062077, "trigger": 800, "sampling_rate": 105, "lag": 1.3092247582425935, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9493472561264065, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6585592612014814, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5373.247934180049, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277105862166775, "grain_number": 5, "grain_density": 1792.5461445485469, "grain_outer_radius": 0.03226887907707845, "grain_initial_inner_radius": 0.014503364616397483, "grain_initial_height": 0.11945703224237393, "grain_separation": 0.005154275343347422, "grains_center_of_mass_position": 0.3969874987599037, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000264303378156486, "throat_radius": 0.011194950458018316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253317568712629}], "aerodynamic_surfaces": [{"length": 0.5595362388940279, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1348965086002587}, {"n": 4, "root_chord": 0.12025649880335083, "tip_chord": 0.06087366645732243, "span": 0.11061388775025748, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486935220779388}, {"top_radius": 0.06256587294205007, "bottom_radius": 0.04326713523409038, "length": 0.06046086229045295, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997998183258577, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164174858571079, "upper_button_position": 0.08338233246874982}], "rail_length": 5, "inclination": 86.29397529715294, "heading": 55.18219183568202} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350264023121113, "mass": 15.8497832110558, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314133136545301, "I_33_without_motor": 0.01935094965979872, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.331900803069093, "trigger": 800, "sampling_rate": 105, "lag": 1.407385056147633, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9734795439695081, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2768857607286148, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7469.483305503188, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278095608611676, "grain_number": 5, "grain_density": 1817.4683004600704, "grain_outer_radius": 0.032394201098015295, "grain_initial_inner_radius": 0.015250577687785477, "grain_initial_height": 0.12100150199298866, "grain_separation": 0.005461027726482995, "grains_center_of_mass_position": 0.39851283113035185, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000299267066507457, "throat_radius": 0.011663783112918331, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550625434398954}], "aerodynamic_surfaces": [{"length": 0.5584952123800702, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134176075984978}, {"n": 4, "root_chord": 0.1202986193176857, "tip_chord": 0.06020097742114409, "span": 0.1105027982119632, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0486736510252814}, {"top_radius": 0.06360654243427746, "bottom_radius": 0.043536175182213824, "length": 0.05900220524131063, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999575263872011, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182103526309322, "upper_button_position": 0.08174717375626894}], "rail_length": 5, "inclination": 85.48387500375267, "heading": 48.80026014439656} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.063486264822413, "mass": 15.278407131736282, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335966780667191, "I_33_without_motor": 0.031299864784533435, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.144481089245815, "trigger": 800, "sampling_rate": 105, "lag": 1.5385930398625898, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0801960009632667, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4095220581188859, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6049.202021904816, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032611774792380276, "grain_number": 5, "grain_density": 1834.6899922756686, "grain_outer_radius": 0.03290124759685764, "grain_initial_inner_radius": 0.014725863485550873, "grain_initial_height": 0.12095720685280044, "grain_separation": 0.004550895483839504, "grains_center_of_mass_position": 0.39712475008716225, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008640815411577413, "throat_radius": 0.011425041531677971, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550320667265975}], "aerodynamic_surfaces": [{"length": 0.5562259987851536, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341334676306052}, {"n": 4, "root_chord": 0.11986389279263365, "tip_chord": 0.06038963482478914, "span": 0.10980030408575846, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0466743964499436}, {"top_radius": 0.06476597399512404, "bottom_radius": 0.04359439195553253, "length": 0.060047680525410006, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986699348111767, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176873484051499, "upper_button_position": 0.08098258640602674}], "rail_length": 5, "inclination": 84.95116725226693, "heading": 55.797552639865586} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350298625568739, "mass": 15.881744511024337, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300265235750067, "I_33_without_motor": 0.02406911962706612, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029192278160949, "trigger": 800, "sampling_rate": 105, "lag": 1.3147374663361207, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8684134559186601, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7367446214180031, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6043.07381783913, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03253647113596708, "grain_number": 5, "grain_density": 1723.555470231474, "grain_outer_radius": 0.03302236367099689, "grain_initial_inner_radius": 0.014618006054557207, "grain_initial_height": 0.11799795700933659, "grain_separation": 0.004784093600078973, "grains_center_of_mass_position": 0.3971623620205109, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.027325211240946e-06, "throat_radius": 0.011090808966891528, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543106590253452}], "aerodynamic_surfaces": [{"length": 0.557457404750026, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.136015470212093}, {"n": 4, "root_chord": 0.12105563569338866, "tip_chord": 0.06027965258088215, "span": 0.10993031480231041, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048754158099165}, {"top_radius": 0.06439841479920912, "bottom_radius": 0.04163244509539849, "length": 0.058612968325381654, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7022803712129327, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185433122366277, "upper_button_position": 0.08373705897630501}], "rail_length": 5, "inclination": 85.61751098358059, "heading": 54.052837257941725} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348949606336825, "mass": 15.171066056275844, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32306119779168, "I_33_without_motor": 0.04678290754610289, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.137860759446651, "trigger": 800, "sampling_rate": 105, "lag": 1.5279250773743356, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1116398153691187, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2415143513310314, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7074.983289463124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032228263350787725, "grain_number": 5, "grain_density": 1827.0837902540927, "grain_outer_radius": 0.03317348514714423, "grain_initial_inner_radius": 0.014777148521199976, "grain_initial_height": 0.12119712027835448, "grain_separation": 0.004669823454652146, "grains_center_of_mass_position": 0.39743970883773033, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00039169993437815397, "throat_radius": 0.010930919350990732, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547236479460733}], "aerodynamic_surfaces": [{"length": 0.5577063834650727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325549426813666}, {"n": 4, "root_chord": 0.12020841002367977, "tip_chord": 0.060372475622634876, "span": 0.11019212737518147, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499328126215814}, {"top_radius": 0.06394313208105472, "bottom_radius": 0.04442467408607739, "length": 0.059779030930499986, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003925984518595, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162598167464084, "upper_button_position": 0.08413278170545113}], "rail_length": 5, "inclination": 85.01850377552881, "heading": 51.08202548786795} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348850944196227, "mass": 16.04892878475605, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312034146991642, "I_33_without_motor": 0.029015146588646186, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983542501394192, "trigger": 800, "sampling_rate": 105, "lag": 1.4610113691574136, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9154641269492223, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6278213671783228, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7075.688944937168, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033051054611874374, "grain_number": 5, "grain_density": 1814.7154091088894, "grain_outer_radius": 0.03267170271630846, "grain_initial_inner_radius": 0.014477909737569055, "grain_initial_height": 0.1207221743260192, "grain_separation": 0.005043867525749921, "grains_center_of_mass_position": 0.39754703984175976, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.9939436150511286e-05, "throat_radius": 0.011563413809232762, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544204991639971}], "aerodynamic_surfaces": [{"length": 0.5577287757996293, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340510158297263}, {"n": 4, "root_chord": 0.11987474078644404, "tip_chord": 0.0602150726622456, "span": 0.11013028943523882, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484073543180612}, {"top_radius": 0.06436876068951965, "bottom_radius": 0.042262081684495, "length": 0.05991111298003916, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6976707179152926, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176067480742417, "upper_button_position": 0.08006396984105091}], "rail_length": 5, "inclination": 85.16986271282465, "heading": 49.6160619888058} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350759910602338, "mass": 14.813286067480758, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323603106963009, "I_33_without_motor": 0.03266240238621754, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12106418221945, "trigger": 800, "sampling_rate": 105, "lag": 1.565643782979439, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.072128163162105, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3442497573293872, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6585.373557905945, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032831386628354595, "grain_number": 5, "grain_density": 1794.0329757893817, "grain_outer_radius": 0.03330659585973534, "grain_initial_inner_radius": 0.015570646037247166, "grain_initial_height": 0.12034265627927225, "grain_separation": 0.002795786193254244, "grains_center_of_mass_position": 0.3972938016949879, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006707596341689071, "throat_radius": 0.010444489576707542, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550755987149236}], "aerodynamic_surfaces": [{"length": 0.5582368184643215, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329049300804328}, {"n": 4, "root_chord": 0.11984006011748846, "tip_chord": 0.059714475374503743, "span": 0.11026246899365333, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489476900754615}, {"top_radius": 0.06380056321587359, "bottom_radius": 0.041812361284339176, "length": 0.05834366500057238, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6984208895733812, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177105382914265, "upper_button_position": 0.0807103512819547}], "rail_length": 5, "inclination": 83.5094442339597, "heading": 53.63686072438773} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349774168903186, "mass": 15.210503547903183, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311663997931419, "I_33_without_motor": 0.036686555353234, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.872632950628127, "trigger": 800, "sampling_rate": 105, "lag": 1.6060325115056644, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0515825082420462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7421279547556126, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6892.693105430714, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03292297620650101, "grain_number": 5, "grain_density": 1846.1844324330975, "grain_outer_radius": 0.03356526451528009, "grain_initial_inner_radius": 0.015194163647250463, "grain_initial_height": 0.12051976086580796, "grain_separation": 0.006267377922445424, "grains_center_of_mass_position": 0.3969747047668782, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000973118830528089, "throat_radius": 0.010752203398392675, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562418054530389}], "aerodynamic_surfaces": [{"length": 0.556474713203829, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342616658044324}, {"n": 4, "root_chord": 0.12061611791733616, "tip_chord": 0.059759045874380363, "span": 0.11027161259210051, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508873988341498}, {"top_radius": 0.06351840666534392, "bottom_radius": 0.042669219985920506, "length": 0.05877690434539203, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6977579911811864, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176409317426407, "upper_button_position": 0.08011705943854575}], "rail_length": 5, "inclination": 83.23972051228483, "heading": 50.81281720038496} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350239744341922, "mass": 16.073113193673425, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311985800568912, "I_33_without_motor": 0.04776133762229341, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988971335988946, "trigger": 800, "sampling_rate": 105, "lag": 1.5605881821545258, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0253275158887691, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6578558830730916, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7807.445080089456, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275583038740839, "grain_number": 5, "grain_density": 1778.518426106595, "grain_outer_radius": 0.033176970562738224, "grain_initial_inner_radius": 0.01498276038260647, "grain_initial_height": 0.11889236748133322, "grain_separation": 0.004315601548222721, "grains_center_of_mass_position": 0.396362633419469, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000404551815167486, "throat_radius": 0.011222300791064557, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254467109676025}], "aerodynamic_surfaces": [{"length": 0.5585431723058769, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342619681002342}, {"n": 4, "root_chord": 0.11986511546354238, "tip_chord": 0.05985388985900956, "span": 0.10993699198109103, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503184782837014}, {"top_radius": 0.06269772238258042, "bottom_radius": 0.044994143509151735, "length": 0.06007184309229068, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998586733146166, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175974601369194, "upper_button_position": 0.08226121317769719}], "rail_length": 5, "inclination": 83.7043267567688, "heading": 52.409621211812826} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0635008850220699, "mass": 15.570551875579996, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32464931826314, "I_33_without_motor": 0.04543295772304223, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939602897523253, "trigger": 800, "sampling_rate": 105, "lag": 1.445161449082891, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9734991788568079, "trigger": "apogee", "sampling_rate": 105, "lag": 1.686039622279922, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7363.190347059201, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03346979002642204, "grain_number": 5, "grain_density": 1843.0060540630136, "grain_outer_radius": 0.033397871158270274, "grain_initial_inner_radius": 0.015308653118384936, "grain_initial_height": 0.11962025804945312, "grain_separation": 0.005734098150595927, "grains_center_of_mass_position": 0.39601252334660586, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004634505998859112, "throat_radius": 0.010519425242671023, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256586442909983}], "aerodynamic_surfaces": [{"length": 0.5588765077807802, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334976973274602}, {"n": 4, "root_chord": 0.11886838622762418, "tip_chord": 0.0587885207546352, "span": 0.10982798355907028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502873852973946}, {"top_radius": 0.06263870305198124, "bottom_radius": 0.04336604973278034, "length": 0.061042532438971654, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996199131177425, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175814487368829, "upper_button_position": 0.0820384643808596}], "rail_length": 5, "inclination": 85.10493580144106, "heading": 51.80272796703804} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.0635033192981205, "mass": 15.865474487505876, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312789095239426, "I_33_without_motor": 0.027311000279669543, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.259998015847259, "trigger": 800, "sampling_rate": 105, "lag": 1.5738689108917292, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.081591887814825, "trigger": "apogee", "sampling_rate": 105, "lag": 1.610640448740519, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5780.82276034699, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316173001483419, "grain_number": 5, "grain_density": 1832.2131072353598, "grain_outer_radius": 0.03232029053953237, "grain_initial_inner_radius": 0.014768589185888449, "grain_initial_height": 0.12001161553061142, "grain_separation": 0.005092901425994411, "grains_center_of_mass_position": 0.3962951549508448, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005329825369181758, "throat_radius": 0.010758406891065707, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537792291905374}], "aerodynamic_surfaces": [{"length": 0.559327449923855, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134309874284832}, {"n": 4, "root_chord": 0.12012492685935558, "tip_chord": 0.059674271659854235, "span": 0.10976304785486278, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500247230353572}, {"top_radius": 0.06379635019743843, "bottom_radius": 0.043768553961588, "length": 0.06043973258542804, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985772585960882, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61744354945955, "upper_button_position": 0.08113370913653817}], "rail_length": 5, "inclination": 83.18286919464083, "heading": 57.31980308081149} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349263449842625, "mass": 15.684154700573663, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3345877762103475, "I_33_without_motor": 0.03772117634909143, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.118765994755561, "trigger": 800, "sampling_rate": 105, "lag": 1.3326011031738259, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0241849048301876, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5726529965447709, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6896.81922406813, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283688260525196, "grain_number": 5, "grain_density": 1789.3744090563898, "grain_outer_radius": 0.033081783627905904, "grain_initial_inner_radius": 0.014968359626520692, "grain_initial_height": 0.12026202717309539, "grain_separation": 0.005641241536352666, "grains_center_of_mass_position": 0.397413296226926, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001085047581654586, "throat_radius": 0.011432324148655897, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534239044774536}], "aerodynamic_surfaces": [{"length": 0.5577054533865239, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1304236641582615}, {"n": 4, "root_chord": 0.11924431924971249, "tip_chord": 0.0607662393038358, "span": 0.11027154652241097, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507532614925792}, {"top_radius": 0.06286957376321789, "bottom_radius": 0.04258396242896973, "length": 0.05993032284685482, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003697851939191, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185986485526042, "upper_button_position": 0.08177113664131497}], "rail_length": 5, "inclination": 84.49214945879372, "heading": 53.381292019706514} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634915669137898, "mass": 15.01755421096024, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329038484489455, "I_33_without_motor": 0.04765804811811407, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919916601345896, "trigger": 800, "sampling_rate": 105, "lag": 1.4416082466863918, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0739574931729141, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9531029148555956, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5302.813981680013, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033778601191692334, "grain_number": 5, "grain_density": 1848.7277307155596, "grain_outer_radius": 0.03318922606004322, "grain_initial_inner_radius": 0.015012578695445764, "grain_initial_height": 0.12080620440244802, "grain_separation": 0.0031181469894768577, "grains_center_of_mass_position": 0.3979062647705201, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013013163971019068, "throat_radius": 0.011252237778280902, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555324225798927}], "aerodynamic_surfaces": [{"length": 0.5589794459807876, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335928268064082}, {"n": 4, "root_chord": 0.1201036995722605, "tip_chord": 0.0597919221915928, "span": 0.10984467124656289, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0508606033571843}, {"top_radius": 0.06272463603198718, "bottom_radius": 0.04413675293513108, "length": 0.06055897888929747, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991652985357019, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170275821240448, "upper_button_position": 0.08213771641165701}], "rail_length": 5, "inclination": 83.18184573438528, "heading": 49.90025840188632} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350335334374159, "mass": 15.274959063958004, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327676412645728, "I_33_without_motor": 0.023201887514107677, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.180395977439396, "trigger": 800, "sampling_rate": 105, "lag": 1.4148086407698415, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8681106765733294, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3031655175829386, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7207.245940111057, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237559918709575, "grain_number": 5, "grain_density": 1841.5672958754383, "grain_outer_radius": 0.033271230060640235, "grain_initial_inner_radius": 0.014876078263801728, "grain_initial_height": 0.12058116659561703, "grain_separation": 0.006176361414938534, "grains_center_of_mass_position": 0.39834716594585273, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005248826617871853, "throat_radius": 0.010874301617892991, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544619838280493}], "aerodynamic_surfaces": [{"length": 0.5576162376745668, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135670599104861}, {"n": 4, "root_chord": 0.11974771906438092, "tip_chord": 0.05996042226833772, "span": 0.11039981400590779, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048754866564319}, {"top_radius": 0.06356552044773002, "bottom_radius": 0.04220363228445098, "length": 0.061440212030075235, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982827247848366, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619497135486362, "upper_button_position": 0.07878558929847457}], "rail_length": 5, "inclination": 84.27880349733528, "heading": 54.481348754812075} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06348967919964446, "mass": 15.682659766527488, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3164744744861725, "I_33_without_motor": 0.02884970438139353, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97154292618014, "trigger": 800, "sampling_rate": 105, "lag": 1.3017587754332902, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9067696640341136, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2819485682466698, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7097.973882947503, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302186653371636, "grain_number": 5, "grain_density": 1797.2620778744097, "grain_outer_radius": 0.03278401111754134, "grain_initial_inner_radius": 0.014565529011073062, "grain_initial_height": 0.12206641663731319, "grain_separation": 0.005351903827236208, "grains_center_of_mass_position": 0.3964852580187501, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007301136774198587, "throat_radius": 0.010973553304604792, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565887333421195}], "aerodynamic_surfaces": [{"length": 0.5582787235305016, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327484665092176}, {"n": 4, "root_chord": 0.1197551982783418, "tip_chord": 0.05897315720355889, "span": 0.11005222537027845, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049213891726949}, {"top_radius": 0.06239743514648705, "bottom_radius": 0.04469727042560433, "length": 0.05957021434360384, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993604269444395, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155917098431283, "upper_button_position": 0.08376871710131117}], "rail_length": 5, "inclination": 84.08398604425206, "heading": 51.121294513828104} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350694745616298, "mass": 16.051900651204726, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320844208776196, "I_33_without_motor": 0.04821322325606555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.07894334626132, "trigger": 800, "sampling_rate": 105, "lag": 1.6461969690281537, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9077171922903624, "trigger": "apogee", "sampling_rate": 105, "lag": 1.623456621070416, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6563.333174249096, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03175849753463613, "grain_number": 5, "grain_density": 1764.4278915376528, "grain_outer_radius": 0.03259173231076127, "grain_initial_inner_radius": 0.015079361888748368, "grain_initial_height": 0.11953868859507003, "grain_separation": 0.00437215671997749, "grains_center_of_mass_position": 0.3984199975592441, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015543281630090435, "throat_radius": 0.011155740483632862, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548660406469183}], "aerodynamic_surfaces": [{"length": 0.5590166202444075, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342070326219464}, {"n": 4, "root_chord": 0.12037981217756165, "tip_chord": 0.059721981828852286, "span": 0.10937637020805417, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495096017599925}, {"top_radius": 0.060740009241057366, "bottom_radius": 0.0443627621896845, "length": 0.05985991330891236, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009950290711351, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194675533282067, "upper_button_position": 0.0815274757429284}], "rail_length": 5, "inclination": 82.38157562605056, "heading": 51.675562447739985} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350034915316627, "mass": 14.244636031240061, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31202746872539, "I_33_without_motor": 0.025235804546178325, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.142168266589941, "trigger": 800, "sampling_rate": 105, "lag": 1.5212532521273712, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0421262122489046, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4063125911754806, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7111.14574717582, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271272422386811, "grain_number": 5, "grain_density": 1740.2111116376598, "grain_outer_radius": 0.03251262035220424, "grain_initial_inner_radius": 0.01443883002074414, "grain_initial_height": 0.11911608539905759, "grain_separation": 0.0023409737814834046, "grains_center_of_mass_position": 0.3977660773747126, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024972653802596967, "throat_radius": 0.01108070537005227, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539054511870311}], "aerodynamic_surfaces": [{"length": 0.5582954267880585, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1354795798436965}, {"n": 4, "root_chord": 0.11993462933921353, "tip_chord": 0.05973986991632016, "span": 0.10996526546556845, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494577643356304}, {"top_radius": 0.06221805318686997, "bottom_radius": 0.04380094045609568, "length": 0.060267501536618646, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700999281088716, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179508275277841, "upper_button_position": 0.08304845356093193}], "rail_length": 5, "inclination": 84.14121896520999, "heading": 50.52765940826954} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349175209536137, "mass": 16.203213742457216, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308041393165094, "I_33_without_motor": 0.05303306568025665, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095868108934132, "trigger": 800, "sampling_rate": 105, "lag": 1.5779644171090181, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8810594983126783, "trigger": "apogee", "sampling_rate": 105, "lag": 1.325460101765278, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8797.513770356636, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033157586739538725, "grain_number": 5, "grain_density": 1717.4468177944057, "grain_outer_radius": 0.03293568203904746, "grain_initial_inner_radius": 0.014912892820561265, "grain_initial_height": 0.12226186267959015, "grain_separation": 0.005673794627640417, "grains_center_of_mass_position": 0.39712599802991055, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005545698614037635, "throat_radius": 0.011269681144136746, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553049240229768}], "aerodynamic_surfaces": [{"length": 0.5590450431374769, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1328925573672355}, {"n": 4, "root_chord": 0.12042924487747395, "tip_chord": 0.059871686310497926, "span": 0.1088650302016508, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051039478507848}, {"top_radius": 0.06251623251281248, "bottom_radius": 0.043296937498974994, "length": 0.05998959003351482, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009098356155097, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171034988369678, "upper_button_position": 0.08380633677854188}], "rail_length": 5, "inclination": 86.26971941743429, "heading": 53.861643375689795} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350043801475752, "mass": 15.7374938970698, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311728644539553, "I_33_without_motor": 0.050408107259595686, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03326988852415, "trigger": 800, "sampling_rate": 105, "lag": 1.458225764593134, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8496647378635662, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3152357112580857, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7800.23081803788, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03210889826890989, "grain_number": 5, "grain_density": 1874.5341624019457, "grain_outer_radius": 0.03294610170804758, "grain_initial_inner_radius": 0.014910217445598293, "grain_initial_height": 0.11986321758637558, "grain_separation": 0.004445047505890455, "grains_center_of_mass_position": 0.3969042686756529, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006490835321771694, "throat_radius": 0.011519862065860151, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25328740914071}], "aerodynamic_surfaces": [{"length": 0.5584319941615322, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134493044927261}, {"n": 4, "root_chord": 0.12015670656722348, "tip_chord": 0.05990104224079225, "span": 0.11029152894621544, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.047623460560347}, {"top_radius": 0.06420934213049984, "bottom_radius": 0.04284987334902665, "length": 0.0609365618678819, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991200390894852, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176302520064026, "upper_button_position": 0.08148978708308252}], "rail_length": 5, "inclination": 85.293495375341, "heading": 51.029982065478634} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350053595914573, "mass": 15.656341962434183, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300707999149264, "I_33_without_motor": 0.019747319100320092, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02561154517294, "trigger": 800, "sampling_rate": 105, "lag": 1.491476870769223, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0310334863828945, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7078142504293983, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6576.9150728065415, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033614174614345106, "grain_number": 5, "grain_density": 1878.7048880970515, "grain_outer_radius": 0.03227555628057278, "grain_initial_inner_radius": 0.01521910845468254, "grain_initial_height": 0.12101913103684002, "grain_separation": 0.0048421743188497395, "grains_center_of_mass_position": 0.39516130362782725, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007515940039901054, "throat_radius": 0.01107367773173349, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2580565535285126}], "aerodynamic_surfaces": [{"length": 0.556596627939326, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329761038653356}, {"n": 4, "root_chord": 0.12006069488956338, "tip_chord": 0.060152412301715905, "span": 0.11049830670414022, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050233651803019}, {"top_radius": 0.0628483712217529, "bottom_radius": 0.04312808782201575, "length": 0.060400910936818875, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993329344239234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182548852291475, "upper_button_position": 0.0810780491947759}], "rail_length": 5, "inclination": 83.24849225413618, "heading": 56.92684258000547} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349971068033908, "mass": 16.40174921646737, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327673932196526, "I_33_without_motor": 0.03245197648679421, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.893892305413132, "trigger": 800, "sampling_rate": 105, "lag": 1.593930515604109, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0333748866660448, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6781842126428086, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5922.800462571353, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317053639772831, "grain_number": 5, "grain_density": 1849.517778859132, "grain_outer_radius": 0.032963898925382804, "grain_initial_inner_radius": 0.014660498705517803, "grain_initial_height": 0.1194711818003175, "grain_separation": 0.0038783487903787653, "grains_center_of_mass_position": 0.3957887800231231, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025065298944853084, "throat_radius": 0.010847966827387558, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567575443313201}], "aerodynamic_surfaces": [{"length": 0.5565925294031462, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133915476432061}, {"n": 4, "root_chord": 0.11956909125039823, "tip_chord": 0.06104928960601305, "span": 0.10984756269795254, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499329129631596}, {"top_radius": 0.06357422385498936, "bottom_radius": 0.04210461777200298, "length": 0.05967729426494998, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6995581578208551, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186162449036338, "upper_button_position": 0.0809419129172213}], "rail_length": 5, "inclination": 84.93050119411386, "heading": 53.88341975915113} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350963934178776, "mass": 15.32919266900953, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320746127166903, "I_33_without_motor": 0.04085544174991431, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979449181204682, "trigger": 800, "sampling_rate": 105, "lag": 1.47603476335198, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0509445439313096, "trigger": "apogee", "sampling_rate": 105, "lag": 1.351143194578507, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8028.623044327843, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310099595750467, "grain_number": 5, "grain_density": 1799.0548729945758, "grain_outer_radius": 0.032909042444237764, "grain_initial_inner_radius": 0.014973260434429057, "grain_initial_height": 0.1192497105729033, "grain_separation": 0.005180936874836411, "grains_center_of_mass_position": 0.3970133518339278, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008146246873575777, "throat_radius": 0.010589900224919185, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568629607664423}], "aerodynamic_surfaces": [{"length": 0.5575039458911145, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1345339814612054}, {"n": 4, "root_chord": 0.11941539652341077, "tip_chord": 0.06041803650905522, "span": 0.11068669738280067, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485640279044965}, {"top_radius": 0.06363379821234107, "bottom_radius": 0.04399774247060367, "length": 0.05992434963574156, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994238470472045, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190710211873401, "upper_button_position": 0.08035282585986436}], "rail_length": 5, "inclination": 84.06452825434741, "heading": 54.60546269504702} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350045005137789, "mass": 14.570066442775765, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329160356830627, "I_33_without_motor": 0.04251088306240842, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.82086959241117, "trigger": 800, "sampling_rate": 105, "lag": 1.4204543803571403, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0074220498468327, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6285454062061728, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6114.226206726107, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0321610061811094, "grain_number": 5, "grain_density": 1846.9958157433712, "grain_outer_radius": 0.03228771163513274, "grain_initial_inner_radius": 0.014956236526073717, "grain_initial_height": 0.12026674138843027, "grain_separation": 0.00504960673513623, "grains_center_of_mass_position": 0.395856944111245, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012335203806023388, "throat_radius": 0.010814060011106465, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557719373662848}], "aerodynamic_surfaces": [{"length": 0.5581140561159723, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346277705370396}, {"n": 4, "root_chord": 0.12048693411590783, "tip_chord": 0.06039605759209748, "span": 0.11024918620577577, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504047507443166}, {"top_radius": 0.0638804503892011, "bottom_radius": 0.042703464724249005, "length": 0.060993620420585724, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002278480364517, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163961597381344, "upper_button_position": 0.08383168829831722}], "rail_length": 5, "inclination": 83.53791228583498, "heading": 54.046300646333535} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350553623978974, "mass": 15.812911139845182, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313127714204366, "I_33_without_motor": 0.029887703974836727, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.061327162498127, "trigger": 800, "sampling_rate": 105, "lag": 1.4784421362101017, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0297449401840444, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2588907678572603, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4744.228753708582, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317145975723019, "grain_number": 5, "grain_density": 1869.3782523397313, "grain_outer_radius": 0.03345299310146625, "grain_initial_inner_radius": 0.014976550116423156, "grain_initial_height": 0.11948009847535018, "grain_separation": 0.007769352688804632, "grains_center_of_mass_position": 0.396181333042877, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.670922962384546e-05, "throat_radius": 0.010640307231118055, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552634837565624}], "aerodynamic_surfaces": [{"length": 0.5584668084651219, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1357250459010104}, {"n": 4, "root_chord": 0.12018548620529644, "tip_chord": 0.0597363442798732, "span": 0.11046729234337017, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048800170727569}, {"top_radius": 0.06479842444626172, "bottom_radius": 0.043911315927793716, "length": 0.05892655210430291, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000387691977128, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181749226404305, "upper_button_position": 0.0818638465572823}], "rail_length": 5, "inclination": 84.69808202586037, "heading": 53.18658897886494} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349873027568502, "mass": 15.44865602020042, "I_11_without_motor": 6.321, "I_22_without_motor": 6.297066287427797, "I_33_without_motor": 0.029969189195190614, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.794270568224764, "trigger": 800, "sampling_rate": 105, "lag": 1.3689194882792428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9440872418522805, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6525296455811842, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5110.725555287492, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290569327566152, "grain_number": 5, "grain_density": 1834.8023198308852, "grain_outer_radius": 0.03293968352352778, "grain_initial_inner_radius": 0.015511994802359295, "grain_initial_height": 0.11958416466759632, "grain_separation": 0.005902801871444446, "grains_center_of_mass_position": 0.39655531746056205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004010323299461807, "throat_radius": 0.011266546158446826, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560763169376594}], "aerodynamic_surfaces": [{"length": 0.5574277176666921, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133411554407764}, {"n": 4, "root_chord": 0.11976773761773363, "tip_chord": 0.06032214078773234, "span": 0.10947188655993782, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.051050865901009}, {"top_radius": 0.06387464052261267, "bottom_radius": 0.0430048168952591, "length": 0.05980557861121655, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7001148198507462, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198150121270203, "upper_button_position": 0.08029980772372591}], "rail_length": 5, "inclination": 85.32093308095031, "heading": 52.59082374737817} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350805817293974, "mass": 15.870060897597613, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308614127268146, "I_33_without_motor": 0.025806052454925316, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.949518634482704, "trigger": 800, "sampling_rate": 105, "lag": 1.3293840614095318, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0073537906678587, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7145490083192159, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7872.215428662387, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248445883054946, "grain_number": 5, "grain_density": 1715.2465378772195, "grain_outer_radius": 0.032669923673918605, "grain_initial_inner_radius": 0.014631567916240092, "grain_initial_height": 0.1193005632332138, "grain_separation": 0.003666691826518245, "grains_center_of_mass_position": 0.3964634482695262, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.099385028198594e-05, "throat_radius": 0.010783454928160284, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255273658857827}], "aerodynamic_surfaces": [{"length": 0.5561473659004362, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341787380227253}, {"n": 4, "root_chord": 0.12023400316315591, "tip_chord": 0.06021176448445132, "span": 0.10981138749659529, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050260705722096}, {"top_radius": 0.06387326798211676, "bottom_radius": 0.04502902776786865, "length": 0.061133430703092136, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996865178630093, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185637021796032, "upper_button_position": 0.08112281568340607}], "rail_length": 5, "inclination": 84.93430853498023, "heading": 57.58944430706793} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349493716242692, "mass": 15.194290081739805, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321918594117142, "I_33_without_motor": 0.026259908318848252, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.008450681541937, "trigger": 800, "sampling_rate": 105, "lag": 1.4951392845564595, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0309168339976928, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2422300697983315, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6263.560121383336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03385037316391193, "grain_number": 5, "grain_density": 1866.886056692195, "grain_outer_radius": 0.03326434404202183, "grain_initial_inner_radius": 0.014871883006841353, "grain_initial_height": 0.12057477844484187, "grain_separation": 0.005900983635820395, "grains_center_of_mass_position": 0.39690762929170614, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001959427468427723, "throat_radius": 0.010113901444569605, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254462056548731}], "aerodynamic_surfaces": [{"length": 0.5597809581518218, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134418347404868}, {"n": 4, "root_chord": 0.12084971908163014, "tip_chord": 0.060114480388002475, "span": 0.10984981749374342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502271267852235}, {"top_radius": 0.0639863320737019, "bottom_radius": 0.04255263514016817, "length": 0.05822080463835263, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988315470261619, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619561057113094, "upper_button_position": 0.07927048991306795}], "rail_length": 5, "inclination": 83.4928197181123, "heading": 57.66582395427183} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06351146218490762, "mass": 15.912810306312771, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314307384894538, "I_33_without_motor": 0.0272546015659449, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97440496035988, "trigger": 800, "sampling_rate": 105, "lag": 1.6570634225887428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0271195603841061, "trigger": "apogee", "sampling_rate": 105, "lag": 1.47952912016921, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7116.807582695888, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033454064510443145, "grain_number": 5, "grain_density": 1845.8803962525951, "grain_outer_radius": 0.03301341876380251, "grain_initial_inner_radius": 0.015352775778104642, "grain_initial_height": 0.11722645270156325, "grain_separation": 0.00418937592305809, "grains_center_of_mass_position": 0.3975778614722306, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007293808079859101, "throat_radius": 0.01030662965044891, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254120139881829}], "aerodynamic_surfaces": [{"length": 0.5581149837134431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1322332200836296}, {"n": 4, "root_chord": 0.11960267934944385, "tip_chord": 0.060004485417802185, "span": 0.10980702305517089, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0515594954161436}, {"top_radius": 0.06429004555753391, "bottom_radius": 0.044304675721810356, "length": 0.0584469004150554, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6978176098619933, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619580751991172, "upper_button_position": 0.07823685787082124}], "rail_length": 5, "inclination": 83.03367176656526, "heading": 54.34868491819724} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349908889563549, "mass": 15.293511455323234, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309312211186714, "I_33_without_motor": 0.029366325374935942, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.024852514589766, "trigger": 800, "sampling_rate": 105, "lag": 1.4015834043818869, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9651440413032012, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4012111333971518, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7239.220073009516, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032530397887696676, "grain_number": 5, "grain_density": 1873.31805981136, "grain_outer_radius": 0.03330789398481273, "grain_initial_inner_radius": 0.014562434526370375, "grain_initial_height": 0.12066815551835439, "grain_separation": 0.0034814179054882045, "grains_center_of_mass_position": 0.3959483605117811, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005050893033654857, "throat_radius": 0.011110232193783619, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543078003512975}], "aerodynamic_surfaces": [{"length": 0.5585730532633811, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1362779730800219}, {"n": 4, "root_chord": 0.12028630691538611, "tip_chord": 0.05978298925167465, "span": 0.10954789823900518, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493468054759063}, {"top_radius": 0.06270837624700835, "bottom_radius": 0.04379859282711954, "length": 0.06047412834261526, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7015012444940989, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165328933846307, "upper_button_position": 0.08496835110946821}], "rail_length": 5, "inclination": 84.8407291267891, "heading": 54.014426378426165} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349609938090682, "mass": 15.682442163879205, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3326343484633005, "I_33_without_motor": 0.03130297476541102, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.926497056793014, "trigger": 800, "sampling_rate": 105, "lag": 1.522195306650091, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0067994691448958, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5943056199406243, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8293.310519767901, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321555178751973, "grain_number": 5, "grain_density": 1762.3855650566093, "grain_outer_radius": 0.03309983327971628, "grain_initial_inner_radius": 0.015094396334519427, "grain_initial_height": 0.11954273194387682, "grain_separation": 0.005104332383868106, "grains_center_of_mass_position": 0.39850725007323834, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00042819811629708277, "throat_radius": 0.011026509428066706, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552601610049203}], "aerodynamic_surfaces": [{"length": 0.5587420074250551, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344720203039145}, {"n": 4, "root_chord": 0.12079382223085004, "tip_chord": 0.05935107899247077, "span": 0.10995653102395402, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050818955896589}, {"top_radius": 0.06380162529360481, "bottom_radius": 0.04217316091820052, "length": 0.05962355857563577, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980625888177691, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183389053323832, "upper_button_position": 0.07972368348538583}], "rail_length": 5, "inclination": 85.05430151005275, "heading": 52.62149517171065} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350181263387218, "mass": 15.687961027217302, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304895785745257, "I_33_without_motor": 0.03256472057876025, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94348681373778, "trigger": 800, "sampling_rate": 105, "lag": 1.322745416985224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0131580399238196, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4893556890105717, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5749.617048506134, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032924510845563394, "grain_number": 5, "grain_density": 1794.023169674122, "grain_outer_radius": 0.032595606416005, "grain_initial_inner_radius": 0.014606139370066792, "grain_initial_height": 0.12050525886105574, "grain_separation": 0.004240011357926048, "grains_center_of_mass_position": 0.3951302260556882, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002467861562269777, "throat_radius": 0.011414374137075314, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253504191339209}], "aerodynamic_surfaces": [{"length": 0.5577198196179556, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332003073538495}, {"n": 4, "root_chord": 0.11889924994906279, "tip_chord": 0.05992202873627, "span": 0.1101791855232114, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0475722675567147}, {"top_radius": 0.0637557418981419, "bottom_radius": 0.04415161588706766, "length": 0.06166473158064881, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994410874345397, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182843103415255, "upper_button_position": 0.08115677709301417}], "rail_length": 5, "inclination": 83.55098777918627, "heading": 53.16382617332798} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349809009604027, "mass": 15.886509190812513, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30933560465068, "I_33_without_motor": 0.04075773557839831, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031219021005656, "trigger": 800, "sampling_rate": 105, "lag": 1.5312437140585717, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0594946332953143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.716235847138173, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7371.616851355071, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033281670908921236, "grain_number": 5, "grain_density": 1795.7865638246153, "grain_outer_radius": 0.03299671700978075, "grain_initial_inner_radius": 0.014431634514126473, "grain_initial_height": 0.11969758183991466, "grain_separation": 0.006376652573915021, "grains_center_of_mass_position": 0.3965009809490462, "center_of_dry_mass_position": 0.317, "nozzle_position": -8.668896595125747e-05, "throat_radius": 0.010843919167518798, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544814119347858}], "aerodynamic_surfaces": [{"length": 0.5578790486550589, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331936447337005}, {"n": 4, "root_chord": 0.11943214442629788, "tip_chord": 0.06073610532140215, "span": 0.11003534638165711, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483364142388811}, {"top_radius": 0.061937514294018794, "bottom_radius": 0.042662713270378086, "length": 0.059398385644042345, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699389657671488, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181634024654252, "upper_button_position": 0.08122625520606275}], "rail_length": 5, "inclination": 84.98050551474405, "heading": 54.34579693664815} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.063501201519034, "mass": 16.831398842735712, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324559982246382, "I_33_without_motor": 0.0034952657005812154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919987447425497, "trigger": 800, "sampling_rate": 105, "lag": 1.4992516662540138, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9877335222708339, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1236807521396537, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6510.5122343621115, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033380505361257036, "grain_number": 5, "grain_density": 1844.9038876996688, "grain_outer_radius": 0.033001133315811754, "grain_initial_inner_radius": 0.01588821394608991, "grain_initial_height": 0.12037100034559223, "grain_separation": 0.006276465446049902, "grains_center_of_mass_position": 0.3979117416916446, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015793626888174663, "throat_radius": 0.010876715244122, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552170236291114}], "aerodynamic_surfaces": [{"length": 0.555601442826296, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336157433855643}, {"n": 4, "root_chord": 0.1200105782754948, "tip_chord": 0.06058497694516837, "span": 0.10927145544945742, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0475485839826613}, {"top_radius": 0.06314538791229105, "bottom_radius": 0.04341238822988064, "length": 0.060072471236056385, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991191846134114, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179509613613061, "upper_button_position": 0.08116822325210526}], "rail_length": 5, "inclination": 85.31999978201172, "heading": 55.18749913236447} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349531542139844, "mass": 15.351827327447138, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3184640550855535, "I_33_without_motor": 0.029728766193897124, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.170388857941955, "trigger": 800, "sampling_rate": 105, "lag": 1.6155479120931684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0394544894224946, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3404650961300837, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5320.650078642215, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0340924371393044, "grain_number": 5, "grain_density": 1810.9921397448622, "grain_outer_radius": 0.03321281134579716, "grain_initial_inner_radius": 0.014391804734846851, "grain_initial_height": 0.12054329570576629, "grain_separation": 0.004199449523348553, "grains_center_of_mass_position": 0.39598989572992943, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006892222859271822, "throat_radius": 0.011848282797430627, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549541669207882}], "aerodynamic_surfaces": [{"length": 0.5564358149210101, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134736073517103}, {"n": 4, "root_chord": 0.12046778332702349, "tip_chord": 0.05919031756341683, "span": 0.1090566294728693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049103076922536}, {"top_radius": 0.06394577074624119, "bottom_radius": 0.04530731301224785, "length": 0.05841946260255657, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699690741089362, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192934004951525, "upper_button_position": 0.08039734059420955}], "rail_length": 5, "inclination": 87.16662980003484, "heading": 48.763408033791166} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349898594345578, "mass": 15.481545529188601, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315401769206447, "I_33_without_motor": 0.02417946698209255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.8413706808309, "trigger": 800, "sampling_rate": 105, "lag": 1.5669475514428843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9182238968158719, "trigger": "apogee", "sampling_rate": 105, "lag": 1.594985930581337, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7220.457897066213, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032648130417253625, "grain_number": 5, "grain_density": 1849.4681995181961, "grain_outer_radius": 0.03240940839014632, "grain_initial_inner_radius": 0.01565848868366229, "grain_initial_height": 0.12011725667725391, "grain_separation": 0.004614074219669124, "grains_center_of_mass_position": 0.39645584394019784, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00045954155176064704, "throat_radius": 0.010498554270152153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562998553059055}], "aerodynamic_surfaces": [{"length": 0.5599191839152003, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335738735173273}, {"n": 4, "root_chord": 0.12037814153284362, "tip_chord": 0.060152426870614895, "span": 0.11022676457815868, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498054277827782}, {"top_radius": 0.06355890246413029, "bottom_radius": 0.044551847415890806, "length": 0.05927213906910578, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991444514006824, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616778142149501, "upper_button_position": 0.08236630925118138}], "rail_length": 5, "inclination": 84.80490416666176, "heading": 53.888883408342714} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350254781327741, "mass": 15.314319164702711, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312041119448396, "I_33_without_motor": 0.025030987348971988, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929983858461702, "trigger": 800, "sampling_rate": 105, "lag": 1.380971579185703, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0093092988632701, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7624746647670781, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5100.296976554291, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264194221475629, "grain_number": 5, "grain_density": 1748.4906370024305, "grain_outer_radius": 0.0330336501728032, "grain_initial_inner_radius": 0.015352462017283618, "grain_initial_height": 0.12074322180521029, "grain_separation": 0.004285216496362797, "grains_center_of_mass_position": 0.3967853826598716, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015254734672662485, "throat_radius": 0.012024075875841008, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557558710985746}], "aerodynamic_surfaces": [{"length": 0.5580408164456186, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347083470599892}, {"n": 4, "root_chord": 0.120125736106349, "tip_chord": 0.05992091211590301, "span": 0.11094411545957276, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0493064230421767}, {"top_radius": 0.06206434844477579, "bottom_radius": 0.043249137262408074, "length": 0.06125879806243541, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7012410469943884, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169038775703543, "upper_button_position": 0.08433716942403413}], "rail_length": 5, "inclination": 85.65090270218063, "heading": 50.59060612269354} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349691390716096, "mass": 15.694965905332479, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3249037229670995, "I_33_without_motor": 0.03355545451123797, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045335154945548, "trigger": 800, "sampling_rate": 105, "lag": 1.6643667882486484, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9650228269923383, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5463452098905066, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7018.460533648245, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286783938582127, "grain_number": 5, "grain_density": 1762.7814746562376, "grain_outer_radius": 0.032356799282859866, "grain_initial_inner_radius": 0.01526743470210678, "grain_initial_height": 0.12067307684207884, "grain_separation": 0.005165933701228969, "grains_center_of_mass_position": 0.3985425392739178, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004268903984629968, "throat_radius": 0.01097317268550765, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542781466554302}], "aerodynamic_surfaces": [{"length": 0.5572133857488465, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331357989363222}, {"n": 4, "root_chord": 0.1205810306852415, "tip_chord": 0.05893754771543326, "span": 0.10972739721945579, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0501768361093617}, {"top_radius": 0.06424830837977089, "bottom_radius": 0.044154272721508264, "length": 0.059719370216709255, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6994873061328215, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171479351160161, "upper_button_position": 0.08233937101680544}], "rail_length": 5, "inclination": 84.67340426866166, "heading": 52.60523803143769} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350168133978422, "mass": 15.955097325027168, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315194791028126, "I_33_without_motor": 0.04318161707085489, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090145648239458, "trigger": 800, "sampling_rate": 105, "lag": 1.4698754574736912, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9307881894882987, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4972051363242624, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6440.104992506899, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308345715577597, "grain_number": 5, "grain_density": 1842.8660697842333, "grain_outer_radius": 0.032811478634642295, "grain_initial_inner_radius": 0.015300034456271186, "grain_initial_height": 0.1225959270669928, "grain_separation": 0.00513582568130063, "grains_center_of_mass_position": 0.3974968383506743, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011124854335288548, "throat_radius": 0.011278877512889203, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558027322089502}], "aerodynamic_surfaces": [{"length": 0.5581343309430145, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341738514049449}, {"n": 4, "root_chord": 0.11920371006442343, "tip_chord": 0.0602516570951855, "span": 0.10976213788977138, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495556437195726}, {"top_radius": 0.06276140337073749, "bottom_radius": 0.04320372890407654, "length": 0.06111585879490158, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996195851717866, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193612035719075, "upper_button_position": 0.08025838159987908}], "rail_length": 5, "inclination": 84.23776287536103, "heading": 53.5308384262802} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350603951988022, "mass": 15.424084006292578, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312610763491312, "I_33_without_motor": 0.0051647186220002556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.024546390814265, "trigger": 800, "sampling_rate": 105, "lag": 1.504595990880174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9783495835468843, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4768866874151707, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7428.489508804245, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239447729199955, "grain_number": 5, "grain_density": 1792.907636914852, "grain_outer_radius": 0.03281138158152312, "grain_initial_inner_radius": 0.014601150283831433, "grain_initial_height": 0.12070787405982183, "grain_separation": 0.0029701762669468337, "grains_center_of_mass_position": 0.3957325386459864, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001796449857039361, "throat_radius": 0.010617410933291242, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567307710824314}], "aerodynamic_surfaces": [{"length": 0.5570404122818841, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350755764208476}, {"n": 4, "root_chord": 0.12079724320720166, "tip_chord": 0.05981854078972668, "span": 0.10967109347801157, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.04898786551433}, {"top_radius": 0.06400306626144496, "bottom_radius": 0.04270549391478725, "length": 0.059827435075052136, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999972363694769, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183645995971168, "upper_button_position": 0.0816326367723601}], "rail_length": 5, "inclination": 83.85552201745934, "heading": 52.49977823728315} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350127149408559, "mass": 15.634283395326225, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321446546746508, "I_33_without_motor": 0.03537648369434521, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978435119659846, "trigger": 800, "sampling_rate": 105, "lag": 1.508930226864883, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0394639229036664, "trigger": "apogee", "sampling_rate": 105, "lag": 1.232082653386962, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5210.352332262015, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307479785034575, "grain_number": 5, "grain_density": 1750.8681040069782, "grain_outer_radius": 0.03315620789770261, "grain_initial_inner_radius": 0.014855812163370159, "grain_initial_height": 0.11980203621792716, "grain_separation": 0.004389021736554312, "grains_center_of_mass_position": 0.39782396636951045, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00043346708230452093, "throat_radius": 0.011373133010936773, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554551077814802}], "aerodynamic_surfaces": [{"length": 0.5578666426007514, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332950354097084}, {"n": 4, "root_chord": 0.120259574709997, "tip_chord": 0.059183895466358424, "span": 0.10976814963620007, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500753014412862}, {"top_radius": 0.06368807384950714, "bottom_radius": 0.04135542459374268, "length": 0.060812072173566656, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997524346883742, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173566448952293, "upper_button_position": 0.08239578979314488}], "rail_length": 5, "inclination": 84.86874483797764, "heading": 55.86351312448402} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350376348440473, "mass": 15.862977967889531, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326035553736948, "I_33_without_motor": 0.04287544776679862, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072888289362947, "trigger": 800, "sampling_rate": 105, "lag": 1.521030564438321, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9264578843393758, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3184987278354316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7948.3757823718315, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310595454579977, "grain_number": 5, "grain_density": 1737.8001684402077, "grain_outer_radius": 0.032506824620745244, "grain_initial_inner_radius": 0.014520562557128913, "grain_initial_height": 0.12044251238366392, "grain_separation": 0.0022506805808555357, "grains_center_of_mass_position": 0.3975019276481871, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010573229341562021, "throat_radius": 0.010470354795273225, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2525530004020395}], "aerodynamic_surfaces": [{"length": 0.5586215253044763, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1344596130896338}, {"n": 4, "root_chord": 0.11969692287375504, "tip_chord": 0.0606950829202787, "span": 0.1104218570922723, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0489651422081074}, {"top_radius": 0.06204503502038384, "bottom_radius": 0.043146327152354516, "length": 0.059917450726424536, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000163588276835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179836593812368, "upper_button_position": 0.08203269944644676}], "rail_length": 5, "inclination": 86.92778484296815, "heading": 51.96151006051569} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349452433440711, "mass": 15.18613190881984, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302264845459417, "I_33_without_motor": 0.03638225052725154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.011769460930273, "trigger": 800, "sampling_rate": 105, "lag": 1.635522841246652, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0463428155917398, "trigger": "apogee", "sampling_rate": 105, "lag": 1.265880305814926, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7727.304357319361, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03292392176689361, "grain_number": 5, "grain_density": 1781.4274264770283, "grain_outer_radius": 0.032980773826013, "grain_initial_inner_radius": 0.015249667744837473, "grain_initial_height": 0.11927215110360835, "grain_separation": 0.00339752019556507, "grains_center_of_mass_position": 0.3979958223937888, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001135836860503232, "throat_radius": 0.009925911150298913, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547171852228398}], "aerodynamic_surfaces": [{"length": 0.5585267312094191, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331230814377022}, {"n": 4, "root_chord": 0.11985779924259211, "tip_chord": 0.06057492976260262, "span": 0.10973498150951452, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488948639718791}, {"top_radius": 0.06328830857236034, "bottom_radius": 0.043732237392036216, "length": 0.060021337617331534, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6988867051495085, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189698272005252, "upper_button_position": 0.07991687794898328}], "rail_length": 5, "inclination": 84.91052321253315, "heading": 50.31747425676524} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349984437809353, "mass": 15.720782195488143, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309459081916683, "I_33_without_motor": 0.03710524031243822, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.983388130482782, "trigger": 800, "sampling_rate": 105, "lag": 1.450473176937919, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.005500240851889, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3331189654247035, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5602.030474610985, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375173361708217, "grain_number": 5, "grain_density": 1822.9151515456638, "grain_outer_radius": 0.03299553466514493, "grain_initial_inner_radius": 0.01479088160529132, "grain_initial_height": 0.11913264605234208, "grain_separation": 0.005673747357700668, "grains_center_of_mass_position": 0.39758496629681334, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00025278131317531906, "throat_radius": 0.011299967636099485, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566031007381804}], "aerodynamic_surfaces": [{"length": 0.5591493214969104, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1329467491327714}, {"n": 4, "root_chord": 0.12033374977711682, "tip_chord": 0.05969195710980961, "span": 0.10932702253638145, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492108578968764}, {"top_radius": 0.0637492709161154, "bottom_radius": 0.043473898569467144, "length": 0.06004477366894502, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7002365935769078, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618029097194976, "upper_button_position": 0.08220749638193181}], "rail_length": 5, "inclination": 84.17175698257303, "heading": 55.26966740477946} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349299651587602, "mass": 15.40323539300347, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3191393180898885, "I_33_without_motor": 0.00930097470026026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.864946196419444, "trigger": 800, "sampling_rate": 105, "lag": 1.4637075053371653, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.984766989220709, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5624033470501064, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5564.003689634237, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237263235356641, "grain_number": 5, "grain_density": 1854.023796107006, "grain_outer_radius": 0.032685111559987774, "grain_initial_inner_radius": 0.014522027391432258, "grain_initial_height": 0.11881304367121769, "grain_separation": 0.0042320000024973475, "grains_center_of_mass_position": 0.39665444941072153, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00034457129238875075, "throat_radius": 0.011204066942846464, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542429914111362}], "aerodynamic_surfaces": [{"length": 0.5592318910127924, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346915751257536}, {"n": 4, "root_chord": 0.11969843013244648, "tip_chord": 0.05963767621897242, "span": 0.1098020416036933, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505390958350211}, {"top_radius": 0.06508203611370585, "bottom_radius": 0.04247100924169585, "length": 0.06018899478381764, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6989039588572434, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178608344929032, "upper_button_position": 0.08104312436434025}], "rail_length": 5, "inclination": 85.1014908937319, "heading": 52.65176486393892} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350088736123118, "mass": 14.661213476332861, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318730524713931, "I_33_without_motor": 0.03503091312110597, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040219182600255, "trigger": 800, "sampling_rate": 105, "lag": 1.3840579240001065, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.050976196528737, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6958552740611592, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7833.8016553269, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033458068194315446, "grain_number": 5, "grain_density": 1786.8094896515884, "grain_outer_radius": 0.03348803146526552, "grain_initial_inner_radius": 0.015046346827391801, "grain_initial_height": 0.12014026702688503, "grain_separation": 0.00504155539184441, "grains_center_of_mass_position": 0.39661965980035546, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005725391563216138, "throat_radius": 0.011204502916998602, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554996562286564}], "aerodynamic_surfaces": [{"length": 0.5574197931869579, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1319446485713}, {"n": 4, "root_chord": 0.11986397040093409, "tip_chord": 0.06083226413499412, "span": 0.110175089875577, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487045045246972}, {"top_radius": 0.06206642845533593, "bottom_radius": 0.04411511388419017, "length": 0.05939665437039164, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699572746006241, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178066242537255, "upper_button_position": 0.08176612175251552}], "rail_length": 5, "inclination": 86.44155398643056, "heading": 52.38505931686724} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350964364498564, "mass": 15.123094934941905, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307158049740479, "I_33_without_motor": 0.053614054202916324, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984426333832902, "trigger": 800, "sampling_rate": 105, "lag": 1.499330318225055, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.142680652187591, "trigger": "apogee", "sampling_rate": 105, "lag": 1.741738159749908, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6872.338643471074, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329526277161799, "grain_number": 5, "grain_density": 1868.3642537644641, "grain_outer_radius": 0.032707869119960695, "grain_initial_inner_radius": 0.015260668345368112, "grain_initial_height": 0.12002916337105687, "grain_separation": 0.0035226712562707496, "grains_center_of_mass_position": 0.39775686296344714, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.830152946703216e-05, "throat_radius": 0.011077149450443552, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553403155301663}], "aerodynamic_surfaces": [{"length": 0.5600429448819053, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1342826211647363}, {"n": 4, "root_chord": 0.12121317797066314, "tip_chord": 0.0599255954672607, "span": 0.10927195981006672, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0513612628281228}, {"top_radius": 0.0641122408711371, "bottom_radius": 0.04207182102408188, "length": 0.05953447374353511, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6981222071314457, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162283830085014, "upper_button_position": 0.08189382412294433}], "rail_length": 5, "inclination": 85.57259056175137, "heading": 55.24091770990896} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350151840418093, "mass": 15.373723907480816, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324444753416531, "I_33_without_motor": 0.0482557363845771, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.981551823831849, "trigger": 800, "sampling_rate": 105, "lag": 1.39942933451415, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8959548633756333, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8587978543150605, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5247.675017295409, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324968714119957, "grain_number": 5, "grain_density": 1829.2097685684876, "grain_outer_radius": 0.033151903316160615, "grain_initial_inner_radius": 0.01517082620420382, "grain_initial_height": 0.12144414402522692, "grain_separation": 0.005543115923977468, "grains_center_of_mass_position": 0.3970624128174888, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00045934539536393045, "throat_radius": 0.010775102606928991, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548208834161636}], "aerodynamic_surfaces": [{"length": 0.5583702248193674, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.135212824721186}, {"n": 4, "root_chord": 0.11966887842352565, "tip_chord": 0.06013823465493822, "span": 0.11024319631632691, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483497844324696}, {"top_radius": 0.06317455163556955, "bottom_radius": 0.04465793707389634, "length": 0.060296319867219776, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.70009779459325, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177790875601099, "upper_button_position": 0.08231870703314004}], "rail_length": 5, "inclination": 83.46158015571133, "heading": 53.622005801660535} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350256362728285, "mass": 16.53344059444244, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3308794158056, "I_33_without_motor": 0.007835487275733192, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.241619985180373, "trigger": 800, "sampling_rate": 105, "lag": 1.4659584694158438, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9445554737008198, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3935890680623195, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7869.965371141272, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351929419246817, "grain_number": 5, "grain_density": 1779.9706134116368, "grain_outer_radius": 0.032521884439720504, "grain_initial_inner_radius": 0.014854377010543126, "grain_initial_height": 0.12008186025911527, "grain_separation": 0.004087806875829999, "grains_center_of_mass_position": 0.39684001750626907, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.15614924303044e-05, "throat_radius": 0.010735680969320241, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553538879042667}], "aerodynamic_surfaces": [{"length": 0.5603469345453271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333433963515105}, {"n": 4, "root_chord": 0.11977393992643562, "tip_chord": 0.06028287750928902, "span": 0.11013235272838365, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482052161705253}, {"top_radius": 0.06417456669198998, "bottom_radius": 0.04483809593402976, "length": 0.05890307527700734, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701287117773678, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177716050690477, "upper_button_position": 0.08351551270463031}], "rail_length": 5, "inclination": 85.70302168059835, "heading": 55.54294372135368} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349681033749807, "mass": 14.851530922899038, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318600447803501, "I_33_without_motor": 0.029080610446470635, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02471253074496, "trigger": 800, "sampling_rate": 105, "lag": 1.3424389971183126, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0860915602462735, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7609737168770576, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6225.4519287711, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317716204286872, "grain_number": 5, "grain_density": 1739.5153724022496, "grain_outer_radius": 0.033348952865160424, "grain_initial_inner_radius": 0.015214672692683664, "grain_initial_height": 0.11925572187841162, "grain_separation": 0.004034225472689332, "grains_center_of_mass_position": 0.3985457314977096, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017695000632129956, "throat_radius": 0.010648211371865023, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543392561474682}], "aerodynamic_surfaces": [{"length": 0.5569477099544928, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346014460094886}, {"n": 4, "root_chord": 0.11985868069070876, "tip_chord": 0.06041313320340448, "span": 0.11084436514276325, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0481204537342201}, {"top_radius": 0.0624326648368267, "bottom_radius": 0.0413395545399582, "length": 0.06002234000808313, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6980406355478931, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175080149715725, "upper_button_position": 0.0805326205763206}], "rail_length": 5, "inclination": 86.05564762840264, "heading": 54.586741478119684} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349743128378212, "mass": 14.684480084300455, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326680659363205, "I_33_without_motor": 0.05597200040158795, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.181996264969202, "trigger": 800, "sampling_rate": 105, "lag": 1.6687859526633884, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1052884146154316, "trigger": "apogee", "sampling_rate": 105, "lag": 1.081839164099868, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5532.567065076721, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306855739773043, "grain_number": 5, "grain_density": 1811.583870052897, "grain_outer_radius": 0.03294430772565817, "grain_initial_inner_radius": 0.015142623877726281, "grain_initial_height": 0.12052676160766172, "grain_separation": 0.005800440643073226, "grains_center_of_mass_position": 0.3942876365196271, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0025073092151401653, "throat_radius": 0.011200103731880896, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543856916707627}], "aerodynamic_surfaces": [{"length": 0.5595500192691275, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.13403338488789}, {"n": 4, "root_chord": 0.12026806244675048, "tip_chord": 0.060030960158340356, "span": 0.1110040580473187, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494851771714222}, {"top_radius": 0.06381732305737993, "bottom_radius": 0.043376346885340485, "length": 0.06027859039060364, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6990396622960736, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174369298057178, "upper_button_position": 0.08160273249035577}], "rail_length": 5, "inclination": 84.69951807247736, "heading": 51.37705852270164} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349832096575983, "mass": 16.19634455098331, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335893674004243, "I_33_without_motor": 0.023787728692361437, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.058692487510276, "trigger": 800, "sampling_rate": 105, "lag": 1.5685318278139257, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0524254277073655, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4741362613469726, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5674.261104832782, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032577536114638934, "grain_number": 5, "grain_density": 1770.9615800437555, "grain_outer_radius": 0.03311156207123035, "grain_initial_inner_radius": 0.014462160597650516, "grain_initial_height": 0.12057269110542454, "grain_separation": 0.003293657149302618, "grains_center_of_mass_position": 0.39772399714276774, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.9355484014188114e-05, "throat_radius": 0.011058700771282516, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254139503129388}], "aerodynamic_surfaces": [{"length": 0.5588341860706498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341469344103325}, {"n": 4, "root_chord": 0.12077096608928085, "tip_chord": 0.05999005521581261, "span": 0.10992331193052908, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0485476999714018}, {"top_radius": 0.06438048426059582, "bottom_radius": 0.042514410555492696, "length": 0.0598180098370286, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999780034228431, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174702004808426, "upper_button_position": 0.08250780294200055}], "rail_length": 5, "inclination": 85.28177264392438, "heading": 54.99867884531519} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350332061530979, "mass": 15.462880606342178, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300081866407392, "I_33_without_motor": 0.046439736352524616, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009177549864194, "trigger": 800, "sampling_rate": 105, "lag": 1.4666896184172686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0402240705368218, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3764389970760478, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7952.333402866319, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032456273204072, "grain_number": 5, "grain_density": 1867.4624483146576, "grain_outer_radius": 0.032621883887415805, "grain_initial_inner_radius": 0.015118854235979539, "grain_initial_height": 0.11800970990071645, "grain_separation": 0.005364824012506552, "grains_center_of_mass_position": 0.397190072602227, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00034176564518815876, "throat_radius": 0.010734951370731851, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574653646728728}], "aerodynamic_surfaces": [{"length": 0.5601069104980605, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1325755909869641}, {"n": 4, "root_chord": 0.12011255962981804, "tip_chord": 0.061136631235157404, "span": 0.11009602045300783, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487770162460057}, {"top_radius": 0.064070129215355, "bottom_radius": 0.042954447513923015, "length": 0.05987622038326527, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999406403020829, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199111631413047, "upper_button_position": 0.08002947716077824}], "rail_length": 5, "inclination": 85.6613384579684, "heading": 52.24941072733287} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349784013711399, "mass": 14.978355190430273, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340038470277887, "I_33_without_motor": 0.039345154870284636, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.75564109881806, "trigger": 800, "sampling_rate": 105, "lag": 1.5436563361278821, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0465460421989174, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2433049938982683, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6488.970875256242, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331340890198012, "grain_number": 5, "grain_density": 1862.9031915406001, "grain_outer_radius": 0.033089764935213775, "grain_initial_inner_radius": 0.01477365510705255, "grain_initial_height": 0.12003234928472993, "grain_separation": 0.005547925211036464, "grains_center_of_mass_position": 0.39601057984925836, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006912366181301366, "throat_radius": 0.011704948997748994, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555210243313637}], "aerodynamic_surfaces": [{"length": 0.5567139360528756, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134831181887779}, {"n": 4, "root_chord": 0.11991693054970938, "tip_chord": 0.05996524591865459, "span": 0.11046817055227622, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482372033822893}, {"top_radius": 0.06332020820670614, "bottom_radius": 0.043287348149288, "length": 0.06089865449818329, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991920571989798, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175710630959976, "upper_button_position": 0.08162099410298218}], "rail_length": 5, "inclination": 85.80635879418108, "heading": 54.74366587543532} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350426470782018, "mass": 15.643049308569788, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321368669512573, "I_33_without_motor": 0.022170992448591234, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.730089740572602, "trigger": 800, "sampling_rate": 105, "lag": 1.2913232712352916, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0211394296568217, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9532930609931003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 9436.001918017144, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351727456060129, "grain_number": 5, "grain_density": 1774.8507032635032, "grain_outer_radius": 0.0332467241715455, "grain_initial_inner_radius": 0.014624009691110556, "grain_initial_height": 0.12121760680758555, "grain_separation": 0.005230578519547738, "grains_center_of_mass_position": 0.39625922735422775, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016267629319151574, "throat_radius": 0.0107473832733872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558092527519655}], "aerodynamic_surfaces": [{"length": 0.556997919944444, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338861474581317}, {"n": 4, "root_chord": 0.1196056146529249, "tip_chord": 0.060430813024043024, "span": 0.11016608216451713, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502286831210723}, {"top_radius": 0.06362514103445062, "bottom_radius": 0.04111039528460794, "length": 0.05899286738772524, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993592957458485, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168343371820113, "upper_button_position": 0.08252495856383724}], "rail_length": 5, "inclination": 85.24989712983573, "heading": 49.830060213686835} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349309789544344, "mass": 15.647975505407, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333113605200642, "I_33_without_motor": 0.01617942917680944, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.028648559657588, "trigger": 800, "sampling_rate": 105, "lag": 1.6025648230415772, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9411072663829011, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5201498766431172, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7431.572173572531, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338539180700271, "grain_number": 5, "grain_density": 1795.0013771467154, "grain_outer_radius": 0.033313340568814034, "grain_initial_inner_radius": 0.01440572693193049, "grain_initial_height": 0.11938844849091426, "grain_separation": 0.005256403691378005, "grains_center_of_mass_position": 0.39652326682656863, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006312287631939618, "throat_radius": 0.011586657400851042, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555334327630603}], "aerodynamic_surfaces": [{"length": 0.5584552806664881, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132396168978339}, {"n": 4, "root_chord": 0.11986767719191328, "tip_chord": 0.059747175324607035, "span": 0.10982240215975901, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497012606135463}, {"top_radius": 0.06379374845665459, "bottom_radius": 0.04413046069721275, "length": 0.060900672528936745, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6982795325948663, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164106580515778, "upper_button_position": 0.0818688745432885}], "rail_length": 5, "inclination": 84.91582354748643, "heading": 56.06214101492504} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349031239452653, "mass": 14.876938522061723, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334799183164784, "I_33_without_motor": 0.01931625089119706, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.830795549461417, "trigger": 800, "sampling_rate": 105, "lag": 1.622946394141424, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8984385121163116, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1353804709465578, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6558.886071662028, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0319288148651922, "grain_number": 5, "grain_density": 1825.1630606417568, "grain_outer_radius": 0.03295264076266412, "grain_initial_inner_radius": 0.01597341585495672, "grain_initial_height": 0.11934178429753912, "grain_separation": 0.00410509034561062, "grains_center_of_mass_position": 0.39682423331231137, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00154797779870951, "throat_radius": 0.010818556589240396, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550463659065887}], "aerodynamic_surfaces": [{"length": 0.55814347509867, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1339223157195493}, {"n": 4, "root_chord": 0.1189049257260116, "tip_chord": 0.06053101245932891, "span": 0.11073962199413465, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0506749315905977}, {"top_radius": 0.0640523951784697, "bottom_radius": 0.043688356853321585, "length": 0.05955645989910411, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6999218963914338, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176205262919813, "upper_button_position": 0.08230137009945249}], "rail_length": 5, "inclination": 84.97076148883832, "heading": 54.91938909667529} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349189612210425, "mass": 15.140337028562673, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309535682340892, "I_33_without_motor": 0.027189563824928417, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.027612465336038, "trigger": 800, "sampling_rate": 105, "lag": 1.5502928782231975, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0377038380512882, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4370105293283095, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5911.649829909203, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032887276385379326, "grain_number": 5, "grain_density": 1829.1566942065724, "grain_outer_radius": 0.03344172240554959, "grain_initial_inner_radius": 0.0151280403204421, "grain_initial_height": 0.12067291273607353, "grain_separation": 0.0058912739871509155, "grains_center_of_mass_position": 0.39784017878136557, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010414451563417737, "throat_radius": 0.010451239251861935, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255572726527527}], "aerodynamic_surfaces": [{"length": 0.5563501731449446, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330155056153675}, {"n": 4, "root_chord": 0.11952146035330481, "tip_chord": 0.059872036201976855, "span": 0.11035895778846888, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497726643621375}, {"top_radius": 0.06141402110901442, "bottom_radius": 0.042925071935313655, "length": 0.06018478312730806, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7003104225983076, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187952901944572, "upper_button_position": 0.08151513240385033}], "rail_length": 5, "inclination": 83.79011403414249, "heading": 51.56532982984695} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.0634992600101757, "mass": 15.950570639622665, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313090940768401, "I_33_without_motor": 0.032418700178738616, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072442961933419, "trigger": 800, "sampling_rate": 105, "lag": 1.4061858775896785, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9132458525258794, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6360613948976699, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7482.6303192469095, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032730729482483796, "grain_number": 5, "grain_density": 1817.7092876198772, "grain_outer_radius": 0.03327589799197461, "grain_initial_inner_radius": 0.015362780990050437, "grain_initial_height": 0.12105126743671536, "grain_separation": 0.0038963294800043865, "grains_center_of_mass_position": 0.39781838024437044, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.954383913096935e-05, "throat_radius": 0.011526488721034074, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543859172846192}], "aerodynamic_surfaces": [{"length": 0.5586955981636536, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1351644179163265}, {"n": 4, "root_chord": 0.12009101815557675, "tip_chord": 0.059291536642979814, "span": 0.11021321960421401, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0487754429687401}, {"top_radius": 0.06250493231961103, "bottom_radius": 0.044334770947283504, "length": 0.06236573394643806, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005279026712787, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177766920619461, "upper_button_position": 0.08275121060933266}], "rail_length": 5, "inclination": 85.62286941557112, "heading": 55.795628664305184} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349500432208506, "mass": 15.687407755474572, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321754985298752, "I_33_without_motor": 0.027274279920609032, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992242624173455, "trigger": 800, "sampling_rate": 105, "lag": 1.3936766788352417, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8397291092440508, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6799595193469392, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5964.533146732569, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032558202931669535, "grain_number": 5, "grain_density": 1833.8127676057209, "grain_outer_radius": 0.033096086852676156, "grain_initial_inner_radius": 0.015318836105931596, "grain_initial_height": 0.11960919100101428, "grain_separation": 0.005266062936887082, "grains_center_of_mass_position": 0.39471006640112977, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002758837881127753, "throat_radius": 0.01112728435780988, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552501974850792}], "aerodynamic_surfaces": [{"length": 0.5590307707646444, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343488606988157}, {"n": 4, "root_chord": 0.12007166305723763, "tip_chord": 0.06001143432230526, "span": 0.11050581642591109, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050773211919831}, {"top_radius": 0.0630172231848952, "bottom_radius": 0.04392228013370445, "length": 0.060056248587740134, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6993307532362493, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192327539236838, "upper_button_position": 0.08009799931256545}], "rail_length": 5, "inclination": 86.08301261765133, "heading": 50.48134886826693} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349021369775504, "mass": 15.62383062704449, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32845921253045, "I_33_without_motor": 0.015654121786160536, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.822779649485046, "trigger": 800, "sampling_rate": 105, "lag": 1.5400052944648466, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0894829706019615, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6882232282456422, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4338.613102516925, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330435313461639, "grain_number": 5, "grain_density": 1808.8130416013942, "grain_outer_radius": 0.03342704377261399, "grain_initial_inner_radius": 0.014644157718751782, "grain_initial_height": 0.120225746978734, "grain_separation": 0.005028459454446472, "grains_center_of_mass_position": 0.39670112705920596, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.690326329530568e-05, "throat_radius": 0.01078107907564326, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544192465965378}], "aerodynamic_surfaces": [{"length": 0.5576435541981004, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1324819830921071}, {"n": 4, "root_chord": 0.12042148113397648, "tip_chord": 0.059550364748041054, "span": 0.11037978802459988, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.050641617935701}, {"top_radius": 0.06330530854310733, "bottom_radius": 0.04357893436337265, "length": 0.058167385598918646, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996561948838232, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190191255429333, "upper_button_position": 0.08063706934088999}], "rail_length": 5, "inclination": 83.1637666264756, "heading": 55.13123688614437} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349152100465358, "mass": 15.338149303682222, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334681934675341, "I_33_without_motor": 0.026610411371910555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045208029005183, "trigger": 800, "sampling_rate": 105, "lag": 1.640136520477108, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0429602015685207, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4096977094038454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5695.15718505585, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310634784563893, "grain_number": 5, "grain_density": 1748.0386586468385, "grain_outer_radius": 0.03230201137706537, "grain_initial_inner_radius": 0.015641671443215936, "grain_initial_height": 0.11996716853652553, "grain_separation": 0.0035144903035376927, "grains_center_of_mass_position": 0.3976735961559485, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006134739694528454, "throat_radius": 0.01088833314250018, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542708267044786}], "aerodynamic_surfaces": [{"length": 0.5577602997706751, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352756233763213}, {"n": 4, "root_chord": 0.12045827642597322, "tip_chord": 0.059740844560177656, "span": 0.10973704870810623, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499844949840142}, {"top_radius": 0.06375173426407597, "bottom_radius": 0.04332269571354546, "length": 0.05947540472267234, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004320076212017, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617919978201777, "upper_button_position": 0.0825120294194247}], "rail_length": 5, "inclination": 86.12335860834165, "heading": 52.34719028559767} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349921592197215, "mass": 14.80583845959392, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332606746223521, "I_33_without_motor": 0.041790253551315666, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984636520101114, "trigger": 800, "sampling_rate": 105, "lag": 1.3710449650767669, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8570475583038925, "trigger": "apogee", "sampling_rate": 105, "lag": 1.094514048252711, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6215.596281052708, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032128150521183195, "grain_number": 5, "grain_density": 1815.405860593411, "grain_outer_radius": 0.03295824704584825, "grain_initial_inner_radius": 0.01500942144415527, "grain_initial_height": 0.11904390868690724, "grain_separation": 0.0055721039701709715, "grains_center_of_mass_position": 0.39731951674836136, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001683906033721513, "throat_radius": 0.011490956709338333, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540243907595932}], "aerodynamic_surfaces": [{"length": 0.5581639093598558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333411728751719}, {"n": 4, "root_chord": 0.12029946835262306, "tip_chord": 0.05967263957911831, "span": 0.11059307531564583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0488365216212465}, {"top_radius": 0.062158779305900184, "bottom_radius": 0.044780575150064374, "length": 0.05846554652480459, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985639618804458, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187396085994352, "upper_button_position": 0.07982435328101056}], "rail_length": 5, "inclination": 85.76765692698622, "heading": 52.53486211868939} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350495454952977, "mass": 15.766719703435319, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317897830099618, "I_33_without_motor": 0.041304105354809655, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.794399648284822, "trigger": 800, "sampling_rate": 105, "lag": 1.5376593882883887, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0192802390129074, "trigger": "apogee", "sampling_rate": 105, "lag": 1.216667191189442, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5136.350069917262, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333065360885168, "grain_number": 5, "grain_density": 1806.921122190806, "grain_outer_radius": 0.03252350460471852, "grain_initial_inner_radius": 0.015374484748865179, "grain_initial_height": 0.12141435622911595, "grain_separation": 0.00576297647830236, "grains_center_of_mass_position": 0.39640511867253386, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008381993165284183, "throat_radius": 0.01077339709203743, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254501544766503}], "aerodynamic_surfaces": [{"length": 0.557295982574581, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335029202105877}, {"n": 4, "root_chord": 0.11984115467888769, "tip_chord": 0.059322930870706794, "span": 0.10904528531963956, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498079668669344}, {"top_radius": 0.06351741608328967, "bottom_radius": 0.044218961108942995, "length": 0.06096072703093502, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998854636831404, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191817259913097, "upper_button_position": 0.0807037376918307}], "rail_length": 5, "inclination": 84.18849706171262, "heading": 51.01667745559118} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349779819282207, "mass": 15.06036753157882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32015490022116, "I_33_without_motor": 0.02952315238199296, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.964225511894643, "trigger": 800, "sampling_rate": 105, "lag": 1.5464841649849423, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0076175215433112, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7058480721759524, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6615.880559765951, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308501710797152, "grain_number": 5, "grain_density": 1784.9214357455985, "grain_outer_radius": 0.03206687773363854, "grain_initial_inner_radius": 0.014871602908737366, "grain_initial_height": 0.11875925560643144, "grain_separation": 0.0032110311869795573, "grains_center_of_mass_position": 0.3970175313429356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00044085236577542106, "throat_radius": 0.010533260576312915, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541293934042814}], "aerodynamic_surfaces": [{"length": 0.5579314940433657, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1331001309363928}, {"n": 4, "root_chord": 0.11956530168793371, "tip_chord": 0.06083820710625525, "span": 0.11014116963537483, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.049442729838692}, {"top_radius": 0.06222363720744602, "bottom_radius": 0.044045585301028, "length": 0.06005497372391215, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006736242849674, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184830596374274, "upper_button_position": 0.08219056464753993}], "rail_length": 5, "inclination": 85.23960833607374, "heading": 52.30800492517132} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0635058288259677, "mass": 14.657394964749116, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319016337600255, "I_33_without_motor": 0.024481444129265367, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984786659500058, "trigger": 800, "sampling_rate": 105, "lag": 1.402163143602224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9298438814424388, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1477532424881545, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6188.639355282895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286760776461252, "grain_number": 5, "grain_density": 1844.6216099193769, "grain_outer_radius": 0.03323068648406446, "grain_initial_inner_radius": 0.015200112411945075, "grain_initial_height": 0.12095947480294687, "grain_separation": 0.0038536056418025117, "grains_center_of_mass_position": 0.3968042768134394, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018113775884644181, "throat_radius": 0.010750251447149164, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539922910269792}], "aerodynamic_surfaces": [{"length": 0.5575815928287818, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1326454308633556}, {"n": 4, "root_chord": 0.11922262911627303, "tip_chord": 0.06023405473805605, "span": 0.1097160490911115, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0495783894295243}, {"top_radius": 0.0633581492568475, "bottom_radius": 0.04439665977269868, "length": 0.060969169435775045, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6985351819648189, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196176293444353, "upper_button_position": 0.07891755262038358}], "rail_length": 5, "inclination": 84.69149930070783, "heading": 54.26986919354365} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0635076010491415, "mass": 15.21720516613397, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306088722566068, "I_33_without_motor": 0.02417875693598864, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.192789505203542, "trigger": 800, "sampling_rate": 105, "lag": 1.572041335024772, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0207306871829152, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8401609572830637, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5826.169962251364, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254145979830387, "grain_number": 5, "grain_density": 1837.4042925569345, "grain_outer_radius": 0.03245709065377548, "grain_initial_inner_radius": 0.014864953368765876, "grain_initial_height": 0.11937143455345345, "grain_separation": 0.006671097871067938, "grains_center_of_mass_position": 0.39653779756833385, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.498016022112119e-05, "throat_radius": 0.010496909100357445, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256377693727164}], "aerodynamic_surfaces": [{"length": 0.5590240783882705, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340714528876175}, {"n": 4, "root_chord": 0.12082437716118472, "tip_chord": 0.05874727756401076, "span": 0.10995064823547049, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500345152472053}, {"top_radius": 0.06320139002743595, "bottom_radius": 0.043287148689895937, "length": 0.059471199910570566, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7005444207864041, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184565279905815, "upper_button_position": 0.08208789279582263}], "rail_length": 5, "inclination": 83.60915545435205, "heading": 55.20262015276762} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349294511798087, "mass": 14.907894328293818, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315092810709919, "I_33_without_motor": 0.026136660782091675, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945561552808236, "trigger": 800, "sampling_rate": 105, "lag": 1.4975258442678179, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0086533663461608, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5219216838742093, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5059.280363889253, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0332115206683281, "grain_number": 5, "grain_density": 1829.8677590170819, "grain_outer_radius": 0.03310720204514663, "grain_initial_inner_radius": 0.015078441361541928, "grain_initial_height": 0.11910860884737476, "grain_separation": 0.005918558908484938, "grains_center_of_mass_position": 0.40002693534083006, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.800979064035406e-05, "throat_radius": 0.010180713525506912, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549456023715349}], "aerodynamic_surfaces": [{"length": 0.5582807313056836, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1343765031868154}, {"n": 4, "root_chord": 0.12006913815354613, "tip_chord": 0.06045613043085446, "span": 0.1098891202836352, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494657323956005}, {"top_radius": 0.06272737236424852, "bottom_radius": 0.04455315992449491, "length": 0.060643038269484396, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7026678181143006, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173693217174965, "upper_button_position": 0.08529849639680409}], "rail_length": 5, "inclination": 83.84794894712344, "heading": 54.96876351770589} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349738015495252, "mass": 15.745862789282409, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319878707654328, "I_33_without_motor": 0.024944461984076644, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885038011812755, "trigger": 800, "sampling_rate": 105, "lag": 1.4990011421856666, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9603379250500755, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5293001364325884, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6572.360746872139, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033022537182318, "grain_number": 5, "grain_density": 1806.617044114111, "grain_outer_radius": 0.032955343715196955, "grain_initial_inner_radius": 0.014551444806980406, "grain_initial_height": 0.11977696261494844, "grain_separation": 0.006791633903225023, "grains_center_of_mass_position": 0.3963152539651479, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003978831991837455, "throat_radius": 0.010833988709277402, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552765254706126}], "aerodynamic_surfaces": [{"length": 0.5587657282893022, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.134793666686748}, {"n": 4, "root_chord": 0.12061606704999121, "tip_chord": 0.060242445961165306, "span": 0.10912034269524111, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498260607830197}, {"top_radius": 0.06158792728974635, "bottom_radius": 0.04362463658303598, "length": 0.05779885063088276, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.700813613419421, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176221086470473, "upper_button_position": 0.0831915047723738}], "rail_length": 5, "inclination": 84.755856505235, "heading": 56.18870285950558} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349418873421935, "mass": 15.27694225181296, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331262653166126, "I_33_without_motor": 0.050860209780753035, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045667038826132, "trigger": 800, "sampling_rate": 105, "lag": 1.4813364188643947, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9306596614641622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7041941551095534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6064.641890745714, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03396033351003147, "grain_number": 5, "grain_density": 1811.7768365221302, "grain_outer_radius": 0.03271570791969659, "grain_initial_inner_radius": 0.014282970931434751, "grain_initial_height": 0.12055786494016826, "grain_separation": 0.005158390370589841, "grains_center_of_mass_position": 0.39645097675826074, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004285930184489927, "throat_radius": 0.011232615953469693, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547655463367564}], "aerodynamic_surfaces": [{"length": 0.5597474352868599, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1338017857630969}, {"n": 4, "root_chord": 0.12083354972920306, "tip_chord": 0.060289537825083145, "span": 0.11082042169848708, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0492323006744009}, {"top_radius": 0.06219876090635497, "bottom_radius": 0.04299084013459076, "length": 0.0603878047641881, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6986448069534318, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177070771291708, "upper_button_position": 0.08093772982426095}], "rail_length": 5, "inclination": 84.74673235353191, "heading": 51.15957299638698} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349573918962229, "mass": 15.093043722223012, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332416429584653, "I_33_without_motor": 0.053038095111173134, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.741986796418677, "trigger": 800, "sampling_rate": 105, "lag": 1.4271612519180854, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0192415798595376, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0827507349715173, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6457.4753512690895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295730590841218, "grain_number": 5, "grain_density": 1779.508053229577, "grain_outer_radius": 0.03243891003856861, "grain_initial_inner_radius": 0.014747099502753078, "grain_initial_height": 0.12150119957079171, "grain_separation": 0.004550494417811348, "grains_center_of_mass_position": 0.39669458209955044, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004173223411465489, "throat_radius": 0.010685548735358149, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255972402682744}], "aerodynamic_surfaces": [{"length": 0.5574373440265729, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1347699144904795}, {"n": 4, "root_chord": 0.11923271106606508, "tip_chord": 0.06014990762994498, "span": 0.10966738457498426, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0510185544500532}, {"top_radius": 0.06210546849645636, "bottom_radius": 0.04484435977751361, "length": 0.05776673873759139, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6997755479469248, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186050638879694, "upper_button_position": 0.08117048405895533}], "rail_length": 5, "inclination": 85.71806055012912, "heading": 55.523645358988325} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350679848065344, "mass": 15.68168478717235, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337739122409559, "I_33_without_motor": 0.05088537014725532, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02318537932741, "trigger": 800, "sampling_rate": 105, "lag": 1.5665742555807705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.038950869322165, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4541250139093878, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6138.807975606737, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03236590983870591, "grain_number": 5, "grain_density": 1797.97341570165, "grain_outer_radius": 0.03243224746395927, "grain_initial_inner_radius": 0.0155374119927946, "grain_initial_height": 0.12061016429443747, "grain_separation": 0.00683214690452311, "grains_center_of_mass_position": 0.3976207859590314, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005386612137904882, "throat_radius": 0.01062174528394063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549208635276567}], "aerodynamic_surfaces": [{"length": 0.5585327445110766, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327201322376619}, {"n": 4, "root_chord": 0.11930123933209187, "tip_chord": 0.06134522949083135, "span": 0.11042730319390039, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0505062599381523}, {"top_radius": 0.06422695440011252, "bottom_radius": 0.042482737397051856, "length": 0.05932791181033231, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.699389368587712, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616262872285109, "upper_button_position": 0.08312649630260294}], "rail_length": 5, "inclination": 84.97564968392773, "heading": 52.80795732707349} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350728861881752, "mass": 16.2820870490869, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323823627613069, "I_33_without_motor": 0.03689922923761026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.146572545533655, "trigger": 800, "sampling_rate": 105, "lag": 1.4399518992904918, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9388295770767884, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6691100916379624, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5479.197024849774, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326787189099006, "grain_number": 5, "grain_density": 1872.1668809245543, "grain_outer_radius": 0.03305986674541176, "grain_initial_inner_radius": 0.015120422663495394, "grain_initial_height": 0.12185819468080912, "grain_separation": 0.004286491990464922, "grains_center_of_mass_position": 0.39733730271162065, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006299632057098842, "throat_radius": 0.011099362912837354, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2572340452826007}], "aerodynamic_surfaces": [{"length": 0.5583364148911241, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1346809943464942}, {"n": 4, "root_chord": 0.12111383004299325, "tip_chord": 0.06003914345880618, "span": 0.11005012691672916, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0490515417770876}, {"top_radius": 0.06273931499387297, "bottom_radius": 0.041514834422079566, "length": 0.06028644885718964, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.701217091997988, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193161303483476, "upper_button_position": 0.08190096164964034}], "rail_length": 5, "inclination": 83.79714559901716, "heading": 52.74234039183345} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349532414626392, "mass": 15.496409420437464, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3185537393623505, "I_33_without_motor": 0.03672531159289606, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054515317897028, "trigger": 800, "sampling_rate": 105, "lag": 1.5683705571476902, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8571294317837183, "trigger": "apogee", "sampling_rate": 105, "lag": 2.003749549237355, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7795.466871177596, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297650227285058, "grain_number": 5, "grain_density": 1751.6439070155911, "grain_outer_radius": 0.03236631991551455, "grain_initial_inner_radius": 0.015121943056659459, "grain_initial_height": 0.11879402695671167, "grain_separation": 0.005495935800161058, "grains_center_of_mass_position": 0.3970507348549739, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007767528563180848, "throat_radius": 0.010342273135546205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256693081853693}], "aerodynamic_surfaces": [{"length": 0.5581129857889824, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1350684343417234}, {"n": 4, "root_chord": 0.12045566844342483, "tip_chord": 0.05954283289055744, "span": 0.10979899674751059, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0497871932523504}, {"top_radius": 0.06094457436830271, "bottom_radius": 0.04212888649376253, "length": 0.059383014930552695, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7021246342895178, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184050671123063, "upper_button_position": 0.08371956717721152}], "rail_length": 5, "inclination": 84.52616100564981, "heading": 54.28387256491175} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350315921064129, "mass": 15.267424784518132, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31784362061541, "I_33_without_motor": 0.036108194421385506, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.976889915721618, "trigger": 800, "sampling_rate": 105, "lag": 1.5485381604572392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9761630436541183, "trigger": "apogee", "sampling_rate": 105, "lag": 1.520726398336573, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5463.608641762748, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032241506359500176, "grain_number": 5, "grain_density": 1752.3141043030057, "grain_outer_radius": 0.03236517477262065, "grain_initial_inner_radius": 0.014904840271525398, "grain_initial_height": 0.11983544997659208, "grain_separation": 0.004868228150022631, "grains_center_of_mass_position": 0.39554642180632205, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011328569178436763, "throat_radius": 0.010669301367459114, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545664670969965}], "aerodynamic_surfaces": [{"length": 0.5580121479865313, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1333717720902594}, {"n": 4, "root_chord": 0.12048063793760924, "tip_chord": 0.05955436716597116, "span": 0.1098189311331354, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0509338099446368}, {"top_radius": 0.06344968528796696, "bottom_radius": 0.04322065713750918, "length": 0.06064801168639196, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008985064628982, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186306869139672, "upper_button_position": 0.08226781954893103}], "rail_length": 5, "inclination": 86.0952642936394, "heading": 54.42069426506371} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350128437569931, "mass": 16.026733147859204, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325779859501116, "I_33_without_motor": 0.03133105389639857, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99394836596975, "trigger": 800, "sampling_rate": 105, "lag": 1.4682809238413472, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0346616210891317, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4011274241116198, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7457.055799194472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333479144216255, "grain_number": 5, "grain_density": 1796.309254093483, "grain_outer_radius": 0.033211217633982174, "grain_initial_inner_radius": 0.01464477335111112, "grain_initial_height": 0.12078535669434612, "grain_separation": 0.003491682764896191, "grains_center_of_mass_position": 0.3970952415175059, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007873153790914065, "throat_radius": 0.011727009598345235, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550998330303447}], "aerodynamic_surfaces": [{"length": 0.558976506494468, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1340842426368638}, {"n": 4, "root_chord": 0.11956235240237677, "tip_chord": 0.06018338145942865, "span": 0.10991417137822469, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0482447353522726}, {"top_radius": 0.06416974800366321, "bottom_radius": 0.04384530105333872, "length": 0.05972858459761706, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004839289022771, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197369798513791, "upper_button_position": 0.08074694905089796}], "rail_length": 5, "inclination": 84.89325051207408, "heading": 51.672931263971805} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350075561281969, "mass": 15.055639619582472, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316870825317084, "I_33_without_motor": 0.033025817349716484, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.875097919859313, "trigger": 800, "sampling_rate": 105, "lag": 1.520748523378454, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0125833995569846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4184729658177706, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7072.048255298407, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252538957527458, "grain_number": 5, "grain_density": 1805.4006535575807, "grain_outer_radius": 0.03391311710926201, "grain_initial_inner_radius": 0.015381844149259465, "grain_initial_height": 0.11855222186745702, "grain_separation": 0.005126348150847265, "grains_center_of_mass_position": 0.397422428558609, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015072802461189056, "throat_radius": 0.012004390208619816, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557134267565742}], "aerodynamic_surfaces": [{"length": 0.5599241101874417, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133561092450895}, {"n": 4, "root_chord": 0.11899112190793047, "tip_chord": 0.05995467471931716, "span": 0.10966618512900476, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0502279976406257}, {"top_radius": 0.06304845833222314, "bottom_radius": 0.04391532769320375, "length": 0.061893752171319226, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007437208865951, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188770640349839, "upper_button_position": 0.08186665685161121}], "rail_length": 5, "inclination": 84.15037311114224, "heading": 53.324509325573466} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350264550394849, "mass": 15.413935234260743, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319482871157219, "I_33_without_motor": 0.025248322283928953, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992443721073661, "trigger": 800, "sampling_rate": 105, "lag": 1.6773513716731647, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1035972642888534, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3537450031209832, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7680.946882960774, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033248157316327014, "grain_number": 5, "grain_density": 1795.193978140354, "grain_outer_radius": 0.03273484017220203, "grain_initial_inner_radius": 0.01502713644089259, "grain_initial_height": 0.11972815980424906, "grain_separation": 0.004666333284410274, "grains_center_of_mass_position": 0.3967424002720019, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000608665388747778, "throat_radius": 0.01145851832240638, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542337377860293}], "aerodynamic_surfaces": [{"length": 0.558148292078272, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1330564751377852}, {"n": 4, "root_chord": 0.12020811825400013, "tip_chord": 0.06007302070274156, "span": 0.10961924471680322, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0519109418393369}, {"top_radius": 0.06195911174128177, "bottom_radius": 0.042092757250326115, "length": 0.06096307182583185, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6992566078515403, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163510101408204, "upper_button_position": 0.08290559771071992}], "rail_length": 5, "inclination": 83.26007219673347, "heading": 56.30061362470317} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349721641936261, "mass": 15.558472461222637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332434512186307, "I_33_without_motor": 0.04117722882736734, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.047747267508688, "trigger": 800, "sampling_rate": 105, "lag": 1.4888285639796095, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1232223165096045, "trigger": "apogee", "sampling_rate": 105, "lag": 1.191388632158336, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7070.423560994842, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250284851351516, "grain_number": 5, "grain_density": 1684.251790889329, "grain_outer_radius": 0.03276272401547023, "grain_initial_inner_radius": 0.01494746093377216, "grain_initial_height": 0.11995359963902184, "grain_separation": 0.004643653099505233, "grains_center_of_mass_position": 0.3964342783830156, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.882591659187158e-05, "throat_radius": 0.010268758522414224, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535016923538447}], "aerodynamic_surfaces": [{"length": 0.5582627502553353, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1337157525974697}, {"n": 4, "root_chord": 0.12013917570939817, "tip_chord": 0.06073955553029295, "span": 0.10951110587352393, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499069840917643}, {"top_radius": 0.06359995125474215, "bottom_radius": 0.04371204571762692, "length": 0.0608085804033377, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7007810634642797, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191088718467528, "upper_button_position": 0.08167219161752692}], "rail_length": 5, "inclination": 83.76389118007268, "heading": 52.15893127498183} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634959518802136, "mass": 14.923389914892054, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303403204843341, "I_33_without_motor": 0.03148900487817043, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.182212641488862, "trigger": 800, "sampling_rate": 105, "lag": 1.5307152913123547, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9844929741992177, "trigger": "apogee", "sampling_rate": 105, "lag": 1.471077069806335, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6290.268612085388, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032512554617370015, "grain_number": 5, "grain_density": 1847.8100574986631, "grain_outer_radius": 0.03292486470620064, "grain_initial_inner_radius": 0.015323388778418668, "grain_initial_height": 0.12095337590545109, "grain_separation": 0.004726650741585029, "grains_center_of_mass_position": 0.39794463330825264, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011238310660776605, "throat_radius": 0.011261875234406592, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543863869155636}], "aerodynamic_surfaces": [{"length": 0.5573799902095021, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1334147295777108}, {"n": 4, "root_chord": 0.11830391073158958, "tip_chord": 0.06073448216923383, "span": 0.10998175762843944, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503019677191172}, {"top_radius": 0.06413622734143655, "bottom_radius": 0.04232002290759264, "length": 0.062045231793295706, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7008413668987808, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184911672150571, "upper_button_position": 0.0823501996837237}], "rail_length": 5, "inclination": 84.82510326232716, "heading": 52.08528062594522} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349518994501419, "mass": 16.139925698994546, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324147235802217, "I_33_without_motor": 0.03007972356240875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.83617071330295, "trigger": 800, "sampling_rate": 105, "lag": 1.4526589437630872, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9167014503051972, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5045289783003455, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6380.959671602253, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032931554976713136, "grain_number": 5, "grain_density": 1850.859047959879, "grain_outer_radius": 0.03339373128477558, "grain_initial_inner_radius": 0.01561730507116921, "grain_initial_height": 0.11936891687451902, "grain_separation": 0.004965076130835638, "grains_center_of_mass_position": 0.39614565576250554, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002716949952634704, "throat_radius": 0.01085986653853156, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544398647753447}], "aerodynamic_surfaces": [{"length": 0.558562957288715, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327109685058485}, {"n": 4, "root_chord": 0.11955909428606452, "tip_chord": 0.059574301428922706, "span": 0.1099396950501241, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0494966784963482}, {"top_radius": 0.06465821504337943, "bottom_radius": 0.043092137790245115, "length": 0.05904037609864057, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6998500585938875, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169054895727728, "upper_button_position": 0.08294456902111469}], "rail_length": 5, "inclination": 83.29486742781687, "heading": 50.87479703213076} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350521614095538, "mass": 14.400501692871655, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313332622775236, "I_33_without_motor": 0.02931908684018728, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895690947467347, "trigger": 800, "sampling_rate": 105, "lag": 1.7197060234843649, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9967728082371677, "trigger": "apogee", "sampling_rate": 105, "lag": 1.336048573655079, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5910.826704649259, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326338883731323, "grain_number": 5, "grain_density": 1879.4069750567428, "grain_outer_radius": 0.03377966898438553, "grain_initial_inner_radius": 0.014786373863443036, "grain_initial_height": 0.12140928942489035, "grain_separation": 0.0036481698277265554, "grains_center_of_mass_position": 0.39719164051169054, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007465578984864509, "throat_radius": 0.01087817746935785, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255990189634098}], "aerodynamic_surfaces": [{"length": 0.5591078865659251, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1332036378393828}, {"n": 4, "root_chord": 0.11904988856003111, "tip_chord": 0.059978614859150216, "span": 0.10995162398203537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0516863560588776}, {"top_radius": 0.06438334017699476, "bottom_radius": 0.04505701889902042, "length": 0.05809085318760584, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000349696953196, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179353737325665, "upper_button_position": 0.08209959596275318}], "rail_length": 5, "inclination": 83.65720470306839, "heading": 54.44519213856072} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06348940412038614, "mass": 14.816554874807423, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303695929105709, "I_33_without_motor": 0.033187953055631714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.927024195885712, "trigger": 800, "sampling_rate": 105, "lag": 1.6818933715587066, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9804288844215308, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3704445575540685, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6177.716107657838, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032852850752243645, "grain_number": 5, "grain_density": 1725.075914716094, "grain_outer_radius": 0.03257560613878793, "grain_initial_inner_radius": 0.014732784767601533, "grain_initial_height": 0.12196678190449396, "grain_separation": 0.0035689015880313573, "grains_center_of_mass_position": 0.39643850212548465, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015131250645290032, "throat_radius": 0.011470872345763843, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545810026922388}], "aerodynamic_surfaces": [{"length": 0.5569895161345129, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132813853174065}, {"n": 4, "root_chord": 0.12049783552967583, "tip_chord": 0.06042472303018909, "span": 0.11033825854044346, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.048936560555384}, {"top_radius": 0.06487684846138572, "bottom_radius": 0.044122262819570254, "length": 0.059410834917220066, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009730044461409, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167522192579374, "upper_button_position": 0.08422078518820342}], "rail_length": 5, "inclination": 82.5760822212137, "heading": 51.30868714828909} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350307617557341, "mass": 15.755387281291021, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323748729532657, "I_33_without_motor": 0.01315181851552363, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95554093939359, "trigger": 800, "sampling_rate": 105, "lag": 1.4661865678511938, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0187324358626204, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4162954426501395, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6728.955514866897, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033450666182480146, "grain_number": 5, "grain_density": 1745.7626290189826, "grain_outer_radius": 0.03231631469773839, "grain_initial_inner_radius": 0.015101918884567194, "grain_initial_height": 0.11983418432523238, "grain_separation": 0.0040733994609951085, "grains_center_of_mass_position": 0.3954345061229445, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012411028267256372, "throat_radius": 0.010495376950266037, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255409094759928}], "aerodynamic_surfaces": [{"length": 0.5571625470105009, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1341204498417525}, {"n": 4, "root_chord": 0.1203106124216575, "tip_chord": 0.05991693775505402, "span": 0.10976268726958546, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500727457047985}, {"top_radius": 0.0625534972294228, "bottom_radius": 0.04307343350364586, "length": 0.06007564912214711, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991816737900669, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179117548187897, "upper_button_position": 0.08126991897127722}], "rail_length": 5, "inclination": 85.32655747479703, "heading": 52.406876100789106} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349991730756509, "mass": 15.164816612673594, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32779136214898, "I_33_without_motor": 0.025100674109772386, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908409396138305, "trigger": 800, "sampling_rate": 105, "lag": 1.458769520815555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8363150887729378, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2442024334803559, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6703.520603395918, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321869294281857, "grain_number": 5, "grain_density": 1814.996672395444, "grain_outer_radius": 0.03292055810568723, "grain_initial_inner_radius": 0.014809091135122849, "grain_initial_height": 0.11950286655730076, "grain_separation": 0.006596160579563, "grains_center_of_mass_position": 0.39630031629365947, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012991198259578722, "throat_radius": 0.010667690445993545, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542629763748738}], "aerodynamic_surfaces": [{"length": 0.559769215772461, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.131704880710159}, {"n": 4, "root_chord": 0.12008860128601222, "tip_chord": 0.059630187375080565, "span": 0.11001759046002609, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0500705560848191}, {"top_radius": 0.06353478031363459, "bottom_radius": 0.0423884082634286, "length": 0.05800814568831704, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7006212214207025, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172582604712249, "upper_button_position": 0.0833629609494776}], "rail_length": 5, "inclination": 84.3781358437383, "heading": 51.20556600999381} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349770623730874, "mass": 15.550900444516358, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315285618257123, "I_33_without_motor": 0.03728682753180008, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.889905426253456, "trigger": 800, "sampling_rate": 105, "lag": 1.4344285488482855, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0434707156363336, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5337509192587389, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5810.251766777661, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318589872962419, "grain_number": 5, "grain_density": 1858.8130426406226, "grain_outer_radius": 0.03275825814731607, "grain_initial_inner_radius": 0.014433075456901026, "grain_initial_height": 0.12087820271838383, "grain_separation": 0.0045123073033925465, "grains_center_of_mass_position": 0.39843077194343807, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015260315201742962, "throat_radius": 0.010661109874606362, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547701452606677}], "aerodynamic_surfaces": [{"length": 0.5572351985760161, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.133973645009969}, {"n": 4, "root_chord": 0.12022727926250962, "tip_chord": 0.060462381624572924, "span": 0.110267768550356, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0499855038478294}, {"top_radius": 0.0630969668368067, "bottom_radius": 0.0422594046820478, "length": 0.05961561127074052, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7000273005220158, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187269594283882, "upper_button_position": 0.0813003410936276}], "rail_length": 5, "inclination": 84.04376895564361, "heading": 56.33408374700079} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349638147817965, "mass": 15.503572067128443, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3276660386613415, "I_33_without_motor": 0.04261800152731442, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.962782260809476, "trigger": 800, "sampling_rate": 105, "lag": 1.5108356004355548, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0351489932267652, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6485624556667975, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6009.39745730294, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033525996962052225, "grain_number": 5, "grain_density": 1871.3393488544343, "grain_outer_radius": 0.03322178807419533, "grain_initial_inner_radius": 0.015314707864965265, "grain_initial_height": 0.11981977905858907, "grain_separation": 0.005490001859726038, "grains_center_of_mass_position": 0.39660984982017067, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00028178566447434463, "throat_radius": 0.01070163521677245, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528905343581602}], "aerodynamic_surfaces": [{"length": 0.5590788752584447, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1335090753750428}, {"n": 4, "root_chord": 0.11967752868495371, "tip_chord": 0.05966102428947952, "span": 0.1109142123246142, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0503381470222994}, {"top_radius": 0.0631519551397764, "bottom_radius": 0.044441843807338434, "length": 0.0598461007584117, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004953435371148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181029235427816, "upper_button_position": 0.08239241999433322}], "rail_length": 5, "inclination": 86.60935970448531, "heading": 48.57265828234603} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06348719719225096, "mass": 14.831975206185875, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31913463333152, "I_33_without_motor": 0.03808067674226565, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.058440378372337, "trigger": 800, "sampling_rate": 105, "lag": 1.6059857576393703, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0152875601653708, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5468371976043613, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5005.9972055828675, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03194092084239393, "grain_number": 5, "grain_density": 1746.7795599706387, "grain_outer_radius": 0.03338681479175327, "grain_initial_inner_radius": 0.015366945290135414, "grain_initial_height": 0.12062086121141846, "grain_separation": 0.004977640967129163, "grains_center_of_mass_position": 0.3971292316879652, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0022387340899191945, "throat_radius": 0.011170405630510643, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255252402884504}], "aerodynamic_surfaces": [{"length": 0.5573997578591111, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1361329200326866}, {"n": 4, "root_chord": 0.11883721722714055, "tip_chord": 0.06007175827279387, "span": 0.10948535643756047, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0484497227225247}, {"top_radius": 0.06292711457048375, "bottom_radius": 0.044216921071664674, "length": 0.05912297439336118, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6976708345295187, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202954339503257, "upper_button_position": 0.07737540057919301}], "rail_length": 5, "inclination": 85.87731380288861, "heading": 53.81322819643218} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06351298475983606, "mass": 15.222971952089527, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310530893075832, "I_33_without_motor": 0.03203530750244527, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.934667765223015, "trigger": 800, "sampling_rate": 105, "lag": 1.3721148271328494, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9580103970106066, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5868476507668006, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7403.907271992316, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287240967391206, "grain_number": 5, "grain_density": 1821.5034993377858, "grain_outer_radius": 0.032791769500050576, "grain_initial_inner_radius": 0.015240081377530376, "grain_initial_height": 0.12169332291769952, "grain_separation": 0.004628236860232421, "grains_center_of_mass_position": 0.39604636070651067, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008919397687589953, "throat_radius": 0.010388962276525795, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254987142386821}], "aerodynamic_surfaces": [{"length": 0.5585121135562, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1352692021708728}, {"n": 4, "root_chord": 0.11979258019035806, "tip_chord": 0.06043652528123994, "span": 0.11005912358370129, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0507380312379406}, {"top_radius": 0.06206269856657394, "bottom_radius": 0.042744891166608866, "length": 0.0609623256065939, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7004810238388507, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165356080031444, "upper_button_position": 0.08394541583570625}], "rail_length": 5, "inclination": 85.7460299885555, "heading": 51.74582788988167} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349451952499319, "mass": 15.545178018046624, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3165113384408365, "I_33_without_motor": 0.058675983749733776, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.940004896691557, "trigger": 800, "sampling_rate": 105, "lag": 1.544962613504163, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1239982128217663, "trigger": "apogee", "sampling_rate": 105, "lag": 1.370300546711106, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7303.866068223703, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03261911592365855, "grain_number": 5, "grain_density": 1901.7075476504226, "grain_outer_radius": 0.03257224145476162, "grain_initial_inner_radius": 0.015081580236544137, "grain_initial_height": 0.12030605495637323, "grain_separation": 0.00549685978117014, "grains_center_of_mass_position": 0.3947763014914653, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006639801932281115, "throat_radius": 0.011960586800010666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556473331879958}], "aerodynamic_surfaces": [{"length": 0.5605761205628983, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.132484245943373}, {"n": 4, "root_chord": 0.119461818168347, "tip_chord": 0.059344773375009076, "span": 0.10983729972009669, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0504454858899}, {"top_radius": 0.06422108581546689, "bottom_radius": 0.04362005822519274, "length": 0.05839006644183752, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.7009452269585219, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182149140972907, "upper_button_position": 0.08273031286123123}], "rail_length": 5, "inclination": 83.46082168390363, "heading": 53.03228665110626} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350256321472121, "mass": 15.792289832619067, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323566369664969, "I_33_without_motor": 0.03046482863679412, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.915503955482185, "trigger": 800, "sampling_rate": 105, "lag": 1.4762336013886863, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.934096789181613, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4611219981719892, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5899.566726368821, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032850450469432475, "grain_number": 5, "grain_density": 1822.5913139417391, "grain_outer_radius": 0.03306717430128752, "grain_initial_inner_radius": 0.01557929161708317, "grain_initial_height": 0.12187446039975315, "grain_separation": 0.005865800887443149, "grains_center_of_mass_position": 0.3949066881931405, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009547270006446743, "throat_radius": 0.010560690864045163, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547780894220841}], "aerodynamic_surfaces": [{"length": 0.5583867438842312, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1327304166736447}, {"n": 4, "root_chord": 0.11912447480304302, "tip_chord": 0.06061885819388559, "span": 0.1096371689223832, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0498334150543602}, {"top_radius": 0.06358267669701748, "bottom_radius": 0.042347979727181725, "length": 0.060122507866044776, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6991381620025697, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189240052466469, "upper_button_position": 0.0802141567559228}], "rail_length": 5, "inclination": 84.83182271618166, "heading": 53.75302342810973} -{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350233873942764, "mass": 16.01434541020888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300811915169815, "I_33_without_motor": 0.026501578445466835, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.833972253119247, "trigger": 800, "sampling_rate": 105, "lag": 1.557115893704189, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9011721882062874, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5629392054365105, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5841.935535428319, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0336523770949585, "grain_number": 5, "grain_density": 1708.5126467926748, "grain_outer_radius": 0.03342521259650003, "grain_initial_inner_radius": 0.015305019330731254, "grain_initial_height": 0.1192615953392928, "grain_separation": 0.005357668479478038, "grains_center_of_mass_position": 0.396620150583005, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.180017874172819e-06, "throat_radius": 0.010619306194859771, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547047466195138}], "aerodynamic_surfaces": [{"length": 0.5592874390113377, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": 1.1336157980776147}, {"n": 4, "root_chord": 0.11983535301771586, "tip_chord": 0.059778201034027076, "span": 0.11045777519259752, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": -1.0483934437103604}, {"top_radius": 0.06412403163839732, "bottom_radius": 0.04247240385657788, "length": 0.06079188021148222, "rocket_radius": 0.0635, "name": "Tail", "position": -1.194656}], "rail_buttons": [{"buttons_distance": 0.6996424030388548, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161621678231282, "upper_button_position": 0.08348023521572667}], "rail_length": 5, "inclination": 82.93705727398249, "heading": 53.67799314417152} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0634977424678714, "mass": 16.099399052095475, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322826414842783, "I_33_without_motor": 0.024610720918088684, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992242636501228, "trigger": 800, "sampling_rate": 105, "lag": 1.37662720151625, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9526815776477622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7566423391698223, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7704.739553828454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264557268945915, "grain_number": 5, "grain_density": 1804.6950639354786, "grain_outer_radius": 0.03304500958327553, "grain_initial_inner_radius": 0.014487167957891477, "grain_initial_height": 0.1201491743411191, "grain_separation": 0.006823690637134292, "grains_center_of_mass_position": 0.39657435738329977, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007361478452234591, "throat_radius": 0.010940877954562712, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254245266683996}], "aerodynamic_surfaces": [{"length": 0.5579632819162841, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328491018570763]}, {"n": 4, "root_chord": 0.1204627589822683, "tip_chord": 0.05978946888861861, "span": 0.10984213893215432, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496493645332095]}, {"top_radius": 0.06420152806896531, "bottom_radius": 0.04316975209827597, "length": 0.05963966774053479, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006766405193625, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199328463663287, "upper_button_position": 0.08074379415303379}], "rail_length": 5, "inclination": 84.90678093621473, "heading": 52.724282725489815} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06348950675831977, "mass": 15.674259570285122, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319760889872123, "I_33_without_motor": 0.011169424952492821, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.82730425836643, "trigger": 800, "sampling_rate": 105, "lag": 1.5587009874714275, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0457867860735048, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4553809907640902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6355.235568721634, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269793007781046, "grain_number": 5, "grain_density": 1826.4103160047478, "grain_outer_radius": 0.03300837295661411, "grain_initial_inner_radius": 0.014924019244175267, "grain_initial_height": 0.12012536308066069, "grain_separation": 0.004475384904446108, "grains_center_of_mass_position": 0.3971717940110826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018042885057471363, "throat_radius": 0.011351554189636749, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565890038412844}], "aerodynamic_surfaces": [{"length": 0.5592789534165266, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334959550075274]}, {"n": 4, "root_chord": 0.11959754410468353, "tip_chord": 0.05901543791500893, "span": 0.1096838935045858, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504438280415616]}, {"top_radius": 0.06248207019068003, "bottom_radius": 0.04262876251870652, "length": 0.0604113404773148, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016177058124697, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617295277870553, "upper_button_position": 0.08432242794191669}], "rail_length": 5, "inclination": 84.44277571572943, "heading": 52.1737271927504} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348981679699378, "mass": 14.995974161386984, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3278315323497685, "I_33_without_motor": 0.01997788295186583, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.097213072319283, "trigger": 800, "sampling_rate": 105, "lag": 1.4618336175485462, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9832177449445663, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7677531164881861, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5439.148857371871, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239159446346311, "grain_number": 5, "grain_density": 1879.148832186697, "grain_outer_radius": 0.03336716089188945, "grain_initial_inner_radius": 0.01497543258967518, "grain_initial_height": 0.1186582212762239, "grain_separation": 0.0036597574358492252, "grains_center_of_mass_position": 0.3953990608976243, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00234489514717649, "throat_radius": 0.011393450645441033, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555610125276189}], "aerodynamic_surfaces": [{"length": 0.5585219052612453, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336309148195582]}, {"n": 4, "root_chord": 0.12008153459802634, "tip_chord": 0.05909367383821489, "span": 0.10986171704073228, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499828041174593]}, {"top_radius": 0.061341195727407566, "bottom_radius": 0.0449388230970268, "length": 0.05865016998353198, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992791690918225, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173132082217552, "upper_button_position": 0.08196596087006736}], "rail_length": 5, "inclination": 85.96691333435925, "heading": 58.06421823165227} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350563285857785, "mass": 15.686824612789007, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3142454129824825, "I_33_without_motor": 0.0069994322465104265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895652180058029, "trigger": 800, "sampling_rate": 105, "lag": 1.5106723874239543, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9298289550570136, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7136878389006782, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6864.874679957673, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305819916308188, "grain_number": 5, "grain_density": 1853.5094367987665, "grain_outer_radius": 0.032743193691614395, "grain_initial_inner_radius": 0.014761142569863621, "grain_initial_height": 0.11924455118607435, "grain_separation": 0.005408501479718391, "grains_center_of_mass_position": 0.396920876335611, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003951355713378425, "throat_radius": 0.010801393987169804, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255683548085779}], "aerodynamic_surfaces": [{"length": 0.5578707027824659, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326739549373173]}, {"n": 4, "root_chord": 0.1203812101941174, "tip_chord": 0.060059994171777945, "span": 0.11031759739284287, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505063023246137]}, {"top_radius": 0.06451336019359334, "bottom_radius": 0.04487525340601379, "length": 0.0610180553189772, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997514211200824, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177842257825139, "upper_button_position": 0.08196719533756847}], "rail_length": 5, "inclination": 85.29222460902255, "heading": 52.4800874828638} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350377646103751, "mass": 15.815066497289452, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342340986662117, "I_33_without_motor": 0.03653048561295875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86739493611864, "trigger": 800, "sampling_rate": 105, "lag": 1.5927399191520923, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.014367616863339, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3660473634676857, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5374.1634040833505, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262668665824679, "grain_number": 5, "grain_density": 1790.3358271415618, "grain_outer_radius": 0.03287102531806085, "grain_initial_inner_radius": 0.015503475233091988, "grain_initial_height": 0.11960383641225888, "grain_separation": 0.005861064726471043, "grains_center_of_mass_position": 0.3966394786630655, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0025282723771956825, "throat_radius": 0.01163730591326628, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2571653740741018}], "aerodynamic_surfaces": [{"length": 0.559103083651271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333651895721029]}, {"n": 4, "root_chord": 0.12052939535523079, "tip_chord": 0.059551787202136615, "span": 0.11031611391619832, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501551971749514]}, {"top_radius": 0.06336326436996963, "bottom_radius": 0.044076648430431076, "length": 0.06107841463332926, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.702145453049507, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177802081028312, "upper_button_position": 0.08436524494667585}], "rail_length": 5, "inclination": 82.94715698705959, "heading": 57.68030579195055} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349307268461403, "mass": 15.131693898150216, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315029499876911, "I_33_without_motor": 0.017823654235284505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890306542120742, "trigger": 800, "sampling_rate": 105, "lag": 1.4314196190426234, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.977535251148979, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4415501696027146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6452.1698962239, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271199327095639, "grain_number": 5, "grain_density": 1903.2785586902785, "grain_outer_radius": 0.03320849661566748, "grain_initial_inner_radius": 0.014799240150712323, "grain_initial_height": 0.11906858295231143, "grain_separation": 0.004277651703091548, "grains_center_of_mass_position": 0.39825782127456577, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00022289147498803113, "throat_radius": 0.011439501072486532, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25343243749778}], "aerodynamic_surfaces": [{"length": 0.5577687982241851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346191765070324]}, {"n": 4, "root_chord": 0.12036833538872274, "tip_chord": 0.060829781447859416, "span": 0.11033581567411477, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495309947676337]}, {"top_radius": 0.06365815851681852, "bottom_radius": 0.04076910766108013, "length": 0.06073088820135905, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7020853329157329, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187960681704766, "upper_button_position": 0.08328926474525633}], "rail_length": 5, "inclination": 84.66092518157127, "heading": 53.49736026103204} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350115488081748, "mass": 15.941567743974186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323127902845262, "I_33_without_motor": 0.035689019803830525, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980981570934263, "trigger": 800, "sampling_rate": 105, "lag": 1.5673782209896054, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1589990590757009, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6501201793718898, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6727.313465959902, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032615342926384704, "grain_number": 5, "grain_density": 1877.136815157434, "grain_outer_radius": 0.03265013575999032, "grain_initial_inner_radius": 0.015043833990215218, "grain_initial_height": 0.12082264198536213, "grain_separation": 0.005241390633525145, "grains_center_of_mass_position": 0.39725199722637405, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004970121950587769, "throat_radius": 0.011184509170493394, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558627771155024}], "aerodynamic_surfaces": [{"length": 0.557340115491556, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13388415258603]}, {"n": 4, "root_chord": 0.12016835020865163, "tip_chord": 0.059940575076551934, "span": 0.10976752481121882, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503824268182371]}, {"top_radius": 0.062133937174927316, "bottom_radius": 0.04341043767930742, "length": 0.060096994087868214, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700943045362044, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617847436850749, "upper_button_position": 0.08309560851129494}], "rail_length": 5, "inclination": 84.70150457297844, "heading": 53.192178646337695} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.063496118654292, "mass": 15.250346818667634, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3335319849658305, "I_33_without_motor": 0.04010313377351726, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.883528460707321, "trigger": 800, "sampling_rate": 105, "lag": 1.5374754826466575, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0161188464181867, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3657362813957346, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6191.41252997293, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274466593778137, "grain_number": 5, "grain_density": 1749.8073640252057, "grain_outer_radius": 0.033609632148795046, "grain_initial_inner_radius": 0.014627052243032035, "grain_initial_height": 0.12010053208071463, "grain_separation": 0.001979715806483542, "grains_center_of_mass_position": 0.3976854354301759, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001556745649591737, "throat_radius": 0.011317486254195205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553146705406633}], "aerodynamic_surfaces": [{"length": 0.5569236006561634, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337370936819386]}, {"n": 4, "root_chord": 0.12108936793157149, "tip_chord": 0.06107630144554083, "span": 0.11010566417619896, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048578442979032]}, {"top_radius": 0.06321587493746328, "bottom_radius": 0.04232422426219352, "length": 0.0597735703995814, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6978971309049885, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175496878865668, "upper_button_position": 0.08034744301842167}], "rail_length": 5, "inclination": 84.26975926688804, "heading": 54.08674562190234} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0635042909859604, "mass": 15.03790376238798, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326982715812916, "I_33_without_motor": 0.028611745483103426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035955705923344, "trigger": 800, "sampling_rate": 105, "lag": 1.442022917327016, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8941861942589365, "trigger": "apogee", "sampling_rate": 105, "lag": 1.27021407957151, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6890.913626687692, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298248255108766, "grain_number": 5, "grain_density": 1824.527430233555, "grain_outer_radius": 0.03246723610144384, "grain_initial_inner_radius": 0.014676256364951899, "grain_initial_height": 0.12094611020087803, "grain_separation": 0.003215356506803254, "grains_center_of_mass_position": 0.3960045291026116, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011955814803260491, "throat_radius": 0.011280562871445191, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563213464796845}], "aerodynamic_surfaces": [{"length": 0.5563494625988494, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341119038253422]}, {"n": 4, "root_chord": 0.12058654392734419, "tip_chord": 0.05958085491581746, "span": 0.110550889390532, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0512564239061342]}, {"top_radius": 0.0647656403842801, "bottom_radius": 0.04408609369394244, "length": 0.05817779412090543, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986029858451364, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172216130103813, "upper_button_position": 0.0813813728347551}], "rail_length": 5, "inclination": 84.60242185056978, "heading": 54.10395881382145} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350726029142151, "mass": 14.980246147860836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314005298436129, "I_33_without_motor": 0.015024944414632552, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.75579615162297, "trigger": 800, "sampling_rate": 105, "lag": 1.340270061019168, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.002846095513883, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4395161274017534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6022.356667764955, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0337734859235616, "grain_number": 5, "grain_density": 1850.0800761665153, "grain_outer_radius": 0.03286950677959829, "grain_initial_inner_radius": 0.015070997558192347, "grain_initial_height": 0.11805573711089483, "grain_separation": 0.0033049490164894736, "grains_center_of_mass_position": 0.3964106543972205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001775773800762673, "throat_radius": 0.01068389926787, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561446083422818}], "aerodynamic_surfaces": [{"length": 0.5578255844326423, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330556483107217]}, {"n": 4, "root_chord": 0.12036105490474557, "tip_chord": 0.059908921119856004, "span": 0.11028110984478263, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487417188545096]}, {"top_radius": 0.06411855613907273, "bottom_radius": 0.04256250575382935, "length": 0.05930456334772516, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993505820419731, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162158113566069, "upper_button_position": 0.08313477068536623}], "rail_length": 5, "inclination": 83.89965555297236, "heading": 51.85003025533582} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350529963103403, "mass": 15.83310797769589, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309474174738721, "I_33_without_motor": 0.0120449544404274, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036768531489553, "trigger": 800, "sampling_rate": 105, "lag": 1.4954312395837985, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.017435230162135, "trigger": "apogee", "sampling_rate": 105, "lag": 1.386509028858483, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7489.78688935055, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032702697533239344, "grain_number": 5, "grain_density": 1812.4788418127916, "grain_outer_radius": 0.032904872961316875, "grain_initial_inner_radius": 0.01480960542823825, "grain_initial_height": 0.12095769757904078, "grain_separation": 0.004247746990174012, "grains_center_of_mass_position": 0.3965146043072727, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0021678912672417738, "throat_radius": 0.010965198302850053, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550451691870137}], "aerodynamic_surfaces": [{"length": 0.5580336870607786, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341986518966833]}, {"n": 4, "root_chord": 0.11941800815102356, "tip_chord": 0.06050578601363161, "span": 0.1099649270207716, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496798616297447]}, {"top_radius": 0.062140981216488644, "bottom_radius": 0.0453432426117617, "length": 0.06031924908679958, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988032814345462, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182924974286991, "upper_button_position": 0.0805107840058471}], "rail_length": 5, "inclination": 85.14190221932661, "heading": 53.63560970792684} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350330410686504, "mass": 15.888592218938065, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325530931428125, "I_33_without_motor": 0.03281371618695123, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.82799033932301, "trigger": 800, "sampling_rate": 105, "lag": 1.6149602000305605, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9476909005684352, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5607648095277984, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6091.303108793798, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031857529930342854, "grain_number": 5, "grain_density": 1891.3667926303617, "grain_outer_radius": 0.03306863393520925, "grain_initial_inner_radius": 0.01613910556741678, "grain_initial_height": 0.11921594653353608, "grain_separation": 0.00585390078957486, "grains_center_of_mass_position": 0.39810661576307743, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00022691987171385996, "throat_radius": 0.011367090801113868, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538702892943934}], "aerodynamic_surfaces": [{"length": 0.5583448695308693, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135012039382995]}, {"n": 4, "root_chord": 0.1198417147222881, "tip_chord": 0.060785126058780406, "span": 0.11019038048226994, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502550655146028]}, {"top_radius": 0.06288777855434016, "bottom_radius": 0.04394972737813701, "length": 0.05965057469078196, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980693593576125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184787622108163, "upper_button_position": 0.07959059714679617}], "rail_length": 5, "inclination": 85.94779028455264, "heading": 52.56089202833418} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06351698115315366, "mass": 16.147126952392803, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324587112772431, "I_33_without_motor": 0.04517195624342693, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.049874859800125, "trigger": 800, "sampling_rate": 105, "lag": 1.623936027976833, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9835406817076239, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5721136509477318, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5030.886499205373, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334188713841536, "grain_number": 5, "grain_density": 1821.2056675895274, "grain_outer_radius": 0.03286413227290609, "grain_initial_inner_radius": 0.014664504258392004, "grain_initial_height": 0.12068879652526138, "grain_separation": 0.005931740923652511, "grains_center_of_mass_position": 0.3955798426206646, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013413319428792548, "throat_radius": 0.011486772856464142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549294892936895}], "aerodynamic_surfaces": [{"length": 0.5578311274200637, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351608278909038]}, {"n": 4, "root_chord": 0.11901704586037971, "tip_chord": 0.05998513410225039, "span": 0.1100971343780426, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509883425710147]}, {"top_radius": 0.06362667601344703, "bottom_radius": 0.044699023157902806, "length": 0.06128136402476684, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994576383222212, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618021967734834, "upper_button_position": 0.08143567058738721}], "rail_length": 5, "inclination": 84.95446619735141, "heading": 52.476341284959545} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0635059511530787, "mass": 14.862954811278632, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3079313733362, "I_33_without_motor": 0.034280212264987106, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.994208021266134, "trigger": 800, "sampling_rate": 105, "lag": 1.5387860821768242, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0429259360203773, "trigger": "apogee", "sampling_rate": 105, "lag": 1.810657290141169, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3812.5717589829546, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239437229092298, "grain_number": 5, "grain_density": 1786.341695836566, "grain_outer_radius": 0.03320929991292971, "grain_initial_inner_radius": 0.015397476386017586, "grain_initial_height": 0.12089775916759908, "grain_separation": 0.0037844208816466586, "grains_center_of_mass_position": 0.39711620741531295, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016495331848715605, "throat_radius": 0.011093479305316423, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548252919488572}], "aerodynamic_surfaces": [{"length": 0.5599346651942358, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346459602986647]}, {"n": 4, "root_chord": 0.12024580381755091, "tip_chord": 0.05992727745265326, "span": 0.11104160451304279, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515232113615114]}, {"top_radius": 0.06446196510285622, "bottom_radius": 0.04377102604230289, "length": 0.05879959615909326, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991033521228613, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189988955428183, "upper_button_position": 0.08010445658004306}], "rail_length": 5, "inclination": 86.63446234467125, "heading": 46.675297786812614} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349135156756962, "mass": 15.308836917502843, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317784622662622, "I_33_without_motor": 0.03923821492683949, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15260929033553, "trigger": 800, "sampling_rate": 105, "lag": 1.4013180473236628, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9787923241991235, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0177943835009318, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5981.865488244948, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329332642860677, "grain_number": 5, "grain_density": 1810.6124849541459, "grain_outer_radius": 0.03268624386467168, "grain_initial_inner_radius": 0.01454842858524723, "grain_initial_height": 0.11999851590020667, "grain_separation": 0.006005919618689468, "grains_center_of_mass_position": 0.396401377220149, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.2624533355833934e-05, "throat_radius": 0.011995378357230867, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558594128345886}], "aerodynamic_surfaces": [{"length": 0.5589003066337432, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134309666104058]}, {"n": 4, "root_chord": 0.12048276360407956, "tip_chord": 0.05907943240793075, "span": 0.1101611098869932, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498481568921803]}, {"top_radius": 0.06379642121079714, "bottom_radius": 0.04380731259457369, "length": 0.06069746021572789, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6981568336985533, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177469050640243, "upper_button_position": 0.080409928634529}], "rail_length": 5, "inclination": 83.89720619250714, "heading": 50.74036508188146} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349809047892128, "mass": 15.193855177221733, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330001126148005, "I_33_without_motor": 0.044304331162515836, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.114423522984074, "trigger": 800, "sampling_rate": 105, "lag": 1.4236732404533423, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9373002055299338, "trigger": "apogee", "sampling_rate": 105, "lag": 1.302714283787759, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6810.50894549059, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033121174671319316, "grain_number": 5, "grain_density": 1894.4368529299213, "grain_outer_radius": 0.03307544322122563, "grain_initial_inner_radius": 0.015798774426538622, "grain_initial_height": 0.12021915157519676, "grain_separation": 0.0033084774357470563, "grains_center_of_mass_position": 0.39675885600470495, "center_of_dry_mass_position": 0.317, "nozzle_position": 7.589471301932838e-05, "throat_radius": 0.010423725036393083, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253578606654604}], "aerodynamic_surfaces": [{"length": 0.5595550223333017, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326167781508685]}, {"n": 4, "root_chord": 0.12065405981580894, "tip_chord": 0.05893833025665596, "span": 0.10972148310993571, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509583354818874]}, {"top_radius": 0.06257330415764341, "bottom_radius": 0.04399850289257364, "length": 0.059489857347610364, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984546682708777, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175229671199586, "upper_button_position": 0.08093170115091908}], "rail_length": 5, "inclination": 84.75172656439625, "heading": 52.36602397276226} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349141786491408, "mass": 16.70700646748496, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319778449147965, "I_33_without_motor": 0.04014773865110609, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018610697073486, "trigger": 800, "sampling_rate": 105, "lag": 1.5547898023927915, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.982780304969076, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7348759719690345, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6482.993425328169, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301248250089653, "grain_number": 5, "grain_density": 1857.5533385157048, "grain_outer_radius": 0.03313498451094315, "grain_initial_inner_radius": 0.01489783299498516, "grain_initial_height": 0.11924372484496412, "grain_separation": 0.003875423230191168, "grains_center_of_mass_position": 0.3953409325629372, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004991482252818321, "throat_radius": 0.010604920288899023, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557020520550404}], "aerodynamic_surfaces": [{"length": 0.559772191409112, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134370081604767]}, {"n": 4, "root_chord": 0.11984941850896702, "tip_chord": 0.06017647004301559, "span": 0.11144488920974924, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492724281636667]}, {"top_radius": 0.06475177515684079, "bottom_radius": 0.044920059778664236, "length": 0.058783530524692484, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7017254477658006, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618788959656611, "upper_button_position": 0.08293648810918963}], "rail_length": 5, "inclination": 84.91252024938781, "heading": 54.304922888189004} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349886710006522, "mass": 15.670227441297131, "I_11_without_motor": 6.321, "I_22_without_motor": 6.341604751693049, "I_33_without_motor": 0.04633570736595526, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.830004245609144, "trigger": 800, "sampling_rate": 105, "lag": 1.5621401260545935, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0722742197480999, "trigger": "apogee", "sampling_rate": 105, "lag": 1.547926024860269, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6998.90700816973, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304312363226075, "grain_number": 5, "grain_density": 1853.4675933088631, "grain_outer_radius": 0.033305171133526136, "grain_initial_inner_radius": 0.014700932744903538, "grain_initial_height": 0.12055662052931179, "grain_separation": 0.005659822127460029, "grains_center_of_mass_position": 0.39820252329121725, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016806933288658293, "throat_radius": 0.011282930699392972, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543435273713237}], "aerodynamic_surfaces": [{"length": 0.5575958962432936, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353371793721119]}, {"n": 4, "root_chord": 0.11954858299991585, "tip_chord": 0.0598818284859205, "span": 0.11081900054131243, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502436304415874]}, {"top_radius": 0.06322582808548002, "bottom_radius": 0.04215131025565059, "length": 0.059781935647247667, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700948817803907, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616127542406813, "upper_button_position": 0.08482127539709405}], "rail_length": 5, "inclination": 82.8058545098111, "heading": 54.35208695487683} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350626323498156, "mass": 15.941108799866427, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336553716770153, "I_33_without_motor": 0.047652852923035685, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02247535561311, "trigger": 800, "sampling_rate": 105, "lag": 1.5957303065690547, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9503826191188939, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4512946597313967, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7079.253653679712, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239580043669963, "grain_number": 5, "grain_density": 1912.7192029303114, "grain_outer_radius": 0.03356492605038225, "grain_initial_inner_radius": 0.014836800975202971, "grain_initial_height": 0.12061701372156697, "grain_separation": 0.00645516711367382, "grains_center_of_mass_position": 0.3970060217977008, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003200004647747746, "throat_radius": 0.011701923061372707, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550846519005248}], "aerodynamic_surfaces": [{"length": 0.5575507159604688, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334723511278024]}, {"n": 4, "root_chord": 0.1195161579170365, "tip_chord": 0.05964303683909463, "span": 0.11016284244862279, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508374034665589]}, {"top_radius": 0.06340129880464923, "bottom_radius": 0.04349129899278068, "length": 0.05872229153085968, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008971395971487, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171642755775025, "upper_button_position": 0.08373286401964619}], "rail_length": 5, "inclination": 83.79545737835787, "heading": 53.006877401850794} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349118795927991, "mass": 15.238009738552407, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328147192143406, "I_33_without_motor": 0.050778565583433986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.154282847752325, "trigger": 800, "sampling_rate": 105, "lag": 1.5135865141362677, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8670442503996314, "trigger": "apogee", "sampling_rate": 105, "lag": 1.646649442658092, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5135.533786050565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032072296617535315, "grain_number": 5, "grain_density": 1804.6189364157894, "grain_outer_radius": 0.03335651720144439, "grain_initial_inner_radius": 0.015394496879964935, "grain_initial_height": 0.11965866025028435, "grain_separation": 0.0034888646269247703, "grains_center_of_mass_position": 0.39849636458689996, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008529754064740641, "throat_radius": 0.011161970691639992, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545615723098493}], "aerodynamic_surfaces": [{"length": 0.5580890210797474, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335899910178764]}, {"n": 4, "root_chord": 0.12016976260266198, "tip_chord": 0.059701265602569414, "span": 0.10989973478615987, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487475672757192]}, {"top_radius": 0.06317859277970346, "bottom_radius": 0.042962812649235245, "length": 0.05782997919287977, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005723974016487, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172682454336773, "upper_button_position": 0.08330415196797136}], "rail_length": 5, "inclination": 83.47343718457321, "heading": 50.119030795120956} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350588535574198, "mass": 15.044389547053171, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316814615319023, "I_33_without_motor": 0.03631123895270991, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94547932629756, "trigger": 800, "sampling_rate": 105, "lag": 1.658177941725975, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9409981963845443, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5076817595661391, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7227.0916859561175, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324132649038221, "grain_number": 5, "grain_density": 1781.7138480298981, "grain_outer_radius": 0.03316675705640334, "grain_initial_inner_radius": 0.015306849456303829, "grain_initial_height": 0.11992434081120544, "grain_separation": 0.006008609086947156, "grains_center_of_mass_position": 0.39586269143434843, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009229672025849334, "throat_radius": 0.01169562865116875, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531833483174013}], "aerodynamic_surfaces": [{"length": 0.5584876040770667, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336838006118302]}, {"n": 4, "root_chord": 0.11973245548499366, "tip_chord": 0.06048802564706975, "span": 0.11056222731773159, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500117082298954]}, {"top_radius": 0.06528277102317519, "bottom_radius": 0.04358651772115965, "length": 0.060727380112239125, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990152348783504, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182764611168452, "upper_button_position": 0.08073877376150518}], "rail_length": 5, "inclination": 83.95170997453462, "heading": 51.35458464150644} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350772037384755, "mass": 15.472211410326105, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319741506505305, "I_33_without_motor": 0.0362454807161112, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.949525605071772, "trigger": 800, "sampling_rate": 105, "lag": 1.3707436886372326, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9670401173718822, "trigger": "apogee", "sampling_rate": 105, "lag": 1.413808917894398, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7768.481307176976, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032642400499609814, "grain_number": 5, "grain_density": 1783.8263620386717, "grain_outer_radius": 0.0333397910198163, "grain_initial_inner_radius": 0.015583175545215792, "grain_initial_height": 0.12030448008701153, "grain_separation": 0.004365724480740756, "grains_center_of_mass_position": 0.398123847153142, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.459592498134293e-05, "throat_radius": 0.011293947069642159, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558417852785415}], "aerodynamic_surfaces": [{"length": 0.5587562673110954, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336440756872375]}, {"n": 4, "root_chord": 0.12099340676429549, "tip_chord": 0.06058296532891347, "span": 0.10896583002067792, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049419497348125]}, {"top_radius": 0.06445341055865093, "bottom_radius": 0.043694361353362805, "length": 0.05918965300669468, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010644626488223, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175685165456192, "upper_button_position": 0.0834959461032031}], "rail_length": 5, "inclination": 84.12887631199368, "heading": 53.481653493368256} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349921748343397, "mass": 15.107035167122614, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308943505072301, "I_33_without_motor": 0.023617472446508195, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93304051670128, "trigger": 800, "sampling_rate": 105, "lag": 1.543918968531675, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0764674897712125, "trigger": "apogee", "sampling_rate": 105, "lag": 1.519955695575896, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7390.587796067142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345569206914725, "grain_number": 5, "grain_density": 1887.909423943087, "grain_outer_radius": 0.03292083601474878, "grain_initial_inner_radius": 0.014918575531070845, "grain_initial_height": 0.12036795472728241, "grain_separation": 0.005447680378686744, "grains_center_of_mass_position": 0.3963726974885549, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.429910030391475e-05, "throat_radius": 0.010823879279681215, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551648311947408}], "aerodynamic_surfaces": [{"length": 0.5571404461820995, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133156261067633]}, {"n": 4, "root_chord": 0.12050137783955801, "tip_chord": 0.060322918894410604, "span": 0.1102412493765308, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0513213399680719]}, {"top_radius": 0.06269942974688558, "bottom_radius": 0.04368625113047759, "length": 0.06083658575179125, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003710569171439, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190750453359658, "upper_button_position": 0.08129601158117805}], "rail_length": 5, "inclination": 83.50977111762211, "heading": 52.960475621521404} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350401396651262, "mass": 15.400237575509578, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324748680849387, "I_33_without_motor": 0.026212927298117326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.058863528259275, "trigger": 800, "sampling_rate": 105, "lag": 1.5203454266422656, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.04997123893917, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3861299230603659, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5601.5089152599485, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03292156190745393, "grain_number": 5, "grain_density": 1840.0936155312768, "grain_outer_radius": 0.03261540414076145, "grain_initial_inner_radius": 0.01495376745759846, "grain_initial_height": 0.119457695422413, "grain_separation": 0.0054724632288913975, "grains_center_of_mass_position": 0.39772532841237435, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006446026053610192, "throat_radius": 0.010932578709485751, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254748576994718}], "aerodynamic_surfaces": [{"length": 0.5578864957633846, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334471966348796]}, {"n": 4, "root_chord": 0.11965935006241543, "tip_chord": 0.06066688784671298, "span": 0.10985369623831828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510060194955562]}, {"top_radius": 0.06362935738526382, "bottom_radius": 0.04406155372220575, "length": 0.05862738191366851, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698387195777507, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172527403519106, "upper_button_position": 0.08113445542559639}], "rail_length": 5, "inclination": 85.46945389492119, "heading": 53.49717088969904} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350347230673639, "mass": 15.85658551163888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301892023591068, "I_33_without_motor": 0.056075952495983405, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952503404530468, "trigger": 800, "sampling_rate": 105, "lag": 1.4565555818305058, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.065876721176838, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7398971421780902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6172.494727885397, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03279418083020908, "grain_number": 5, "grain_density": 1858.0237293688576, "grain_outer_radius": 0.03321805697944004, "grain_initial_inner_radius": 0.015193742969585347, "grain_initial_height": 0.12049019410756236, "grain_separation": 0.004744325576523621, "grains_center_of_mass_position": 0.3976113589845402, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008852578929513386, "throat_radius": 0.010990898706692783, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255209909260881}], "aerodynamic_surfaces": [{"length": 0.5582722011568177, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337259981249515]}, {"n": 4, "root_chord": 0.12016774837167499, "tip_chord": 0.06044910060866847, "span": 0.10932730703071429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507460269125584]}, {"top_radius": 0.06398162640649974, "bottom_radius": 0.04309938200241725, "length": 0.06038553054294608, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008983223057662, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199094752790755, "upper_button_position": 0.08098884702669074}], "rail_length": 5, "inclination": 85.39539035271729, "heading": 51.351897215803035} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.063514141853115, "mass": 15.680719882206873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324049470924905, "I_33_without_motor": 0.034731134354082205, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.092739449027206, "trigger": 800, "sampling_rate": 105, "lag": 1.55169872308578, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9926636258165302, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4978409153241574, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7781.122883036622, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220099568992164, "grain_number": 5, "grain_density": 1798.6872099665134, "grain_outer_radius": 0.03288714851087343, "grain_initial_inner_radius": 0.015237100259302593, "grain_initial_height": 0.1197765268366228, "grain_separation": 0.004019930733401008, "grains_center_of_mass_position": 0.39770680201219893, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004968829880746521, "throat_radius": 0.011023789327535238, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558356277144342}], "aerodynamic_surfaces": [{"length": 0.5570469167955411, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13330324429193]}, {"n": 4, "root_chord": 0.12092130390482195, "tip_chord": 0.059969250692394296, "span": 0.11083080290192436, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049942495622435]}, {"top_radius": 0.0635332461810592, "bottom_radius": 0.041829689885023114, "length": 0.06057326041967124, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994844045327047, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155155563121861, "upper_button_position": 0.08396884822051853}], "rail_length": 5, "inclination": 84.70385119150961, "heading": 53.823007964197124} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350512615232992, "mass": 14.398969563840787, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317615133181109, "I_33_without_motor": 0.0432338594552933, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.093685095096895, "trigger": 800, "sampling_rate": 105, "lag": 1.4427947187284487, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9328865620483445, "trigger": "apogee", "sampling_rate": 105, "lag": 1.514450806227821, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6850.78176071306, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03186550577896726, "grain_number": 5, "grain_density": 1860.2285497848509, "grain_outer_radius": 0.0327689704181854, "grain_initial_inner_radius": 0.015383663171662123, "grain_initial_height": 0.11938141830099115, "grain_separation": 0.0045449717386519106, "grains_center_of_mass_position": 0.3982902320873537, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017660168481420614, "throat_radius": 0.011426969909507081, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534660516728557}], "aerodynamic_surfaces": [{"length": 0.5578631510701616, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351826726867922]}, {"n": 4, "root_chord": 0.11972085925156306, "tip_chord": 0.05961510681805386, "span": 0.10960943640510519, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483294681447466]}, {"top_radius": 0.06403613920185222, "bottom_radius": 0.044654329618014264, "length": 0.05947497569688036, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003340898381308, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168754032497413, "upper_button_position": 0.08345868658838951}], "rail_length": 5, "inclination": 84.62026693903486, "heading": 52.26771994152089} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350008130191764, "mass": 15.450220630701956, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321376666674326, "I_33_without_motor": 0.037110641420925516, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977847972011192, "trigger": 800, "sampling_rate": 105, "lag": 1.4402015585133678, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0136340651127989, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3530543564052022, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6227.772998078314, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254589221181188, "grain_number": 5, "grain_density": 1799.3683768745973, "grain_outer_radius": 0.03280894330887266, "grain_initial_inner_radius": 0.015935035251964477, "grain_initial_height": 0.11897481407234842, "grain_separation": 0.004423549423880867, "grains_center_of_mass_position": 0.39770472921578803, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005559132536585249, "throat_radius": 0.010970593765765684, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255385555411057}], "aerodynamic_surfaces": [{"length": 0.5595744061207282, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338253912517575]}, {"n": 4, "root_chord": 0.11992737261917061, "tip_chord": 0.060924109387375254, "span": 0.11003610449003125, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491624262621246]}, {"top_radius": 0.06470636336364137, "bottom_radius": 0.042839634035924785, "length": 0.05887391321188741, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983742353541221, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616944209858173, "upper_button_position": 0.08143002549594913}], "rail_length": 5, "inclination": 85.61267712542657, "heading": 54.97822326123482} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349871370156115, "mass": 16.050408988168954, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319830633662944, "I_33_without_motor": 0.052617756031136026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.832068858280778, "trigger": 800, "sampling_rate": 105, "lag": 1.5260819002804638, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.991609372129796, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2976595977050873, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6119.728259811588, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032708170637143964, "grain_number": 5, "grain_density": 1840.9032439333596, "grain_outer_radius": 0.033581494911596815, "grain_initial_inner_radius": 0.01496191925321804, "grain_initial_height": 0.11947126742228856, "grain_separation": 0.006896439278228666, "grains_center_of_mass_position": 0.3959493348652506, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014767642260925895, "throat_radius": 0.011395033533474153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557105560144213}], "aerodynamic_surfaces": [{"length": 0.5587002623618015, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343341352990604]}, {"n": 4, "root_chord": 0.12004025821270174, "tip_chord": 0.06019498400867186, "span": 0.10988829037121087, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490887519843595]}, {"top_radius": 0.0632191281435805, "bottom_radius": 0.04468021196807209, "length": 0.06103676399237725, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980545064391835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175167545405335, "upper_button_position": 0.08053775189865009}], "rail_length": 5, "inclination": 83.61810520383195, "heading": 53.374131473835526} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350107190167602, "mass": 14.306994678151186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331155230459951, "I_33_without_motor": 0.025735950724694874, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04472360851293, "trigger": 800, "sampling_rate": 105, "lag": 1.534474988216446, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9138527096921016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6474951970646696, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5894.174398983154, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315092572083189, "grain_number": 5, "grain_density": 1877.4339771048706, "grain_outer_radius": 0.03298337010943539, "grain_initial_inner_radius": 0.014238654928498228, "grain_initial_height": 0.12032492814850809, "grain_separation": 0.005930446359786589, "grains_center_of_mass_position": 0.3961728758565439, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000883643244154586, "throat_radius": 0.010636452934907501, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558446287894578}], "aerodynamic_surfaces": [{"length": 0.5569835795675488, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345155758866394]}, {"n": 4, "root_chord": 0.11908882304297912, "tip_chord": 0.06019316782118982, "span": 0.11011576815095475, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050413957278497]}, {"top_radius": 0.06452580915326062, "bottom_radius": 0.043014524595701355, "length": 0.0587783231355254, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005129723141654, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183789813497447, "upper_button_position": 0.08213399096442076}], "rail_length": 5, "inclination": 85.7630408837958, "heading": 56.59070538861654} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350325436909485, "mass": 15.643271465401288, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311902424486007, "I_33_without_motor": 0.021463366358236813, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12003670431086, "trigger": 800, "sampling_rate": 105, "lag": 1.4330977178763333, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.969773813504327, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4581341411828377, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8791.85573363672, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03375896162966814, "grain_number": 5, "grain_density": 1858.9027218435301, "grain_outer_radius": 0.033332559202194356, "grain_initial_inner_radius": 0.01433262417803646, "grain_initial_height": 0.12120290074077478, "grain_separation": 0.005407776860059052, "grains_center_of_mass_position": 0.3948723648139163, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006389197481202123, "throat_radius": 0.010635074938702218, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2573537675911715}], "aerodynamic_surfaces": [{"length": 0.5592422650382325, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343610588139346]}, {"n": 4, "root_chord": 0.11963028997424072, "tip_chord": 0.0600945892389272, "span": 0.10981733359811571, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489951996069877]}, {"top_radius": 0.06422794529857483, "bottom_radius": 0.04262523098307621, "length": 0.05833603561561774, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982711641818052, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184001900819396, "upper_button_position": 0.07987097409986565}], "rail_length": 5, "inclination": 84.54236470141835, "heading": 53.84326971552187} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350807274471154, "mass": 15.856344927344336, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320759285675196, "I_33_without_motor": 0.013206992852137674, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.855119501961827, "trigger": 800, "sampling_rate": 105, "lag": 1.3806374713571012, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0674926317981128, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4982874328439666, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5796.884851070478, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033485124408399784, "grain_number": 5, "grain_density": 1777.739466524186, "grain_outer_radius": 0.0333413381484002, "grain_initial_inner_radius": 0.015585104117747283, "grain_initial_height": 0.11954830526067194, "grain_separation": 0.006435156064465833, "grains_center_of_mass_position": 0.3950185176641033, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.0904280261229779e-05, "throat_radius": 0.010082800188207406, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255441791192731}], "aerodynamic_surfaces": [{"length": 0.5590937451425961, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324453395941887]}, {"n": 4, "root_chord": 0.12000352550286947, "tip_chord": 0.06008041884601601, "span": 0.10906716935375557, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507097784509773]}, {"top_radius": 0.06550068478765032, "bottom_radius": 0.0426489250050897, "length": 0.061232964083008865, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998973607508638, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176970220135449, "upper_button_position": 0.08220033873731891}], "rail_length": 5, "inclination": 85.56177039135694, "heading": 52.89828614050593} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350225706477629, "mass": 15.442826745240602, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319126704409734, "I_33_without_motor": 0.033847094153949854, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.052974226614586, "trigger": 800, "sampling_rate": 105, "lag": 1.402218173279393, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0833610393790707, "trigger": "apogee", "sampling_rate": 105, "lag": 1.421689540279756, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6263.4388284078295, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033030939420283796, "grain_number": 5, "grain_density": 1819.866762548401, "grain_outer_radius": 0.03280324851058589, "grain_initial_inner_radius": 0.015339210042310408, "grain_initial_height": 0.12013473895030154, "grain_separation": 0.004612457998599768, "grains_center_of_mass_position": 0.3984284497588538, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004724058749832882, "throat_radius": 0.01105804229824967, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556309769155163}], "aerodynamic_surfaces": [{"length": 0.5588539267801022, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135070756089037]}, {"n": 4, "root_chord": 0.12056703119332014, "tip_chord": 0.05960484598305904, "span": 0.10952748436609736, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498363863143811]}, {"top_radius": 0.0626864852203732, "bottom_radius": 0.04259488365254645, "length": 0.05900076761077909, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004726735937806, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617474942039724, "upper_button_position": 0.08299773155405665}], "rail_length": 5, "inclination": 85.03001463422099, "heading": 50.3657638804585} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349904017952673, "mass": 15.373400408200066, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318078229708024, "I_33_without_motor": 0.03142510957128495, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.129433235997025, "trigger": 800, "sampling_rate": 105, "lag": 1.3869731714895805, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0267160215954112, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2314607420715997, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7409.17952097876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324775247937842, "grain_number": 5, "grain_density": 1805.3615327681791, "grain_outer_radius": 0.032860330303628726, "grain_initial_inner_radius": 0.014639288779588052, "grain_initial_height": 0.1194025531416537, "grain_separation": 0.003935009600386025, "grains_center_of_mass_position": 0.3985270078554722, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011799530952844586, "throat_radius": 0.01161905145978206, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533317473728927}], "aerodynamic_surfaces": [{"length": 0.5578537353798755, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342883904380383]}, {"n": 4, "root_chord": 0.1197072570200499, "tip_chord": 0.060386126016526195, "span": 0.10979392894561958, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485202938450842]}, {"top_radius": 0.06411403689699208, "bottom_radius": 0.04544052906305324, "length": 0.060305635823937415, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009678566818395, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181313775266072, "upper_button_position": 0.08283647915523229}], "rail_length": 5, "inclination": 83.74801060054213, "heading": 52.04215133943139} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350208976373457, "mass": 15.16822492017067, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31468095425531, "I_33_without_motor": 0.030483729368839693, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.830462878641798, "trigger": 800, "sampling_rate": 105, "lag": 1.6515214423157736, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9897703670172443, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5509028594510177, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6208.770134419225, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032876971554909346, "grain_number": 5, "grain_density": 1846.8452014599973, "grain_outer_radius": 0.033105650617834534, "grain_initial_inner_radius": 0.01505720986893972, "grain_initial_height": 0.120347334295354, "grain_separation": 0.005998465296579969, "grains_center_of_mass_position": 0.3988681835952888, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012677434388068565, "throat_radius": 0.011288324514212755, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546011658269767}], "aerodynamic_surfaces": [{"length": 0.5572071508328276, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347086792327579]}, {"n": 4, "root_chord": 0.12060128971152476, "tip_chord": 0.06117210803004308, "span": 0.10975784277958349, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503621595638635]}, {"top_radius": 0.063991287972317, "bottom_radius": 0.04463698499059111, "length": 0.060606730542874646, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.70080094723248, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174894487161888, "upper_button_position": 0.08331149851629116}], "rail_length": 5, "inclination": 87.18491928083894, "heading": 56.22498111281948} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350173783172679, "mass": 14.922482363231717, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316636202062075, "I_33_without_motor": 0.02426369023643918, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03404141174674, "trigger": 800, "sampling_rate": 105, "lag": 1.2962482541301779, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8944648038888763, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3155044450914892, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8829.426290777577, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03405430877903891, "grain_number": 5, "grain_density": 1844.7138214707122, "grain_outer_radius": 0.03302750618632347, "grain_initial_inner_radius": 0.014994654575051593, "grain_initial_height": 0.11982898201355925, "grain_separation": 0.004372006845042544, "grains_center_of_mass_position": 0.3974613168161249, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00015053709936613886, "throat_radius": 0.010785181704683731, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557168052233323}], "aerodynamic_surfaces": [{"length": 0.5583194698448537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134357264504676]}, {"n": 4, "root_chord": 0.12022687345796769, "tip_chord": 0.060412639333538055, "span": 0.1093326578129753, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490559559640442]}, {"top_radius": 0.06367890583531087, "bottom_radius": 0.04346920765106828, "length": 0.06094450054839125, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001771994979419, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172615540959245, "upper_button_position": 0.08291564540201735}], "rail_length": 5, "inclination": 84.75983426840268, "heading": 55.03286617576655} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349870635248614, "mass": 14.917932486131201, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315241144132336, "I_33_without_motor": 0.013760320559271271, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.053766667274315, "trigger": 800, "sampling_rate": 105, "lag": 1.4363165198475922, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8631961900703864, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4336141206506665, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7999.673187975894, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328806912342562, "grain_number": 5, "grain_density": 1819.4520261769894, "grain_outer_radius": 0.032863773614454764, "grain_initial_inner_radius": 0.015122136366731381, "grain_initial_height": 0.11972673732282244, "grain_separation": 0.005665244795933426, "grains_center_of_mass_position": 0.3970357669774025, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006635574408915542, "throat_radius": 0.01134222156325871, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549328311299495}], "aerodynamic_surfaces": [{"length": 0.5581193399685959, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344728492523122]}, {"n": 4, "root_chord": 0.1194924943560741, "tip_chord": 0.06047757718225514, "span": 0.10890622635924702, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049726023786747]}, {"top_radius": 0.06434842751099777, "bottom_radius": 0.04384621093484349, "length": 0.06110188821147695, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987969392933338, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617110611539307, "upper_button_position": 0.08168632775402673}], "rail_length": 5, "inclination": 83.72366222607947, "heading": 53.72944719401331} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349975735554993, "mass": 16.233631233605234, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32909303914485, "I_33_without_motor": 0.031387426350769174, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.183035350660859, "trigger": 800, "sampling_rate": 105, "lag": 1.3419825812805584, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0371707830756516, "trigger": "apogee", "sampling_rate": 105, "lag": 1.43820168269451, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5835.953934458078, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03376156768120569, "grain_number": 5, "grain_density": 1805.7908952585415, "grain_outer_radius": 0.03286870308145759, "grain_initial_inner_radius": 0.014429567782524922, "grain_initial_height": 0.11902042788436931, "grain_separation": 0.005482128839795309, "grains_center_of_mass_position": 0.3976063703478403, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007919171516155423, "throat_radius": 0.010954655804670779, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551892105650644}], "aerodynamic_surfaces": [{"length": 0.5581713261496556, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1311741325892255]}, {"n": 4, "root_chord": 0.11937788828663591, "tip_chord": 0.06055747018771324, "span": 0.11016842521088349, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505450054966337]}, {"top_radius": 0.0638535118081791, "bottom_radius": 0.042890196034161485, "length": 0.05969724114709247, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995511464749657, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61784815809947, "upper_button_position": 0.08170298837549572}], "rail_length": 5, "inclination": 86.1541086112245, "heading": 54.61999635421388} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350986847855959, "mass": 15.581592595376517, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33461028319783, "I_33_without_motor": 0.028987936981947866, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919053883806315, "trigger": 800, "sampling_rate": 105, "lag": 1.4874770697024466, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0613832783637196, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3906524795142305, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6050.016783199742, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032342114524956035, "grain_number": 5, "grain_density": 1843.112050284751, "grain_outer_radius": 0.03349699279471271, "grain_initial_inner_radius": 0.014926288566974857, "grain_initial_height": 0.12004715588496367, "grain_separation": 0.005991521136370701, "grains_center_of_mass_position": 0.3990349111320461, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012328364518307587, "throat_radius": 0.011412041762264822, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554855042136956}], "aerodynamic_surfaces": [{"length": 0.5583642836334146, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341355206344588]}, {"n": 4, "root_chord": 0.11981260266840148, "tip_chord": 0.060317978311680454, "span": 0.10992004713214519, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0474401656316923]}, {"top_radius": 0.06306221976511298, "bottom_radius": 0.04224913655535794, "length": 0.06104723493432945, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007298023459442, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176267718696102, "upper_button_position": 0.08310303047633394}], "rail_length": 5, "inclination": 86.41883825446446, "heading": 50.27348224642568} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349819018592047, "mass": 15.213190861007009, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3371866379934785, "I_33_without_motor": 0.039559448763759664, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.102961057842505, "trigger": 800, "sampling_rate": 105, "lag": 1.5447853198364125, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.912866579502991, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6215126848832064, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5179.12851666849, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288146844107629, "grain_number": 5, "grain_density": 1836.822717410388, "grain_outer_radius": 0.03321847599671208, "grain_initial_inner_radius": 0.014842873432139577, "grain_initial_height": 0.11990517465140423, "grain_separation": 0.005268709811690751, "grains_center_of_mass_position": 0.39730299143574604, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005368747061186018, "throat_radius": 0.010956310454865415, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550844091386846}], "aerodynamic_surfaces": [{"length": 0.5572192895716803, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349236286556046]}, {"n": 4, "root_chord": 0.11999469055854181, "tip_chord": 0.05971169075064686, "span": 0.10982710135058527, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483026935151811]}, {"top_radius": 0.06356112462662122, "bottom_radius": 0.04187291998784662, "length": 0.05849295220349393, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998631142785239, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186130605982259, "upper_button_position": 0.08125005368029803}], "rail_length": 5, "inclination": 83.38233690006031, "heading": 51.29831613459381} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351012988217908, "mass": 15.09583724351072, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304954902897452, "I_33_without_motor": 0.03503403604552721, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959768369399988, "trigger": 800, "sampling_rate": 105, "lag": 1.4126777958097412, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9010203973434668, "trigger": "apogee", "sampling_rate": 105, "lag": 1.087693659843451, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5328.806697937412, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333496535954233, "grain_number": 5, "grain_density": 1810.6352659418083, "grain_outer_radius": 0.0331735907099372, "grain_initial_inner_radius": 0.015095755250198824, "grain_initial_height": 0.11939869266214632, "grain_separation": 0.005776497111284222, "grains_center_of_mass_position": 0.3978746451146623, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013554719174290375, "throat_radius": 0.010971994371454255, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543121787261708}], "aerodynamic_surfaces": [{"length": 0.5584594558001266, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350829027062885]}, {"n": 4, "root_chord": 0.11957363661134568, "tip_chord": 0.05977441213658921, "span": 0.1098438121912105, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497342966344183]}, {"top_radius": 0.06365485056002376, "bottom_radius": 0.04322468196792869, "length": 0.0602605462769019, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011840552521315, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173845234354671, "upper_button_position": 0.08379953181666433}], "rail_length": 5, "inclination": 86.20362660672916, "heading": 53.53335449153018} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06351089331572149, "mass": 14.830625926113656, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317953232097861, "I_33_without_motor": 0.02055987730029967, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.866206293222044, "trigger": 800, "sampling_rate": 105, "lag": 1.6479340586544318, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0749700954054355, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2567501720849426, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4416.37047740847, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308639501244588, "grain_number": 5, "grain_density": 1776.1958280631745, "grain_outer_radius": 0.03253202615536216, "grain_initial_inner_radius": 0.014250573454680572, "grain_initial_height": 0.12036060349129715, "grain_separation": 0.0043821216818295495, "grains_center_of_mass_position": 0.3983935547024916, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00318476812074333, "throat_radius": 0.009794381992721203, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566583238057207}], "aerodynamic_surfaces": [{"length": 0.5586473044325214, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341979467711676]}, {"n": 4, "root_chord": 0.11915176822031419, "tip_chord": 0.06070422430378737, "span": 0.11066100964381591, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485770376605055]}, {"top_radius": 0.0631303126537843, "bottom_radius": 0.04342348170724507, "length": 0.060945112071493744, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701069208931394, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618793313341345, "upper_button_position": 0.082275895590049}], "rail_length": 5, "inclination": 84.29838047741151, "heading": 50.96966039427771} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349674080638582, "mass": 15.338753446301576, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333496368440275, "I_33_without_motor": 0.04906043802718568, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.938048413600596, "trigger": 800, "sampling_rate": 105, "lag": 1.448165856741005, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.123332801548593, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5416084648065147, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6383.860812883423, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287026386712466, "grain_number": 5, "grain_density": 1820.6445572374716, "grain_outer_radius": 0.03259514277072566, "grain_initial_inner_radius": 0.015121641532310479, "grain_initial_height": 0.11954478463444028, "grain_separation": 0.006715586496989778, "grains_center_of_mass_position": 0.39878479910458653, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009116998066175954, "throat_radius": 0.011516173766060967, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254298858859668}], "aerodynamic_surfaces": [{"length": 0.5586588958268509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325439207813017]}, {"n": 4, "root_chord": 0.12102132975773514, "tip_chord": 0.060622594155852236, "span": 0.109792507766474, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514266253660842]}, {"top_radius": 0.06399935985071653, "bottom_radius": 0.04265751855804406, "length": 0.05972846573169712, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.70019670788223, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185773424324611, "upper_button_position": 0.08161936544976889}], "rail_length": 5, "inclination": 85.03677114639804, "heading": 57.150433871884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0634850802090702, "mass": 16.371027613818143, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310547541143295, "I_33_without_motor": 0.01467396376238269, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971935191501695, "trigger": 800, "sampling_rate": 105, "lag": 1.4890969321880683, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8305350026893334, "trigger": "apogee", "sampling_rate": 105, "lag": 1.327969504534879, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5912.8636444715385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03312043214383573, "grain_number": 5, "grain_density": 1927.449555875688, "grain_outer_radius": 0.03356181980877467, "grain_initial_inner_radius": 0.014891423238616038, "grain_initial_height": 0.12031728626507752, "grain_separation": 0.002843374862253758, "grains_center_of_mass_position": 0.39786977731256434, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017279994029442125, "throat_radius": 0.011370631045705371, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530749321569328}], "aerodynamic_surfaces": [{"length": 0.558583008195458, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133313950263229]}, {"n": 4, "root_chord": 0.1205390723229915, "tip_chord": 0.060064498169295856, "span": 0.10914434830136877, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486256331682962]}, {"top_radius": 0.06303869173904085, "bottom_radius": 0.04334241896675077, "length": 0.06039460649791266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700315788809586, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176989908741637, "upper_button_position": 0.08261679793542231}], "rail_length": 5, "inclination": 84.57300168138624, "heading": 53.42830293389709} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349676258082211, "mass": 15.550079665457028, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3220374027875055, "I_33_without_motor": 0.02803817736187917, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110117700387695, "trigger": 800, "sampling_rate": 105, "lag": 1.592751655016865, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.020861340661011, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2889021038766366, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7515.027791161806, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03208507493879992, "grain_number": 5, "grain_density": 1807.8310953132836, "grain_outer_radius": 0.032653246440146104, "grain_initial_inner_radius": 0.014496741633876108, "grain_initial_height": 0.11971647679328945, "grain_separation": 0.004443892247036465, "grains_center_of_mass_position": 0.39799282770789723, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001758093176557046, "throat_radius": 0.010558290258537797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541063582769347}], "aerodynamic_surfaces": [{"length": 0.5574700256208948, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132974300822342]}, {"n": 4, "root_chord": 0.12059419399155502, "tip_chord": 0.06015270814714489, "span": 0.11039770837199864, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503272102061094]}, {"top_radius": 0.06334588503376054, "bottom_radius": 0.04412899259199668, "length": 0.058585901024034784, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005563359065048, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177050815205015, "upper_button_position": 0.08285125438600327}], "rail_length": 5, "inclination": 84.89075239914698, "heading": 51.91223455107619} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350097862718543, "mass": 15.99864414379339, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319386653538659, "I_33_without_motor": 0.016029851295534553, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967631313537453, "trigger": 800, "sampling_rate": 105, "lag": 1.4234050626019625, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1102337750155393, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6047250892457992, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6943.593163613765, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032970849767163427, "grain_number": 5, "grain_density": 1789.2698948116777, "grain_outer_radius": 0.033198891474826894, "grain_initial_inner_radius": 0.015181760004816459, "grain_initial_height": 0.11823091393865963, "grain_separation": 0.004277289612213262, "grains_center_of_mass_position": 0.3978175655780725, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.966842271448579e-05, "throat_radius": 0.011083357327800017, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255917561214155}], "aerodynamic_surfaces": [{"length": 0.5581543937817456, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1321826137735755]}, {"n": 4, "root_chord": 0.1193431684746548, "tip_chord": 0.05941108053009346, "span": 0.11039870213848417, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04893658856668]}, {"top_radius": 0.065204580011489, "bottom_radius": 0.044144403002713446, "length": 0.05860213324979593, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998899494759117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182599132414762, "upper_button_position": 0.08163003623443543}], "rail_length": 5, "inclination": 84.75963972676827, "heading": 53.65058032459094} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350610861773508, "mass": 16.210152038829555, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3115623926158655, "I_33_without_motor": 0.018690429344380685, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000601275807822, "trigger": 800, "sampling_rate": 105, "lag": 1.575414695882725, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0585238851188794, "trigger": "apogee", "sampling_rate": 105, "lag": 1.287011183076681, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7895.127360913435, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03289723003390041, "grain_number": 5, "grain_density": 1840.7781576451916, "grain_outer_radius": 0.032482416202731894, "grain_initial_inner_radius": 0.014404814678292787, "grain_initial_height": 0.12014000765387202, "grain_separation": 0.004337200705707123, "grains_center_of_mass_position": 0.3961824672473887, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009692819556908509, "throat_radius": 0.010985758521474674, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564916947896663}], "aerodynamic_surfaces": [{"length": 0.5573353359000542, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328543350630926]}, {"n": 4, "root_chord": 0.12022002521875316, "tip_chord": 0.06040598784634364, "span": 0.11041700891012149, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501623253363954]}, {"top_radius": 0.06385020651383283, "bottom_radius": 0.044146241154454965, "length": 0.05938337478370058, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994657958083915, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178499172892007, "upper_button_position": 0.08161587851919083}], "rail_length": 5, "inclination": 85.75637502520127, "heading": 60.45533081165477} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349676039784691, "mass": 15.596956505840385, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315300806406762, "I_33_without_motor": 0.04291171777852177, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083437890558471, "trigger": 800, "sampling_rate": 105, "lag": 1.4922584222955861, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1107657263935657, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6183218074713652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6235.518128667997, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033028145215859145, "grain_number": 5, "grain_density": 1892.8725315218137, "grain_outer_radius": 0.0329277358306356, "grain_initial_inner_radius": 0.014031340235779012, "grain_initial_height": 0.12007823466695054, "grain_separation": 0.005344238039258051, "grains_center_of_mass_position": 0.39592878618778177, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.5314921282451465e-05, "throat_radius": 0.011239838410174067, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546440870833429}], "aerodynamic_surfaces": [{"length": 0.5577684418778677, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335693346104274]}, {"n": 4, "root_chord": 0.11993223276138369, "tip_chord": 0.06026171201976981, "span": 0.1095032267732138, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508603563464358]}, {"top_radius": 0.06375058084995956, "bottom_radius": 0.044628237544814466, "length": 0.060892865407861686, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012776169765251, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174605383108946, "upper_button_position": 0.08381707866563048}], "rail_length": 5, "inclination": 84.82845775335035, "heading": 51.9161689418651} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349049574020156, "mass": 14.254506312728038, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312440776557148, "I_33_without_motor": 0.03468171997549192, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.968422783337235, "trigger": 800, "sampling_rate": 105, "lag": 1.5393143187109428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0046792549450894, "trigger": "apogee", "sampling_rate": 105, "lag": 1.258976908046367, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7326.75827050986, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03394494625690322, "grain_number": 5, "grain_density": 1836.0835259392543, "grain_outer_radius": 0.03321430375984852, "grain_initial_inner_radius": 0.014669834493791048, "grain_initial_height": 0.11957904464092525, "grain_separation": 0.004584408197997168, "grains_center_of_mass_position": 0.3971620769844902, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005232310496930734, "throat_radius": 0.010892178216547947, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543845291378695}], "aerodynamic_surfaces": [{"length": 0.5569398991026334, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134129727341345]}, {"n": 4, "root_chord": 0.12005746808957822, "tip_chord": 0.05991723146513006, "span": 0.10982945241436076, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481774910746453]}, {"top_radius": 0.06305400520627905, "bottom_radius": 0.042167146606442725, "length": 0.06049103044591016, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997433501462398, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178588051116498, "upper_button_position": 0.08188454503458997}], "rail_length": 5, "inclination": 84.56104383980478, "heading": 49.71666146261301} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350864964904249, "mass": 15.635986328129002, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317528328895653, "I_33_without_motor": 0.04390393872257388, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01004489426776, "trigger": 800, "sampling_rate": 105, "lag": 1.5582684868810963, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9649469119226874, "trigger": "apogee", "sampling_rate": 105, "lag": 1.173035824281045, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5766.888656922861, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303325130092604, "grain_number": 5, "grain_density": 1769.7433029712877, "grain_outer_radius": 0.03259747061245128, "grain_initial_inner_radius": 0.015513703435890596, "grain_initial_height": 0.11963556812681196, "grain_separation": 0.0050302818320727884, "grains_center_of_mass_position": 0.3963414717549167, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004438539312220881, "throat_radius": 0.01094307958736634, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546645233446123}], "aerodynamic_surfaces": [{"length": 0.5584624228294033, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339945302086625]}, {"n": 4, "root_chord": 0.12089028160034479, "tip_chord": 0.058856215714071236, "span": 0.11009027993561812, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479314724131124]}, {"top_radius": 0.06335064042308901, "bottom_radius": 0.045745389445740095, "length": 0.06013018351536644, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007927822564719, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186956644944694, "upper_button_position": 0.08209711776200246}], "rail_length": 5, "inclination": 84.01700358908754, "heading": 53.49156352278846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350326480214684, "mass": 15.57058770099358, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308928106014046, "I_33_without_motor": 0.03835259508951344, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93870077257933, "trigger": 800, "sampling_rate": 105, "lag": 1.663460761794647, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0058365459807317, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3062680461546243, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8365.582528715062, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032636363306329914, "grain_number": 5, "grain_density": 1776.9771073445925, "grain_outer_radius": 0.03308891099569912, "grain_initial_inner_radius": 0.014772713006265635, "grain_initial_height": 0.12147963643839767, "grain_separation": 0.0047415352267425725, "grains_center_of_mass_position": 0.39660543462178943, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004803578994341214, "throat_radius": 0.010498446285358176, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558633224092037}], "aerodynamic_surfaces": [{"length": 0.556792634854474, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13176047441849]}, {"n": 4, "root_chord": 0.11985278319934434, "tip_chord": 0.059710532753981874, "span": 0.10993720682088408, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050518073931675]}, {"top_radius": 0.06258208969776578, "bottom_radius": 0.043897708682848965, "length": 0.059073780178907825, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011889012609183, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199849239969603, "upper_button_position": 0.081203977263958}], "rail_length": 5, "inclination": 85.4080474522957, "heading": 52.251063792410086} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0635108067937036, "mass": 15.7136142076088, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325778618721023, "I_33_without_motor": 0.047447289925308, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.941966136583838, "trigger": 800, "sampling_rate": 105, "lag": 1.5269535377185794, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9960760111424004, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3039631196301933, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5183.065430339439, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254722408116589, "grain_number": 5, "grain_density": 1773.8924480432474, "grain_outer_radius": 0.03358197828140732, "grain_initial_inner_radius": 0.015005248193947895, "grain_initial_height": 0.12207367493739191, "grain_separation": 0.005012467227685918, "grains_center_of_mass_position": 0.3956106315739483, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001503296081963723, "throat_radius": 0.011089117686744582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533975154645147}], "aerodynamic_surfaces": [{"length": 0.558981271437074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335070359895338]}, {"n": 4, "root_chord": 0.11996689168961712, "tip_chord": 0.05960823004902051, "span": 0.11055241228161697, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048664035598378]}, {"top_radius": 0.06322971549568512, "bottom_radius": 0.04480126003055305, "length": 0.06027921375420264, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001052874531324, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172697904026795, "upper_button_position": 0.0828354970504529}], "rail_length": 5, "inclination": 84.9292613955278, "heading": 52.100845468345824} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350152391585154, "mass": 15.400671652065235, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320644798434085, "I_33_without_motor": 0.030795999820976392, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.094164338426578, "trigger": 800, "sampling_rate": 105, "lag": 1.5158673150424695, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0873976647985097, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5733268794700224, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5800.484563794912, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033064796111352934, "grain_number": 5, "grain_density": 1850.0410703721402, "grain_outer_radius": 0.032800469460005394, "grain_initial_inner_radius": 0.01499200184707448, "grain_initial_height": 0.12029866646792055, "grain_separation": 0.0038760070934360474, "grains_center_of_mass_position": 0.3975014735210417, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009580021416200656, "throat_radius": 0.01028343425376448, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544219210568694}], "aerodynamic_surfaces": [{"length": 0.5593687689036495, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344680793005253]}, {"n": 4, "root_chord": 0.12037351042519606, "tip_chord": 0.05999507736601513, "span": 0.11021811340589448, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486478265674353]}, {"top_radius": 0.06307424516490245, "bottom_radius": 0.04285042521452826, "length": 0.05933652012587451, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698664933392164, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170844459423548, "upper_button_position": 0.08158048744980917}], "rail_length": 5, "inclination": 85.12588461964897, "heading": 48.91928752020612} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349999537269656, "mass": 15.75958228467112, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3198622440726115, "I_33_without_motor": 0.032465897316899445, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952892242378741, "trigger": 800, "sampling_rate": 105, "lag": 1.4574075000966837, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8608913759719122, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8266261558274062, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5756.090436809596, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298965612766797, "grain_number": 5, "grain_density": 1897.2136291012177, "grain_outer_radius": 0.033113871704145856, "grain_initial_inner_radius": 0.015202871502236964, "grain_initial_height": 0.12109303320877735, "grain_separation": 0.0039001371560476745, "grains_center_of_mass_position": 0.39611881194862064, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00042001565897051914, "throat_radius": 0.010453002425988797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561465831409206}], "aerodynamic_surfaces": [{"length": 0.558167220851089, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343847144682946]}, {"n": 4, "root_chord": 0.12043660293965038, "tip_chord": 0.0598468969601106, "span": 0.10947901951158322, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049492273218562]}, {"top_radius": 0.06392358194583278, "bottom_radius": 0.04365495813447015, "length": 0.058855539237859376, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987107398388306, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176253925831516, "upper_button_position": 0.08108534725567895}], "rail_length": 5, "inclination": 85.4325984935833, "heading": 53.72430061333958} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349440118719929, "mass": 15.186701690495738, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319473552173378, "I_33_without_motor": 0.025309919336794582, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.046057027813461, "trigger": 800, "sampling_rate": 105, "lag": 1.599461324723637, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9770477621921607, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2314970187339278, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6889.488965282113, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335241516802101, "grain_number": 5, "grain_density": 1840.1658249874938, "grain_outer_radius": 0.032931245619828166, "grain_initial_inner_radius": 0.01492214129264726, "grain_initial_height": 0.12044570658112198, "grain_separation": 0.006451990856196216, "grains_center_of_mass_position": 0.3958996988238991, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006849709667900542, "throat_radius": 0.009847705855835557, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546218540674354}], "aerodynamic_surfaces": [{"length": 0.5573386964942662, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343104563822206]}, {"n": 4, "root_chord": 0.1202877475223609, "tip_chord": 0.059989518748630725, "span": 0.11070161610276087, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493747684943298]}, {"top_radius": 0.06337774928787274, "bottom_radius": 0.042742842685827974, "length": 0.060628419451111394, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989437893081905, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168269744141884, "upper_button_position": 0.08211681489400202}], "rail_length": 5, "inclination": 85.78288342498257, "heading": 54.06310196489001} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350322074465586, "mass": 14.637613196686521, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306563105469757, "I_33_without_motor": 0.048105554085782855, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036555147242247, "trigger": 800, "sampling_rate": 105, "lag": 1.6102539653999537, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9735359417682093, "trigger": "apogee", "sampling_rate": 105, "lag": 1.800500876157094, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6717.552837386488, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03367377242134217, "grain_number": 5, "grain_density": 1918.6199998541829, "grain_outer_radius": 0.03298845205635316, "grain_initial_inner_radius": 0.015198316781253697, "grain_initial_height": 0.11918966703679376, "grain_separation": 0.004487663335617298, "grains_center_of_mass_position": 0.3959827801557502, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009050440441075669, "throat_radius": 0.011211543289188424, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545393376913132}], "aerodynamic_surfaces": [{"length": 0.5566383711840065, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333671869299329]}, {"n": 4, "root_chord": 0.1203696634945172, "tip_chord": 0.06015420970206138, "span": 0.10972917254076923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483049396218658]}, {"top_radius": 0.06328856788142971, "bottom_radius": 0.04430337509419181, "length": 0.05861929199784102, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003289440286937, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193838087299894, "upper_button_position": 0.08094513529870428}], "rail_length": 5, "inclination": 86.18632005822974, "heading": 55.66061706480502} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349362484244189, "mass": 15.91803293787072, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334953518090299, "I_33_without_motor": 0.018448182312752623, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12553942255833, "trigger": 800, "sampling_rate": 105, "lag": 1.567482869055568, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8968658585805779, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3459125637796565, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6336.259173201391, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033760087802954974, "grain_number": 5, "grain_density": 1904.1440375082666, "grain_outer_radius": 0.03301368075133014, "grain_initial_inner_radius": 0.015843713510297095, "grain_initial_height": 0.11868063911428962, "grain_separation": 0.0042659496118507036, "grains_center_of_mass_position": 0.39640895053656616, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014780712758278673, "throat_radius": 0.011275291791700533, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562517513767988}], "aerodynamic_surfaces": [{"length": 0.5579405735499608, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132180514910981]}, {"n": 4, "root_chord": 0.1202502109613468, "tip_chord": 0.06018888434937387, "span": 0.11076196062007358, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490302283615214]}, {"top_radius": 0.06291511511765457, "bottom_radius": 0.043195014612337865, "length": 0.059472218200369936, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998363164487869, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171700137329188, "upper_button_position": 0.08266630271586806}], "rail_length": 5, "inclination": 83.1848241765391, "heading": 52.00807564315097} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350399067923888, "mass": 14.576749485913387, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336868204126598, "I_33_without_motor": 0.03668468569706868, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0969504793944, "trigger": 800, "sampling_rate": 105, "lag": 1.558099448133026, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9255252940487882, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8352205786574745, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7694.484088871421, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032875084903734086, "grain_number": 5, "grain_density": 1815.2874730149088, "grain_outer_radius": 0.03299518763435426, "grain_initial_inner_radius": 0.014993689670899485, "grain_initial_height": 0.12017516789228753, "grain_separation": 0.005368988762384106, "grains_center_of_mass_position": 0.3968731642824, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001238937104883201, "throat_radius": 0.011164666349810663, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549656243733016}], "aerodynamic_surfaces": [{"length": 0.5583795051252871, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1323984701908345]}, {"n": 4, "root_chord": 0.1209121743191549, "tip_chord": 0.06002533299659623, "span": 0.10954028084180373, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051260098210414]}, {"top_radius": 0.06404834519496448, "bottom_radius": 0.04140974073080006, "length": 0.06092782507259849, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.70179066945579, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163748350358861, "upper_button_position": 0.08541583441990397}], "rail_length": 5, "inclination": 84.07700217769055, "heading": 54.03006855761049} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349217796151341, "mass": 16.059252614893495, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316034603827217, "I_33_without_motor": 0.025576667331828888, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.020779312369323, "trigger": 800, "sampling_rate": 105, "lag": 1.3443458142677487, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0207440393200191, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7159394642804715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5686.198857379728, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328061181547581, "grain_number": 5, "grain_density": 1780.001251661318, "grain_outer_radius": 0.032840291660407216, "grain_initial_inner_radius": 0.015171038731224423, "grain_initial_height": 0.12073009458558336, "grain_separation": 0.0039420128984122334, "grains_center_of_mass_position": 0.39867987267301214, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010464914387278551, "throat_radius": 0.011560958902652083, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552135063248402}], "aerodynamic_surfaces": [{"length": 0.5589837073064603, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346412915469157]}, {"n": 4, "root_chord": 0.12020817640967742, "tip_chord": 0.06036690024393426, "span": 0.10919029524384773, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495592627346033]}, {"top_radius": 0.06369985427979052, "bottom_radius": 0.04285640329858073, "length": 0.059179436816949454, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003923323024407, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163346621258015, "upper_button_position": 0.08405767017663923}], "rail_length": 5, "inclination": 86.35789444465972, "heading": 54.228070654740385} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.0635031858117624, "mass": 15.091764058453265, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314649435938443, "I_33_without_motor": 0.039284980363700824, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083387941755316, "trigger": 800, "sampling_rate": 105, "lag": 1.3747803629617104, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0011979818060048, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5737366128701218, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5070.7248546376295, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335181924548928, "grain_number": 5, "grain_density": 1831.8270324106122, "grain_outer_radius": 0.032847625554813645, "grain_initial_inner_radius": 0.014804324788797101, "grain_initial_height": 0.1200734946570971, "grain_separation": 0.004354694808545774, "grains_center_of_mass_position": 0.3973873492959699, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002719220432986845, "throat_radius": 0.010927963415597429, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555823676521196}], "aerodynamic_surfaces": [{"length": 0.5581328051743849, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135043177373439]}, {"n": 4, "root_chord": 0.11964224509502933, "tip_chord": 0.060421740915906796, "span": 0.10946275483625406, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482112173694553]}, {"top_radius": 0.06116537313727316, "bottom_radius": 0.04392971124935804, "length": 0.05917374280028882, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.70052958320531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178031384776308, "upper_button_position": 0.0827264447276792}], "rail_length": 5, "inclination": 83.90485051704067, "heading": 58.15286460143513} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350046631336277, "mass": 14.989309186860844, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313335900231171, "I_33_without_motor": 0.03716604941185768, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.117075781406113, "trigger": 800, "sampling_rate": 105, "lag": 1.6037246570417725, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0497575982024028, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4315912922531548, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7578.079337312733, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372912856248741, "grain_number": 5, "grain_density": 1823.6503422421722, "grain_outer_radius": 0.03315273780970855, "grain_initial_inner_radius": 0.01482155088274785, "grain_initial_height": 0.11866162068333583, "grain_separation": 0.003948641389333059, "grains_center_of_mass_position": 0.39939634329289536, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.098066232023792e-06, "throat_radius": 0.010433310005157152, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546383624150441}], "aerodynamic_surfaces": [{"length": 0.5580595711132116, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346590070843954]}, {"n": 4, "root_chord": 0.12037886853331557, "tip_chord": 0.05996916529285382, "span": 0.11030346647818262, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487765847152901]}, {"top_radius": 0.06416233271537998, "bottom_radius": 0.04380022196668694, "length": 0.05965327197554761, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004061604920716, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179429694001616, "upper_button_position": 0.08246319109191003}], "rail_length": 5, "inclination": 83.26252875010869, "heading": 55.66115750648964} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0635020275039765, "mass": 15.803942846835154, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304375972790728, "I_33_without_motor": 0.0265641799788582, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.122188619508387, "trigger": 800, "sampling_rate": 105, "lag": 1.5582016364114708, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0358168784122734, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6164557896372513, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5832.416800407629, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275488817998426, "grain_number": 5, "grain_density": 1738.5731840777364, "grain_outer_radius": 0.03327841684928836, "grain_initial_inner_radius": 0.015898506706097496, "grain_initial_height": 0.11970217938777378, "grain_separation": 0.004397110395207829, "grains_center_of_mass_position": 0.3964351367789708, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007999650096001312, "throat_radius": 0.011465687556829807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254453509868921}], "aerodynamic_surfaces": [{"length": 0.559650537580755, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13411754239537]}, {"n": 4, "root_chord": 0.12083107206679652, "tip_chord": 0.059570245177864134, "span": 0.11070048752784212, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495374497040026]}, {"top_radius": 0.06138968608422516, "bottom_radius": 0.0431134962310775, "length": 0.05880526952839735, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991836727405216, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175736364147302, "upper_button_position": 0.08161003632579145}], "rail_length": 5, "inclination": 85.1726424078389, "heading": 50.24301022657093} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349895161860576, "mass": 15.133148487989951, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3214373945356925, "I_33_without_motor": 0.0422092526722237, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986561073258084, "trigger": 800, "sampling_rate": 105, "lag": 1.4461228731015194, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0217784871704476, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5506663037337327, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5327.743236067647, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033239439895911375, "grain_number": 5, "grain_density": 1804.12774662574, "grain_outer_radius": 0.032863664216543374, "grain_initial_inner_radius": 0.01522332056930117, "grain_initial_height": 0.11980223146251144, "grain_separation": 0.006045636999390672, "grains_center_of_mass_position": 0.3974605481920737, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00011787999761034507, "throat_radius": 0.011098053463319704, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548550537251255}], "aerodynamic_surfaces": [{"length": 0.5580458537034864, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355656015522329]}, {"n": 4, "root_chord": 0.11965898813667003, "tip_chord": 0.0599685255074626, "span": 0.10971761005541153, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485490465133713]}, {"top_radius": 0.061979790960680854, "bottom_radius": 0.04272257708319678, "length": 0.05978028587798812, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005950113416405, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617963982717164, "upper_button_position": 0.08263102862447647}], "rail_length": 5, "inclination": 83.97575582016842, "heading": 53.62858382095789} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350360284242837, "mass": 15.716921033689173, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320313140411018, "I_33_without_motor": 0.057302033133921605, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.687232151342801, "trigger": 800, "sampling_rate": 105, "lag": 1.4992192994252171, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0806198128340803, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5003684558234405, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5773.287597219411, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335170895215461, "grain_number": 5, "grain_density": 1873.2179924261884, "grain_outer_radius": 0.03298571864708919, "grain_initial_inner_radius": 0.015623293453314388, "grain_initial_height": 0.12020477392597026, "grain_separation": 0.005531919440646662, "grains_center_of_mass_position": 0.3975277268525672, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004595303179838673, "throat_radius": 0.010161077396981013, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546045985981833}], "aerodynamic_surfaces": [{"length": 0.5594925835204568, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351103489477485]}, {"n": 4, "root_chord": 0.12026462176336604, "tip_chord": 0.06039994443222929, "span": 0.11039207967099798, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487841703475709]}, {"top_radius": 0.06213702540248102, "bottom_radius": 0.045178433666268315, "length": 0.05875573718585821, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000099527752898, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61741503701053, "upper_button_position": 0.08259491576475975}], "rail_length": 5, "inclination": 84.78086685113149, "heading": 56.44526409685575} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0634944257756975, "mass": 15.370910354021666, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31859884851303, "I_33_without_motor": 0.026360560139950702, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.83177058452247, "trigger": 800, "sampling_rate": 105, "lag": 1.58148657174765, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0516530442921905, "trigger": "apogee", "sampling_rate": 105, "lag": 1.903429456482502, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6845.064344955673, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033239273866053576, "grain_number": 5, "grain_density": 1775.711176101045, "grain_outer_radius": 0.03333302410924855, "grain_initial_inner_radius": 0.014533184520493351, "grain_initial_height": 0.12028892324648335, "grain_separation": 0.007093061706956597, "grains_center_of_mass_position": 0.3946309544914674, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007954021376108253, "throat_radius": 0.011619504995188278, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541536030607778}], "aerodynamic_surfaces": [{"length": 0.5598689429204995, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335955169301248]}, {"n": 4, "root_chord": 0.11961259068593262, "tip_chord": 0.060100858299769896, "span": 0.11006255308554065, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485802382287333]}, {"top_radius": 0.06328990813560557, "bottom_radius": 0.04180076799760662, "length": 0.05946713181581913, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001808255786945, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196220730872855, "upper_button_position": 0.08055875249140909}], "rail_length": 5, "inclination": 85.81575736482777, "heading": 56.069704767929885} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349918544197229, "mass": 14.662641424907005, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318565960817888, "I_33_without_motor": 0.05152833132531308, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916233298880229, "trigger": 800, "sampling_rate": 105, "lag": 1.4294465119264315, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.984788634001919, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4971329208968585, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6673.252262009689, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033105645568200746, "grain_number": 5, "grain_density": 1811.124575443016, "grain_outer_radius": 0.03284836305965925, "grain_initial_inner_radius": 0.015113434678259806, "grain_initial_height": 0.12093773191571078, "grain_separation": 0.0064281350104872115, "grains_center_of_mass_position": 0.3952320212909757, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006317594295377739, "throat_radius": 0.01207100915732276, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551762582693535}], "aerodynamic_surfaces": [{"length": 0.558767999480149, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132862986539489]}, {"n": 4, "root_chord": 0.11963316187534798, "tip_chord": 0.059101745343556424, "span": 0.10903912437227645, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497384442530207]}, {"top_radius": 0.06229598248006572, "bottom_radius": 0.04432449639225048, "length": 0.06046563443689391, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995331697588636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180541237738612, "upper_button_position": 0.08147904598500244}], "rail_length": 5, "inclination": 86.59826330840515, "heading": 54.131771874302125} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06351178330824081, "mass": 15.366670244297204, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324696875811587, "I_33_without_motor": 0.03047613783313053, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.915689606829586, "trigger": 800, "sampling_rate": 105, "lag": 1.489541312866197, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0426666159843776, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4188171618573189, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7894.392566558741, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338354598099342, "grain_number": 5, "grain_density": 1767.9628249835012, "grain_outer_radius": 0.0326851238710636, "grain_initial_inner_radius": 0.01512532179271017, "grain_initial_height": 0.11849195367270396, "grain_separation": 0.005730674793934686, "grains_center_of_mass_position": 0.3963306395401742, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007749259625625704, "throat_radius": 0.009835066802816136, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255406728778259}], "aerodynamic_surfaces": [{"length": 0.5585722440761461, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343669545222184]}, {"n": 4, "root_chord": 0.11944172649140035, "tip_chord": 0.0611500081827179, "span": 0.10976906317543585, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495425292585336]}, {"top_radius": 0.06412351676126318, "bottom_radius": 0.04403894576716964, "length": 0.061616597951277774, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997840327567139, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169134612192727, "upper_button_position": 0.08287057153744115}], "rail_length": 5, "inclination": 84.29276363681782, "heading": 54.6517859316091} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0635050035862252, "mass": 15.473760067387095, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318227645359001, "I_33_without_motor": 0.03726269407560567, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.87220452315059, "trigger": 800, "sampling_rate": 105, "lag": 1.4882504007459119, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9355780855965378, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5074333826403792, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6907.519068841096, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294969504318134, "grain_number": 5, "grain_density": 1836.391882560134, "grain_outer_radius": 0.032895538711246064, "grain_initial_inner_radius": 0.014468090007046935, "grain_initial_height": 0.12049822292784299, "grain_separation": 0.005370588780187148, "grains_center_of_mass_position": 0.3986848042793403, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001193084664633679, "throat_radius": 0.010390162717599856, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557859394670638}], "aerodynamic_surfaces": [{"length": 0.5593485301359884, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341821648612531]}, {"n": 4, "root_chord": 0.11977573876809565, "tip_chord": 0.05946207016898665, "span": 0.10969383323373998, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510486894430946]}, {"top_radius": 0.06174701334274092, "bottom_radius": 0.042236257390458366, "length": 0.059187002608261575, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988110836775414, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174251415863472, "upper_button_position": 0.08138594209119421}], "rail_length": 5, "inclination": 83.0871681793983, "heading": 52.3627848842881} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349764652917163, "mass": 15.657436540679122, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32579616908929, "I_33_without_motor": 0.03011860544832762, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95884825222711, "trigger": 800, "sampling_rate": 105, "lag": 1.455426897848048, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9053779573980384, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4902157760106705, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7061.611947903677, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0322852932897937, "grain_number": 5, "grain_density": 1762.8305811436796, "grain_outer_radius": 0.033203005340050926, "grain_initial_inner_radius": 0.015195343234745641, "grain_initial_height": 0.12043280315292115, "grain_separation": 0.005948310937040209, "grains_center_of_mass_position": 0.39923587712298364, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021214132386290327, "throat_radius": 0.011230560265920984, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255850663461717}], "aerodynamic_surfaces": [{"length": 0.5576076943458412, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325764942076588]}, {"n": 4, "root_chord": 0.11979951387262652, "tip_chord": 0.05977978638037536, "span": 0.11024339788685787, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515283429443048]}, {"top_radius": 0.06370367304400326, "bottom_radius": 0.04398010422537929, "length": 0.058691571996904564, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004839432989999, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199915463889254, "upper_button_position": 0.08049239691007448}], "rail_length": 5, "inclination": 83.34444893075812, "heading": 51.88443852590249} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349497021936339, "mass": 15.24098905441694, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326259483243502, "I_33_without_motor": 0.029251310194203545, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.106745243866197, "trigger": 800, "sampling_rate": 105, "lag": 1.4972938926845374, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9589900144296263, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3050217920587048, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4690.351017347766, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313400700158841, "grain_number": 5, "grain_density": 1828.6592181723458, "grain_outer_radius": 0.032756092224622745, "grain_initial_inner_radius": 0.014769588446417372, "grain_initial_height": 0.12145129083664014, "grain_separation": 0.004216337440141413, "grains_center_of_mass_position": 0.3974794995745047, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001228749047353714, "throat_radius": 0.011007786267417448, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551047666506228}], "aerodynamic_surfaces": [{"length": 0.5598022620136887, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322458066979624]}, {"n": 4, "root_chord": 0.12008412084136043, "tip_chord": 0.05982489286658609, "span": 0.10977493401951027, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505344288982281]}, {"top_radius": 0.06335006910755205, "bottom_radius": 0.04416340770891441, "length": 0.06012530395262569, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005559905778428, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176691559333234, "upper_button_position": 0.0828868346445194}], "rail_length": 5, "inclination": 85.34464709982792, "heading": 50.84918326941464} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634960060887813, "mass": 14.846005822840164, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316484781951526, "I_33_without_motor": 0.01893114296043568, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040474055620264, "trigger": 800, "sampling_rate": 105, "lag": 1.56709267641697, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9537162983353457, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2222609104163893, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5665.758668837087, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03229237529876102, "grain_number": 5, "grain_density": 1763.459554065618, "grain_outer_radius": 0.03281548679680978, "grain_initial_inner_radius": 0.015114393861419953, "grain_initial_height": 0.12130409563308477, "grain_separation": 0.004814694792465617, "grains_center_of_mass_position": 0.39611249836981793, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007853086531232146, "throat_radius": 0.011212508352996376, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546175169356457}], "aerodynamic_surfaces": [{"length": 0.5591057099352378, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134297768901592]}, {"n": 4, "root_chord": 0.11994042136955817, "tip_chord": 0.06013162996748415, "span": 0.10962746434215861, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497490102033813]}, {"top_radius": 0.06455572051778462, "bottom_radius": 0.04466619611035766, "length": 0.06168047368884802, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992193550102761, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170138864411142, "upper_button_position": 0.08220546856916189}], "rail_length": 5, "inclination": 85.01413347084582, "heading": 53.73395573236463} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0634975817066635, "mass": 16.05123512165377, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323877135073012, "I_33_without_motor": 0.0392935601044357, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.944074186762464, "trigger": 800, "sampling_rate": 105, "lag": 1.2933591652043983, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9908898881479167, "trigger": "apogee", "sampling_rate": 105, "lag": 1.880711084078691, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7382.855613918328, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031672586605256806, "grain_number": 5, "grain_density": 1786.1005365636897, "grain_outer_radius": 0.03327711005645597, "grain_initial_inner_radius": 0.01480988468464881, "grain_initial_height": 0.11971365593241486, "grain_separation": 0.003910240553968763, "grains_center_of_mass_position": 0.3967851393096636, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002655221043743809, "throat_radius": 0.010827780509539194, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253968783928335}], "aerodynamic_surfaces": [{"length": 0.5573439771245707, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13549179076071]}, {"n": 4, "root_chord": 0.11999043852111656, "tip_chord": 0.05964109562967749, "span": 0.10973910342934852, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501482253877243]}, {"top_radius": 0.06260439299841723, "bottom_radius": 0.04394519282072501, "length": 0.05901168625035726, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988288682958087, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175844617948844, "upper_button_position": 0.08124440650092435}], "rail_length": 5, "inclination": 85.310734111358, "heading": 55.302619300347025} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635037651383666, "mass": 15.609060409227151, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30707528593765, "I_33_without_motor": 0.050044305218322135, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9888551219378, "trigger": 800, "sampling_rate": 105, "lag": 1.4661723677739673, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8885813807087822, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8265205558210036, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6259.1166688993435, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032807420933860146, "grain_number": 5, "grain_density": 1811.4900647915051, "grain_outer_radius": 0.03226550388667357, "grain_initial_inner_radius": 0.015349425149474537, "grain_initial_height": 0.11959079149331747, "grain_separation": 0.005158530391386381, "grains_center_of_mass_position": 0.39628536541115883, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006963377240025325, "throat_radius": 0.011415185922274208, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566768768121024}], "aerodynamic_surfaces": [{"length": 0.558311626642972, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1312282689034006]}, {"n": 4, "root_chord": 0.1204817306245082, "tip_chord": 0.05950114135926327, "span": 0.11028824075511628, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486469460725085]}, {"top_radius": 0.0640266272746289, "bottom_radius": 0.043821253050126026, "length": 0.05849143738160356, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009040329543649, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173665237126227, "upper_button_position": 0.08353750924174219}], "rail_length": 5, "inclination": 84.7369145451167, "heading": 52.67112857023074} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349646522164122, "mass": 14.849035234125076, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332321527937345, "I_33_without_motor": 0.021183026967610086, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06380166883936, "trigger": 800, "sampling_rate": 105, "lag": 1.520116408973463, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0108782915509535, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5502128598392233, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7078.935304571304, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337199407728805, "grain_number": 5, "grain_density": 1712.5737145130176, "grain_outer_radius": 0.033150519077217284, "grain_initial_inner_radius": 0.015389383847519852, "grain_initial_height": 0.12023519707490792, "grain_separation": 0.004880579360301477, "grains_center_of_mass_position": 0.39692126303119274, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.640083905816842e-05, "throat_radius": 0.01075388423635061, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547701698927196}], "aerodynamic_surfaces": [{"length": 0.5574762767822713, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348549445797862]}, {"n": 4, "root_chord": 0.11995149752434606, "tip_chord": 0.060006030139917364, "span": 0.10904577281144279, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486415110824667]}, {"top_radius": 0.0635234693469441, "bottom_radius": 0.04424191690140435, "length": 0.05993617691055025, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993453664198783, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616968725679771, "upper_button_position": 0.08237664074010731}], "rail_length": 5, "inclination": 84.04411815259509, "heading": 53.37927445256392} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.063507797706784, "mass": 14.770697029887184, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319538084528191, "I_33_without_motor": 0.02746261564225552, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.111484058783356, "trigger": 800, "sampling_rate": 105, "lag": 1.5487299167952637, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0114064584691047, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3084033365814025, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8111.956544263291, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032072644350652636, "grain_number": 5, "grain_density": 1817.0274315339136, "grain_outer_radius": 0.03357252681702639, "grain_initial_inner_radius": 0.014793790002865289, "grain_initial_height": 0.11963345028255257, "grain_separation": 0.004135653664938125, "grains_center_of_mass_position": 0.3965944312765539, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004352050651698298, "throat_radius": 0.010986052088471624, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546327719291235}], "aerodynamic_surfaces": [{"length": 0.5578764002588732, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354032001814927]}, {"n": 4, "root_chord": 0.1195954163329924, "tip_chord": 0.06011581934973627, "span": 0.11019004838975932, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0518931446384405]}, {"top_radius": 0.0629382794425931, "bottom_radius": 0.04411915923063449, "length": 0.060156207838725384, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008011263248692, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180212195711452, "upper_button_position": 0.08277990675372404}], "rail_length": 5, "inclination": 84.85434926801263, "heading": 53.08016927259899} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349698093315519, "mass": 15.450340097450558, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319249444617223, "I_33_without_motor": 0.026345249749244053, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014042320566206, "trigger": 800, "sampling_rate": 105, "lag": 1.3192531814425148, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8988872717309002, "trigger": "apogee", "sampling_rate": 105, "lag": 1.688359792891326, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5388.827762089455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032945771988809505, "grain_number": 5, "grain_density": 1803.143722120645, "grain_outer_radius": 0.032886677594987895, "grain_initial_inner_radius": 0.015363684805487911, "grain_initial_height": 0.12048488293280024, "grain_separation": 0.004602981952910463, "grains_center_of_mass_position": 0.39827187531914787, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00044851482141398935, "throat_radius": 0.011310933447352105, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253978614020494}], "aerodynamic_surfaces": [{"length": 0.5576755787208751, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134225224335912]}, {"n": 4, "root_chord": 0.12084659624708646, "tip_chord": 0.0598377049876411, "span": 0.11023875693658443, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0472859380511714]}, {"top_radius": 0.06357516836524481, "bottom_radius": 0.04526901342172064, "length": 0.059744030756442384, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996177378246429, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174276103182228, "upper_button_position": 0.08219012750642007}], "rail_length": 5, "inclination": 84.65126410752319, "heading": 54.48660986619778} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350088006712329, "mass": 15.75580255746487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309970475022129, "I_33_without_motor": 0.03199197923944296, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.085542500427463, "trigger": 800, "sampling_rate": 105, "lag": 1.5603994233277725, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9796163008506619, "trigger": "apogee", "sampling_rate": 105, "lag": 1.548473672439845, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5548.710419424578, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03245585688148943, "grain_number": 5, "grain_density": 1892.5267069800568, "grain_outer_radius": 0.03290480238981392, "grain_initial_inner_radius": 0.015348390210030515, "grain_initial_height": 0.12010488146344984, "grain_separation": 0.005000435083756973, "grains_center_of_mass_position": 0.3961076044665615, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002172656381131626, "throat_radius": 0.011509036818350275, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537051173653275}], "aerodynamic_surfaces": [{"length": 0.5603421336830519, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134647269960268]}, {"n": 4, "root_chord": 0.12068039442851285, "tip_chord": 0.06064409664449557, "span": 0.10932849671811001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490173906165647]}, {"top_radius": 0.06237880821769375, "bottom_radius": 0.044223685537268624, "length": 0.059949108549248654, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010693723584112, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184159183003002, "upper_button_position": 0.08265345405811098}], "rail_length": 5, "inclination": 85.37196275554783, "heading": 55.65241196610318} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635017809176988, "mass": 15.649312509306396, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3235366107095645, "I_33_without_motor": 0.036418302229959267, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.052595014592985, "trigger": 800, "sampling_rate": 105, "lag": 1.5137817771784976, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9127154513546186, "trigger": "apogee", "sampling_rate": 105, "lag": 1.573202131926426, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7292.70187838305, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032776672198951876, "grain_number": 5, "grain_density": 1830.4716086996398, "grain_outer_radius": 0.033252666351482725, "grain_initial_inner_radius": 0.014561416414055351, "grain_initial_height": 0.12053022798853984, "grain_separation": 0.005363123560836499, "grains_center_of_mass_position": 0.39686944599652707, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005527322963906615, "throat_radius": 0.011284643670617543, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561770895868223}], "aerodynamic_surfaces": [{"length": 0.557292596384955, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134383764827667]}, {"n": 4, "root_chord": 0.11992831469601734, "tip_chord": 0.06024591686821971, "span": 0.1100115557924968, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049434392222817]}, {"top_radius": 0.06431169820128046, "bottom_radius": 0.04270969215908118, "length": 0.059777407737670485, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004219541320511, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172972421978632, "upper_button_position": 0.08312471193418791}], "rail_length": 5, "inclination": 84.39031511172271, "heading": 54.2206865748831} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350420723873626, "mass": 14.882123738450465, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326583451686352, "I_33_without_motor": 0.02527253831079851, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.893647186148145, "trigger": 800, "sampling_rate": 105, "lag": 1.5853348683017203, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0110629023308972, "trigger": "apogee", "sampling_rate": 105, "lag": 1.877238001049546, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5915.8987159398, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303776979812751, "grain_number": 5, "grain_density": 1856.8104865722012, "grain_outer_radius": 0.033235760887271204, "grain_initial_inner_radius": 0.014545297660693898, "grain_initial_height": 0.11940314099219912, "grain_separation": 0.004767503782171505, "grains_center_of_mass_position": 0.3978513713357191, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00048118428159451534, "throat_radius": 0.011469621941623619, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256040095078691}], "aerodynamic_surfaces": [{"length": 0.5576953707666171, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344148252912656]}, {"n": 4, "root_chord": 0.12061810870584702, "tip_chord": 0.05995027753242384, "span": 0.11048971689828593, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514407717490946]}, {"top_radius": 0.06229890566390253, "bottom_radius": 0.04280650105720574, "length": 0.06126962391928453, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000267511884433, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181879233341918, "upper_button_position": 0.08183882785425145}], "rail_length": 5, "inclination": 86.84797287831596, "heading": 56.00386273285141} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350604554774637, "mass": 15.212931285721822, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326920798677006, "I_33_without_motor": 0.04024609834488265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072613492718814, "trigger": 800, "sampling_rate": 105, "lag": 1.5969645836852349, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9797472255886847, "trigger": "apogee", "sampling_rate": 105, "lag": 1.20874979040728, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6805.705164083762, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308453965785799, "grain_number": 5, "grain_density": 1779.2045339347371, "grain_outer_radius": 0.033123198204640956, "grain_initial_inner_radius": 0.014811550195307466, "grain_initial_height": 0.11892060299477727, "grain_separation": 0.005233382530880395, "grains_center_of_mass_position": 0.3977570842403376, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00019598910612719304, "throat_radius": 0.011061965704210447, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25443907398977}], "aerodynamic_surfaces": [{"length": 0.556766452047339, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340202194691176]}, {"n": 4, "root_chord": 0.12030113413428475, "tip_chord": 0.05879137272224417, "span": 0.11009965713609586, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050131814729254]}, {"top_radius": 0.06269736212118251, "bottom_radius": 0.04285782395997581, "length": 0.05729131373548741, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989450033087119, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180992484021577, "upper_button_position": 0.08084575490655421}], "rail_length": 5, "inclination": 86.70169932310411, "heading": 49.156149764658366} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350150313899555, "mass": 15.880255138703125, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331910465884134, "I_33_without_motor": 0.03530596805952215, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02581772223081, "trigger": 800, "sampling_rate": 105, "lag": 1.3680564163394069, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0101492344565777, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5167287247304022, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7404.961671006448, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033083637708425866, "grain_number": 5, "grain_density": 1821.2938511775137, "grain_outer_radius": 0.03300424858501084, "grain_initial_inner_radius": 0.014323122189234138, "grain_initial_height": 0.12123402555428947, "grain_separation": 0.005696222400202303, "grains_center_of_mass_position": 0.3971226852573469, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001322743040630707, "throat_radius": 0.010279517394933015, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560730693046165}], "aerodynamic_surfaces": [{"length": 0.5601460756721046, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331396533791962]}, {"n": 4, "root_chord": 0.12016153120564484, "tip_chord": 0.06024720357328631, "span": 0.10898116315365687, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049126754150771]}, {"top_radius": 0.06383420591536436, "bottom_radius": 0.04265453054535111, "length": 0.06034599720168997, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004277736006103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179569514312039, "upper_button_position": 0.08247082216940638}], "rail_length": 5, "inclination": 83.63481116847016, "heading": 54.52561698988434} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350730213469404, "mass": 15.802129129977853, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323745727014751, "I_33_without_motor": 0.041822637397565185, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025610907881527, "trigger": 800, "sampling_rate": 105, "lag": 1.4267027129137686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0159280659303946, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7079230562630832, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7215.649592320645, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327235043893209, "grain_number": 5, "grain_density": 1853.9384005589618, "grain_outer_radius": 0.033380001524883844, "grain_initial_inner_radius": 0.015446904873868543, "grain_initial_height": 0.12070920797165162, "grain_separation": 0.0044273939914312955, "grains_center_of_mass_position": 0.39915736552822023, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005096749065694846, "throat_radius": 0.010512254119768293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540092495561204}], "aerodynamic_surfaces": [{"length": 0.5572885900231247, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338180710143062]}, {"n": 4, "root_chord": 0.11918303583729356, "tip_chord": 0.060228126640202176, "span": 0.10974183265773271, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484904434625273]}, {"top_radius": 0.0644868589908645, "bottom_radius": 0.0426742618028687, "length": 0.06079977870758525, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999285661076226, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618424200492215, "upper_button_position": 0.08150436561540753}], "rail_length": 5, "inclination": 83.9342248112693, "heading": 54.94454709549682} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349595462472588, "mass": 15.731225118535713, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3141634952498835, "I_33_without_motor": 0.016642106714793613, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.955392755854994, "trigger": 800, "sampling_rate": 105, "lag": 1.6169540204394532, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0253103891724547, "trigger": "apogee", "sampling_rate": 105, "lag": 1.247180321566621, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7913.418894929573, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266317258897717, "grain_number": 5, "grain_density": 1803.7520125987378, "grain_outer_radius": 0.0331855689441218, "grain_initial_inner_radius": 0.015463471697017487, "grain_initial_height": 0.1191496872544437, "grain_separation": 0.004688779601545476, "grains_center_of_mass_position": 0.3961529318658732, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038439457593873337, "throat_radius": 0.010511507615444463, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538345527730501}], "aerodynamic_surfaces": [{"length": 0.5583649364540684, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134494041619025]}, {"n": 4, "root_chord": 0.12008535071176309, "tip_chord": 0.05981469579676811, "span": 0.11085838059551206, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509424251117936]}, {"top_radius": 0.06387242843553237, "bottom_radius": 0.04387264069531626, "length": 0.05917603589722719, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003195333448297, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192495357898594, "upper_button_position": 0.08106999755497024}], "rail_length": 5, "inclination": 84.03654284299151, "heading": 53.45113998928648} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351028943615865, "mass": 15.680488581719676, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3256257613208735, "I_33_without_motor": 0.05494566901560162, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99226166192269, "trigger": 800, "sampling_rate": 105, "lag": 1.5048082846819546, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0245914267236116, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4289016187548549, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5683.953664789502, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032955380580278394, "grain_number": 5, "grain_density": 1822.024958559919, "grain_outer_radius": 0.03245481790664844, "grain_initial_inner_radius": 0.015385232436020512, "grain_initial_height": 0.1204741964562425, "grain_separation": 0.005948594315798401, "grains_center_of_mass_position": 0.39900069004938826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019849981625599694, "throat_radius": 0.01108432906965024, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253883731074912}], "aerodynamic_surfaces": [{"length": 0.5584115384107429, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.136287180900977]}, {"n": 4, "root_chord": 0.1204410245400117, "tip_chord": 0.059420734420473735, "span": 0.10993121584869546, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489345643237902]}, {"top_radius": 0.06319897928391674, "bottom_radius": 0.042587035493909096, "length": 0.057767575761233536, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997671559376342, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188485079479449, "upper_button_position": 0.08091864798968929}], "rail_length": 5, "inclination": 83.17212736348188, "heading": 51.94096738445139} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350613549694864, "mass": 15.834309284342071, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319042552488941, "I_33_without_motor": 0.04947544100180805, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.866346978679118, "trigger": 800, "sampling_rate": 105, "lag": 1.6386706308456669, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9938538210510255, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5629966547578562, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5946.740999961998, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032525993836620484, "grain_number": 5, "grain_density": 1826.3353556974187, "grain_outer_radius": 0.03313669996042293, "grain_initial_inner_radius": 0.015396910583704144, "grain_initial_height": 0.12052553036897937, "grain_separation": 0.0053373613211951405, "grains_center_of_mass_position": 0.3973146727162624, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007332148458529126, "throat_radius": 0.011515273458275445, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547253198683708}], "aerodynamic_surfaces": [{"length": 0.5601875060783681, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335562089194064]}, {"n": 4, "root_chord": 0.1202746075698627, "tip_chord": 0.060338846860222395, "span": 0.10921632189811882, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493519745490427]}, {"top_radius": 0.0640460400085444, "bottom_radius": 0.043289810152625174, "length": 0.05934221058112763, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7014868923154501, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6156154873647169, "upper_button_position": 0.0858714049507332}], "rail_length": 5, "inclination": 85.81281804363616, "heading": 49.44464203277308} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349203867585303, "mass": 16.087358854352246, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308580577465151, "I_33_without_motor": 0.022062583503634235, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033230853362674, "trigger": 800, "sampling_rate": 105, "lag": 1.5106820388180773, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.042599262171543, "trigger": "apogee", "sampling_rate": 105, "lag": 1.568156525610676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5028.427529912541, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03354737982854638, "grain_number": 5, "grain_density": 1754.4854976313209, "grain_outer_radius": 0.03287811951511736, "grain_initial_inner_radius": 0.015206220183779956, "grain_initial_height": 0.12084655963165686, "grain_separation": 0.0049723860677060245, "grains_center_of_mass_position": 0.39617593929133094, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007371135189523509, "throat_radius": 0.010254435759274694, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555528621370038}], "aerodynamic_surfaces": [{"length": 0.5587193817269689, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330730780416869]}, {"n": 4, "root_chord": 0.12001551863389671, "tip_chord": 0.05955589488220398, "span": 0.11089859794373437, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494647050235508]}, {"top_radius": 0.06398567382739731, "bottom_radius": 0.04352963174114576, "length": 0.06097034167018927, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990785153405781, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175188599632961, "upper_button_position": 0.08155965537728194}], "rail_length": 5, "inclination": 83.07477441798501, "heading": 53.495539578002735} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349247246986932, "mass": 15.529573402044225, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330912661751314, "I_33_without_motor": 0.048447262511038716, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059746163589736, "trigger": 800, "sampling_rate": 105, "lag": 1.4872298685600076, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0571922028371388, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4935395809100556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7139.292253792932, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339111287924416, "grain_number": 5, "grain_density": 1786.7421010068151, "grain_outer_radius": 0.03352321034782114, "grain_initial_inner_radius": 0.014880006354914316, "grain_initial_height": 0.12025012569914675, "grain_separation": 0.005618569869003791, "grains_center_of_mass_position": 0.39756617031199815, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024118962969717404, "throat_radius": 0.011344638748840162, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533476884771957}], "aerodynamic_surfaces": [{"length": 0.5601763178966414, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332777994250782]}, {"n": 4, "root_chord": 0.1203746294145263, "tip_chord": 0.06004159518647704, "span": 0.1097850490712794, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497847088529955]}, {"top_radius": 0.06340148620926363, "bottom_radius": 0.04305082885594416, "length": 0.0605694328504844, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001540529332366, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189326502716476, "upper_button_position": 0.08122140266158906}], "rail_length": 5, "inclination": 83.61437092064412, "heading": 54.76327624703467} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350945363816773, "mass": 15.381443233956354, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302314740470183, "I_33_without_motor": 0.05721472127217128, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885295285092244, "trigger": 800, "sampling_rate": 105, "lag": 1.4858784309531718, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0010429186818717, "trigger": "apogee", "sampling_rate": 105, "lag": 1.337084252133144, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7681.295945020031, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03267103243118139, "grain_number": 5, "grain_density": 1740.3364658235153, "grain_outer_radius": 0.032820470402026646, "grain_initial_inner_radius": 0.01404699871323519, "grain_initial_height": 0.11937910745666003, "grain_separation": 0.005179952407595413, "grains_center_of_mass_position": 0.39614098291636807, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018923560995989706, "throat_radius": 0.011013339725786784, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557854951511012}], "aerodynamic_surfaces": [{"length": 0.5576018756736574, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341253924898689]}, {"n": 4, "root_chord": 0.11942543977613096, "tip_chord": 0.05952414604644868, "span": 0.1089798396313736, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498167607563418]}, {"top_radius": 0.06494891543723151, "bottom_radius": 0.042856975405687434, "length": 0.05990421176070063, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698801317077206, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177273857186857, "upper_button_position": 0.08107393135852037}], "rail_length": 5, "inclination": 84.39291071222226, "heading": 57.691287555496395} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06351223250840592, "mass": 15.226932392295486, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320913864842919, "I_33_without_motor": 0.02105830863501112, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954767290472352, "trigger": 800, "sampling_rate": 105, "lag": 1.5018415702904337, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0318613656969287, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5539828708801506, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7769.562374797175, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033874587013547716, "grain_number": 5, "grain_density": 1850.627853805258, "grain_outer_radius": 0.03346748351914843, "grain_initial_inner_radius": 0.014398122956270751, "grain_initial_height": 0.11933303978962227, "grain_separation": 0.00483703739471735, "grains_center_of_mass_position": 0.3966468602310651, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00021205270212963268, "throat_radius": 0.01100505984713663, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544121454739912}], "aerodynamic_surfaces": [{"length": 0.5579344048147402, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133577666257087]}, {"n": 4, "root_chord": 0.1198269417893259, "tip_chord": 0.06040564741464401, "span": 0.11033119462559104, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050535015870703]}, {"top_radius": 0.06349086652186287, "bottom_radius": 0.04230012111087664, "length": 0.059590891286459044, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998014737256532, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194075264881492, "upper_button_position": 0.08039394723750393}], "rail_length": 5, "inclination": 84.80928264878013, "heading": 54.36039828102056} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350615899042181, "mass": 15.295220710350486, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316628124115386, "I_33_without_motor": 0.031573329474508714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02888507050837, "trigger": 800, "sampling_rate": 105, "lag": 1.5071220030092807, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0757369751106052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.587114297589251, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7527.493894215826, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03289170255357611, "grain_number": 5, "grain_density": 1903.5776511676447, "grain_outer_radius": 0.03274921833361331, "grain_initial_inner_radius": 0.01463394390916688, "grain_initial_height": 0.1190653621937595, "grain_separation": 0.00542510283457831, "grains_center_of_mass_position": 0.3956488587173909, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000528451828677153, "throat_radius": 0.011462306106235257, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547105523632118}], "aerodynamic_surfaces": [{"length": 0.5576950941819878, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.136487949235147]}, {"n": 4, "root_chord": 0.11992967609604885, "tip_chord": 0.059786433432913635, "span": 0.10984049629865919, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495023547081272]}, {"top_radius": 0.06496643856855377, "bottom_radius": 0.04285646005332168, "length": 0.06067699614831764, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996121716257653, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162392168368318, "upper_button_position": 0.08337295478893347}], "rail_length": 5, "inclination": 83.86268445064951, "heading": 52.965286532536986} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349954079577652, "mass": 16.136552526138473, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305549048168714, "I_33_without_motor": 0.036707925844845855, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.85095766958892, "trigger": 800, "sampling_rate": 105, "lag": 1.421667256361531, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9066244387827195, "trigger": "apogee", "sampling_rate": 105, "lag": 1.404974405256157, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7549.580159977027, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032994559084069765, "grain_number": 5, "grain_density": 1882.0004654295317, "grain_outer_radius": 0.032909164644605866, "grain_initial_inner_radius": 0.014628637665481352, "grain_initial_height": 0.1187244327215237, "grain_separation": 0.006296458924047879, "grains_center_of_mass_position": 0.3951878247095815, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001457876671307998, "throat_radius": 0.01112803831803555, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255118792000445}], "aerodynamic_surfaces": [{"length": 0.5591672183374509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342824287798408]}, {"n": 4, "root_chord": 0.11979191442417735, "tip_chord": 0.059539602074939996, "span": 0.10961922778888575, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504461811088652]}, {"top_radius": 0.06371440479714587, "bottom_radius": 0.04406573058027124, "length": 0.06084915767161674, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996728554160901, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193541709531859, "upper_button_position": 0.08031868446290424}], "rail_length": 5, "inclination": 84.65135934228913, "heading": 57.000470690200096} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349953978484359, "mass": 14.768517868510859, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308159269002016, "I_33_without_motor": 0.05294846660564669, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.170590121302965, "trigger": 800, "sampling_rate": 105, "lag": 1.7425208283933749, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1162939824157592, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1983269061525985, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8091.863461013142, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288495498550508, "grain_number": 5, "grain_density": 1819.9671590033795, "grain_outer_radius": 0.03281745535355371, "grain_initial_inner_radius": 0.01547306745721536, "grain_initial_height": 0.11979896304105787, "grain_separation": 0.004206345702507666, "grains_center_of_mass_position": 0.3974625526147093, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012178181908283094, "throat_radius": 0.010756520769595143, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534332267778177}], "aerodynamic_surfaces": [{"length": 0.5570513473390869, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331458854669068]}, {"n": 4, "root_chord": 0.12038250154478253, "tip_chord": 0.06040006581584504, "span": 0.11028683735050086, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487430563770739]}, {"top_radius": 0.0635619699129067, "bottom_radius": 0.043422797786487326, "length": 0.05950521170290196, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013993048363698, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175148569752729, "upper_button_position": 0.08388444786109694}], "rail_length": 5, "inclination": 83.0832120913472, "heading": 54.51988180928412} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350447396092868, "mass": 14.746858596589522, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33039613697565, "I_33_without_motor": 0.04672958920546927, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.993977664542625, "trigger": 800, "sampling_rate": 105, "lag": 1.678864017136327, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9918776939330051, "trigger": "apogee", "sampling_rate": 105, "lag": 2.052337353809099, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6505.6137866654535, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03360585967374376, "grain_number": 5, "grain_density": 1861.340208619665, "grain_outer_radius": 0.03261187971298391, "grain_initial_inner_radius": 0.015268850289918114, "grain_initial_height": 0.12005969966768158, "grain_separation": 0.0046783254092552925, "grains_center_of_mass_position": 0.3978560373760419, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003480065601828338, "throat_radius": 0.010605468265907157, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255455228688547}], "aerodynamic_surfaces": [{"length": 0.559478578420669, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334602915862733]}, {"n": 4, "root_chord": 0.12010796769440504, "tip_chord": 0.06000097642414628, "span": 0.11022072085153985, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050200282425774]}, {"top_radius": 0.06238418365713227, "bottom_radius": 0.04332653726673186, "length": 0.05897626278266093, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994727024953737, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170669252611962, "upper_button_position": 0.08240577723417752}], "rail_length": 5, "inclination": 83.99767778803053, "heading": 51.454938708503484} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349645587724567, "mass": 15.397986126647629, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34347607970682, "I_33_without_motor": 0.03896600808109847, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001765902404932, "trigger": 800, "sampling_rate": 105, "lag": 1.555188931133521, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0349034545159927, "trigger": "apogee", "sampling_rate": 105, "lag": 1.564390337099433, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6966.763635149876, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033216215290372365, "grain_number": 5, "grain_density": 1818.3589595382405, "grain_outer_radius": 0.03332828502518695, "grain_initial_inner_radius": 0.015241188496813773, "grain_initial_height": 0.12210470977825058, "grain_separation": 0.005573202583021139, "grains_center_of_mass_position": 0.3973082285576769, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002349293902120289, "throat_radius": 0.01057154364875727, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553888485915397}], "aerodynamic_surfaces": [{"length": 0.5584251147028287, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134433095062441]}, {"n": 4, "root_chord": 0.1201410727004432, "tip_chord": 0.05979883821186546, "span": 0.1092640876005773, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0516995581029707]}, {"top_radius": 0.06531389853269831, "bottom_radius": 0.04384808106366261, "length": 0.05967818040072136, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004382466513741, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171322560099557, "upper_button_position": 0.08330599064141841}], "rail_length": 5, "inclination": 83.91069979445666, "heading": 50.20219386559685} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350142700994202, "mass": 15.083463188474393, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336435472128477, "I_33_without_motor": 0.03527336784963546, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908947936136228, "trigger": 800, "sampling_rate": 105, "lag": 1.5140724424340686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9349017160566658, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1511543131482234, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7091.444962626911, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338223958832635, "grain_number": 5, "grain_density": 1820.6758169343477, "grain_outer_radius": 0.03343063459256912, "grain_initial_inner_radius": 0.015340691302527342, "grain_initial_height": 0.11999562543667051, "grain_separation": 0.005614101503755925, "grains_center_of_mass_position": 0.39523280648195885, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005563113176377715, "throat_radius": 0.010379444529371543, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255802249068248}], "aerodynamic_surfaces": [{"length": 0.5567744123032844, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350554044968177]}, {"n": 4, "root_chord": 0.1202492437941619, "tip_chord": 0.06028310420482441, "span": 0.11070931643196695, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049463744285687]}, {"top_radius": 0.06344372962798617, "bottom_radius": 0.043032012511243826, "length": 0.06167023107042583, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985057061704538, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173570687399859, "upper_button_position": 0.08114863743046796}], "rail_length": 5, "inclination": 83.82073703848232, "heading": 50.73617676841082} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349292265772598, "mass": 14.812061874284785, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325569084664623, "I_33_without_motor": 0.03613279083199524, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04620292427206, "trigger": 800, "sampling_rate": 105, "lag": 1.5399367592276367, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0762502489832264, "trigger": "apogee", "sampling_rate": 105, "lag": 1.338363433550902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6420.673542830345, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324356306738095, "grain_number": 5, "grain_density": 1827.4901267863415, "grain_outer_radius": 0.03305532783744108, "grain_initial_inner_radius": 0.015037457665739105, "grain_initial_height": 0.1210882828626997, "grain_separation": 0.004969226011336644, "grains_center_of_mass_position": 0.39649378589759493, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004709151332490027, "throat_radius": 0.01037966061894756, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543222845539632}], "aerodynamic_surfaces": [{"length": 0.5590364291088901, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341832597608723]}, {"n": 4, "root_chord": 0.12033452487561147, "tip_chord": 0.05956335425547947, "span": 0.11027655279703248, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501466580442915]}, {"top_radius": 0.06195985238428169, "bottom_radius": 0.043185253270503154, "length": 0.05889910201268158, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984288323977449, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175875028636039, "upper_button_position": 0.08084132953414103}], "rail_length": 5, "inclination": 85.55148228912873, "heading": 51.00919375093603} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349721392230953, "mass": 15.702685526510724, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318281329571421, "I_33_without_motor": 0.039602968813695245, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.811449135052918, "trigger": 800, "sampling_rate": 105, "lag": 1.4929518861644993, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.938200440276189, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5237602396421726, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5337.447382680103, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364783813304066, "grain_number": 5, "grain_density": 1864.744306112989, "grain_outer_radius": 0.032926027276615144, "grain_initial_inner_radius": 0.014681334838817702, "grain_initial_height": 0.1195732847886298, "grain_separation": 0.004585525312573832, "grains_center_of_mass_position": 0.39615875451421695, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005123683460439977, "throat_radius": 0.010716912014079174, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256006450190474}], "aerodynamic_surfaces": [{"length": 0.5574880285173316, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336483576693626]}, {"n": 4, "root_chord": 0.12014640531134473, "tip_chord": 0.05978797833488617, "span": 0.11066370215683237, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511996796050398]}, {"top_radius": 0.06407314295136346, "bottom_radius": 0.04496623505565127, "length": 0.05947200203349688, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013845315602109, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197477517252078, "upper_button_position": 0.08163677983500306}], "rail_length": 5, "inclination": 83.34969723671311, "heading": 55.08179521498422} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350276357430065, "mass": 14.678245370659955, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324461198767028, "I_33_without_motor": 0.03357480203611957, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.188258499978406, "trigger": 800, "sampling_rate": 105, "lag": 1.4956977821776627, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8779692872614894, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6716878496032601, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6044.139913831728, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03322942985407736, "grain_number": 5, "grain_density": 1768.9405888678834, "grain_outer_radius": 0.03281204768907252, "grain_initial_inner_radius": 0.01467658104240633, "grain_initial_height": 0.12010974360683815, "grain_separation": 0.004409827224421237, "grains_center_of_mass_position": 0.3967228136262352, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008379176468930012, "throat_radius": 0.010816839227523115, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254485768956839}], "aerodynamic_surfaces": [{"length": 0.5585779073642695, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333827896743822]}, {"n": 4, "root_chord": 0.12023260431101226, "tip_chord": 0.05918701750773579, "span": 0.1106462752056242, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0473483581601732]}, {"top_radius": 0.06320028334135021, "bottom_radius": 0.04483491599062527, "length": 0.057828977440570424, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7017802836010388, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176776090704965, "upper_button_position": 0.08410267453054232}], "rail_length": 5, "inclination": 82.96596160688564, "heading": 52.242114475564364} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350513430841971, "mass": 15.23286906770425, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332342019549494, "I_33_without_motor": 0.04143140502319652, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.860917503543524, "trigger": 800, "sampling_rate": 105, "lag": 1.452157803754932, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0188482590233432, "trigger": "apogee", "sampling_rate": 105, "lag": 1.377391723048655, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8172.57061947417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290580300784711, "grain_number": 5, "grain_density": 1777.747156491262, "grain_outer_radius": 0.03313674185847616, "grain_initial_inner_radius": 0.01516613175859888, "grain_initial_height": 0.119246066648027, "grain_separation": 0.005055176842744457, "grains_center_of_mass_position": 0.39792936293415904, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011502628865591412, "throat_radius": 0.010698937299373719, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252687358880203}], "aerodynamic_surfaces": [{"length": 0.5571087479289558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135203211095752]}, {"n": 4, "root_chord": 0.11951295771254264, "tip_chord": 0.05968413574249759, "span": 0.11068537921803485, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491441017780088]}, {"top_radius": 0.06496441866711658, "bottom_radius": 0.041480122165008695, "length": 0.06023390427775454, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983448126580118, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170725668483592, "upper_button_position": 0.08127224580965264}], "rail_length": 5, "inclination": 84.12767954102932, "heading": 54.22444658069326} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349505914060206, "mass": 15.60818041787169, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330046658714395, "I_33_without_motor": 0.020065987973644443, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.875904956489805, "trigger": 800, "sampling_rate": 105, "lag": 1.5066524812685056, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9926517091877651, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7206735898104055, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7627.568527710351, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327596768621652, "grain_number": 5, "grain_density": 1786.3007434948224, "grain_outer_radius": 0.03235870054827017, "grain_initial_inner_radius": 0.014669704942087858, "grain_initial_height": 0.11955651090385262, "grain_separation": 0.004810476525169478, "grains_center_of_mass_position": 0.3982621929418455, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.235049044487853e-05, "throat_radius": 0.011020581601558293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569949943436909}], "aerodynamic_surfaces": [{"length": 0.5575554583288616, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348850875188028]}, {"n": 4, "root_chord": 0.12047045268123723, "tip_chord": 0.05979060862503583, "span": 0.10953065994032089, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048347685888307]}, {"top_radius": 0.0639921964277703, "bottom_radius": 0.04410748227765525, "length": 0.0594032666666469, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004051564109444, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174288922162265, "upper_button_position": 0.08297626419471782}], "rail_length": 5, "inclination": 84.33178606502075, "heading": 54.13636722746974} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0634946324024474, "mass": 14.835610905120378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300455734098776, "I_33_without_motor": 0.03820128218432276, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.914287623692053, "trigger": 800, "sampling_rate": 105, "lag": 1.4138106216237531, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9909657684247849, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4311540379482148, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4440.467310125672, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03245431280946676, "grain_number": 5, "grain_density": 1809.4261410712054, "grain_outer_radius": 0.03342780775444336, "grain_initial_inner_radius": 0.014558896211689085, "grain_initial_height": 0.11912300311657853, "grain_separation": 0.005241854503250743, "grains_center_of_mass_position": 0.39678778626686334, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009403766964585064, "throat_radius": 0.010702822937397917, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552923352480927}], "aerodynamic_surfaces": [{"length": 0.5570885290082311, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355643247021334]}, {"n": 4, "root_chord": 0.1203392188304125, "tip_chord": 0.05982321096447771, "span": 0.11078772136445628, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050766935567961]}, {"top_radius": 0.06385445392192729, "bottom_radius": 0.045063216345193516, "length": 0.060387433192186826, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700476427818582, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172240408268204, "upper_button_position": 0.08325238699176163}], "rail_length": 5, "inclination": 84.2793812590304, "heading": 54.355776614212914} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06348453126640168, "mass": 16.38832123826033, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3334927530307805, "I_33_without_motor": 0.025443848520590808, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.109195672695307, "trigger": 800, "sampling_rate": 105, "lag": 1.5342665250309537, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9567680835933485, "trigger": "apogee", "sampling_rate": 105, "lag": 1.305743623396513, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6146.280930760153, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334316678319859, "grain_number": 5, "grain_density": 1840.9025760007203, "grain_outer_radius": 0.03266379058951493, "grain_initial_inner_radius": 0.015289257046668194, "grain_initial_height": 0.12041429407289868, "grain_separation": 0.004411926306434154, "grains_center_of_mass_position": 0.3966648938363256, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005757325689988242, "throat_radius": 0.011145247822532645, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551722892877246}], "aerodynamic_surfaces": [{"length": 0.5581437833027113, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357533016958021]}, {"n": 4, "root_chord": 0.11976645664459674, "tip_chord": 0.060069626991858395, "span": 0.11037274284940775, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049989655891092]}, {"top_radius": 0.0629054904109137, "bottom_radius": 0.04410201388327528, "length": 0.06203607492095628, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993719226661581, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176296175610332, "upper_button_position": 0.08174230510512492}], "rail_length": 5, "inclination": 84.21847591166176, "heading": 52.97345666382942} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349318014188673, "mass": 16.202327315624302, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324826024490246, "I_33_without_motor": 0.019127511523550474, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.019679357898218, "trigger": 800, "sampling_rate": 105, "lag": 1.5661033490545697, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.128612680272391, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2214452191708962, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5217.51369981614, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338432413248938, "grain_number": 5, "grain_density": 1897.6866433918558, "grain_outer_radius": 0.03252364748484903, "grain_initial_inner_radius": 0.014642346477584037, "grain_initial_height": 0.11988357335245928, "grain_separation": 0.006594112822820171, "grains_center_of_mass_position": 0.39599871838965656, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037838065248299075, "throat_radius": 0.011111026915023671, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563157589261316}], "aerodynamic_surfaces": [{"length": 0.560811124878647, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326765316996967]}, {"n": 4, "root_chord": 0.11976187625930262, "tip_chord": 0.059878051801214194, "span": 0.1099370004982944, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491368250729334]}, {"top_radius": 0.06377581134225863, "bottom_radius": 0.0448545209487259, "length": 0.05992903017832724, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996601420767369, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.615426217784632, "upper_button_position": 0.08423392429210486}], "rail_length": 5, "inclination": 85.23858370305682, "heading": 53.657495170692094} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350776107469869, "mass": 15.644926750118909, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329371818947511, "I_33_without_motor": 0.04487332206721982, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.161622847033883, "trigger": 800, "sampling_rate": 105, "lag": 1.5423270477777085, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9781387386836929, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5008807029373237, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7270.5004258780955, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03340769649882918, "grain_number": 5, "grain_density": 1805.5955178291877, "grain_outer_radius": 0.03301109950996728, "grain_initial_inner_radius": 0.015238490244067026, "grain_initial_height": 0.11990030955384427, "grain_separation": 0.006556310696332902, "grains_center_of_mass_position": 0.3977394293175304, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000513806344098169, "throat_radius": 0.010468559093978992, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559440788474814}], "aerodynamic_surfaces": [{"length": 0.5583073700308968, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344796534171475]}, {"n": 4, "root_chord": 0.11944330840133967, "tip_chord": 0.05966747129664632, "span": 0.11090892143508378, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497165432467388]}, {"top_radius": 0.06298211553802739, "bottom_radius": 0.04232732857996388, "length": 0.06044105462721472, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994561185297741, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187957702902133, "upper_button_position": 0.08066034823956081}], "rail_length": 5, "inclination": 84.04370909366044, "heading": 55.507075415395505} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0635014980608753, "mass": 15.65271711694893, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3134076204407625, "I_33_without_motor": 0.04163319170209176, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.936369444351017, "trigger": 800, "sampling_rate": 105, "lag": 1.361594530573781, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.989293639084787, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2896661855420521, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7404.238161745937, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032788964589120714, "grain_number": 5, "grain_density": 1753.039972018388, "grain_outer_radius": 0.03369811280141092, "grain_initial_inner_radius": 0.014941169159474074, "grain_initial_height": 0.11966566842653133, "grain_separation": 0.004672735285338137, "grains_center_of_mass_position": 0.3977790311831686, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010543736209558262, "throat_radius": 0.010749937931653658, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566462999551409}], "aerodynamic_surfaces": [{"length": 0.5585216472257858, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339525377979196]}, {"n": 4, "root_chord": 0.11964371787227233, "tip_chord": 0.060772981178062194, "span": 0.10984308916382096, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498741240736669]}, {"top_radius": 0.06433547647082374, "bottom_radius": 0.04460726746617686, "length": 0.0608979492760258, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985161362647219, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193581139800802, "upper_button_position": 0.07915802228464164}], "rail_length": 5, "inclination": 85.6835830974961, "heading": 52.27255068082167} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634969521056245, "mass": 15.392087519425296, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333768176014141, "I_33_without_motor": 0.03862794507540704, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931161139174055, "trigger": 800, "sampling_rate": 105, "lag": 1.495474674967997, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0869827564293841, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4169463832461608, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6385.204283091488, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03357257367528658, "grain_number": 5, "grain_density": 1799.6100001750976, "grain_outer_radius": 0.03305307678228023, "grain_initial_inner_radius": 0.014387796169006635, "grain_initial_height": 0.11906365595029701, "grain_separation": 0.006575975911508608, "grains_center_of_mass_position": 0.3971350793089649, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005324468101493652, "throat_radius": 0.010858013547350694, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254434462663781}], "aerodynamic_surfaces": [{"length": 0.5588708608206748, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134700289306729]}, {"n": 4, "root_chord": 0.1206886163952273, "tip_chord": 0.06060948623168518, "span": 0.1091295649723031, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491905016714271]}, {"top_radius": 0.06521556930354772, "bottom_radius": 0.04376073619381743, "length": 0.06106882561181993, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997949982032108, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187818453581246, "upper_button_position": 0.08101315284508614}], "rail_length": 5, "inclination": 83.55813280732202, "heading": 49.94390844861948} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0634998757347175, "mass": 15.871897650920321, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3140838257262875, "I_33_without_motor": 0.04170183758349523, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04927131289956, "trigger": 800, "sampling_rate": 105, "lag": 1.37635985708149, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0311092414893956, "trigger": "apogee", "sampling_rate": 105, "lag": 1.725970569668547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6426.950532265559, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032747603917030514, "grain_number": 5, "grain_density": 1889.701684777384, "grain_outer_radius": 0.03318853301240434, "grain_initial_inner_radius": 0.01505433976709102, "grain_initial_height": 0.11938942339604855, "grain_separation": 0.007379037730627171, "grains_center_of_mass_position": 0.3962690088172377, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.74240954363905e-05, "throat_radius": 0.011560968293796577, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254209017134801}], "aerodynamic_surfaces": [{"length": 0.5562303795720869, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324175828992897]}, {"n": 4, "root_chord": 0.120429682412133, "tip_chord": 0.0599346654158107, "span": 0.11006647838214018, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498987874567738]}, {"top_radius": 0.06375835692321348, "bottom_radius": 0.04391012447687073, "length": 0.05970137398958467, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001998661012954, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183376558013907, "upper_button_position": 0.0818622102999047}], "rail_length": 5, "inclination": 85.46983417183674, "heading": 55.43643442546668} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350954218415694, "mass": 15.513514730824497, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305647942190849, "I_33_without_motor": 0.04084377418011023, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945052857785274, "trigger": 800, "sampling_rate": 105, "lag": 1.43787546888932, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8862405911436301, "trigger": "apogee", "sampling_rate": 105, "lag": 1.744079233278474, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6657.731915602031, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033071677138382195, "grain_number": 5, "grain_density": 1817.7642496044655, "grain_outer_radius": 0.033159028405720756, "grain_initial_inner_radius": 0.014924325548986693, "grain_initial_height": 0.12007191946514156, "grain_separation": 0.004699482594225913, "grains_center_of_mass_position": 0.39761655362785553, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007778392265786518, "throat_radius": 0.010620407166146349, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550157894969247}], "aerodynamic_surfaces": [{"length": 0.5571883952043117, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134832288576371]}, {"n": 4, "root_chord": 0.1197611782224772, "tip_chord": 0.06049917557801075, "span": 0.10920307032444138, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495648369433486]}, {"top_radius": 0.06372973578327054, "bottom_radius": 0.04363696341750049, "length": 0.060777905642099554, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006069234927377, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171904578932442, "upper_button_position": 0.08341646559949345}], "rail_length": 5, "inclination": 84.90792096009682, "heading": 56.12960285898527} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350789442155425, "mass": 15.143683961305092, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321884671180535, "I_33_without_motor": 0.04534378359471983, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.007090453201107, "trigger": 800, "sampling_rate": 105, "lag": 1.6396167244142845, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1038461576963439, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8983173095479713, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6885.564524093413, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032809831017506404, "grain_number": 5, "grain_density": 1794.218210184839, "grain_outer_radius": 0.03360162490025273, "grain_initial_inner_radius": 0.014285776512323824, "grain_initial_height": 0.12172905090590731, "grain_separation": 0.006113716049270978, "grains_center_of_mass_position": 0.39647741139102344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021608678547305267, "throat_radius": 0.011251256907243832, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536522374513674}], "aerodynamic_surfaces": [{"length": 0.558977161260736, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350316358687775]}, {"n": 4, "root_chord": 0.11996970028588462, "tip_chord": 0.05989802806017027, "span": 0.11029313634802208, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492950373273509]}, {"top_radius": 0.06398963180665744, "bottom_radius": 0.042841959023853904, "length": 0.059159489767287694, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989305051592185, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182618733607969, "upper_button_position": 0.08066863179842165}], "rail_length": 5, "inclination": 85.2295945653282, "heading": 55.58084168071348} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.063503707455911, "mass": 16.01499430938683, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323797479629342, "I_33_without_motor": 0.01816587184045886, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.993776896132486, "trigger": 800, "sampling_rate": 105, "lag": 1.7765963186638132, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1051556358989874, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3921036099799378, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5376.436881323692, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03212813790790683, "grain_number": 5, "grain_density": 1794.2926545674995, "grain_outer_radius": 0.0335748870629007, "grain_initial_inner_radius": 0.015167340287903378, "grain_initial_height": 0.1188492849359036, "grain_separation": 0.005139475198439438, "grains_center_of_mass_position": 0.39788835782570686, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011849529871141094, "throat_radius": 0.010776359308895065, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254477410931533}], "aerodynamic_surfaces": [{"length": 0.558534094667208, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134800293355968]}, {"n": 4, "root_chord": 0.12059128743009821, "tip_chord": 0.05991886265373716, "span": 0.11056453546008801, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481560664345586]}, {"top_radius": 0.06326298729264837, "bottom_radius": 0.04283501653511277, "length": 0.05985232205656047, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006491935791315, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185812220370922, "upper_button_position": 0.08206797154203926}], "rail_length": 5, "inclination": 83.93953000836689, "heading": 52.69620689565104} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350324233271014, "mass": 15.277437636067926, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326907797575913, "I_33_without_motor": 0.030590335412860884, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95411973816789, "trigger": 800, "sampling_rate": 105, "lag": 1.5996365569541686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9057638196032252, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1131179629378967, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7141.616256957227, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03398106628334733, "grain_number": 5, "grain_density": 1794.8495549566358, "grain_outer_radius": 0.03284546124195605, "grain_initial_inner_radius": 0.015305935990804771, "grain_initial_height": 0.11956119894568729, "grain_separation": 0.005229619523831273, "grains_center_of_mass_position": 0.39718572861750395, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004752466123406707, "throat_radius": 0.010479815501422313, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254482264562431}], "aerodynamic_surfaces": [{"length": 0.5578254561516982, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1359368286619247]}, {"n": 4, "root_chord": 0.11940551474294298, "tip_chord": 0.06001860988209885, "span": 0.1095162619016329, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04861149286631]}, {"top_radius": 0.062492032663150926, "bottom_radius": 0.04388368502240673, "length": 0.05977192014303515, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005659646621296, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617646839390666, "upper_button_position": 0.08291912527146361}], "rail_length": 5, "inclination": 84.85999310697744, "heading": 51.890852591610475} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349986425678816, "mass": 14.983024722059586, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3348238836484985, "I_33_without_motor": 0.028120117905874892, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895518170452789, "trigger": 800, "sampling_rate": 105, "lag": 1.4395431173462176, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.14193278452184, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6135160685340355, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6365.586964558452, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033229910552333174, "grain_number": 5, "grain_density": 1772.2828583738008, "grain_outer_radius": 0.03351032864824775, "grain_initial_inner_radius": 0.01510892142025476, "grain_initial_height": 0.11907939848541488, "grain_separation": 0.003274360633360479, "grains_center_of_mass_position": 0.3967107052249205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007867633156004773, "throat_radius": 0.011087183381650118, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542856263156017}], "aerodynamic_surfaces": [{"length": 0.5570507585076845, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352081470627593]}, {"n": 4, "root_chord": 0.1191579003475365, "tip_chord": 0.06069116498516328, "span": 0.1097545554207471, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499960903958012]}, {"top_radius": 0.06336252361657248, "bottom_radius": 0.0436912671470343, "length": 0.05977492151066044, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001860009587473, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171300906907028, "upper_button_position": 0.08305591026804449}], "rail_length": 5, "inclination": 84.19130844430093, "heading": 54.583220828976295} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350123765526551, "mass": 15.499547047595389, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315344839049952, "I_33_without_motor": 0.03906449756175574, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.020655937482745, "trigger": 800, "sampling_rate": 105, "lag": 1.2770687239043763, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.062471038582654, "trigger": "apogee", "sampling_rate": 105, "lag": 1.52870222300725, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6598.7492827517735, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335461773787293, "grain_number": 5, "grain_density": 1819.875111978869, "grain_outer_radius": 0.0326103379782958, "grain_initial_inner_radius": 0.014950587955894448, "grain_initial_height": 0.12074306856521115, "grain_separation": 0.004568695414356814, "grains_center_of_mass_position": 0.39707832987837693, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006294467670881277, "throat_radius": 0.010705212915807465, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542904190913502}], "aerodynamic_surfaces": [{"length": 0.5595017500680063, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13287996128389]}, {"n": 4, "root_chord": 0.12041884132782943, "tip_chord": 0.05970801756470835, "span": 0.11029790622568947, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497463955784352]}, {"top_radius": 0.0643220380591384, "bottom_radius": 0.04342364682944844, "length": 0.0601720797768303, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977983193991114, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184746978173125, "upper_button_position": 0.07932362158179895}], "rail_length": 5, "inclination": 83.99935715903604, "heading": 53.30401642366757} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348886622023549, "mass": 15.758688800707624, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3051305287357575, "I_33_without_motor": 0.0341428230242732, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.804065742382393, "trigger": 800, "sampling_rate": 105, "lag": 1.4780080590000733, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.058272337248488, "trigger": "apogee", "sampling_rate": 105, "lag": 1.650020808294732, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5685.693141298414, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032784592761547, "grain_number": 5, "grain_density": 1819.8680974762487, "grain_outer_radius": 0.032903926563595226, "grain_initial_inner_radius": 0.014296526175482101, "grain_initial_height": 0.11845112539213339, "grain_separation": 0.0066714341711242445, "grains_center_of_mass_position": 0.39850547110743745, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016196591438306124, "throat_radius": 0.011780839799427088, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541738661787094}], "aerodynamic_surfaces": [{"length": 0.5574349752814101, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346571794350884]}, {"n": 4, "root_chord": 0.12052362194357988, "tip_chord": 0.06004201933325186, "span": 0.10974144225701161, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0517882018667841]}, {"top_radius": 0.06546732663850968, "bottom_radius": 0.04424005901942853, "length": 0.05965364796004198, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977456271462814, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181903732574493, "upper_button_position": 0.07955525388883211}], "rail_length": 5, "inclination": 86.12009775945226, "heading": 55.619486841993925} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349067436435181, "mass": 15.05626291773474, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326101248934818, "I_33_without_motor": 0.041838702685033854, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932727767372741, "trigger": 800, "sampling_rate": 105, "lag": 1.5868937788948576, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9842748854766102, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4576990259343308, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6894.929684394562, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256989918536166, "grain_number": 5, "grain_density": 1745.0995212423031, "grain_outer_radius": 0.03255899122611762, "grain_initial_inner_radius": 0.015346697984098368, "grain_initial_height": 0.11926494263841181, "grain_separation": 0.004990692390552356, "grains_center_of_mass_position": 0.3966304400033085, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.027495756707009e-06, "throat_radius": 0.011027760234013063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556464254068125}], "aerodynamic_surfaces": [{"length": 0.55842391848608, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335064875893248]}, {"n": 4, "root_chord": 0.12005347036782883, "tip_chord": 0.05916906588054253, "span": 0.11025584915368275, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051077533984107]}, {"top_radius": 0.062182488439540065, "bottom_radius": 0.04318430814200557, "length": 0.06013003595808938, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992442010924623, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191720680415415, "upper_button_position": 0.08007213305092087}], "rail_length": 5, "inclination": 85.45437348737757, "heading": 53.970281051344514} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350855074603891, "mass": 15.365031563103031, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326001090978079, "I_33_without_motor": 0.03690044559711738, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.160258304976738, "trigger": 800, "sampling_rate": 105, "lag": 1.493081682521241, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1061738173018294, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2374971704113262, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7490.265277196669, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328808570092346, "grain_number": 5, "grain_density": 1814.6117989904292, "grain_outer_radius": 0.03333046770750174, "grain_initial_inner_radius": 0.014850848887083797, "grain_initial_height": 0.11947051066211077, "grain_separation": 0.005380686914388265, "grains_center_of_mass_position": 0.3966441788870369, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002594424664692057, "throat_radius": 0.011664047346883775, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541605804979075}], "aerodynamic_surfaces": [{"length": 0.5581054343952467, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355531958305138]}, {"n": 4, "root_chord": 0.11989940705413861, "tip_chord": 0.0609707465147866, "span": 0.10896372754604391, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495521729654038]}, {"top_radius": 0.06394166266571165, "bottom_radius": 0.04237898705343852, "length": 0.05699602482785615, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001620978915044, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183005915872415, "upper_button_position": 0.08186150630426292}], "rail_length": 5, "inclination": 84.37829212262889, "heading": 52.65851966733011} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349492715136311, "mass": 15.542358701464329, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3375060478840775, "I_33_without_motor": 0.046012259539508986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.032608926078897, "trigger": 800, "sampling_rate": 105, "lag": 1.4162651029342264, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9157776902500241, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5818373537568158, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4157.238706569235, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033475223755284875, "grain_number": 5, "grain_density": 1819.7528006138673, "grain_outer_radius": 0.03339070365191567, "grain_initial_inner_radius": 0.014651517872407323, "grain_initial_height": 0.12182712014068513, "grain_separation": 0.003711421472742421, "grains_center_of_mass_position": 0.39631154911428007, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000530823927226152, "throat_radius": 0.011426571039208362, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536828272764973}], "aerodynamic_surfaces": [{"length": 0.5579382197996827, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337311809615975]}, {"n": 4, "root_chord": 0.12016378113520869, "tip_chord": 0.06028992526018501, "span": 0.11027294091101608, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507609415042296]}, {"top_radius": 0.06329769524720769, "bottom_radius": 0.044796039761518705, "length": 0.05940408256448031, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983602244667861, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180822683651077, "upper_button_position": 0.08027795610167843}], "rail_length": 5, "inclination": 84.03092975436964, "heading": 53.114054655205194} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351947835425127, "mass": 15.135822675240451, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325561177490967, "I_33_without_motor": 0.02764237747332487, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039666437397932, "trigger": 800, "sampling_rate": 105, "lag": 1.5823017908941934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.106979565706023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2504436119830797, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7461.27064757374, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033200107544697696, "grain_number": 5, "grain_density": 1911.8624250901146, "grain_outer_radius": 0.032887101035326896, "grain_initial_inner_radius": 0.014894606319803914, "grain_initial_height": 0.12039486477912413, "grain_separation": 0.0063437993204553105, "grains_center_of_mass_position": 0.3978856434113309, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004648480902164396, "throat_radius": 0.010750723677197782, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553706096003852}], "aerodynamic_surfaces": [{"length": 0.5584175468346618, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354950793043637]}, {"n": 4, "root_chord": 0.11998674410581589, "tip_chord": 0.059135190421887716, "span": 0.10995235659307151, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508204389614166]}, {"top_radius": 0.062018272055061344, "bottom_radius": 0.04193994030417745, "length": 0.05984995538306219, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994607021412728, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175958274740437, "upper_button_position": 0.08186487466722903}], "rail_length": 5, "inclination": 85.92735698449384, "heading": 55.82341430811067} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349823347025933, "mass": 15.778095812104727, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324803519079618, "I_33_without_motor": 0.03246994501557169, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924553546578558, "trigger": 800, "sampling_rate": 105, "lag": 1.574771315305642, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0097365007596633, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8119969783444807, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6022.194738687744, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033126061842998517, "grain_number": 5, "grain_density": 1776.8139683173276, "grain_outer_radius": 0.0323936138373845, "grain_initial_inner_radius": 0.014625636965957074, "grain_initial_height": 0.1203747186991656, "grain_separation": 0.005779464075339258, "grains_center_of_mass_position": 0.3986834747111243, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012254550615877402, "throat_radius": 0.011673579529740543, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559937321679082}], "aerodynamic_surfaces": [{"length": 0.5587110822354948, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324394931201058]}, {"n": 4, "root_chord": 0.11962986463739891, "tip_chord": 0.06047763015855791, "span": 0.11034709693905596, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049698128407956]}, {"top_radius": 0.06171013622657792, "bottom_radius": 0.044099969628712085, "length": 0.059754100712543175, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002039424318053, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169051886276599, "upper_button_position": 0.08329875380414542}], "rail_length": 5, "inclination": 86.08144309915873, "heading": 48.40438682833984} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0634999510712737, "mass": 14.918654641028834, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329639901147587, "I_33_without_motor": 0.0395192630664789, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054060838521707, "trigger": 800, "sampling_rate": 105, "lag": 1.4711320543364323, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.004512694812398, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3418790731983, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8100.138130528022, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03243253034378814, "grain_number": 5, "grain_density": 1864.5195827175721, "grain_outer_radius": 0.033348406719640726, "grain_initial_inner_radius": 0.014990585455275958, "grain_initial_height": 0.11942210796587133, "grain_separation": 0.004646140836082962, "grains_center_of_mass_position": 0.39746979274617267, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010491260736479155, "throat_radius": 0.01179304145923541, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550626683359145}], "aerodynamic_surfaces": [{"length": 0.5567451408805532, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349019662762827]}, {"n": 4, "root_chord": 0.12034893407024923, "tip_chord": 0.0590526177584761, "span": 0.10918207282944623, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050031106368182]}, {"top_radius": 0.06345032928949472, "bottom_radius": 0.044624876022873086, "length": 0.05907694408891478, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7018465427851084, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176250529852669, "upper_button_position": 0.08422148979984145}], "rail_length": 5, "inclination": 84.41371225010356, "heading": 55.65906323955001} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.063498387208614, "mass": 15.69620681026431, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326945401819298, "I_33_without_motor": 0.02778352165795119, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.966763279778721, "trigger": 800, "sampling_rate": 105, "lag": 1.4301726877878236, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.030996329556904, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8147967355932915, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6478.241640789922, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286220908068847, "grain_number": 5, "grain_density": 1734.0964673659532, "grain_outer_radius": 0.03308462739236684, "grain_initial_inner_radius": 0.015344857458555367, "grain_initial_height": 0.12042758529185647, "grain_separation": 0.005426025775185791, "grains_center_of_mass_position": 0.3975424341988597, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009895763059019572, "throat_radius": 0.010601386796390614, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546832975553666}], "aerodynamic_surfaces": [{"length": 0.5599375571391471, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347783662040767]}, {"n": 4, "root_chord": 0.11999632104649668, "tip_chord": 0.06005662132034659, "span": 0.10987363664739316, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500787067791402]}, {"top_radius": 0.06387134505322793, "bottom_radius": 0.043414279608047744, "length": 0.060417352426534, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983523834365958, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190852549453091, "upper_button_position": 0.0792671284912867}], "rail_length": 5, "inclination": 83.44035377717148, "heading": 49.94608684180439} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349753524204359, "mass": 15.988146574455655, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326042360450559, "I_33_without_motor": 0.031223208452117866, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.158900058545283, "trigger": 800, "sampling_rate": 105, "lag": 1.5809580501071925, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0346371580789724, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4576637969350732, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5864.045772204929, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311934496459195, "grain_number": 5, "grain_density": 1863.7157514146725, "grain_outer_radius": 0.033325508521743055, "grain_initial_inner_radius": 0.01486889881564824, "grain_initial_height": 0.11991621659250941, "grain_separation": 0.00643129525227096, "grains_center_of_mass_position": 0.3949581017854389, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008825868417516481, "throat_radius": 0.01094026311693871, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542725939976271}], "aerodynamic_surfaces": [{"length": 0.5575213836008724, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330425277148835]}, {"n": 4, "root_chord": 0.12037910922731945, "tip_chord": 0.060623334738908775, "span": 0.11081067208509997, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050173449914203]}, {"top_radius": 0.06481904221808446, "bottom_radius": 0.0422380596517419, "length": 0.06217489224142437, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013748192509004, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192517612578947, "upper_button_position": 0.08212305799300568}], "rail_length": 5, "inclination": 85.33416186498094, "heading": 55.35335631719758} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350231490406084, "mass": 15.731645375086881, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318201915500606, "I_33_without_motor": 0.04161000910212801, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924883439953392, "trigger": 800, "sampling_rate": 105, "lag": 1.2757964797633479, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0162874504810955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4466326567235521, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7818.007638560977, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03230768637492373, "grain_number": 5, "grain_density": 1862.3090854463976, "grain_outer_radius": 0.033184535283408, "grain_initial_inner_radius": 0.014616524742056934, "grain_initial_height": 0.11893855708356647, "grain_separation": 0.0050693884513751675, "grains_center_of_mass_position": 0.3984949219326091, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.845166708517998e-05, "throat_radius": 0.011198823176206012, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549694142967114}], "aerodynamic_surfaces": [{"length": 0.5591274449310043, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.136847437365681]}, {"n": 4, "root_chord": 0.11889631065786462, "tip_chord": 0.06055851970770461, "span": 0.11016868879115342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483276577846092]}, {"top_radius": 0.06409803300713247, "bottom_radius": 0.04392894419669031, "length": 0.059086016025162696, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996361904267553, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164501782299554, "upper_button_position": 0.08318601219679989}], "rail_length": 5, "inclination": 86.65460825084192, "heading": 54.13591179999723} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349522780829606, "mass": 15.364935568627693, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319045662631258, "I_33_without_motor": 0.0294343075850868, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.076604275626194, "trigger": 800, "sampling_rate": 105, "lag": 1.7430015283219313, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8523991869473664, "trigger": "apogee", "sampling_rate": 105, "lag": 1.889854728545803, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5753.7911525957525, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324325994465998, "grain_number": 5, "grain_density": 1850.0949917562832, "grain_outer_radius": 0.03247306091575666, "grain_initial_inner_radius": 0.014948216937424008, "grain_initial_height": 0.12148742688745753, "grain_separation": 0.006508421955662333, "grains_center_of_mass_position": 0.3979144210371086, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000133126699569955, "throat_radius": 0.011849897306411093, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550682940264335}], "aerodynamic_surfaces": [{"length": 0.5586752820248376, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345541971275037]}, {"n": 4, "root_chord": 0.11949653424930903, "tip_chord": 0.06068848371704624, "span": 0.11050487721690443, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490606990752245]}, {"top_radius": 0.06248626681775391, "bottom_radius": 0.043841282854172894, "length": 0.060624818191078435, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6976596556854153, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189165456526959, "upper_button_position": 0.07874311003271939}], "rail_length": 5, "inclination": 84.38541015710894, "heading": 52.565620714761344} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0634988412369042, "mass": 15.934737252410953, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317630495047607, "I_33_without_motor": 0.022246761979025004, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09669706605349, "trigger": 800, "sampling_rate": 105, "lag": 1.5615282384297533, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9558100556256458, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3158613253852272, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4405.497177608882, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033485790698618914, "grain_number": 5, "grain_density": 1762.5697043128293, "grain_outer_radius": 0.03260954965646142, "grain_initial_inner_radius": 0.014628901191936928, "grain_initial_height": 0.11857644042176402, "grain_separation": 0.005597262299017561, "grains_center_of_mass_position": 0.39741620637257696, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031655478089097323, "throat_radius": 0.01048073246042265, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255270994376331}], "aerodynamic_surfaces": [{"length": 0.5600328696436531, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135321270336162]}, {"n": 4, "root_chord": 0.11890384903574312, "tip_chord": 0.06051625023986482, "span": 0.10986845941967278, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049890121550519]}, {"top_radius": 0.06270497469696709, "bottom_radius": 0.043283276086178116, "length": 0.06058268325033852, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995437856906495, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168668562848231, "upper_button_position": 0.08267692940582638}], "rail_length": 5, "inclination": 84.88462858090492, "heading": 52.535702870244066} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.0635139505374966, "mass": 15.311038444219069, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331895051375391, "I_33_without_motor": 0.05921324372909181, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.174886988880747, "trigger": 800, "sampling_rate": 105, "lag": 1.5285140132366224, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9219248123227799, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2709587386998962, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6419.584427828064, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03347931370237699, "grain_number": 5, "grain_density": 1714.2835675760014, "grain_outer_radius": 0.03375517556843611, "grain_initial_inner_radius": 0.014971323039729353, "grain_initial_height": 0.11877094702668108, "grain_separation": 0.006310744825678338, "grains_center_of_mass_position": 0.39776133526600393, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014827535468946837, "throat_radius": 0.01055164299950897, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557215870521101}], "aerodynamic_surfaces": [{"length": 0.5590588486738403, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1323166071225292]}, {"n": 4, "root_chord": 0.12084177515356914, "tip_chord": 0.060449711928889774, "span": 0.110199181623417, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500600937293012]}, {"top_radius": 0.06287347101579259, "bottom_radius": 0.04450233950896635, "length": 0.06026451589666068, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003100632398196, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180977213631975, "upper_button_position": 0.08221234187662207}], "rail_length": 5, "inclination": 85.50738324561442, "heading": 50.70452141049122} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350004948947888, "mass": 16.045861006807023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334225669094829, "I_33_without_motor": 0.02706976794494106, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.970439764599519, "trigger": 800, "sampling_rate": 105, "lag": 1.512194629620868, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9731889633755334, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2156480780568772, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7690.993556629401, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03232683758720196, "grain_number": 5, "grain_density": 1812.6870618166197, "grain_outer_radius": 0.03257636865610193, "grain_initial_inner_radius": 0.015176343433926553, "grain_initial_height": 0.12009488251824935, "grain_separation": 0.006165918659009424, "grains_center_of_mass_position": 0.39926486661402, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004948404793069275, "throat_radius": 0.011290074988191817, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550074608432444}], "aerodynamic_surfaces": [{"length": 0.5568747723456879, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344443989682413]}, {"n": 4, "root_chord": 0.12024415898492155, "tip_chord": 0.06002050803241492, "span": 0.11059599386529603, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503051639550611]}, {"top_radius": 0.06374158236158495, "bottom_radius": 0.04362623814622125, "length": 0.06056621920317575, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008947752713756, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189493774748995, "upper_button_position": 0.08194539779647603}], "rail_length": 5, "inclination": 85.39800722173602, "heading": 53.98124049302496} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350010605522466, "mass": 14.3395949151865, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3026219160705095, "I_33_without_motor": 0.049500974619480956, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98406872386949, "trigger": 800, "sampling_rate": 105, "lag": 1.3747486844168968, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8888117497187779, "trigger": "apogee", "sampling_rate": 105, "lag": 1.548818639013955, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5588.163659134528, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339242015839864, "grain_number": 5, "grain_density": 1722.439331244993, "grain_outer_radius": 0.03307105283214475, "grain_initial_inner_radius": 0.014545722946584627, "grain_initial_height": 0.11706481033668809, "grain_separation": 0.004022995889173393, "grains_center_of_mass_position": 0.3956137783780817, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004066446735202998, "throat_radius": 0.010891534454311774, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544184441642274}], "aerodynamic_surfaces": [{"length": 0.5576127070915169, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336404331491505]}, {"n": 4, "root_chord": 0.12014693680319909, "tip_chord": 0.05977294036702106, "span": 0.10951809745099106, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511437309945373]}, {"top_radius": 0.06259217128453336, "bottom_radius": 0.04356934715108072, "length": 0.06319772364456198, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992938854019954, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617265459725294, "upper_button_position": 0.08202842567670143}], "rail_length": 5, "inclination": 83.08156831751224, "heading": 50.94869851529274} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350985696795801, "mass": 15.668886547172317, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313875859680137, "I_33_without_motor": 0.03421280298919989, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.064446049062209, "trigger": 800, "sampling_rate": 105, "lag": 1.4399425661381864, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1170401186646024, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0261306963813486, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5819.628359031245, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293693441865189, "grain_number": 5, "grain_density": 1816.1296779263557, "grain_outer_radius": 0.032529274228795584, "grain_initial_inner_radius": 0.01508918304053847, "grain_initial_height": 0.12004557676911658, "grain_separation": 0.004589374059386924, "grains_center_of_mass_position": 0.3972648734167828, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00046696007379011154, "throat_radius": 0.010064290350451864, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550865083518459}], "aerodynamic_surfaces": [{"length": 0.5603152258932905, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353817501169545]}, {"n": 4, "root_chord": 0.11941634403848225, "tip_chord": 0.059928103534411845, "span": 0.11055388320674052, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0517580773021669]}, {"top_radius": 0.06487987394917503, "bottom_radius": 0.045098688570541286, "length": 0.05990973438042722, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7023550123402025, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184077038199715, "upper_button_position": 0.08394730852023102}], "rail_length": 5, "inclination": 84.52334306796257, "heading": 52.29198079016489} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06351127571120825, "mass": 15.455755990584933, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328677623724963, "I_33_without_motor": 0.0482145180468658, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94728678943809, "trigger": 800, "sampling_rate": 105, "lag": 1.3907969827352145, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9533742990979484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7719087946838359, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6602.0265282800565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320302715420152, "grain_number": 5, "grain_density": 1691.6752097159742, "grain_outer_radius": 0.033098222561681795, "grain_initial_inner_radius": 0.014531923530446378, "grain_initial_height": 0.1189622918709741, "grain_separation": 0.005751401498361906, "grains_center_of_mass_position": 0.3953645100212714, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009575043811177538, "throat_radius": 0.010912667396677228, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555617023587842}], "aerodynamic_surfaces": [{"length": 0.5572834165678454, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1362538924277505]}, {"n": 4, "root_chord": 0.11950949966026153, "tip_chord": 0.06038961078492282, "span": 0.109470485654392, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488924130182353]}, {"top_radius": 0.06433618190673941, "bottom_radius": 0.04322084574824998, "length": 0.06005348358085499, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015204108372836, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164456451147111, "upper_button_position": 0.08507476572257244}], "rail_length": 5, "inclination": 83.4252688797012, "heading": 53.86909532885018} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06351175636704652, "mass": 14.959217164071147, "I_11_without_motor": 6.321, "I_22_without_motor": 6.343520929158641, "I_33_without_motor": 0.033015594704358574, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997723083722494, "trigger": 800, "sampling_rate": 105, "lag": 1.5741807121709177, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0216429955850237, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2051198938714511, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5843.354466089802, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220749378755089, "grain_number": 5, "grain_density": 1857.5568753845675, "grain_outer_radius": 0.03293937515269066, "grain_initial_inner_radius": 0.01495437242702397, "grain_initial_height": 0.11874244825585296, "grain_separation": 0.0037644799807117517, "grains_center_of_mass_position": 0.39506124828268735, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011744490830247858, "throat_radius": 0.011753155373486254, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532684721268512}], "aerodynamic_surfaces": [{"length": 0.5576777914155462, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327418168630041]}, {"n": 4, "root_chord": 0.12017294895320438, "tip_chord": 0.05972929483615192, "span": 0.1102976766095353, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049493412031275]}, {"top_radius": 0.06374122508668355, "bottom_radius": 0.04352091475488886, "length": 0.05881986337954354, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991090653738048, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183959359327325, "upper_button_position": 0.08071312944107234}], "rail_length": 5, "inclination": 84.59835429771886, "heading": 51.57005285000913} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349809252166556, "mass": 15.385715770580642, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305966280566546, "I_33_without_motor": 0.029009143001365565, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.873406139980451, "trigger": 800, "sampling_rate": 105, "lag": 1.442957743418346, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.868903022035272, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2534205092614816, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5686.045897996519, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324393731297674, "grain_number": 5, "grain_density": 1761.6164953913642, "grain_outer_radius": 0.03297699298760117, "grain_initial_inner_radius": 0.015236095121485348, "grain_initial_height": 0.12036656212366599, "grain_separation": 0.004421757438639459, "grains_center_of_mass_position": 0.3979167689881482, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005770429730152391, "throat_radius": 0.011206982023082826, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253508559183012}], "aerodynamic_surfaces": [{"length": 0.5599173058509325, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341301876025849]}, {"n": 4, "root_chord": 0.11910186783244414, "tip_chord": 0.06007315484967732, "span": 0.11028042543070694, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496720022650659]}, {"top_radius": 0.06318561460026233, "bottom_radius": 0.04483831396161654, "length": 0.059516538507191255, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698236558582407, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186648220839601, "upper_button_position": 0.07957173649844684}], "rail_length": 5, "inclination": 82.4612697527815, "heading": 51.67399044513104} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0635037391247205, "mass": 16.027749693171664, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317028986821713, "I_33_without_motor": 0.024503592983412016, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125645767110713, "trigger": 800, "sampling_rate": 105, "lag": 1.3219269402232532, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9430759312524573, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6371547968468387, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7419.520240790396, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033621238775392276, "grain_number": 5, "grain_density": 1852.1471903045606, "grain_outer_radius": 0.0331338932470535, "grain_initial_inner_radius": 0.014833006450070437, "grain_initial_height": 0.11822068994396229, "grain_separation": 0.004119045686324426, "grains_center_of_mass_position": 0.39684523263471816, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008820341768581312, "throat_radius": 0.011121496808683748, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551761154182832}], "aerodynamic_surfaces": [{"length": 0.5602127553141113, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134798850698341]}, {"n": 4, "root_chord": 0.11948270666277302, "tip_chord": 0.06046042833467295, "span": 0.1096571837358548, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051431512041089]}, {"top_radius": 0.0615894540254346, "bottom_radius": 0.044376104073219756, "length": 0.059778387983410675, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990200933954117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618539246346124, "upper_button_position": 0.08048084704928771}], "rail_length": 5, "inclination": 83.38776895017479, "heading": 54.67102366075756} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0634926472664697, "mass": 15.633050465915467, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316413341201597, "I_33_without_motor": 0.02886909439944514, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.766303372734843, "trigger": 800, "sampling_rate": 105, "lag": 1.543070021384143, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.132755955945378, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8660879815961968, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5757.606911039276, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033305938124187716, "grain_number": 5, "grain_density": 1724.747311653914, "grain_outer_radius": 0.03309761620597316, "grain_initial_inner_radius": 0.015297111280227102, "grain_initial_height": 0.11991176770873908, "grain_separation": 0.004679210079458396, "grains_center_of_mass_position": 0.39740221785362073, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014140458673114777, "throat_radius": 0.011198511017653245, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255452285329302}], "aerodynamic_surfaces": [{"length": 0.5588346470948022, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333273574665648]}, {"n": 4, "root_chord": 0.11942846738571727, "tip_chord": 0.0607687188973912, "span": 0.10953094861524837, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048037859148489]}, {"top_radius": 0.0638337453374223, "bottom_radius": 0.041957514448809574, "length": 0.06018559466642493, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005242575879692, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168038981176999, "upper_button_position": 0.08372035947026935}], "rail_length": 5, "inclination": 84.35564236477784, "heading": 53.975253752509595} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349714268410711, "mass": 14.726009889976638, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335328421411064, "I_33_without_motor": 0.03272229013385695, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998739070695889, "trigger": 800, "sampling_rate": 105, "lag": 1.5795010763127522, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9685985958733297, "trigger": "apogee", "sampling_rate": 105, "lag": 1.458090423649357, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7372.7896845779815, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330858797191869, "grain_number": 5, "grain_density": 1872.3778451272588, "grain_outer_radius": 0.03339814489975307, "grain_initial_inner_radius": 0.015120871281196555, "grain_initial_height": 0.1203397947978759, "grain_separation": 0.004573932568560747, "grains_center_of_mass_position": 0.3982055315783331, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006242036464417888, "throat_radius": 0.011925295566338995, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538335304319161}], "aerodynamic_surfaces": [{"length": 0.5589483672127413, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336659570697443]}, {"n": 4, "root_chord": 0.12032811058878867, "tip_chord": 0.05997823135278144, "span": 0.10973569933583972, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501496861454418]}, {"top_radius": 0.06457793247512597, "bottom_radius": 0.0435019951840587, "length": 0.057761506284778184, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010766413552948, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188649465831638, "upper_button_position": 0.08221169477213097}], "rail_length": 5, "inclination": 84.50080287474997, "heading": 56.63417729012817} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350857441504204, "mass": 15.539349507388707, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329783811073404, "I_33_without_motor": 0.013341715490661581, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.906343728233669, "trigger": 800, "sampling_rate": 105, "lag": 1.4937631510199063, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9058596082214104, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7611824945433563, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6224.809550105991, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0333729423170596, "grain_number": 5, "grain_density": 1746.6538405361027, "grain_outer_radius": 0.033209466655461345, "grain_initial_inner_radius": 0.014669607329599816, "grain_initial_height": 0.1212964579423455, "grain_separation": 0.004829505527046423, "grains_center_of_mass_position": 0.39705926179394085, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004084106097222782, "throat_radius": 0.010939465722524777, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540126422474152}], "aerodynamic_surfaces": [{"length": 0.557596498765491, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133934226330005]}, {"n": 4, "root_chord": 0.12011220315391047, "tip_chord": 0.05984528189682689, "span": 0.11019555646754836, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492598235949415]}, {"top_radius": 0.06274591148946422, "bottom_radius": 0.043570302694547536, "length": 0.05922893373750882, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016069081827757, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197735173852172, "upper_button_position": 0.08183339079755847}], "rail_length": 5, "inclination": 87.46499220586755, "heading": 55.05209319492698} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349532962078466, "mass": 14.665720771699387, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308099428661348, "I_33_without_motor": 0.04500851105517449, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.899370776604009, "trigger": 800, "sampling_rate": 105, "lag": 1.6080964393086965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9927039578809116, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8960403006739994, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7132.583999791646, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033510862470894416, "grain_number": 5, "grain_density": 1725.4447485135893, "grain_outer_radius": 0.0331874666283736, "grain_initial_inner_radius": 0.015134015395994899, "grain_initial_height": 0.11764483411653251, "grain_separation": 0.006442644251925551, "grains_center_of_mass_position": 0.39797876076228356, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001293169408518368, "throat_radius": 0.01152910654133955, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565176562192306}], "aerodynamic_surfaces": [{"length": 0.5585472653373014, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135106943036737]}, {"n": 4, "root_chord": 0.11937104712977531, "tip_chord": 0.06010258457765311, "span": 0.11005675533347342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499623363551782]}, {"top_radius": 0.06469877360008766, "bottom_radius": 0.04420818552897864, "length": 0.060643371846542636, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999615047753613, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166381801805055, "upper_button_position": 0.08332332459485581}], "rail_length": 5, "inclination": 83.5145818440561, "heading": 52.34898088710954} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350505553798819, "mass": 16.09587022576727, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330623537641071, "I_33_without_motor": 0.03315082572068727, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003777110972178, "trigger": 800, "sampling_rate": 105, "lag": 1.6350984354937925, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9332812779228935, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4151894627237678, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7742.749761312347, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288268512223668, "grain_number": 5, "grain_density": 1858.448483862337, "grain_outer_radius": 0.033163772199830015, "grain_initial_inner_radius": 0.015142162511663972, "grain_initial_height": 0.12046333536589973, "grain_separation": 0.0056327247396633535, "grains_center_of_mass_position": 0.3975944320451169, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0020384750269042077, "throat_radius": 0.010044237714525272, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529708720884842}], "aerodynamic_surfaces": [{"length": 0.5589930840452726, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342317568652074]}, {"n": 4, "root_chord": 0.11905428710481042, "tip_chord": 0.05926480406283329, "span": 0.10987728173826862, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490967345092839]}, {"top_radius": 0.061434406551596044, "bottom_radius": 0.043058031456627115, "length": 0.06059124993716718, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003656273854044, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188651652269712, "upper_button_position": 0.0815004621584332}], "rail_length": 5, "inclination": 84.81551829093702, "heading": 54.66028253062239} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350267940457086, "mass": 15.413567646905607, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312289656263715, "I_33_without_motor": 0.04129503070683141, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996934185462502, "trigger": 800, "sampling_rate": 105, "lag": 1.5501108365127363, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9794118195592416, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3683197330671373, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7956.74985760673, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03259151946402741, "grain_number": 5, "grain_density": 1827.7236554241806, "grain_outer_radius": 0.03343366940152026, "grain_initial_inner_radius": 0.015387759602653114, "grain_initial_height": 0.1203802805678554, "grain_separation": 0.006211998122160448, "grains_center_of_mass_position": 0.3966323014971418, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001442081554764035, "throat_radius": 0.0113600925999312, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558529707369182}], "aerodynamic_surfaces": [{"length": 0.5578544725027189, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135404669918415]}, {"n": 4, "root_chord": 0.1204948050412023, "tip_chord": 0.059752985005826514, "span": 0.11012034832908012, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494550289597069]}, {"top_radius": 0.06407357917656958, "bottom_radius": 0.04388691916089377, "length": 0.060989606364578376, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000262575335878, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171769051130697, "upper_button_position": 0.08284935242051816}], "rail_length": 5, "inclination": 85.01295462063148, "heading": 48.97135249646679} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.0635144828196588, "mass": 15.01945155159707, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319044236534448, "I_33_without_motor": 0.02544753684569029, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.377215165444898, "trigger": 800, "sampling_rate": 105, "lag": 1.5452344889661855, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0054687099481703, "trigger": "apogee", "sampling_rate": 105, "lag": 1.499604768015211, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5217.958135248294, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350201348782661, "grain_number": 5, "grain_density": 1816.8191316501795, "grain_outer_radius": 0.03304608063370366, "grain_initial_inner_radius": 0.015456770026204396, "grain_initial_height": 0.11898666408433078, "grain_separation": 0.006812758713298982, "grains_center_of_mass_position": 0.3973916789573115, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.9364903204936152e-05, "throat_radius": 0.01026859569015046, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553608673897125}], "aerodynamic_surfaces": [{"length": 0.5571008333598383, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346185820836607]}, {"n": 4, "root_chord": 0.12013827918429092, "tip_chord": 0.05930064521493119, "span": 0.10955459074837023, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489666792860388]}, {"top_radius": 0.06364012221430516, "bottom_radius": 0.04246983875567686, "length": 0.060231251963777106, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995596557252846, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188893231455476, "upper_button_position": 0.08067033257973699}], "rail_length": 5, "inclination": 83.7680569061157, "heading": 49.95622416845636} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350130403309107, "mass": 14.445622767686121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327640359773376, "I_33_without_motor": 0.030859351428446036, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059858432053483, "trigger": 800, "sampling_rate": 105, "lag": 1.4681780832898155, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0029914741187491, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6857271164926502, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5999.245796512958, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297776009448263, "grain_number": 5, "grain_density": 1776.0184130292066, "grain_outer_radius": 0.03245661667754662, "grain_initial_inner_radius": 0.014852452387196558, "grain_initial_height": 0.11921833655198126, "grain_separation": 0.00621530141874032, "grains_center_of_mass_position": 0.3973863567907379, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005911781829359399, "throat_radius": 0.010348184943695746, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566961339004603}], "aerodynamic_surfaces": [{"length": 0.5576823231948971, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1358441288136174]}, {"n": 4, "root_chord": 0.11985837175663458, "tip_chord": 0.06030789760647017, "span": 0.11042906026201423, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050382913130836]}, {"top_radius": 0.06351676430813122, "bottom_radius": 0.04485992050879767, "length": 0.0586046613630167, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998323350153974, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191201214269494, "upper_button_position": 0.08071221358844805}], "rail_length": 5, "inclination": 84.27038801009523, "heading": 55.08408849345455} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349946963677315, "mass": 15.233951231542523, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329590641921764, "I_33_without_motor": 0.040119026871500256, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.016663158101712, "trigger": 800, "sampling_rate": 105, "lag": 1.43365434545541, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.87889792356295, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6378037589041723, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7003.8834531921775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248941814593559, "grain_number": 5, "grain_density": 1810.2267668403954, "grain_outer_radius": 0.033473465634589555, "grain_initial_inner_radius": 0.014651351263278985, "grain_initial_height": 0.11877816638365345, "grain_separation": 0.004862230923993469, "grains_center_of_mass_position": 0.3964351185092806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007804852296017067, "throat_radius": 0.011320277901890488, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545904014294647}], "aerodynamic_surfaces": [{"length": 0.559803384250158, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1315082513655772]}, {"n": 4, "root_chord": 0.12018290348449163, "tip_chord": 0.06036563828020916, "span": 0.11093173727049588, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506936025723508]}, {"top_radius": 0.06542035587234797, "bottom_radius": 0.043149492172864075, "length": 0.061530363471184846, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993771928515429, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179195781590928, "upper_button_position": 0.08145761469245005}], "rail_length": 5, "inclination": 83.69200731735172, "heading": 51.99977369729162} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349823938688273, "mass": 15.118449124552383, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321205452805958, "I_33_without_motor": 0.04870693135862825, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.191495466188139, "trigger": 800, "sampling_rate": 105, "lag": 1.4163892504273201, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9831709526393176, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3172624412388223, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6837.052294890963, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328965684572617, "grain_number": 5, "grain_density": 1813.8992478654377, "grain_outer_radius": 0.03411820690018107, "grain_initial_inner_radius": 0.014332111247428702, "grain_initial_height": 0.1209295169643402, "grain_separation": 0.0053829707844781135, "grains_center_of_mass_position": 0.3977825429269374, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006584668276158896, "throat_radius": 0.011737717796387489, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254359606065382}], "aerodynamic_surfaces": [{"length": 0.5586626219170385, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338921294269353]}, {"n": 4, "root_chord": 0.11972181900550555, "tip_chord": 0.059261404270353764, "span": 0.10948962601765994, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511176626812655]}, {"top_radius": 0.06246225838327949, "bottom_radius": 0.043565266186841936, "length": 0.060206220125839933, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995640427351217, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180084151735797, "upper_button_position": 0.081555627561542}], "rail_length": 5, "inclination": 84.81685645390151, "heading": 51.59454190904624} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350734918709083, "mass": 15.285039329043224, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314549557051038, "I_33_without_motor": 0.05622192925540749, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.893129925015485, "trigger": 800, "sampling_rate": 105, "lag": 1.3448959739720254, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0510270243834825, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6502821628492637, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8886.65702990845, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033279508846566816, "grain_number": 5, "grain_density": 1787.290110724771, "grain_outer_radius": 0.03339405285452257, "grain_initial_inner_radius": 0.014823478875214435, "grain_initial_height": 0.11910259161300453, "grain_separation": 0.006080026836768657, "grains_center_of_mass_position": 0.3972756148416055, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00041176025511043, "throat_radius": 0.010995441246024761, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558498092931314}], "aerodynamic_surfaces": [{"length": 0.5576534938877596, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.136090407198453]}, {"n": 4, "root_chord": 0.11972585473465751, "tip_chord": 0.06080977991044983, "span": 0.10913358181062942, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496456486549393]}, {"top_radius": 0.06450282297454459, "bottom_radius": 0.04361375311245809, "length": 0.060037733210182555, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012753151565649, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186579448688948, "upper_button_position": 0.08261737028767013}], "rail_length": 5, "inclination": 85.04118512466444, "heading": 52.385216604466386} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349491463503099, "mass": 15.86100827481071, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339623359000819, "I_33_without_motor": 0.014354170729971971, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933217930362149, "trigger": 800, "sampling_rate": 105, "lag": 1.4001176803004987, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9002149573538439, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0859386395179491, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5803.5150678580585, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03373448031849253, "grain_number": 5, "grain_density": 1750.904605310341, "grain_outer_radius": 0.03366437350025174, "grain_initial_inner_radius": 0.014301504427012005, "grain_initial_height": 0.1179357425856578, "grain_separation": 0.005296919398180252, "grains_center_of_mass_position": 0.3982208268244878, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00133941812177839, "throat_radius": 0.010269952469758686, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2574479086467973}], "aerodynamic_surfaces": [{"length": 0.5583316066958854, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1364045027386223]}, {"n": 4, "root_chord": 0.12095271930861469, "tip_chord": 0.05941851934417883, "span": 0.11019182857798422, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049949469877545]}, {"top_radius": 0.06250680756835578, "bottom_radius": 0.04380273157938271, "length": 0.061091837969014004, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996450568668631, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6157855264697037, "upper_button_position": 0.08385953039715932}], "rail_length": 5, "inclination": 84.93868983817691, "heading": 53.91481452589707} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350311919712795, "mass": 15.196502319455883, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304901224831588, "I_33_without_motor": 0.030384097982629203, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99187087535497, "trigger": 800, "sampling_rate": 105, "lag": 1.5436675858529905, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9957489539989393, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5512914843246661, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5327.702397987585, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0331527687152462, "grain_number": 5, "grain_density": 1803.1592946730714, "grain_outer_radius": 0.03278998363924284, "grain_initial_inner_radius": 0.01503198246120801, "grain_initial_height": 0.12172637817582811, "grain_separation": 0.006985246813179399, "grains_center_of_mass_position": 0.3978011258959916, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008080923760374614, "throat_radius": 0.010658971387843877, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550461925268461}], "aerodynamic_surfaces": [{"length": 0.5589951489044431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328115489139583]}, {"n": 4, "root_chord": 0.12027824490883657, "tip_chord": 0.0598487610720905, "span": 0.10949961023712737, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049270254328817]}, {"top_radius": 0.06425229454571789, "bottom_radius": 0.04295789205668767, "length": 0.061094869169416526, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993477842982013, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199022502568756, "upper_button_position": 0.0794455340413257}], "rail_length": 5, "inclination": 86.51598978708908, "heading": 50.40384557494758} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350938128273781, "mass": 15.249501904524084, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320197872745485, "I_33_without_motor": 0.024511442475775448, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.885691301136628, "trigger": 800, "sampling_rate": 105, "lag": 1.3469570001319167, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0148557401750786, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2085154596987784, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7430.707685771935, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03356515970624313, "grain_number": 5, "grain_density": 1852.929851918712, "grain_outer_radius": 0.03246180154088769, "grain_initial_inner_radius": 0.015066965374615356, "grain_initial_height": 0.11909247153192211, "grain_separation": 0.004381180946607673, "grains_center_of_mass_position": 0.3945477174273696, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00025875338946434193, "throat_radius": 0.011423121897367399, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254541238891995}], "aerodynamic_surfaces": [{"length": 0.5583574526514892, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340077376125042]}, {"n": 4, "root_chord": 0.11865870111383793, "tip_chord": 0.058926474474730796, "span": 0.10998611095592273, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048852748528769]}, {"top_radius": 0.060964726860743695, "bottom_radius": 0.04393718369497751, "length": 0.05973977486133744, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000782420210389, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171857890911839, "upper_button_position": 0.08289245292985492}], "rail_length": 5, "inclination": 83.79870581066736, "heading": 53.43728695609846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.0635000187347253, "mass": 15.428029030275024, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340002226481939, "I_33_without_motor": 0.03156117969575498, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003855314685557, "trigger": 800, "sampling_rate": 105, "lag": 1.4953121450202078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9167627804814565, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7892944387169825, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7322.920883507924, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03270003869621097, "grain_number": 5, "grain_density": 1718.5442151487384, "grain_outer_radius": 0.032555734977132926, "grain_initial_inner_radius": 0.014761356128597355, "grain_initial_height": 0.1207219870993452, "grain_separation": 0.005184164040040063, "grains_center_of_mass_position": 0.39694972972523845, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009563024766058775, "throat_radius": 0.01031587587765163, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254451256256526}], "aerodynamic_surfaces": [{"length": 0.5573080231873769, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333314930191645]}, {"n": 4, "root_chord": 0.12081628638380995, "tip_chord": 0.0596001196779106, "span": 0.11071197902949018, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050090078295785]}, {"top_radius": 0.06257318592644116, "bottom_radius": 0.04462979169803187, "length": 0.05944082185387266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698372350782432, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180083500407928, "upper_button_position": 0.08036400074163919}], "rail_length": 5, "inclination": 84.78191824218224, "heading": 51.09433481444272} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349833053214647, "mass": 15.427308533626748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316785362340332, "I_33_without_motor": 0.03146729521949797, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.83495216421965, "trigger": 800, "sampling_rate": 105, "lag": 1.5246072163674174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8886072100750929, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4365323693407164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6731.610816912478, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032849317181926026, "grain_number": 5, "grain_density": 1787.4360797740783, "grain_outer_radius": 0.03275545666126257, "grain_initial_inner_radius": 0.014607952290214431, "grain_initial_height": 0.11811793389015961, "grain_separation": 0.002480562106899726, "grains_center_of_mass_position": 0.39762326226082684, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010237105073937606, "throat_radius": 0.011395989125213848, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552410954479492}], "aerodynamic_surfaces": [{"length": 0.5580805343256731, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343257051820532]}, {"n": 4, "root_chord": 0.12035491880489486, "tip_chord": 0.06071143096778775, "span": 0.11006197999313792, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04848915464946]}, {"top_radius": 0.06313986328849859, "bottom_radius": 0.042580269172266635, "length": 0.06086007803511578, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995405555733063, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61729310132877, "upper_button_position": 0.08224745424453628}], "rail_length": 5, "inclination": 83.06850571800348, "heading": 53.00842894253259} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350401814424016, "mass": 15.4372948186912, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316778082102208, "I_33_without_motor": 0.02256401113066888, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.072816122499125, "trigger": 800, "sampling_rate": 105, "lag": 1.6965189709994548, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0110444944332446, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8947856160426844, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6133.098500712807, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0321926834085477, "grain_number": 5, "grain_density": 1767.5135461889365, "grain_outer_radius": 0.032740609772694, "grain_initial_inner_radius": 0.015489349922009328, "grain_initial_height": 0.11969756549996768, "grain_separation": 0.005278766961960784, "grains_center_of_mass_position": 0.3968631745633446, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021291303125413016, "throat_radius": 0.010510082879242306, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557935024106937}], "aerodynamic_surfaces": [{"length": 0.5583425650013775, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1359015068635303]}, {"n": 4, "root_chord": 0.12026878364027875, "tip_chord": 0.06058590827191151, "span": 0.11018031526227565, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507126027469378]}, {"top_radius": 0.06281478010799318, "bottom_radius": 0.04544037659440148, "length": 0.06039330472175383, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699896679536826, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172840263812658, "upper_button_position": 0.08261265315556021}], "rail_length": 5, "inclination": 85.67576999018875, "heading": 53.462634562093534} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349800132351041, "mass": 14.974104017796344, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304928589343453, "I_33_without_motor": 0.022734567379571517, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.069947754212256, "trigger": 800, "sampling_rate": 105, "lag": 1.4471805834397407, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.099285573106645, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2506395891590718, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6767.49124402299, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033468456957875675, "grain_number": 5, "grain_density": 1830.3544975064274, "grain_outer_radius": 0.03333135571974615, "grain_initial_inner_radius": 0.015097416872889598, "grain_initial_height": 0.12075441432492359, "grain_separation": 0.006186730010231244, "grains_center_of_mass_position": 0.39747360901837986, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00018982622506288804, "throat_radius": 0.011146818989544864, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532592683047328}], "aerodynamic_surfaces": [{"length": 0.5602949380610462, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135725735813009]}, {"n": 4, "root_chord": 0.12043444570987766, "tip_chord": 0.05997955147056555, "span": 0.10944436111889738, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499300535307814]}, {"top_radius": 0.06322481960552229, "bottom_radius": 0.04395501316373969, "length": 0.05931364088857377, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993071895770729, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178272504168869, "upper_button_position": 0.08147993916018603}], "rail_length": 5, "inclination": 83.83114866144716, "heading": 55.35427533015085} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351059136352347, "mass": 16.2759139179194, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315219156546101, "I_33_without_motor": 0.03703949372885503, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.146796199216803, "trigger": 800, "sampling_rate": 105, "lag": 1.5459455206582715, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0910148314418784, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6875353516041822, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5100.314599141233, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341613718730834, "grain_number": 5, "grain_density": 1839.316337349837, "grain_outer_radius": 0.03298441598667609, "grain_initial_inner_radius": 0.01578835593838837, "grain_initial_height": 0.1197646377263476, "grain_separation": 0.004308298238999985, "grains_center_of_mass_position": 0.3976788295783726, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013233819516368618, "throat_radius": 0.011546937041715305, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546399393524355}], "aerodynamic_surfaces": [{"length": 0.5590497034745583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329367232251701]}, {"n": 4, "root_chord": 0.12073321221175475, "tip_chord": 0.06054425442581096, "span": 0.11034036621330566, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049581233896008]}, {"top_radius": 0.06284847395262025, "bottom_radius": 0.04486325346035901, "length": 0.06022601537828157, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988397278991676, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175477533686297, "upper_button_position": 0.08129197453053794}], "rail_length": 5, "inclination": 85.73324004636676, "heading": 51.41652636934183} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349972453803808, "mass": 15.775313453256368, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320317219165622, "I_33_without_motor": 0.052194938482872266, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.107592380073015, "trigger": 800, "sampling_rate": 105, "lag": 1.4940793679695745, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8862854179896964, "trigger": "apogee", "sampling_rate": 105, "lag": 1.150445469139979, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5867.3118202431715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03371121375616687, "grain_number": 5, "grain_density": 1812.2625060797661, "grain_outer_radius": 0.03285613128926061, "grain_initial_inner_radius": 0.014702836889271468, "grain_initial_height": 0.11883044959194501, "grain_separation": 0.0042383591647329995, "grains_center_of_mass_position": 0.39831008929884887, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004809869280882617, "throat_radius": 0.010995949561103032, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535709976986809}], "aerodynamic_surfaces": [{"length": 0.5564834153991595, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346418239621212]}, {"n": 4, "root_chord": 0.12060878413541046, "tip_chord": 0.05971056967763774, "span": 0.10969113464974266, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487757009529097]}, {"top_radius": 0.06206788185439544, "bottom_radius": 0.04240563108670748, "length": 0.05971658937668811, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987363768071648, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178812056596575, "upper_button_position": 0.08085517114750729}], "rail_length": 5, "inclination": 84.73271646356208, "heading": 53.56363263266355} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06348746665850238, "mass": 15.456264831817343, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314102958231065, "I_33_without_motor": 0.025922487134370627, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.940798325558607, "trigger": 800, "sampling_rate": 105, "lag": 1.6073045765973, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1018249234967952, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4581760938320902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6274.477649565801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03387056056827838, "grain_number": 5, "grain_density": 1741.0814532678805, "grain_outer_radius": 0.033397326029329176, "grain_initial_inner_radius": 0.01548526679261395, "grain_initial_height": 0.11932636886645606, "grain_separation": 0.006126114835398284, "grains_center_of_mass_position": 0.39760302570797157, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009760771613362888, "throat_radius": 0.010702642106713145, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547196329374077}], "aerodynamic_surfaces": [{"length": 0.5588032808576898, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339290799206436]}, {"n": 4, "root_chord": 0.11896117989173133, "tip_chord": 0.059801680366091285, "span": 0.10982800582739001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490913057882343]}, {"top_radius": 0.06359250539920795, "bottom_radius": 0.04188073060479487, "length": 0.05928959945478681, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999548375280867, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175771001572872, "upper_button_position": 0.08237773737079956}], "rail_length": 5, "inclination": 85.35162054434703, "heading": 52.37436881921755} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350055689071861, "mass": 15.433501479075439, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312476496029726, "I_33_without_motor": 0.02712112001968267, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.84310767510073, "trigger": 800, "sampling_rate": 105, "lag": 1.55965004692972, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.993189437988631, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8726311755696603, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5056.1931470474565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315843456615296, "grain_number": 5, "grain_density": 1842.2834242855645, "grain_outer_radius": 0.033022099076113594, "grain_initial_inner_radius": 0.014630311854716851, "grain_initial_height": 0.11951709674893989, "grain_separation": 0.005115906412918573, "grains_center_of_mass_position": 0.39777769118902245, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007240287216881641, "throat_radius": 0.010841753817394028, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541825199439134}], "aerodynamic_surfaces": [{"length": 0.5577564980264212, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1359321363394237]}, {"n": 4, "root_chord": 0.12062946378435148, "tip_chord": 0.05988670576004223, "span": 0.11004969100572852, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499045685111885]}, {"top_radius": 0.06258421435844484, "bottom_radius": 0.04344657753655224, "length": 0.05862860170510585, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993828096445956, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178792710927608, "upper_button_position": 0.0815035385518349}], "rail_length": 5, "inclination": 85.25241771222852, "heading": 53.62229961256442} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350401756602322, "mass": 15.393948221530517, "I_11_without_motor": 6.321, "I_22_without_motor": 6.349894211087638, "I_33_without_motor": 0.034981394293526855, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.853227535380139, "trigger": 800, "sampling_rate": 105, "lag": 1.619482590222788, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1108675700523174, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5474207998096554, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6254.6907178461315, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032855840835000504, "grain_number": 5, "grain_density": 1826.957317688267, "grain_outer_radius": 0.032775755201130866, "grain_initial_inner_radius": 0.014923166694316809, "grain_initial_height": 0.1203859462527887, "grain_separation": 0.006112462196874788, "grains_center_of_mass_position": 0.39803479201758474, "center_of_dry_mass_position": 0.317, "nozzle_position": 3.981820105031558e-05, "throat_radius": 0.011496009257443039, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542098463103761}], "aerodynamic_surfaces": [{"length": 0.5583445975438686, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345894680552926]}, {"n": 4, "root_chord": 0.12037928338416237, "tip_chord": 0.06044319378765079, "span": 0.11091819772547487, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484897195941227]}, {"top_radius": 0.06245386927990957, "bottom_radius": 0.04635229639292904, "length": 0.060011332707448094, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997748897634029, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617283756279135, "upper_button_position": 0.08249113348426784}], "rail_length": 5, "inclination": 84.31167877575997, "heading": 51.49450503990949} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0634950765219429, "mass": 15.590983044788665, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31736029673925, "I_33_without_motor": 0.03548083608349087, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.884845207897353, "trigger": 800, "sampling_rate": 105, "lag": 1.5610304102675732, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9981096910295995, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1991835656712988, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7971.65800870759, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256281820483594, "grain_number": 5, "grain_density": 1803.098507863911, "grain_outer_radius": 0.03286106834390984, "grain_initial_inner_radius": 0.014470008000561469, "grain_initial_height": 0.1206574231747146, "grain_separation": 0.0035338345516457014, "grains_center_of_mass_position": 0.39626048436005046, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004938989773958263, "throat_radius": 0.010636075917297318, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253992381113708}], "aerodynamic_surfaces": [{"length": 0.5583531409997354, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134467535134134]}, {"n": 4, "root_chord": 0.11948493352203059, "tip_chord": 0.060294987858809324, "span": 0.11002992157862772, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500093618697552]}, {"top_radius": 0.06344062603406038, "bottom_radius": 0.04409484526820287, "length": 0.05932685417144455, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698766310183192, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194363241846893, "upper_button_position": 0.07932998599850272}], "rail_length": 5, "inclination": 84.73246799456724, "heading": 52.70588398480266} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06351203396868006, "mass": 15.40630553074846, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3134075516406, "I_33_without_motor": 0.024745707254860506, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.043328812546294, "trigger": 800, "sampling_rate": 105, "lag": 1.3466240440068535, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.98676377249157, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3243232382471302, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7425.829528994782, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03439236719949091, "grain_number": 5, "grain_density": 1776.5458656793396, "grain_outer_radius": 0.03263198326237765, "grain_initial_inner_radius": 0.015435918357909632, "grain_initial_height": 0.12108544140853217, "grain_separation": 0.00543007115864568, "grains_center_of_mass_position": 0.39831567934486994, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004149858260599416, "throat_radius": 0.010890914187204441, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541601738281472}], "aerodynamic_surfaces": [{"length": 0.556960101081066, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344000345615466]}, {"n": 4, "root_chord": 0.11935696473140196, "tip_chord": 0.06051061146878723, "span": 0.11005698186426192, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502901952307686]}, {"top_radius": 0.06495005487816069, "bottom_radius": 0.041376834092297414, "length": 0.059091273324481955, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700305022541531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176660545459601, "upper_button_position": 0.08263896799557091}], "rail_length": 5, "inclination": 83.59983214344363, "heading": 56.76339064714413} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06348927333402903, "mass": 15.39498882998933, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313210848065949, "I_33_without_motor": 0.03263808312754077, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.133444633341671, "trigger": 800, "sampling_rate": 105, "lag": 1.6230391505846589, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0137284079120963, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3412808742017912, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5820.840992131765, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033312060846939474, "grain_number": 5, "grain_density": 1776.006087718473, "grain_outer_radius": 0.03293320056386653, "grain_initial_inner_radius": 0.014717777923572001, "grain_initial_height": 0.12020137160356148, "grain_separation": 0.005141151103072423, "grains_center_of_mass_position": 0.3952591998019936, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001522268363396744, "throat_radius": 0.011144136402641974, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558447508922392}], "aerodynamic_surfaces": [{"length": 0.5587051577256208, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350445447935935]}, {"n": 4, "root_chord": 0.11972050104270775, "tip_chord": 0.06062910407149641, "span": 0.10982961632348893, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485411170302763]}, {"top_radius": 0.06432467823314163, "bottom_radius": 0.04291094900326959, "length": 0.06008224022069279, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982308243419284, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185266322126143, "upper_button_position": 0.07970419212931412}], "rail_length": 5, "inclination": 86.16590654273018, "heading": 52.504703209064864} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349970314288955, "mass": 15.349122979577132, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3146544909113675, "I_33_without_motor": 0.024914011705354865, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88566558087084, "trigger": 800, "sampling_rate": 105, "lag": 1.3206355109569563, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9151669859691582, "trigger": "apogee", "sampling_rate": 105, "lag": 1.742145799300044, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6508.652733935473, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301389872796594, "grain_number": 5, "grain_density": 1806.6348277726324, "grain_outer_radius": 0.032938364860287235, "grain_initial_inner_radius": 0.015291693755761896, "grain_initial_height": 0.12085139764769683, "grain_separation": 0.0037446883317154515, "grains_center_of_mass_position": 0.39601455948615516, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005310662952595032, "throat_radius": 0.011180882962969974, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254330813948921}], "aerodynamic_surfaces": [{"length": 0.5587659048459195, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324772551528157]}, {"n": 4, "root_chord": 0.11947303920840951, "tip_chord": 0.06028979073705156, "span": 0.10988958140477573, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490121360165887]}, {"top_radius": 0.06386079769876454, "bottom_radius": 0.04305047666729162, "length": 0.05875997956054478, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984646576231598, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185012777867808, "upper_button_position": 0.07996337983637902}], "rail_length": 5, "inclination": 83.9495622034746, "heading": 52.162200575211905} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350191927537213, "mass": 14.781802313176074, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316265887923651, "I_33_without_motor": 0.02619743297600875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.884180143369573, "trigger": 800, "sampling_rate": 105, "lag": 1.383457574503513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.017484438953395, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1293385899843993, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6007.683161927674, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285822887352265, "grain_number": 5, "grain_density": 1823.6343468389866, "grain_outer_radius": 0.03272480671802657, "grain_initial_inner_radius": 0.014480443299451341, "grain_initial_height": 0.11827855793102644, "grain_separation": 0.004611480628251143, "grains_center_of_mass_position": 0.39679856904692323, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006483009830481006, "throat_radius": 0.010916158441424215, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254772598116586}], "aerodynamic_surfaces": [{"length": 0.5588604877704566, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345814383459054]}, {"n": 4, "root_chord": 0.11980145028705479, "tip_chord": 0.059408804118140264, "span": 0.10937674469565382, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487599303757402]}, {"top_radius": 0.062197631489850136, "bottom_radius": 0.04279799147992792, "length": 0.06071335710452283, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004205145824739, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194649947758183, "upper_button_position": 0.08095551980665561}], "rail_length": 5, "inclination": 82.21757324944583, "heading": 50.37971990538857} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349383699259592, "mass": 15.398128788673084, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319147760169563, "I_33_without_motor": 0.030881163959249374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.047895883476304, "trigger": 800, "sampling_rate": 105, "lag": 1.3831810897893722, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0570747574925798, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4166116717743935, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6976.217673021728, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335696641858493, "grain_number": 5, "grain_density": 1778.2300235469518, "grain_outer_radius": 0.03220963441670285, "grain_initial_inner_radius": 0.015295572119079988, "grain_initial_height": 0.11991641253773218, "grain_separation": 0.0034723673043804038, "grains_center_of_mass_position": 0.3969316492388676, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00099021447707558, "throat_radius": 0.011253768050692382, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538905563531317}], "aerodynamic_surfaces": [{"length": 0.5586043007777834, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342439158576831]}, {"n": 4, "root_chord": 0.11954488652058358, "tip_chord": 0.06012931300544292, "span": 0.11032793284609348, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506171882008204]}, {"top_radius": 0.06258211283472268, "bottom_radius": 0.04287547466131042, "length": 0.05875626189493261, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996459726026901, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168218502726556, "upper_button_position": 0.08282412233003456}], "rail_length": 5, "inclination": 86.15330231541284, "heading": 53.118786216574456} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349797137641743, "mass": 15.521182926917719, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31900285154542, "I_33_without_motor": 0.031193013477030594, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.012977771495606, "trigger": 800, "sampling_rate": 105, "lag": 1.6299745489827935, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0377729176510417, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6949517500120126, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8994.198746370503, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272887080306221, "grain_number": 5, "grain_density": 1719.5030316971606, "grain_outer_radius": 0.03313599853568342, "grain_initial_inner_radius": 0.015453935867234043, "grain_initial_height": 0.11849373911345593, "grain_separation": 0.003713804360768596, "grains_center_of_mass_position": 0.3970239385841531, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002567312371506418, "throat_radius": 0.011033318371742668, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256325472828406}], "aerodynamic_surfaces": [{"length": 0.5595452326546454, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328440429349032]}, {"n": 4, "root_chord": 0.12029553940033709, "tip_chord": 0.05964349139498918, "span": 0.11009527043159363, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047288623668882]}, {"top_radius": 0.06246822713531669, "bottom_radius": 0.04342640693747755, "length": 0.06083495364363905, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994321062282693, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166049109756333, "upper_button_position": 0.08282719525263604}], "rail_length": 5, "inclination": 84.72793542880599, "heading": 51.918853874820854} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350568119955821, "mass": 15.024115110342581, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3094043104201605, "I_33_without_motor": 0.03780075092919116, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.833841753440325, "trigger": 800, "sampling_rate": 105, "lag": 1.5784039821211486, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0367947821743326, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3126676677548392, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5752.361509976404, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033320112953686844, "grain_number": 5, "grain_density": 1900.692295448285, "grain_outer_radius": 0.032774931823654374, "grain_initial_inner_radius": 0.014841462619461766, "grain_initial_height": 0.12028716020225583, "grain_separation": 0.004784466738433043, "grains_center_of_mass_position": 0.39821121190106834, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005649376664943101, "throat_radius": 0.011616582018675874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556413210035846}], "aerodynamic_surfaces": [{"length": 0.5575936760524144, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1361185757656216]}, {"n": 4, "root_chord": 0.12009634806700985, "tip_chord": 0.06025389638788981, "span": 0.1094267221359822, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511819878798885]}, {"top_radius": 0.06405485442148903, "bottom_radius": 0.04421137665384338, "length": 0.058427568774248755, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003195251628676, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179482906112526, "upper_button_position": 0.08237123455161499}], "rail_length": 5, "inclination": 85.30992201155169, "heading": 52.37551263654659} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350493462812383, "mass": 15.53494534976184, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312211893363411, "I_33_without_motor": 0.05330578090779449, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98407077164094, "trigger": 800, "sampling_rate": 105, "lag": 1.6027501609918713, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9068897893163584, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4912054747744905, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5925.724011375588, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032230853175119444, "grain_number": 5, "grain_density": 1793.087499480305, "grain_outer_radius": 0.033421955079383045, "grain_initial_inner_radius": 0.015576550518945997, "grain_initial_height": 0.12111590880623292, "grain_separation": 0.003511491681805529, "grains_center_of_mass_position": 0.3971046410259086, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00042738600393775337, "throat_radius": 0.011048770986501519, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557005131428887}], "aerodynamic_surfaces": [{"length": 0.5589463119249927, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333455090282856]}, {"n": 4, "root_chord": 0.12019995322809475, "tip_chord": 0.05993991249875599, "span": 0.11023397692045468, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494776550413667]}, {"top_radius": 0.0646660648898503, "bottom_radius": 0.042771932775101655, "length": 0.05874461512656721, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005317147435531, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179271898653675, "upper_button_position": 0.08260452487818559}], "rail_length": 5, "inclination": 83.6838057541686, "heading": 52.75207081864992} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350486543811112, "mass": 14.739884840749582, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322125960827442, "I_33_without_motor": 0.036575946606964685, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924526183545657, "trigger": 800, "sampling_rate": 105, "lag": 1.6183783004003955, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8532994514627696, "trigger": "apogee", "sampling_rate": 105, "lag": 1.633721223432206, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5123.5525999437605, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282794844032469, "grain_number": 5, "grain_density": 1785.6610846561234, "grain_outer_radius": 0.03271371980068501, "grain_initial_inner_radius": 0.015278090071632307, "grain_initial_height": 0.11864972684429798, "grain_separation": 0.002259515535868145, "grains_center_of_mass_position": 0.39838226519995423, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009001679259064922, "throat_radius": 0.01046621840657044, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253518958476106}], "aerodynamic_surfaces": [{"length": 0.5581780669445172, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.131748929375257]}, {"n": 4, "root_chord": 0.11962511681048242, "tip_chord": 0.06121684881886696, "span": 0.11044088199041964, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497142703251312]}, {"top_radius": 0.0635040258759974, "bottom_radius": 0.044769208819428544, "length": 0.058270011769384275, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699239074584715, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192077557236363, "upper_button_position": 0.08003131886107873}], "rail_length": 5, "inclination": 84.05848887402382, "heading": 52.909070983208764} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.063496701941793, "mass": 16.0197036263487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327716757642937, "I_33_without_motor": 0.03145216565242028, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10081061210601, "trigger": 800, "sampling_rate": 105, "lag": 1.4799506095267447, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8861453242246125, "trigger": "apogee", "sampling_rate": 105, "lag": 1.383945168372732, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6453.745699238813, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03357893436491756, "grain_number": 5, "grain_density": 1875.8998771314373, "grain_outer_radius": 0.03354880725424588, "grain_initial_inner_radius": 0.014775096832562033, "grain_initial_height": 0.12041273111348315, "grain_separation": 0.004439030435132215, "grains_center_of_mass_position": 0.39705063815651076, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018795783026042537, "throat_radius": 0.010324911886275965, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562572119016429}], "aerodynamic_surfaces": [{"length": 0.5578308466458476, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336934085637642]}, {"n": 4, "root_chord": 0.11992549492939221, "tip_chord": 0.059588717097945776, "span": 0.10974036262916163, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049775651489924]}, {"top_radius": 0.06217787527815516, "bottom_radius": 0.04387090286182097, "length": 0.059532028991013654, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991904739908492, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181482951739344, "upper_button_position": 0.08104217881691478}], "rail_length": 5, "inclination": 85.85106060528925, "heading": 50.83280588439383} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350186798223002, "mass": 15.725881013611268, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3262216172776125, "I_33_without_motor": 0.03684257248323715, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.968044823765215, "trigger": 800, "sampling_rate": 105, "lag": 1.5734257236005782, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9125914790358226, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3255650254700737, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5968.322931726047, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275261233120273, "grain_number": 5, "grain_density": 1834.724496097776, "grain_outer_radius": 0.033032606379133266, "grain_initial_inner_radius": 0.015303111066425288, "grain_initial_height": 0.12169734305564173, "grain_separation": 0.004861268777146101, "grains_center_of_mass_position": 0.3974195509942111, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007514318551198991, "throat_radius": 0.010964672925976355, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559545881635872}], "aerodynamic_surfaces": [{"length": 0.5602381209976554, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346533692731111]}, {"n": 4, "root_chord": 0.11979322013904671, "tip_chord": 0.059646707238118046, "span": 0.1099660338384287, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049153562714479]}, {"top_radius": 0.06456973913232236, "bottom_radius": 0.04342376903071097, "length": 0.06030236442901617, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999337263369722, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193132037947577, "upper_button_position": 0.08062052254221441}], "rail_length": 5, "inclination": 82.9241693017803, "heading": 52.43690213921342} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349348144925743, "mass": 15.100197269310554, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309790136483872, "I_33_without_motor": 0.03542342268804706, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9167357868958, "trigger": 800, "sampling_rate": 105, "lag": 1.4447419088677158, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9676158810157099, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5197884830533075, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7076.712205025801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306617080964816, "grain_number": 5, "grain_density": 1850.3483532670925, "grain_outer_radius": 0.03336814023355312, "grain_initial_inner_radius": 0.015058824583597405, "grain_initial_height": 0.1195627290601507, "grain_separation": 0.0031834818006478047, "grains_center_of_mass_position": 0.39630470399733536, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008007823363770424, "throat_radius": 0.010586136674050482, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554195922461473}], "aerodynamic_surfaces": [{"length": 0.5571108209289, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338625228788264]}, {"n": 4, "root_chord": 0.11882919071778061, "tip_chord": 0.058897971585641, "span": 0.11024428676535382, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486369801912572]}, {"top_radius": 0.06382081001331548, "bottom_radius": 0.04311512205430974, "length": 0.058215317446665034, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699947270118492, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187395615121934, "upper_button_position": 0.08120770860629856}], "rail_length": 5, "inclination": 86.38381798628832, "heading": 56.21533335536395} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349172504479948, "mass": 15.584094714495542, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313454208939413, "I_33_without_motor": 0.013000822240851723, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985044634898538, "trigger": 800, "sampling_rate": 105, "lag": 1.5771358507232354, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.031275199175601, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8171527240571907, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6833.10474695225, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315931275611021, "grain_number": 5, "grain_density": 1812.1761995235356, "grain_outer_radius": 0.03274080594166487, "grain_initial_inner_radius": 0.015020632353074274, "grain_initial_height": 0.11861858292601493, "grain_separation": 0.006635696311058484, "grains_center_of_mass_position": 0.3958583776643128, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005130619303727722, "throat_radius": 0.01226290065901624, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558124085345033}], "aerodynamic_surfaces": [{"length": 0.5583651592266613, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328031576496056]}, {"n": 4, "root_chord": 0.11995271655593924, "tip_chord": 0.060127363788374695, "span": 0.10974383624227256, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507148359758014]}, {"top_radius": 0.06299834118961484, "bottom_radius": 0.04333447224891528, "length": 0.0612654596942897, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002771594613473, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195785979307066, "upper_button_position": 0.0806985615306407}], "rail_length": 5, "inclination": 84.69595299439732, "heading": 52.03768647023382} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351128940249277, "mass": 15.725630701218535, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311992327106012, "I_33_without_motor": 0.04587198678689232, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.756954354665897, "trigger": 800, "sampling_rate": 105, "lag": 1.5065834685047934, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9143650052535861, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4303001578878236, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5544.694807678586, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339635980512414, "grain_number": 5, "grain_density": 1812.2412521372178, "grain_outer_radius": 0.033241480800464206, "grain_initial_inner_radius": 0.014922133778601486, "grain_initial_height": 0.1195993110511401, "grain_separation": 0.004269968281584656, "grains_center_of_mass_position": 0.3992223769248016, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006564712060504985, "throat_radius": 0.011412007005567167, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254409367717071}], "aerodynamic_surfaces": [{"length": 0.5594119250072119, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330557271878223]}, {"n": 4, "root_chord": 0.11943314248486517, "tip_chord": 0.05978007438372566, "span": 0.10983565601457691, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492847018038478]}, {"top_radius": 0.0628578892673903, "bottom_radius": 0.04367732756353591, "length": 0.060423529741295945, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991871220138887, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169996414973086, "upper_button_position": 0.08218748051658009}], "rail_length": 5, "inclination": 84.39443615437989, "heading": 54.01492833266836} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349310947521045, "mass": 15.955856099381338, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310394195702511, "I_33_without_motor": 0.03509623977018006, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.859445331469365, "trigger": 800, "sampling_rate": 105, "lag": 1.5338223047063733, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.062386018473049, "trigger": "apogee", "sampling_rate": 105, "lag": 1.380160997945938, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7870.637172914001, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262347384980254, "grain_number": 5, "grain_density": 1822.209136932788, "grain_outer_radius": 0.032946399156001394, "grain_initial_inner_radius": 0.014560031046104845, "grain_initial_height": 0.1215884994462859, "grain_separation": 0.004100006063714341, "grains_center_of_mass_position": 0.395705502606356, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00027464519200267186, "throat_radius": 0.010127766520305018, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551665529500846}], "aerodynamic_surfaces": [{"length": 0.5571553041707501, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353382535460408]}, {"n": 4, "root_chord": 0.11949908493018747, "tip_chord": 0.06064413674028834, "span": 0.11041798861175367, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495813493850918]}, {"top_radius": 0.06355742925057839, "bottom_radius": 0.042683997877365897, "length": 0.06124527081295615, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993340803547451, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189522402742602, "upper_button_position": 0.08038184008048488}], "rail_length": 5, "inclination": 83.77105001380356, "heading": 54.66847976182936} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349931051871929, "mass": 15.374414033494412, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325665282401728, "I_33_without_motor": 0.044790223627598005, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.087107144181125, "trigger": 800, "sampling_rate": 105, "lag": 1.496131147104843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.028110134569503, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5210708651493186, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6055.938847642626, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03299857066696556, "grain_number": 5, "grain_density": 1826.4211797113248, "grain_outer_radius": 0.03358293169563793, "grain_initial_inner_radius": 0.014975375343472003, "grain_initial_height": 0.11936716502685533, "grain_separation": 0.006015944585969976, "grains_center_of_mass_position": 0.3964171335423679, "center_of_dry_mass_position": 0.317, "nozzle_position": -8.969708614778195e-05, "throat_radius": 0.010941999799288078, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543246307395146}], "aerodynamic_surfaces": [{"length": 0.558865106168092, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334668837984363]}, {"n": 4, "root_chord": 0.1197071368722621, "tip_chord": 0.05874900689742848, "span": 0.10982519699572871, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515017775712068]}, {"top_radius": 0.06325813126527997, "bottom_radius": 0.04447229469544842, "length": 0.06015496551420878, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991172547192429, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192161846856441, "upper_button_position": 0.07990107003359881}], "rail_length": 5, "inclination": 84.56281860332814, "heading": 53.67856988282} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349908391645308, "mass": 15.824606628485364, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330960655991403, "I_33_without_motor": 0.03120176994977996, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.999230438435744, "trigger": 800, "sampling_rate": 105, "lag": 1.5777600101637452, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9517205812546838, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7426253679069534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5586.487752366946, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348904226381295, "grain_number": 5, "grain_density": 1824.8689711377397, "grain_outer_radius": 0.03233463369161448, "grain_initial_inner_radius": 0.01477726145708509, "grain_initial_height": 0.12054642725100302, "grain_separation": 0.005951674462109758, "grains_center_of_mass_position": 0.39487268941684356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007802704055551861, "throat_radius": 0.01081064977542799, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545134887102558}], "aerodynamic_surfaces": [{"length": 0.5590985001535207, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134492703105819]}, {"n": 4, "root_chord": 0.12071672763888336, "tip_chord": 0.059410801209652656, "span": 0.10980437238940303, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048204007481547]}, {"top_radius": 0.06304874027409267, "bottom_radius": 0.04424252884702913, "length": 0.060329983957830485, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005527801306458, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171882349503449, "upper_button_position": 0.0833645451803009}], "rail_length": 5, "inclination": 85.39042811084614, "heading": 53.59525583204625} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350348571678945, "mass": 14.862492258597536, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326939084569581, "I_33_without_motor": 0.02660035233520777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031277539435179, "trigger": 800, "sampling_rate": 105, "lag": 1.5169625473214856, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9298759013116552, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5141255896324703, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5699.057995879966, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03383591040561772, "grain_number": 5, "grain_density": 1779.8465913527307, "grain_outer_radius": 0.03356190663257059, "grain_initial_inner_radius": 0.014933712383030408, "grain_initial_height": 0.11962949818778731, "grain_separation": 0.004635386587834061, "grains_center_of_mass_position": 0.39856025924308025, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00018723445424256616, "throat_radius": 0.01069487375788307, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543559924598062}], "aerodynamic_surfaces": [{"length": 0.5585117887748159, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135372480035456]}, {"n": 4, "root_chord": 0.12040227464435925, "tip_chord": 0.059850919787069835, "span": 0.1102782684238214, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491683677878614]}, {"top_radius": 0.06321034831725178, "bottom_radius": 0.042754674527060534, "length": 0.06007356760815533, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698331807409643, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173108419430279, "upper_button_position": 0.08102096546661508}], "rail_length": 5, "inclination": 84.2311455316149, "heading": 55.56052555616401} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349333694430284, "mass": 15.511374020187729, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321772642053919, "I_33_without_motor": 0.03052062310314002, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.976306628489532, "trigger": 800, "sampling_rate": 105, "lag": 1.335154963925672, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8594963166059308, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8680567739144953, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8619.118725473547, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244786905516323, "grain_number": 5, "grain_density": 1887.886464618258, "grain_outer_radius": 0.03303293183924313, "grain_initial_inner_radius": 0.01534756493218394, "grain_initial_height": 0.1198100218216191, "grain_separation": 0.005886825471406107, "grains_center_of_mass_position": 0.3950092832030728, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00015910657392127482, "throat_radius": 0.011933000541145688, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555915606807633}], "aerodynamic_surfaces": [{"length": 0.5567450011794111, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351053901808144]}, {"n": 4, "root_chord": 0.11975220008765472, "tip_chord": 0.05896547458849065, "span": 0.1102359402089973, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510293318917583]}, {"top_radius": 0.06359183321845892, "bottom_radius": 0.04310137880416029, "length": 0.05811881506123372, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6976647024975661, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616473061489002, "upper_button_position": 0.08119164100856402}], "rail_length": 5, "inclination": 84.67619476155755, "heading": 52.08833729163758} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0634943202763368, "mass": 15.85450680029109, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317188100015706, "I_33_without_motor": 0.012926935769394014, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985282695369156, "trigger": 800, "sampling_rate": 105, "lag": 1.7110545336663445, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.895233285261959, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5504716542426307, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7160.624354175414, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306969828283194, "grain_number": 5, "grain_density": 1797.3954651461347, "grain_outer_radius": 0.03276862141752724, "grain_initial_inner_radius": 0.01501090106350833, "grain_initial_height": 0.11903452425935197, "grain_separation": 0.0030100613207250403, "grains_center_of_mass_position": 0.39693562654067877, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012942710337411844, "throat_radius": 0.011368568752759031, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546179752889892}], "aerodynamic_surfaces": [{"length": 0.5571863592080272, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135398482685867]}, {"n": 4, "root_chord": 0.12056627511671404, "tip_chord": 0.058747656263280185, "span": 0.11043304934629995, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050858898534805]}, {"top_radius": 0.06368282956520914, "bottom_radius": 0.04316593194427215, "length": 0.05970270820343184, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998908066697832, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162928413541896, "upper_button_position": 0.0835979653155936}], "rail_length": 5, "inclination": 83.96474775480694, "heading": 52.06795541630731} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350748894763542, "mass": 14.907681602598796, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3279845720629835, "I_33_without_motor": 0.026720543577878505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10036669909313, "trigger": 800, "sampling_rate": 105, "lag": 1.3588168892950736, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1021140292986304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8735101003482113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6642.607726794163, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307668073004597, "grain_number": 5, "grain_density": 1779.242960636403, "grain_outer_radius": 0.03318396017982061, "grain_initial_inner_radius": 0.01495285323260368, "grain_initial_height": 0.11835099424898604, "grain_separation": 0.005806474970150698, "grains_center_of_mass_position": 0.3971683541454299, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000980309695240416, "throat_radius": 0.011328463541879026, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548090901313886}], "aerodynamic_surfaces": [{"length": 0.5585800631847335, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351729937235906]}, {"n": 4, "root_chord": 0.12038568803271879, "tip_chord": 0.06029347759859907, "span": 0.10999045026266309, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491559072055505]}, {"top_radius": 0.06336115931518158, "bottom_radius": 0.04365900937571168, "length": 0.060047227704583366, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012682850030802, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189930352633294, "upper_button_position": 0.08227524973975087}], "rail_length": 5, "inclination": 82.14332792087842, "heading": 52.02051593496076} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349655152348216, "mass": 15.016676082121267, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323099188190522, "I_33_without_motor": 0.035548747503014004, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.95708686557295, "trigger": 800, "sampling_rate": 105, "lag": 1.5878313181288572, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0146798921357711, "trigger": "apogee", "sampling_rate": 105, "lag": 1.792361251002192, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8016.2019040594305, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03227833749336223, "grain_number": 5, "grain_density": 1786.2110002124136, "grain_outer_radius": 0.0332532211010685, "grain_initial_inner_radius": 0.014428669379984509, "grain_initial_height": 0.1201431498325172, "grain_separation": 0.003724014313742016, "grains_center_of_mass_position": 0.3964941950238454, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002769727587212245, "throat_radius": 0.011514939768173044, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534889204216106}], "aerodynamic_surfaces": [{"length": 0.5580606224762409, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346106402159135]}, {"n": 4, "root_chord": 0.11940595551976399, "tip_chord": 0.06046976002460912, "span": 0.1105082106050912, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048585855707879]}, {"top_radius": 0.06488156425489244, "bottom_radius": 0.0422774528739377, "length": 0.05872848465615386, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009318944070241, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169532227611572, "upper_button_position": 0.08397867164586692}], "rail_length": 5, "inclination": 83.59049036334623, "heading": 50.27412274978466} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635026504073287, "mass": 15.682085969389227, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338988882158036, "I_33_without_motor": 0.03130204348386302, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.964579481480238, "trigger": 800, "sampling_rate": 105, "lag": 1.5400928421750208, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.053581347292585, "trigger": "apogee", "sampling_rate": 105, "lag": 1.547076677223584, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6856.354770975974, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032730650070270366, "grain_number": 5, "grain_density": 1759.0002074492309, "grain_outer_radius": 0.03242230462181787, "grain_initial_inner_radius": 0.014932033668244029, "grain_initial_height": 0.11986670781368569, "grain_separation": 0.0043804774372666125, "grains_center_of_mass_position": 0.39749334004739806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012776739944301812, "throat_radius": 0.011558987272317063, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554668494646906}], "aerodynamic_surfaces": [{"length": 0.5585738309196118, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133607250248703]}, {"n": 4, "root_chord": 0.11954751546671595, "tip_chord": 0.05966602935963838, "span": 0.10964031934715668, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514983708842365]}, {"top_radius": 0.06343918078680816, "bottom_radius": 0.04325007199856578, "length": 0.060394317313238605, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6974746622933771, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188258915052254, "upper_button_position": 0.07864877078815169}], "rail_length": 5, "inclination": 84.44167248190685, "heading": 54.43860091183173} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06351223968402328, "mass": 15.575845690780953, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333360635977102, "I_33_without_motor": 0.027560715113800722, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.243244595846454, "trigger": 800, "sampling_rate": 105, "lag": 1.469524758924555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9877156035027197, "trigger": "apogee", "sampling_rate": 105, "lag": 0.803743217638631, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6348.589825130618, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032985737802376174, "grain_number": 5, "grain_density": 1780.4161955706547, "grain_outer_radius": 0.03298314966415103, "grain_initial_inner_radius": 0.01477504402917447, "grain_initial_height": 0.11958972769678292, "grain_separation": 0.003392440044747991, "grains_center_of_mass_position": 0.39570947321276817, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011489173848992808, "throat_radius": 0.010714389852824663, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548202745849018}], "aerodynamic_surfaces": [{"length": 0.557845587780718, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345664903432773]}, {"n": 4, "root_chord": 0.12010233867115117, "tip_chord": 0.060889019527170476, "span": 0.10953522819259615, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509554130229146]}, {"top_radius": 0.061812077947016444, "bottom_radius": 0.043337765698189715, "length": 0.05934733159287705, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7018707421793848, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61757739937815, "upper_button_position": 0.0842933428012348}], "rail_length": 5, "inclination": 84.04252885527526, "heading": 54.863919183470124} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350249526688669, "mass": 14.519895226147863, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310266104728109, "I_33_without_motor": 0.03779054461771365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.948213862100701, "trigger": 800, "sampling_rate": 105, "lag": 1.4423316302830056, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0274975580189616, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5760893488803578, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7196.137317364888, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306360020253206, "grain_number": 5, "grain_density": 1791.3507087391413, "grain_outer_radius": 0.03361578571115703, "grain_initial_inner_radius": 0.01479603918706594, "grain_initial_height": 0.11981169677082376, "grain_separation": 0.00415351945284246, "grains_center_of_mass_position": 0.39726685720819555, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00036647609976169643, "throat_radius": 0.011107339709005957, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543398895787783}], "aerodynamic_surfaces": [{"length": 0.557901050744512, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133706975041274]}, {"n": 4, "root_chord": 0.12007884169474278, "tip_chord": 0.059202708942080864, "span": 0.10990579801389297, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05064939060654]}, {"top_radius": 0.06306876452368401, "bottom_radius": 0.04225470748029746, "length": 0.058513256615456324, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003553187197693, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179056335847963, "upper_button_position": 0.08244968513497297}], "rail_length": 5, "inclination": 84.05612752138411, "heading": 51.20395359344351} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350461039876527, "mass": 14.50826600967564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333118478540979, "I_33_without_motor": 0.033191561488411785, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025220193382335, "trigger": 800, "sampling_rate": 105, "lag": 1.5585263997232655, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0153459844796784, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3456237896530803, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8504.329289044776, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03284055163049976, "grain_number": 5, "grain_density": 1766.6615014094305, "grain_outer_radius": 0.03302617061096412, "grain_initial_inner_radius": 0.015104134841994294, "grain_initial_height": 0.11863980226183049, "grain_separation": 0.003777544886905783, "grains_center_of_mass_position": 0.3962103774752468, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001426891817070038, "throat_radius": 0.010826537849471601, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555993667943461}], "aerodynamic_surfaces": [{"length": 0.5568574126769983, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338108104670206]}, {"n": 4, "root_chord": 0.11969418776898194, "tip_chord": 0.05925622470506389, "span": 0.10978356986856046, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492258860881327]}, {"top_radius": 0.06270408747593129, "bottom_radius": 0.04384277779329928, "length": 0.05910311011204789, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010836996256492, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164424747917029, "upper_button_position": 0.08464122483394632}], "rail_length": 5, "inclination": 83.91382581858629, "heading": 53.188806760427845} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349990643634201, "mass": 14.878956488410362, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31828305202442, "I_33_without_motor": 0.042805185250437826, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848272959902777, "trigger": 800, "sampling_rate": 105, "lag": 1.3953962019525645, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0173753682251958, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5720990190188593, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7383.302118172199, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329966204657787, "grain_number": 5, "grain_density": 1785.8235032162088, "grain_outer_radius": 0.03283984090483319, "grain_initial_inner_radius": 0.014628943491601671, "grain_initial_height": 0.1203777399269944, "grain_separation": 0.006712184607678001, "grains_center_of_mass_position": 0.3964148237124265, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000122400754392004, "throat_radius": 0.010951540680319264, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545815925945356}], "aerodynamic_surfaces": [{"length": 0.5581167404025256, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134234526733807]}, {"n": 4, "root_chord": 0.12036206816141362, "tip_chord": 0.059580633563858565, "span": 0.10984379882310737, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050158132329644]}, {"top_radius": 0.06296984780930251, "bottom_radius": 0.04429796668013174, "length": 0.059600545973406166, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997128456840834, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164118703565992, "upper_button_position": 0.08330097532748426}], "rail_length": 5, "inclination": 84.99773595089705, "heading": 54.215144947354} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350161021383825, "mass": 14.66470452715743, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325580805209669, "I_33_without_motor": 0.04373737661511679, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.811439739006635, "trigger": 800, "sampling_rate": 105, "lag": 1.5546869734387214, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.953604154715001, "trigger": "apogee", "sampling_rate": 105, "lag": 1.483800917173141, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8254.290890932183, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033412091634746566, "grain_number": 5, "grain_density": 1869.338339382631, "grain_outer_radius": 0.03264318354576562, "grain_initial_inner_radius": 0.014913130036107636, "grain_initial_height": 0.12148225508974585, "grain_separation": 0.0053549134008843745, "grains_center_of_mass_position": 0.39751742259822836, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000152338447593795, "throat_radius": 0.010871453371758776, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533238999075087}], "aerodynamic_surfaces": [{"length": 0.5568397968758938, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324548950588493]}, {"n": 4, "root_chord": 0.11980792351200777, "tip_chord": 0.05927861614121553, "span": 0.11018690702395766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498927780040446]}, {"top_radius": 0.06195579564162028, "bottom_radius": 0.04288145337734195, "length": 0.06016061311509323, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996255560749224, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178554158161117, "upper_button_position": 0.08177014025881069}], "rail_length": 5, "inclination": 85.75287565009909, "heading": 52.829314551611965} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349086828540923, "mass": 15.514049600580812, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3238317753190705, "I_33_without_motor": 0.03429285577275365, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959513088077518, "trigger": 800, "sampling_rate": 105, "lag": 1.3968059306652503, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8602905641604647, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4729226184389077, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5185.222676133599, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03346532378466871, "grain_number": 5, "grain_density": 1760.676533099566, "grain_outer_radius": 0.03305947335286661, "grain_initial_inner_radius": 0.014955107384002918, "grain_initial_height": 0.11923967576784393, "grain_separation": 0.005150993219282226, "grains_center_of_mass_position": 0.397465499704024, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001996172586026279, "throat_radius": 0.011194398600461718, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255500874014507}], "aerodynamic_surfaces": [{"length": 0.5596161434857501, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134204390355058]}, {"n": 4, "root_chord": 0.11949985859001545, "tip_chord": 0.05998841243506249, "span": 0.10975124228849471, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514894228970302]}, {"top_radius": 0.0636563499494393, "bottom_radius": 0.043418012408408, "length": 0.06062072760617183, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7021343897585636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616015461554461, "upper_button_position": 0.08611892820410261}], "rail_length": 5, "inclination": 83.51308084363922, "heading": 52.479127533502094} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349340537223189, "mass": 15.28054969776374, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329891077530611, "I_33_without_motor": 0.031349447338591734, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.010251479987462, "trigger": 800, "sampling_rate": 105, "lag": 1.5387898138299798, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.000279979461209, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2788985815449878, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6565.153439648136, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305885702910448, "grain_number": 5, "grain_density": 1801.3330523940162, "grain_outer_radius": 0.032970705880783324, "grain_initial_inner_radius": 0.01518060222006917, "grain_initial_height": 0.12062182243755118, "grain_separation": 0.005183878820211631, "grains_center_of_mass_position": 0.39616386356468414, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000676713364220844, "throat_radius": 0.01131436561619319, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551154928834132}], "aerodynamic_surfaces": [{"length": 0.5579375071198115, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353167009026293]}, {"n": 4, "root_chord": 0.11967061770616116, "tip_chord": 0.05949059558663876, "span": 0.11052026432206478, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489431904077977]}, {"top_radius": 0.06254662431337746, "bottom_radius": 0.045499186633786215, "length": 0.060918021727883326, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989580547840314, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181349507273055, "upper_button_position": 0.08082310405672588}], "rail_length": 5, "inclination": 85.29944055682456, "heading": 52.13196802240111} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350334159332852, "mass": 15.265124977615105, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315267691873081, "I_33_without_motor": 0.03487243641775136, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88737657342112, "trigger": 800, "sampling_rate": 105, "lag": 1.5800451385515288, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0138645830761144, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7362306210130243, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6304.562659255794, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032968622403132974, "grain_number": 5, "grain_density": 1890.9049055310365, "grain_outer_radius": 0.03365026917077673, "grain_initial_inner_radius": 0.015431035221210154, "grain_initial_height": 0.12090149307298094, "grain_separation": 0.005733313434651325, "grains_center_of_mass_position": 0.39679017710426495, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019085227994752945, "throat_radius": 0.01041488621067102, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254584362700621}], "aerodynamic_surfaces": [{"length": 0.5579987980673172, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335083031746864]}, {"n": 4, "root_chord": 0.1196885244982388, "tip_chord": 0.06025612608767761, "span": 0.10999697463561893, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496417614601274]}, {"top_radius": 0.06260627628923839, "bottom_radius": 0.04467477923749892, "length": 0.05915112758757739, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005219645257504, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181105427237161, "upper_button_position": 0.08241142180203431}], "rail_length": 5, "inclination": 82.6865493837148, "heading": 53.479926967749925} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350062561932306, "mass": 15.013264270342955, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331870435732192, "I_33_without_motor": 0.04412489461478131, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953108079537195, "trigger": 800, "sampling_rate": 105, "lag": 1.4238135458881382, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1481997998598752, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4337508861619688, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5406.272975814941, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249941923507872, "grain_number": 5, "grain_density": 1784.4809718798056, "grain_outer_radius": 0.032652582683560416, "grain_initial_inner_radius": 0.01489960122463283, "grain_initial_height": 0.11805308558959933, "grain_separation": 0.004947517908984509, "grains_center_of_mass_position": 0.398335739468406, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017462394663843874, "throat_radius": 0.010269589094118979, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254602851544191}], "aerodynamic_surfaces": [{"length": 0.5590846197871179, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352772693178368]}, {"n": 4, "root_chord": 0.12048802878435899, "tip_chord": 0.0606909906110819, "span": 0.10894446746969669, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495896501953605]}, {"top_radius": 0.06348860823042957, "bottom_radius": 0.042412494541915105, "length": 0.062024959130536225, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996761385184261, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170340773530071, "upper_button_position": 0.08264206116541906}], "rail_length": 5, "inclination": 84.93541720322777, "heading": 51.54573554535646} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06351210645694445, "mass": 15.26503456519668, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331105014382113, "I_33_without_motor": 0.01881743913615394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003995811752572, "trigger": 800, "sampling_rate": 105, "lag": 1.6133935230258776, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9599814048141365, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1546949645065065, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5421.164493729289, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033690449623169506, "grain_number": 5, "grain_density": 1759.082609628949, "grain_outer_radius": 0.03274508153638019, "grain_initial_inner_radius": 0.015348355995488077, "grain_initial_height": 0.11897831902025781, "grain_separation": 0.005650352888659494, "grains_center_of_mass_position": 0.39869481918711686, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012837960993890524, "throat_radius": 0.010989368458406713, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255957351875115}], "aerodynamic_surfaces": [{"length": 0.5580887286277169, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327541628694489]}, {"n": 4, "root_chord": 0.1200615152157241, "tip_chord": 0.060363431104338554, "span": 0.11099062506073987, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511085258474544]}, {"top_radius": 0.06407829153850549, "bottom_radius": 0.04468145942301427, "length": 0.059683946417506586, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987801489401626, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617767397656508, "upper_button_position": 0.0810127512836546}], "rail_length": 5, "inclination": 85.47898065440181, "heading": 51.86084214437894} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0635073786782809, "mass": 14.429123165128372, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32920785076785, "I_33_without_motor": 0.03414271236166506, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034908958656167, "trigger": 800, "sampling_rate": 105, "lag": 1.3718195767013133, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0313202142919744, "trigger": "apogee", "sampling_rate": 105, "lag": 1.773297585371459, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6552.387651395312, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03384379525714228, "grain_number": 5, "grain_density": 1749.8456810838802, "grain_outer_radius": 0.03348233145320907, "grain_initial_inner_radius": 0.015744664114746645, "grain_initial_height": 0.12078865461662883, "grain_separation": 0.004914467856334212, "grains_center_of_mass_position": 0.39583088799020255, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.254725410784453e-05, "throat_radius": 0.011078008874112545, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563204927104434}], "aerodynamic_surfaces": [{"length": 0.5567299996997075, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336675843127475]}, {"n": 4, "root_chord": 0.12005329723676605, "tip_chord": 0.05966903574428191, "span": 0.10999054097152015, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493308258445573]}, {"top_radius": 0.062209376508906365, "bottom_radius": 0.043488288672417975, "length": 0.061038010826320266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000202058118257, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202485388138086, "upper_button_position": 0.07977166699801708}], "rail_length": 5, "inclination": 85.14610684752554, "heading": 55.80619340636884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349716891341428, "mass": 15.39123178756557, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308620855605011, "I_33_without_motor": 0.03269371798918095, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.995343934063966, "trigger": 800, "sampling_rate": 105, "lag": 1.4914007060359633, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0835781105092526, "trigger": "apogee", "sampling_rate": 105, "lag": 1.441020672977597, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5325.834199093747, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260807075685508, "grain_number": 5, "grain_density": 1815.8269452337709, "grain_outer_radius": 0.03234388338849256, "grain_initial_inner_radius": 0.015701195952501818, "grain_initial_height": 0.12090587569442066, "grain_separation": 0.008053134140935307, "grains_center_of_mass_position": 0.395798963052189, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031162034990032077, "throat_radius": 0.010297060681933937, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565569722378744}], "aerodynamic_surfaces": [{"length": 0.5584262081079561, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351471883533892]}, {"n": 4, "root_chord": 0.12036905184874752, "tip_chord": 0.05944523249314839, "span": 0.1099644958361118, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495082664266202]}, {"top_radius": 0.06180973171133096, "bottom_radius": 0.043348878230687525, "length": 0.05994105475455632, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010955460027235, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200355882296318, "upper_button_position": 0.08105995777309172}], "rail_length": 5, "inclination": 85.21959676530217, "heading": 52.40025107124351} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349140148644955, "mass": 16.01130403979333, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323128956850093, "I_33_without_motor": 0.04051557950995828, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.137908202158275, "trigger": 800, "sampling_rate": 105, "lag": 1.568794234711088, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9967291776885765, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2924977440697398, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6736.819846210903, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032413551488139965, "grain_number": 5, "grain_density": 1880.4251698238043, "grain_outer_radius": 0.03342085430253851, "grain_initial_inner_radius": 0.014999379585874868, "grain_initial_height": 0.12023147714685097, "grain_separation": 0.005637066613801631, "grains_center_of_mass_position": 0.3967225791047695, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010650577225276019, "throat_radius": 0.010735886545363879, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560760772448423}], "aerodynamic_surfaces": [{"length": 0.5566604881685367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347834056865103]}, {"n": 4, "root_chord": 0.11919663134565804, "tip_chord": 0.06038235928909707, "span": 0.11060389493686028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508281562163837]}, {"top_radius": 0.06393648946813682, "bottom_radius": 0.04217537484809189, "length": 0.05971588599397006, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991940868905413, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181523269507202, "upper_button_position": 0.0810417599398211}], "rail_length": 5, "inclination": 85.07691215569197, "heading": 51.669611295007144} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349694146924409, "mass": 15.119175964244715, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340376891673956, "I_33_without_motor": 0.027106266963112455, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059886921219936, "trigger": 800, "sampling_rate": 105, "lag": 1.7538711873894663, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.962018799668635, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1070490270301758, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5016.223209924216, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032778740188818906, "grain_number": 5, "grain_density": 1799.9908763711487, "grain_outer_radius": 0.03332858425404144, "grain_initial_inner_radius": 0.015333893239652303, "grain_initial_height": 0.12100048163509013, "grain_separation": 0.0059188355776894075, "grains_center_of_mass_position": 0.39935695789237274, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018068169252183084, "throat_radius": 0.010905795142360513, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254889239143445}], "aerodynamic_surfaces": [{"length": 0.5597017014844285, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329019170684382]}, {"n": 4, "root_chord": 0.12056974385898724, "tip_chord": 0.059289629484245654, "span": 0.11097292678596232, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048722435203325]}, {"top_radius": 0.06417768185915229, "bottom_radius": 0.04304756852751488, "length": 0.06078966490449429, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995126639690012, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186505134619952, "upper_button_position": 0.08086215050700607}], "rail_length": 5, "inclination": 84.37812468348193, "heading": 51.038365100308354} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350583024843358, "mass": 14.797815887178135, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3033100510862585, "I_33_without_motor": 0.04065763827630166, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.965696019609036, "trigger": 800, "sampling_rate": 105, "lag": 1.4799412423828553, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.000666315214049, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9135516383998312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6154.828925005854, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032630291497530606, "grain_number": 5, "grain_density": 1877.1520560293256, "grain_outer_radius": 0.03332655079860073, "grain_initial_inner_radius": 0.014803293202025995, "grain_initial_height": 0.12028540723553811, "grain_separation": 0.0036528551538847504, "grains_center_of_mass_position": 0.3966654645724889, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002608271714313338, "throat_radius": 0.011026158896820066, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542571611574187}], "aerodynamic_surfaces": [{"length": 0.5580950724809841, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1358005808735718]}, {"n": 4, "root_chord": 0.12003600279524661, "tip_chord": 0.05860257869556503, "span": 0.1100233207188811, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049549712536849]}, {"top_radius": 0.06396346413255687, "bottom_radius": 0.04449816869281418, "length": 0.05905126658284222, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000197252940684, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180295713895886, "upper_button_position": 0.08199015390447983}], "rail_length": 5, "inclination": 85.34906359687795, "heading": 53.03431590799254} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349864544585472, "mass": 15.674115029383263, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319420443021092, "I_33_without_motor": 0.03482188461132692, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.845236302085869, "trigger": 800, "sampling_rate": 105, "lag": 1.5857552211572234, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9971809896922276, "trigger": "apogee", "sampling_rate": 105, "lag": 1.533552996897653, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8021.8292024721995, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285435380975299, "grain_number": 5, "grain_density": 1879.702100465615, "grain_outer_radius": 0.0332704711247537, "grain_initial_inner_radius": 0.01491585589503542, "grain_initial_height": 0.11821404922953213, "grain_separation": 0.005467998864041114, "grains_center_of_mass_position": 0.39710225318987574, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004359543634690246, "throat_radius": 0.011553207903805133, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558509597285605}], "aerodynamic_surfaces": [{"length": 0.5577843372862304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343941353306175]}, {"n": 4, "root_chord": 0.1203513272808837, "tip_chord": 0.06011828237089019, "span": 0.10906968568790643, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501404945853312]}, {"top_radius": 0.06358648733322177, "bottom_radius": 0.0443588081663022, "length": 0.06100128791629383, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002791373606259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188513029517773, "upper_button_position": 0.0814278344088486}], "rail_length": 5, "inclination": 84.89233816809234, "heading": 49.48936587747} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349745485047584, "mass": 16.021569146472906, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308208252338415, "I_33_without_motor": 0.03543126051673118, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000821100464746, "trigger": 800, "sampling_rate": 105, "lag": 1.4080014243001377, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9995823520169852, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5668341629705476, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6181.887907613016, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377161296324579, "grain_number": 5, "grain_density": 1867.2800401811419, "grain_outer_radius": 0.032604793920204496, "grain_initial_inner_radius": 0.015220590292514944, "grain_initial_height": 0.1200761774956372, "grain_separation": 0.005119985758485602, "grains_center_of_mass_position": 0.3963056524507932, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005646668124458437, "throat_radius": 0.010210509694583056, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544116282621383}], "aerodynamic_surfaces": [{"length": 0.5576040847081334, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335205423324992]}, {"n": 4, "root_chord": 0.11986395809230217, "tip_chord": 0.06012719137217906, "span": 0.11087371341338224, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505430285678587]}, {"top_radius": 0.06401927763170769, "bottom_radius": 0.0443517812490375, "length": 0.060269058664283615, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700313030882226, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189574757157306, "upper_button_position": 0.0813555551664954}], "rail_length": 5, "inclination": 84.8976400219209, "heading": 53.584257633579675} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350020036992449, "mass": 15.21883175810115, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316518137520657, "I_33_without_motor": 0.031142602649626785, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.824461283820158, "trigger": 800, "sampling_rate": 105, "lag": 1.6795921663261455, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.956321400615, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4801356991693144, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4993.903977656333, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377630120852392, "grain_number": 5, "grain_density": 1803.8409803293434, "grain_outer_radius": 0.03335752772219062, "grain_initial_inner_radius": 0.01470775724385015, "grain_initial_height": 0.12095624476170215, "grain_separation": 0.003620054605469062, "grains_center_of_mass_position": 0.3956278398190999, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005356151289864659, "throat_radius": 0.011076359444739116, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544593213375108}], "aerodynamic_surfaces": [{"length": 0.5593454966082096, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13154366238165]}, {"n": 4, "root_chord": 0.11985373540691084, "tip_chord": 0.06004047874416078, "span": 0.1105688720026922, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492224523737899]}, {"top_radius": 0.06418365980299255, "bottom_radius": 0.045095994527204544, "length": 0.06007698823927071, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699080227951269, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161374723510143, "upper_button_position": 0.08294275560025466}], "rail_length": 5, "inclination": 86.36841927178052, "heading": 51.29056869866884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349826229547476, "mass": 15.64206738027916, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315984533801051, "I_33_without_motor": 0.03842206703955335, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.797370334400526, "trigger": 800, "sampling_rate": 105, "lag": 1.6057428207895057, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9467497503370408, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8081065692951392, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7859.017439096727, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316415813866913, "grain_number": 5, "grain_density": 1887.7384521698698, "grain_outer_radius": 0.03280601269881496, "grain_initial_inner_radius": 0.015362774549959662, "grain_initial_height": 0.12295960042197823, "grain_separation": 0.005323041544855938, "grains_center_of_mass_position": 0.39769569045366543, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007097917858992638, "throat_radius": 0.011180292427453038, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252079728023303}], "aerodynamic_surfaces": [{"length": 0.5585887121372946, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347570110902587]}, {"n": 4, "root_chord": 0.11994696874215742, "tip_chord": 0.060575586439699194, "span": 0.10979615314095029, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0476309496938314]}, {"top_radius": 0.06274285565779462, "bottom_radius": 0.042273093964510115, "length": 0.05814876684141117, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990462239802921, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618050184572659, "upper_button_position": 0.08099603940763311}], "rail_length": 5, "inclination": 85.4601180277729, "heading": 54.11175807332619} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349347931712725, "mass": 15.975887861588697, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321826931365772, "I_33_without_motor": 0.017590651028759514, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.927025119310178, "trigger": 800, "sampling_rate": 105, "lag": 1.250719990610508, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9798807029177486, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7514027011940363, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5524.034432498731, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033614093646610485, "grain_number": 5, "grain_density": 1816.222462679092, "grain_outer_radius": 0.032339684556229556, "grain_initial_inner_radius": 0.015099301361626108, "grain_initial_height": 0.12092681370007721, "grain_separation": 0.003528245148117482, "grains_center_of_mass_position": 0.3976393123085024, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011000208971827308, "throat_radius": 0.011366555414468162, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559406121823826}], "aerodynamic_surfaces": [{"length": 0.5571668061422025, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351316832579474]}, {"n": 4, "root_chord": 0.12043124429313326, "tip_chord": 0.05995121969723274, "span": 0.11049511789604746, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491703526468987]}, {"top_radius": 0.06135844223990307, "bottom_radius": 0.04252226814225803, "length": 0.05893962571378513, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010211013627231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183910180068845, "upper_button_position": 0.08263008335583866}], "rail_length": 5, "inclination": 82.35236036520485, "heading": 53.045652949079916} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349237224222523, "mass": 15.22195610559469, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326369303091641, "I_33_without_motor": 0.04143442855262052, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.995776664059798, "trigger": 800, "sampling_rate": 105, "lag": 1.4686089297775915, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0809745899395418, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6258700384858364, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6484.398126451599, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274229948057026, "grain_number": 5, "grain_density": 1754.5680672838125, "grain_outer_radius": 0.03347454438545616, "grain_initial_inner_radius": 0.014546733265701904, "grain_initial_height": 0.11850733992275005, "grain_separation": 0.003251830006957345, "grains_center_of_mass_position": 0.39698912738677256, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000616470081696151, "throat_radius": 0.011660867403138972, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546749430765707}], "aerodynamic_surfaces": [{"length": 0.5583441411895955, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346201405117817]}, {"n": 4, "root_chord": 0.11956599136991271, "tip_chord": 0.05965032602857321, "span": 0.11055224183686249, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495807235457353]}, {"top_radius": 0.06307316821156121, "bottom_radius": 0.04217598047577477, "length": 0.059810821861219506, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990832291178587, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178642354070817, "upper_button_position": 0.08121899371077701}], "rail_length": 5, "inclination": 85.43684598772488, "heading": 53.24812696876834} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349161523578084, "mass": 15.80458007793188, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338688105471304, "I_33_without_motor": 0.02186914449129704, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.146979055883218, "trigger": 800, "sampling_rate": 105, "lag": 1.4872030639189635, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.040133135232308, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3532143225446838, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7477.215820093689, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260429118073134, "grain_number": 5, "grain_density": 1898.9705117996182, "grain_outer_radius": 0.033352455675153235, "grain_initial_inner_radius": 0.015162358705702416, "grain_initial_height": 0.11993390858115624, "grain_separation": 0.0050148855375899614, "grains_center_of_mass_position": 0.3966430226263621, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018094482516897, "throat_radius": 0.010813418249530277, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548694521208885}], "aerodynamic_surfaces": [{"length": 0.5581437127658669, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346246411978342]}, {"n": 4, "root_chord": 0.12012218321212519, "tip_chord": 0.06092598515157352, "span": 0.10998906692992494, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493392583373817]}, {"top_radius": 0.0632350587368023, "bottom_radius": 0.04214224166686057, "length": 0.06002321677246518, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002080559765356, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179570476602796, "upper_button_position": 0.08225100831625598}], "rail_length": 5, "inclination": 86.61409044725174, "heading": 53.599294814068635} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349572184280669, "mass": 15.660832287110573, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31631489324997, "I_33_without_motor": 0.031048876515635766, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.182513506956322, "trigger": 800, "sampling_rate": 105, "lag": 1.3610573852736387, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0739928075156386, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3819720291046618, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6606.835336323404, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273501284002073, "grain_number": 5, "grain_density": 1876.1090400574828, "grain_outer_radius": 0.03271027900951002, "grain_initial_inner_radius": 0.0153788784666465, "grain_initial_height": 0.11802166983907378, "grain_separation": 0.005143871197880177, "grains_center_of_mass_position": 0.39714880143722386, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013743487199913028, "throat_radius": 0.011146656247543543, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550112734482957}], "aerodynamic_surfaces": [{"length": 0.5591682390271367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335062280591715]}, {"n": 4, "root_chord": 0.11971075682861183, "tip_chord": 0.059557521207960956, "span": 0.10994328238077095, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491670339360797]}, {"top_radius": 0.06454007489727069, "bottom_radius": 0.042765222986241955, "length": 0.06001837213483002, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001390365579331, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181401985914214, "upper_button_position": 0.08199883796651164}], "rail_length": 5, "inclination": 84.11506690323328, "heading": 57.16859693685839} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349870890740464, "mass": 14.58343966238572, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316586454404828, "I_33_without_motor": 0.035586745861799635, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.010278454191278, "trigger": 800, "sampling_rate": 105, "lag": 1.5179155614827011, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.930315887661593, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5229329714713542, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4042.7355496118475, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325526428512146, "grain_number": 5, "grain_density": 1731.6769199059147, "grain_outer_radius": 0.032667536191688676, "grain_initial_inner_radius": 0.0155454810583946, "grain_initial_height": 0.12058226654606229, "grain_separation": 0.005780858529002905, "grains_center_of_mass_position": 0.39598101644685724, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014133535357051738, "throat_radius": 0.010579889069967013, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539232749355171}], "aerodynamic_surfaces": [{"length": 0.5575077319155467, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332173201060085]}, {"n": 4, "root_chord": 0.12003081237071389, "tip_chord": 0.06043302381529429, "span": 0.10973373386095889, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498079904656985]}, {"top_radius": 0.06567811733170935, "bottom_radius": 0.04423085560750991, "length": 0.06035350113921766, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6975772435591271, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176156871704966, "upper_button_position": 0.07996155638863045}], "rail_length": 5, "inclination": 84.50440560940936, "heading": 54.147992058055515} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350484667681847, "mass": 15.07945027473064, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3460110044985445, "I_33_without_motor": 0.04747395911080482, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977619141577248, "trigger": 800, "sampling_rate": 105, "lag": 1.4480055180686553, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9887682582237324, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5234247944246129, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7896.622529508174, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324275277263991, "grain_number": 5, "grain_density": 1803.2048070389135, "grain_outer_radius": 0.03309091768919592, "grain_initial_inner_radius": 0.014616562103163215, "grain_initial_height": 0.12131597675209659, "grain_separation": 0.00464395244152762, "grains_center_of_mass_position": 0.39602954563402304, "center_of_dry_mass_position": 0.317, "nozzle_position": -3.68857970799429e-05, "throat_radius": 0.010959078523949575, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256798675949048}], "aerodynamic_surfaces": [{"length": 0.5587955268014788, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133855476197436]}, {"n": 4, "root_chord": 0.11952087693656281, "tip_chord": 0.0596109337665397, "span": 0.1100200587524835, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050805840329205]}, {"top_radius": 0.062305388407452436, "bottom_radius": 0.04373185817403063, "length": 0.05920498160141433, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000217433183058, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195301041782699, "upper_button_position": 0.08049163914003588}], "rail_length": 5, "inclination": 83.81300789801917, "heading": 54.04605045832872} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349646989756391, "mass": 14.592615342587996, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312913046018779, "I_33_without_motor": 0.04729774039657933, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.159480573311633, "trigger": 800, "sampling_rate": 105, "lag": 1.4183713147119212, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1449164184238616, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6165870719073536, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3829.0324275310372, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345331136821348, "grain_number": 5, "grain_density": 1883.3627940121453, "grain_outer_radius": 0.03273960537347223, "grain_initial_inner_radius": 0.014849198177242609, "grain_initial_height": 0.12141873251395074, "grain_separation": 0.004925272918151479, "grains_center_of_mass_position": 0.3980369981749275, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000965306807652606, "throat_radius": 0.011017973004539867, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253780466798635}], "aerodynamic_surfaces": [{"length": 0.5577662626766352, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134109670112107]}, {"n": 4, "root_chord": 0.1199795693326526, "tip_chord": 0.060446688497250385, "span": 0.11003423892166489, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049234554949945]}, {"top_radius": 0.0638018293668039, "bottom_radius": 0.04448342903696165, "length": 0.059518929869493954, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.697945623932099, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181710742508951, "upper_button_position": 0.0797745496812039}], "rail_length": 5, "inclination": 84.78719732986049, "heading": 53.29542097898409} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349842010101464, "mass": 15.008307612396766, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3220208266938505, "I_33_without_motor": 0.02571919129933084, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.853216474011601, "trigger": 800, "sampling_rate": 105, "lag": 1.4478653585725247, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0810561490471327, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5596587702287423, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6186.545178981721, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03289944877939364, "grain_number": 5, "grain_density": 1760.055554619511, "grain_outer_radius": 0.032157342251594646, "grain_initial_inner_radius": 0.015042669966168083, "grain_initial_height": 0.12157909972518456, "grain_separation": 0.006271974839046137, "grains_center_of_mass_position": 0.39783407779966, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010147601377251986, "throat_radius": 0.011783970713398524, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530203467742371}], "aerodynamic_surfaces": [{"length": 0.5598288073509315, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320050678647253]}, {"n": 4, "root_chord": 0.12020611998616855, "tip_chord": 0.060100175349025384, "span": 0.10935837801599503, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050330862569929]}, {"top_radius": 0.06251271454093783, "bottom_radius": 0.04429162951894048, "length": 0.06111450338742778, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699301535727161, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193239229260739, "upper_button_position": 0.07997761280108717}], "rail_length": 5, "inclination": 84.97686529230306, "heading": 50.15304624908054} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349663912200322, "mass": 15.506244520999962, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3241997869324, "I_33_without_motor": 0.017120565856042273, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.043652489429046, "trigger": 800, "sampling_rate": 105, "lag": 1.6218037859539618, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0654173123666102, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7360230481817571, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6262.165574378566, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03172661070286562, "grain_number": 5, "grain_density": 1821.0116335399962, "grain_outer_radius": 0.033289263480548996, "grain_initial_inner_radius": 0.015084744087647364, "grain_initial_height": 0.11907358399917035, "grain_separation": 0.005628754370258477, "grains_center_of_mass_position": 0.39683256343943135, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011491237327193823, "throat_radius": 0.010709623345000481, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536699656638464}], "aerodynamic_surfaces": [{"length": 0.5588010661892772, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349789775568326]}, {"n": 4, "root_chord": 0.11979274873902755, "tip_chord": 0.059824417382147284, "span": 0.1105289452630531, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486355525018836]}, {"top_radius": 0.06430690305369784, "bottom_radius": 0.04215288707451801, "length": 0.059146934424291475, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004238900219075, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174853365050373, "upper_button_position": 0.08293855351687018}], "rail_length": 5, "inclination": 85.26642967104009, "heading": 51.20482994232662} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349699722428834, "mass": 15.067010354400841, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311567670841619, "I_33_without_motor": 0.03406382569367747, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.048612956102458, "trigger": 800, "sampling_rate": 105, "lag": 1.2388033150685198, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0431281576489628, "trigger": "apogee", "sampling_rate": 105, "lag": 1.771780956128096, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6013.12467058829, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033142596938681775, "grain_number": 5, "grain_density": 1784.0014814064166, "grain_outer_radius": 0.03259182037139622, "grain_initial_inner_radius": 0.014883590268599667, "grain_initial_height": 0.11946419889559133, "grain_separation": 0.005599262596096678, "grains_center_of_mass_position": 0.3978641301410838, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00036116713952439206, "throat_radius": 0.010832892212232251, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255924925921931}], "aerodynamic_surfaces": [{"length": 0.5565195315537124, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354930814175934]}, {"n": 4, "root_chord": 0.11981687357601428, "tip_chord": 0.05947651015452446, "span": 0.10917699951321104, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488640018813074]}, {"top_radius": 0.06310285920503324, "bottom_radius": 0.04364225542290765, "length": 0.06018724431352062, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008347371992555, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161691701830189, "upper_button_position": 0.08466556701623662}], "rail_length": 5, "inclination": 84.70307255367275, "heading": 51.02854911834217} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349701887018058, "mass": 15.820983255614415, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315800379211207, "I_33_without_motor": 0.03140570741144831, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05318572479956, "trigger": 800, "sampling_rate": 105, "lag": 1.4483742365693002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8076606088566922, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4926380450449928, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6427.4876299442285, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032443212210233684, "grain_number": 5, "grain_density": 1877.7664886457542, "grain_outer_radius": 0.033629595702798505, "grain_initial_inner_radius": 0.01490382528077361, "grain_initial_height": 0.12038216896682068, "grain_separation": 0.0060596138253211996, "grains_center_of_mass_position": 0.39519264693157735, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019498268326038554, "throat_radius": 0.010860730435586134, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547587100544213}], "aerodynamic_surfaces": [{"length": 0.5598846620740674, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320190181485572]}, {"n": 4, "root_chord": 0.12026213544023816, "tip_chord": 0.059593479148976, "span": 0.11034529716044396, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484594735912636]}, {"top_radius": 0.06403964527139927, "bottom_radius": 0.04213582674232907, "length": 0.06117154491016868, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989617578243934, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189062824343693, "upper_button_position": 0.08005547539002411}], "rail_length": 5, "inclination": 84.11567572807715, "heading": 56.39129285749225} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350304805577867, "mass": 14.734928403389622, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318330390837564, "I_33_without_motor": 0.03417499558648428, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.023733518816819, "trigger": 800, "sampling_rate": 105, "lag": 1.6430192370716792, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.078630852583903, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6177253931050093, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6486.182748966503, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266707250866672, "grain_number": 5, "grain_density": 1765.1826022877221, "grain_outer_radius": 0.03364095798828889, "grain_initial_inner_radius": 0.015026308917041702, "grain_initial_height": 0.11969386785559509, "grain_separation": 0.005740558044049479, "grains_center_of_mass_position": 0.39826857654259523, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003464513590306299, "throat_radius": 0.011357926685605604, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553057885076897}], "aerodynamic_surfaces": [{"length": 0.5591170970768764, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133430642813409]}, {"n": 4, "root_chord": 0.11907755751354242, "tip_chord": 0.05997967788703378, "span": 0.10943221047694976, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500595408550413]}, {"top_radius": 0.06195416351086214, "bottom_radius": 0.04200997939778024, "length": 0.060719278272113895, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006515099410527, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184062567524653, "upper_button_position": 0.08224525318858744}], "rail_length": 5, "inclination": 86.39902903115905, "heading": 54.23042737755901} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350277869883612, "mass": 16.03231754045636, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326850075960687, "I_33_without_motor": 0.025306972108137538, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033526746407365, "trigger": 800, "sampling_rate": 105, "lag": 1.4606082159158733, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1131637525867035, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3408603550160316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6546.0102313421, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03208122468583283, "grain_number": 5, "grain_density": 1877.8013557408956, "grain_outer_radius": 0.03293661786455107, "grain_initial_inner_radius": 0.014363921776424045, "grain_initial_height": 0.11879189402051635, "grain_separation": 0.004141466817347596, "grains_center_of_mass_position": 0.39796540512276374, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001221234080378009, "throat_radius": 0.010212523578435969, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551439081655342}], "aerodynamic_surfaces": [{"length": 0.5595712509388002, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1319437940270531]}, {"n": 4, "root_chord": 0.11930502291264697, "tip_chord": 0.05987352314719926, "span": 0.11023648995991872, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047984940977821]}, {"top_radius": 0.06180535747851181, "bottom_radius": 0.04341537292433584, "length": 0.06024676745277384, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007697870791075, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199437276130126, "upper_button_position": 0.08082605946609489}], "rail_length": 5, "inclination": 83.96117242897776, "heading": 53.941313141983294} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350900858300564, "mass": 14.456319118172535, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315237020839585, "I_33_without_motor": 0.025067923485844145, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.968791167915658, "trigger": 800, "sampling_rate": 105, "lag": 1.5698493020553732, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9687543613228845, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4805853852948205, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6177.50293734661, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03193135945425944, "grain_number": 5, "grain_density": 1866.1943950784537, "grain_outer_radius": 0.03289633659704875, "grain_initial_inner_radius": 0.01496833452434504, "grain_initial_height": 0.11921590415924496, "grain_separation": 0.006522522388806328, "grains_center_of_mass_position": 0.3967366532379096, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006988252344542597, "throat_radius": 0.011207911413268299, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548842872888446}], "aerodynamic_surfaces": [{"length": 0.559304621775581, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133343433382053]}, {"n": 4, "root_chord": 0.12046029110618879, "tip_chord": 0.059388174724984796, "span": 0.11020725357277458, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503808100964038]}, {"top_radius": 0.06452587939321583, "bottom_radius": 0.044537386441352314, "length": 0.0596727131861112, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993590135392016, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185327505879964, "upper_button_position": 0.08082626295120521}], "rail_length": 5, "inclination": 86.20092912075529, "heading": 59.05323422027387} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635025837299726, "mass": 15.65845150886824, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3240880009706855, "I_33_without_motor": 0.03053610125831691, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.13173555006889, "trigger": 800, "sampling_rate": 105, "lag": 1.5275939324409515, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0661610498846938, "trigger": "apogee", "sampling_rate": 105, "lag": 1.639435375106274, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7610.957677257568, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335091085003774, "grain_number": 5, "grain_density": 1790.352187436125, "grain_outer_radius": 0.032199258082294235, "grain_initial_inner_radius": 0.014654185052904377, "grain_initial_height": 0.12126320261235263, "grain_separation": 0.004187595619630151, "grains_center_of_mass_position": 0.3958168029524986, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007891495990526132, "throat_radius": 0.010976748521583342, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557768631522421}], "aerodynamic_surfaces": [{"length": 0.558648640042866, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357274950008778]}, {"n": 4, "root_chord": 0.11966124702540581, "tip_chord": 0.059626856799222125, "span": 0.10978803786168466, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503398667689163]}, {"top_radius": 0.06468845875101681, "bottom_radius": 0.04453216910922861, "length": 0.058163214752287196, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002792008758837, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182575461638538, "upper_button_position": 0.08202165471202993}], "rail_length": 5, "inclination": 84.47032241147102, "heading": 50.92014787888182} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349997157473622, "mass": 15.352228220256128, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325044237099263, "I_33_without_motor": 0.03318800596690747, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928855079626594, "trigger": 800, "sampling_rate": 105, "lag": 1.4224169369050272, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.7917385013285548, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3824318535927467, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8789.72762786933, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326944274742039, "grain_number": 5, "grain_density": 1755.3866500250222, "grain_outer_radius": 0.03338486591449958, "grain_initial_inner_radius": 0.015228992334904382, "grain_initial_height": 0.11881600221427865, "grain_separation": 0.0038282840945769833, "grains_center_of_mass_position": 0.3975382283939115, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012283338643670694, "throat_radius": 0.010003441098622322, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548715042865035}], "aerodynamic_surfaces": [{"length": 0.5575278813734652, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354780092396477]}, {"n": 4, "root_chord": 0.1200375140722747, "tip_chord": 0.060667972713832334, "span": 0.11001863002042826, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0474047449716812]}, {"top_radius": 0.06648991041551564, "bottom_radius": 0.0444996579535055, "length": 0.05968305538522869, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6972463027356075, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180237239693175, "upper_button_position": 0.07922257876629002}], "rail_length": 5, "inclination": 84.36150874776867, "heading": 51.01465824437937} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349012438752599, "mass": 15.447605055365075, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322631265277811, "I_33_without_motor": 0.036787661536050155, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.862471871710227, "trigger": 800, "sampling_rate": 105, "lag": 1.464129787756324, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9799487020995192, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7103383754836088, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6598.273735340157, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032686683040922, "grain_number": 5, "grain_density": 1729.3463295770566, "grain_outer_radius": 0.03301003254288713, "grain_initial_inner_radius": 0.0152132845027974, "grain_initial_height": 0.12221857328477606, "grain_separation": 0.003534709335698055, "grains_center_of_mass_position": 0.39645932848348137, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006141120581125719, "throat_radius": 0.011232161814689955, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535398417095884}], "aerodynamic_surfaces": [{"length": 0.5585747813673912, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340925185510684]}, {"n": 4, "root_chord": 0.11953538093556858, "tip_chord": 0.060716991765795696, "span": 0.11010011830547058, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502063389210259]}, {"top_radius": 0.06312662502786698, "bottom_radius": 0.04360843866362464, "length": 0.06085969641578697, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001833303077307, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198003564320839, "upper_button_position": 0.08038297387564686}], "rail_length": 5, "inclination": 83.6101662622901, "heading": 52.68491985208154} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349766224476137, "mass": 16.243607863134535, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316582421460202, "I_33_without_motor": 0.0345681560209089, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.878283503816338, "trigger": 800, "sampling_rate": 105, "lag": 1.3849101470303051, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0372883532711867, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1600944951593992, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6578.756631507838, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372716175310368, "grain_number": 5, "grain_density": 1810.1183027095965, "grain_outer_radius": 0.03323155075887448, "grain_initial_inner_radius": 0.015335959557270466, "grain_initial_height": 0.1194047461420667, "grain_separation": 0.00430383288785764, "grains_center_of_mass_position": 0.3971511204289036, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014807140352298008, "throat_radius": 0.010782251006897508, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550002367386088}], "aerodynamic_surfaces": [{"length": 0.5574370411261387, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132165694178104]}, {"n": 4, "root_chord": 0.1196621577488281, "tip_chord": 0.06012610526412411, "span": 0.10951189645493128, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498817739796897]}, {"top_radius": 0.06478166857138813, "bottom_radius": 0.04336390440279874, "length": 0.06029583709683998, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987316926344744, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188292282122109, "upper_button_position": 0.07990246442226356}], "rail_length": 5, "inclination": 85.38873005153556, "heading": 56.68660315447007} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349835461671234, "mass": 15.300720630470574, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299498321750329, "I_33_without_motor": 0.026122639324312844, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960117207582387, "trigger": 800, "sampling_rate": 105, "lag": 1.599860194996811, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0565431607305134, "trigger": "apogee", "sampling_rate": 105, "lag": 1.372502411731876, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6198.988358224516, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032917239309169725, "grain_number": 5, "grain_density": 1791.6990429480898, "grain_outer_radius": 0.03312545175043515, "grain_initial_inner_radius": 0.015158587985342118, "grain_initial_height": 0.11961076574796876, "grain_separation": 0.00483061126732178, "grains_center_of_mass_position": 0.39702002698298045, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003950603807403602, "throat_radius": 0.011567882586157839, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561085887976555}], "aerodynamic_surfaces": [{"length": 0.5586610317633751, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337430834409932]}, {"n": 4, "root_chord": 0.1200569697481365, "tip_chord": 0.060308591097718495, "span": 0.1105000261024242, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514300909931027]}, {"top_radius": 0.0649532008760111, "bottom_radius": 0.043376361666909516, "length": 0.059749322846594184, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993581562490995, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171798569228722, "upper_button_position": 0.08217829932622722}], "rail_length": 5, "inclination": 84.25374073276672, "heading": 52.81286499985993} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350107947118158, "mass": 14.352657429760193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3273534371716345, "I_33_without_motor": 0.03383104379442815, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.171664964613454, "trigger": 800, "sampling_rate": 105, "lag": 1.3659558744991835, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9535650643798257, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7214825350695808, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6916.0132661424495, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308919009091791, "grain_number": 5, "grain_density": 1881.542678586299, "grain_outer_radius": 0.03297093459159655, "grain_initial_inner_radius": 0.014184460130964612, "grain_initial_height": 0.12220924077579495, "grain_separation": 0.00551134144896175, "grains_center_of_mass_position": 0.3981278674054594, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000656630102065787, "throat_radius": 0.01091213624408919, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557874352013039}], "aerodynamic_surfaces": [{"length": 0.5594330307116939, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342688199089017]}, {"n": 4, "root_chord": 0.11993709968659992, "tip_chord": 0.05997231683678097, "span": 0.11056880593087735, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511224780181683]}, {"top_radius": 0.06596919376069615, "bottom_radius": 0.04256272507511201, "length": 0.06005476981410679, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7019565267906183, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167178569966038, "upper_button_position": 0.08523866979401451}], "rail_length": 5, "inclination": 86.72148450502026, "heading": 50.6820007328128} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349615486450512, "mass": 15.95586666458393, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302306336302842, "I_33_without_motor": 0.04586499792236043, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.884497345883267, "trigger": 800, "sampling_rate": 105, "lag": 1.349922721495811, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9515023730300722, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6525832714957676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7514.008973666119, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364711835563394, "grain_number": 5, "grain_density": 1772.7831915168517, "grain_outer_radius": 0.033244484515239384, "grain_initial_inner_radius": 0.014954778372213047, "grain_initial_height": 0.11918855674593846, "grain_separation": 0.005530280411239932, "grains_center_of_mass_position": 0.3971370215078295, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0021802591399466826, "throat_radius": 0.011011075622779509, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549993819354588}], "aerodynamic_surfaces": [{"length": 0.5589306264680318, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134746885098505]}, {"n": 4, "root_chord": 0.12056911687868642, "tip_chord": 0.05943152962203395, "span": 0.1102127142720921, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048754006178024]}, {"top_radius": 0.06364087748384258, "bottom_radius": 0.04487056104984269, "length": 0.05871627195609611, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998532971792975, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617603184415736, "upper_button_position": 0.08225011276356142}], "rail_length": 5, "inclination": 84.03493425520466, "heading": 51.501464542797905} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350124410426067, "mass": 14.812594276255968, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3310644271264405, "I_33_without_motor": 0.03966730713374364, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.078734433044685, "trigger": 800, "sampling_rate": 105, "lag": 1.5617772031724466, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0810503416179773, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3145844383917948, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7083.594598595376, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03213591633829972, "grain_number": 5, "grain_density": 1802.987255678561, "grain_outer_radius": 0.03277857572882302, "grain_initial_inner_radius": 0.015451800147722329, "grain_initial_height": 0.11959804258385957, "grain_separation": 0.003774197806923691, "grains_center_of_mass_position": 0.39794012965117925, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012347969607674181, "throat_radius": 0.010468951452080153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255517646331457}], "aerodynamic_surfaces": [{"length": 0.5584027900791897, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336497113299902]}, {"n": 4, "root_chord": 0.11994174842207611, "tip_chord": 0.059176877707222214, "span": 0.1103248168220103, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493471964849246]}, {"top_radius": 0.06396999287449497, "bottom_radius": 0.041214722735020935, "length": 0.0585861235250138, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980664230505899, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618717665787241, "upper_button_position": 0.07934875726334889}], "rail_length": 5, "inclination": 84.12009643585307, "heading": 51.67541397752845} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0634995065734211, "mass": 15.389242801976424, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307274469607889, "I_33_without_motor": 0.03250441301514021, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.092915023746675, "trigger": 800, "sampling_rate": 105, "lag": 1.5808339855041564, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0086722829918475, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3583903746953687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5586.3324563768965, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318477161301183, "grain_number": 5, "grain_density": 1873.6861388369389, "grain_outer_radius": 0.03341753718635865, "grain_initial_inner_radius": 0.01535688437994187, "grain_initial_height": 0.12002447753437609, "grain_separation": 0.005010094422033224, "grains_center_of_mass_position": 0.3953968536660812, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018639252113834865, "throat_radius": 0.010976784481079924, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540136898959044}], "aerodynamic_surfaces": [{"length": 0.5567502179193297, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335587025746012]}, {"n": 4, "root_chord": 0.11947564028912787, "tip_chord": 0.05965559700274877, "span": 0.10997548997005775, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048674569674655]}, {"top_radius": 0.06506095218976571, "bottom_radius": 0.042432369435750975, "length": 0.059427669396334586, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991029504286193, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170053655189567, "upper_button_position": 0.08209758490966257}], "rail_length": 5, "inclination": 85.20423585945106, "heading": 52.33303037831131} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350109735494852, "mass": 15.78581360666325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325381981397694, "I_33_without_motor": 0.03419237401228224, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996511169119552, "trigger": 800, "sampling_rate": 105, "lag": 1.4439134538628338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0164323893198806, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4096283486677765, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6530.167779530644, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032854822896261474, "grain_number": 5, "grain_density": 1750.43315287918, "grain_outer_radius": 0.03326903802337003, "grain_initial_inner_radius": 0.015309708136893077, "grain_initial_height": 0.12012071168023639, "grain_separation": 0.004933372524964758, "grains_center_of_mass_position": 0.3966927094925862, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005444860413102031, "throat_radius": 0.011278829627422018, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562856618076594}], "aerodynamic_surfaces": [{"length": 0.5597200044016308, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350335343710454]}, {"n": 4, "root_chord": 0.11983811832928543, "tip_chord": 0.06011288135904305, "span": 0.11053221227506538, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048291587788611]}, {"top_radius": 0.06351966150573696, "bottom_radius": 0.04355605129041804, "length": 0.059810194888312386, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003031182544022, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174323818905789, "upper_button_position": 0.08287073636382325}], "rail_length": 5, "inclination": 84.13491940015005, "heading": 51.63663416005234} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350493436486158, "mass": 16.41522736337398, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314361383545589, "I_33_without_motor": 0.029954388857328748, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895015238753576, "trigger": 800, "sampling_rate": 105, "lag": 1.5081166249465798, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9897076900563506, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2726830096131936, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6746.609027033071, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032624494921909095, "grain_number": 5, "grain_density": 1808.590721500019, "grain_outer_radius": 0.032450564215648126, "grain_initial_inner_radius": 0.014763085050437417, "grain_initial_height": 0.11969568662712962, "grain_separation": 0.003254081495602976, "grains_center_of_mass_position": 0.39719597420533675, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00195362968463429, "throat_radius": 0.011587595174611371, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530975157004631}], "aerodynamic_surfaces": [{"length": 0.5582950142361691, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341098289938691]}, {"n": 4, "root_chord": 0.12003230611683477, "tip_chord": 0.06022706498534183, "span": 0.10948014771416445, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049351335406812]}, {"top_radius": 0.06329080466958674, "bottom_radius": 0.04297201153040453, "length": 0.061093772493766386, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010025383253844, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166604176571046, "upper_button_position": 0.08434212066827984}], "rail_length": 5, "inclination": 84.57158583778431, "heading": 51.8122809695266} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350074677291914, "mass": 15.955993921346199, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326497071554065, "I_33_without_motor": 0.02193019413907627, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954066491754272, "trigger": 800, "sampling_rate": 105, "lag": 1.6494550542689033, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0741747649099376, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7987682790910715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7420.433996154148, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033272451083096836, "grain_number": 5, "grain_density": 1820.606652642544, "grain_outer_radius": 0.03321686144172598, "grain_initial_inner_radius": 0.014828755351526631, "grain_initial_height": 0.11958569153868415, "grain_separation": 0.0049270292134240634, "grains_center_of_mass_position": 0.39721997880522447, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003256012403632627, "throat_radius": 0.010844511935973526, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544202944224756}], "aerodynamic_surfaces": [{"length": 0.5581603924796074, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341150720697288]}, {"n": 4, "root_chord": 0.11981660528557124, "tip_chord": 0.05991097533890007, "span": 0.11086694687922942, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050532767044431]}, {"top_radius": 0.06284138542541494, "bottom_radius": 0.044355392697211844, "length": 0.05729034471774742, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004801888888158, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619909944657104, "upper_button_position": 0.08057024423171177}], "rail_length": 5, "inclination": 85.57942031079011, "heading": 51.42011394039894} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350457422799904, "mass": 15.162214720275324, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321328003532408, "I_33_without_motor": 0.024286324147625556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.904629551171539, "trigger": 800, "sampling_rate": 105, "lag": 1.6348357228750272, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.99488250337551, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2794225410897788, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7438.417551027576, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032463317612843684, "grain_number": 5, "grain_density": 1802.5718018433683, "grain_outer_radius": 0.03283592396559048, "grain_initial_inner_radius": 0.014995957935643083, "grain_initial_height": 0.11941947128614934, "grain_separation": 0.0052939617906721205, "grains_center_of_mass_position": 0.39689988307184304, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012633225660220324, "throat_radius": 0.010695501397536718, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540059985989573}], "aerodynamic_surfaces": [{"length": 0.5583145748338697, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332663057158698]}, {"n": 4, "root_chord": 0.12054781247591868, "tip_chord": 0.05998050614023435, "span": 0.1105170395053359, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511310337000324]}, {"top_radius": 0.06494563609118129, "bottom_radius": 0.044119571058360174, "length": 0.060806438639451725, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993980238473577, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619046609775151, "upper_button_position": 0.0803514140722067}], "rail_length": 5, "inclination": 85.60465127470829, "heading": 50.58285719165896} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349307278049567, "mass": 15.827760182495597, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324210183961098, "I_33_without_motor": 0.06041471350037664, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.882315466964483, "trigger": 800, "sampling_rate": 105, "lag": 1.6808482737543344, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9807808995662546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.572760110063881, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6426.705907960052, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338771782530095, "grain_number": 5, "grain_density": 1867.6697523614257, "grain_outer_radius": 0.03242608173895185, "grain_initial_inner_radius": 0.014441957095089032, "grain_initial_height": 0.11993736851450885, "grain_separation": 0.004226024283291448, "grains_center_of_mass_position": 0.39675750102056745, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008151959263004604, "throat_radius": 0.010386249427672807, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558010578017962}], "aerodynamic_surfaces": [{"length": 0.5584606770121654, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327059152105523]}, {"n": 4, "root_chord": 0.1200438891519231, "tip_chord": 0.06028112685792088, "span": 0.11015097163837799, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500797506993118]}, {"top_radius": 0.0646204282949935, "bottom_radius": 0.04509352483422416, "length": 0.060605470205963075, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700200576700636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61823068396561, "upper_button_position": 0.08196989273502597}], "rail_length": 5, "inclination": 84.56419736270637, "heading": 53.1796659738789} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349319465313079, "mass": 14.965501692734083, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319024550959915, "I_33_without_motor": 0.030633986868052056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.969880990314797, "trigger": 800, "sampling_rate": 105, "lag": 1.549047624750499, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9199609526153292, "trigger": "apogee", "sampling_rate": 105, "lag": 1.811244250921186, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4912.727440363849, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281531030048229, "grain_number": 5, "grain_density": 1797.4897515874866, "grain_outer_radius": 0.033368250649848843, "grain_initial_inner_radius": 0.014810031566669348, "grain_initial_height": 0.11900245585210398, "grain_separation": 0.0075639705107450605, "grains_center_of_mass_position": 0.39730561078544413, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00047902200450515873, "throat_radius": 0.011027326617242478, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546109364131444}], "aerodynamic_surfaces": [{"length": 0.5564055082035311, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334459526863327]}, {"n": 4, "root_chord": 0.11982039355869731, "tip_chord": 0.06018734595757675, "span": 0.11004612474880464, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497240926245508]}, {"top_radius": 0.06291398506836686, "bottom_radius": 0.04381880908470854, "length": 0.0604177908882712, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001061104360237, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618308584900266, "upper_button_position": 0.0817975255357577}], "rail_length": 5, "inclination": 82.80510140843917, "heading": 52.71825487618539} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350748837869849, "mass": 15.04330045771141, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302025135386678, "I_33_without_motor": 0.035952296025770394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.852424548310905, "trigger": 800, "sampling_rate": 105, "lag": 1.5599123990737735, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0607891492576025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.698353678841758, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5609.454942161257, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03468820048378814, "grain_number": 5, "grain_density": 1805.0359354346717, "grain_outer_radius": 0.0327926538966215, "grain_initial_inner_radius": 0.014795206308125097, "grain_initial_height": 0.1220283635932172, "grain_separation": 0.004251499990381093, "grains_center_of_mass_position": 0.3989616806620819, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031308680221066104, "throat_radius": 0.009422831406887336, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533416663587085}], "aerodynamic_surfaces": [{"length": 0.5594412537538439, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336980679773083]}, {"n": 4, "root_chord": 0.12000078882820849, "tip_chord": 0.05985682781343412, "span": 0.1101375396038595, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483164269121261]}, {"top_radius": 0.06366502639666845, "bottom_radius": 0.044855095738286895, "length": 0.05987114573484861, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701031362121345, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173370907740782, "upper_button_position": 0.08369427134726681}], "rail_length": 5, "inclination": 84.38776595527818, "heading": 53.73503411143564} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06351443624551606, "mass": 17.03224973189485, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314774762780375, "I_33_without_motor": 0.029668102368758373, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.934105251084068, "trigger": 800, "sampling_rate": 105, "lag": 1.6484184148510803, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9587946935172448, "trigger": "apogee", "sampling_rate": 105, "lag": 1.500172709400441, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7066.586779294832, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033373511734835076, "grain_number": 5, "grain_density": 1830.7600769812327, "grain_outer_radius": 0.03337515913095394, "grain_initial_inner_radius": 0.015088497219510198, "grain_initial_height": 0.1202072421111337, "grain_separation": 0.003914377336447198, "grains_center_of_mass_position": 0.3980113080472531, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011411628197615367, "throat_radius": 0.011444637503354813, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552653234163238}], "aerodynamic_surfaces": [{"length": 0.5583666976621294, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132001057279921]}, {"n": 4, "root_chord": 0.12038075368793703, "tip_chord": 0.05930737156566437, "span": 0.10990235358154367, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501264321473056]}, {"top_radius": 0.0643165164489986, "bottom_radius": 0.04328731902981547, "length": 0.05938694288367548, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987247416400346, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177652516822063, "upper_button_position": 0.08095948995782831}], "rail_length": 5, "inclination": 83.42802720039298, "heading": 54.468385988230345} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350080527886516, "mass": 15.031888548095013, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319309859532268, "I_33_without_motor": 0.02720844411009631, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.910549272017656, "trigger": 800, "sampling_rate": 105, "lag": 1.5274803882243342, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.007542991385762, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4214730351197902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5606.061034280595, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033675421594802184, "grain_number": 5, "grain_density": 1752.6849474973149, "grain_outer_radius": 0.033162392615393506, "grain_initial_inner_radius": 0.01506279273560582, "grain_initial_height": 0.12144472281081195, "grain_separation": 0.006726421323331732, "grains_center_of_mass_position": 0.3953811144218314, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016275033077157568, "throat_radius": 0.010935953989422572, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255759777635007}], "aerodynamic_surfaces": [{"length": 0.5571924749150662, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343614818319279]}, {"n": 4, "root_chord": 0.12100300166312238, "tip_chord": 0.06070941942870464, "span": 0.10891938319290001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502689828419591]}, {"top_radius": 0.06309185451680892, "bottom_radius": 0.04453508037770524, "length": 0.059314467459709905, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008900509072483, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617488670929155, "upper_button_position": 0.08340137997809327}], "rail_length": 5, "inclination": 84.99260458863637, "heading": 52.87971082138763} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.0635110586768744, "mass": 15.500021197366488, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306787378088809, "I_33_without_motor": 0.02823703113031567, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.056915868782532, "trigger": 800, "sampling_rate": 105, "lag": 1.3913211393829177, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.883862191406674, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5482424693951542, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6896.7435630708105, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03266886069679051, "grain_number": 5, "grain_density": 1904.5649692105949, "grain_outer_radius": 0.03318738845217479, "grain_initial_inner_radius": 0.014493058869065045, "grain_initial_height": 0.1208817110449435, "grain_separation": 0.005789314654221122, "grains_center_of_mass_position": 0.3955668513635648, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006836290485789927, "throat_radius": 0.010340586988273929, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563499545368073}], "aerodynamic_surfaces": [{"length": 0.5580473835521463, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135429883056498]}, {"n": 4, "root_chord": 0.1200508180222359, "tip_chord": 0.06004721246180993, "span": 0.11067569702395907, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0480801608338686]}, {"top_radius": 0.0648047692419876, "bottom_radius": 0.04487253600053765, "length": 0.05943207024802648, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984623571440248, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178812861568604, "upper_button_position": 0.08058107098716438}], "rail_length": 5, "inclination": 84.19639492013222, "heading": 55.28890719953574} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350585707346577, "mass": 14.714447449536845, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312727621934724, "I_33_without_motor": 0.04473183002742384, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97752756359244, "trigger": 800, "sampling_rate": 105, "lag": 1.5034199519201634, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9431655692755492, "trigger": "apogee", "sampling_rate": 105, "lag": 1.397511927145199, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6696.73058691563, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343030714952417, "grain_number": 5, "grain_density": 1830.4588455497658, "grain_outer_radius": 0.033106354351875165, "grain_initial_inner_radius": 0.014676800214702627, "grain_initial_height": 0.11954998271495337, "grain_separation": 0.004055663255698447, "grains_center_of_mass_position": 0.39949801641070093, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003497749665710197, "throat_radius": 0.010626135318846317, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564761668473223}], "aerodynamic_surfaces": [{"length": 0.5569990578552527, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1319985796276375]}, {"n": 4, "root_chord": 0.12024958152823234, "tip_chord": 0.05993143101984369, "span": 0.10987977471535856, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0519668992183417]}, {"top_radius": 0.06226635171342044, "bottom_radius": 0.04436735749433336, "length": 0.06120638524804721, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991193165128398, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617600011066366, "upper_button_position": 0.08151930544647379}], "rail_length": 5, "inclination": 84.92756618424704, "heading": 50.95059261916872} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0634912605488351, "mass": 15.06125433867363, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333669625830203, "I_33_without_motor": 0.04582631000322496, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98182946274613, "trigger": 800, "sampling_rate": 105, "lag": 1.2997227472088517, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9363508387643946, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3587564121287774, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6442.944614987518, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248050830268101, "grain_number": 5, "grain_density": 1820.8227015424643, "grain_outer_radius": 0.032493573183770996, "grain_initial_inner_radius": 0.015076297786974918, "grain_initial_height": 0.11953382172654695, "grain_separation": 0.004953282621675366, "grains_center_of_mass_position": 0.39477816065701243, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016835015178878632, "throat_radius": 0.011095498298550364, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568379452804508}], "aerodynamic_surfaces": [{"length": 0.5577643374538753, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346445496724549]}, {"n": 4, "root_chord": 0.11918516619788776, "tip_chord": 0.05990314175455776, "span": 0.10982366812037048, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490770518502843]}, {"top_radius": 0.06456890326242515, "bottom_radius": 0.04280512240935761, "length": 0.060419053350625695, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6978461591684855, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167347354094256, "upper_button_position": 0.08111142375905989}], "rail_length": 5, "inclination": 86.62117439973537, "heading": 54.50797574731611} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349840539931442, "mass": 14.806882291578276, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33136309720231, "I_33_without_motor": 0.0458773848497554, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895626332885453, "trigger": 800, "sampling_rate": 105, "lag": 1.452128105253335, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0219954463452825, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5918770070484143, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4585.783599717739, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254522285187511, "grain_number": 5, "grain_density": 1774.2583383381423, "grain_outer_radius": 0.03283086470484074, "grain_initial_inner_radius": 0.01461552619189626, "grain_initial_height": 0.12081455806047793, "grain_separation": 0.004980655617385229, "grains_center_of_mass_position": 0.39696547500441265, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00035911774522122213, "throat_radius": 0.010022431670282439, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541726932356063}], "aerodynamic_surfaces": [{"length": 0.5590451910197692, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350247169939867]}, {"n": 4, "root_chord": 0.12034960650749105, "tip_chord": 0.059347064676174156, "span": 0.10912266630740586, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507744921907305]}, {"top_radius": 0.0636147333909275, "bottom_radius": 0.04490207340979768, "length": 0.058633180927988846, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000300606433107, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182336459109254, "upper_button_position": 0.0817964147323853}], "rail_length": 5, "inclination": 83.68136972582616, "heading": 53.86965289437383} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349708905531808, "mass": 15.716014438681066, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317397778031292, "I_33_without_motor": 0.01565237206536968, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.950625426195362, "trigger": 800, "sampling_rate": 105, "lag": 1.3512345236109606, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9820168023380684, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4709311981484698, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5693.33699178587, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033620602622684, "grain_number": 5, "grain_density": 1836.8641451972912, "grain_outer_radius": 0.033281126426046366, "grain_initial_inner_radius": 0.015389137566047466, "grain_initial_height": 0.11793547418721614, "grain_separation": 0.004887345286592457, "grains_center_of_mass_position": 0.3971910903452009, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005185743032009683, "throat_radius": 0.010532195071097592, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257137773698967}], "aerodynamic_surfaces": [{"length": 0.5586160476001107, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340735105056017]}, {"n": 4, "root_chord": 0.12103978059939803, "tip_chord": 0.06031066326149886, "span": 0.11050685413566844, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050719555482565]}, {"top_radius": 0.06228810545545371, "bottom_radius": 0.043901576516671856, "length": 0.060660352749376756, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000670568501917, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188834070083716, "upper_button_position": 0.08118364984182003}], "rail_length": 5, "inclination": 84.80823953829642, "heading": 53.28024674788283} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349784734561445, "mass": 15.253287228709455, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327385681993347, "I_33_without_motor": 0.024580888212979053, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988919115017293, "trigger": 800, "sampling_rate": 105, "lag": 1.512631383345181, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9843136745444894, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2660100460370147, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5429.9217646454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321051380523207, "grain_number": 5, "grain_density": 1830.260924460274, "grain_outer_radius": 0.03261122780670385, "grain_initial_inner_radius": 0.01573931800105279, "grain_initial_height": 0.11927650818354003, "grain_separation": 0.005987563967060972, "grains_center_of_mass_position": 0.39620966892580334, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003525736220808369, "throat_radius": 0.011674866107444226, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255120544263629}], "aerodynamic_surfaces": [{"length": 0.5590162290949159, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342318582229622]}, {"n": 4, "root_chord": 0.12002120944304766, "tip_chord": 0.05953946265150715, "span": 0.10963138498173065, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049148539702904]}, {"top_radius": 0.06287150295660707, "bottom_radius": 0.04423204531635509, "length": 0.05812929734959076, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994120883494506, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164493668467526, "upper_button_position": 0.08296272150269801}], "rail_length": 5, "inclination": 85.85257636799575, "heading": 51.98303703070379} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349165271599967, "mass": 16.112123193558016, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328629282614867, "I_33_without_motor": 0.03558557042204325, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986999895226178, "trigger": 800, "sampling_rate": 105, "lag": 1.4498375494504168, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0233683925349635, "trigger": "apogee", "sampling_rate": 105, "lag": 1.618282448928673, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6552.148111667605, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033696048666854765, "grain_number": 5, "grain_density": 1689.7508735012052, "grain_outer_radius": 0.03312714455867916, "grain_initial_inner_radius": 0.015173570147519504, "grain_initial_height": 0.121067499846186, "grain_separation": 0.004361095139227821, "grains_center_of_mass_position": 0.39554008544896474, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015164433618279492, "throat_radius": 0.010422566903546223, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255053893719748}], "aerodynamic_surfaces": [{"length": 0.5590726048189598, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334342476971395]}, {"n": 4, "root_chord": 0.12017414359679558, "tip_chord": 0.05950422046340732, "span": 0.10912019854884585, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502750741767901]}, {"top_radius": 0.06217414968605837, "bottom_radius": 0.044165526921914285, "length": 0.06069426439367734, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005516113688907, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170576914031195, "upper_button_position": 0.08349391996577116}], "rail_length": 5, "inclination": 84.48490357479942, "heading": 51.58262500828204} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350037859488782, "mass": 15.261124304483719, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330653933790604, "I_33_without_motor": 0.03165210026897131, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.881993251455873, "trigger": 800, "sampling_rate": 105, "lag": 1.320234365248618, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9259687640726305, "trigger": "apogee", "sampling_rate": 105, "lag": 1.274158603272264, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7439.060508023742, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281022882020419, "grain_number": 5, "grain_density": 1753.3798419476595, "grain_outer_radius": 0.03280469887043729, "grain_initial_inner_radius": 0.015747463262150558, "grain_initial_height": 0.12041180503376328, "grain_separation": 0.004832366650530457, "grains_center_of_mass_position": 0.3959435753741024, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001971795647467573, "throat_radius": 0.010806381713492748, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552980728961542}], "aerodynamic_surfaces": [{"length": 0.5586133128326178, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357895011153585]}, {"n": 4, "root_chord": 0.12046939884960743, "tip_chord": 0.05950726577211518, "span": 0.10934831484268119, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047565302292601]}, {"top_radius": 0.06326724145980436, "bottom_radius": 0.04307510323753431, "length": 0.059906266223890066, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986504964779782, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186182973321365, "upper_button_position": 0.0800321991458417}], "rail_length": 5, "inclination": 85.78047298022656, "heading": 56.015160443671014} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349363549294314, "mass": 15.085590284982667, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323690783571309, "I_33_without_motor": 0.03986315083622642, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.107327551696777, "trigger": 800, "sampling_rate": 105, "lag": 1.5667316548694283, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.04296437634307, "trigger": "apogee", "sampling_rate": 105, "lag": 1.748834345544258, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6462.753066193755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0320174318624756, "grain_number": 5, "grain_density": 1822.1966978011794, "grain_outer_radius": 0.032946681734705045, "grain_initial_inner_radius": 0.015016676227508012, "grain_initial_height": 0.12021138413336196, "grain_separation": 0.005309501154495356, "grains_center_of_mass_position": 0.3961581927153737, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010017708756187898, "throat_radius": 0.011795622664645039, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546989065449088}], "aerodynamic_surfaces": [{"length": 0.5572467214320486, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328567168303403]}, {"n": 4, "root_chord": 0.11997178301317221, "tip_chord": 0.06098378074140967, "span": 0.11045398190013006, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495489433105591]}, {"top_radius": 0.0629832686342711, "bottom_radius": 0.0453863881447712, "length": 0.05837994011517337, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993520220386739, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618595646424305, "upper_button_position": 0.08075637561436888}], "rail_length": 5, "inclination": 85.27146063274056, "heading": 55.22585794437411} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0635046692099188, "mass": 14.995299950655975, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3215612620615635, "I_33_without_motor": 0.046722403611146116, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.19244187901621, "trigger": 800, "sampling_rate": 105, "lag": 1.3497428675720973, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0953436696437526, "trigger": "apogee", "sampling_rate": 105, "lag": 1.167711705772355, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5483.076797125818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282348099110382, "grain_number": 5, "grain_density": 1842.9710401220682, "grain_outer_radius": 0.033606623622868544, "grain_initial_inner_radius": 0.014423876403381343, "grain_initial_height": 0.1194067099121144, "grain_separation": 0.004975997329338948, "grains_center_of_mass_position": 0.3965681717867648, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000246299594190322, "throat_radius": 0.011503266341349731, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2576403379945573}], "aerodynamic_surfaces": [{"length": 0.5588298942512527, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341023274885949]}, {"n": 4, "root_chord": 0.11930716474095901, "tip_chord": 0.06020089512473505, "span": 0.11022290537792186, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048404554117971]}, {"top_radius": 0.06325097616349719, "bottom_radius": 0.04226853910114146, "length": 0.06012600054292116, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991348947262221, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180062396398834, "upper_button_position": 0.08112865508633871}], "rail_length": 5, "inclination": 84.64650320793994, "heading": 53.89764926276196} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350361087645304, "mass": 15.681356172079408, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320974934332229, "I_33_without_motor": 0.0226521811953017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070238965480463, "trigger": 800, "sampling_rate": 105, "lag": 1.467190620073198, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9838788588724888, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6607825107002596, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6440.262601132112, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244036366021093, "grain_number": 5, "grain_density": 1752.5241162136822, "grain_outer_radius": 0.03344188179334169, "grain_initial_inner_radius": 0.015174948508117642, "grain_initial_height": 0.12076894282328365, "grain_separation": 0.005205338745182257, "grains_center_of_mass_position": 0.39685829518565485, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001283303503169453, "throat_radius": 0.011977261264381379, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254790441911621}], "aerodynamic_surfaces": [{"length": 0.5565585099264977, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329425248916078]}, {"n": 4, "root_chord": 0.11935980197914937, "tip_chord": 0.058731777469853336, "span": 0.10978529738051009, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486492013878006]}, {"top_radius": 0.06413784784540297, "bottom_radius": 0.04429292575717338, "length": 0.05931763061924919, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004690846569263, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619958770574828, "upper_button_position": 0.0805103140820983}], "rail_length": 5, "inclination": 84.54415409120297, "heading": 55.70952418327046} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349189074927061, "mass": 15.809372496313564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314279919375663, "I_33_without_motor": 0.028192434431457712, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.860739299415126, "trigger": 800, "sampling_rate": 105, "lag": 1.302638214306788, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8533657834549013, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5629488917661065, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5050.670787197165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281601158286308, "grain_number": 5, "grain_density": 1840.9963210100102, "grain_outer_radius": 0.033105117134029284, "grain_initial_inner_radius": 0.015183062607310237, "grain_initial_height": 0.11893308386460281, "grain_separation": 0.00708958024293312, "grains_center_of_mass_position": 0.39674271295920643, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00036816367741596313, "throat_radius": 0.01081605883641884, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560336768567681}], "aerodynamic_surfaces": [{"length": 0.5578135298120039, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345860706909927]}, {"n": 4, "root_chord": 0.12075505095659024, "tip_chord": 0.05955639913158521, "span": 0.1094496622283697, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498391678380605]}, {"top_radius": 0.06542886579503401, "bottom_radius": 0.04484819679203876, "length": 0.059946441053113024, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.697944685916009, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177619539541692, "upper_button_position": 0.08018273196183978}], "rail_length": 5, "inclination": 84.57781648366277, "heading": 54.58838201711756} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06351370871963369, "mass": 14.959135896411976, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329054815129365, "I_33_without_motor": 0.029405324648119055, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988222615770113, "trigger": 800, "sampling_rate": 105, "lag": 1.4216676135172546, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0393837518573825, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7647817430242252, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8134.541401813946, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03388269719554449, "grain_number": 5, "grain_density": 1825.8285583574866, "grain_outer_radius": 0.03253416661704438, "grain_initial_inner_radius": 0.015087316797800988, "grain_initial_height": 0.1203348010246518, "grain_separation": 0.004183588816377623, "grains_center_of_mass_position": 0.3965856950782975, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001657756225852819, "throat_radius": 0.010435258517201021, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255806899632651}], "aerodynamic_surfaces": [{"length": 0.5588989145352181, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324822853425465]}, {"n": 4, "root_chord": 0.1201287080137207, "tip_chord": 0.059610851590074766, "span": 0.10929675088005567, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506495181879412]}, {"top_radius": 0.06363422527538155, "bottom_radius": 0.04270417882753719, "length": 0.058702249406618626, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006252959088578, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162843167229424, "upper_button_position": 0.08434097918591543}], "rail_length": 5, "inclination": 83.22480348864536, "heading": 53.82548527116846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349721907836313, "mass": 15.280332701083687, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308623013175014, "I_33_without_motor": 0.03999261965321094, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.128103034083884, "trigger": 800, "sampling_rate": 105, "lag": 1.3755762566239906, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9891170538320383, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3501980488694538, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6366.073955543405, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032874510346731306, "grain_number": 5, "grain_density": 1794.96820488254, "grain_outer_radius": 0.03310549089155028, "grain_initial_inner_radius": 0.015086663548916215, "grain_initial_height": 0.12066831495535071, "grain_separation": 0.005115941076355093, "grains_center_of_mass_position": 0.3979589162669423, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004183557516622943, "throat_radius": 0.011046063586842795, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2527916133719847}], "aerodynamic_surfaces": [{"length": 0.5564589319964867, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325079716820659]}, {"n": 4, "root_chord": 0.11961945344634878, "tip_chord": 0.060209616545658054, "span": 0.10989091569588472, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483910866397805]}, {"top_radius": 0.06336187603446769, "bottom_radius": 0.0418214222839377, "length": 0.06116049194191635, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989654276323267, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177278578264929, "upper_button_position": 0.08123756980583385}], "rail_length": 5, "inclination": 85.09572705715368, "heading": 51.06470754408161} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349938572601535, "mass": 15.43287214381644, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339152731904482, "I_33_without_motor": 0.039993176434183875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.042685738296973, "trigger": 800, "sampling_rate": 105, "lag": 1.5483328517368922, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9811479885481618, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3322663192335238, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5265.4819840876025, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329943285233394, "grain_number": 5, "grain_density": 1817.3630096244901, "grain_outer_radius": 0.0330369735510329, "grain_initial_inner_radius": 0.01512455020438168, "grain_initial_height": 0.12059252622273439, "grain_separation": 0.004636555082227067, "grains_center_of_mass_position": 0.39641834102856627, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001052422462448, "throat_radius": 0.011361936102811863, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549130002619802}], "aerodynamic_surfaces": [{"length": 0.5590894314542098, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351625589880183]}, {"n": 4, "root_chord": 0.11982693266002381, "tip_chord": 0.059687897969337746, "span": 0.10987154844312184, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049862867002288]}, {"top_radius": 0.0642986183774392, "bottom_radius": 0.043481178837870144, "length": 0.05930521580129257, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983870630977184, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187541407270502, "upper_button_position": 0.07963292237066821}], "rail_length": 5, "inclination": 85.40803757244831, "heading": 54.209698739485205} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350656273980003, "mass": 14.447506088398312, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331843959416894, "I_33_without_motor": 0.02439478701240478, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.013699458814203, "trigger": 800, "sampling_rate": 105, "lag": 1.4201438577406642, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9994956249089344, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7099726052706572, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6556.917524768963, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033547102218193896, "grain_number": 5, "grain_density": 1768.9338896471165, "grain_outer_radius": 0.03245835172467037, "grain_initial_inner_radius": 0.015355441705133368, "grain_initial_height": 0.12030032645716138, "grain_separation": 0.0061786295439335516, "grains_center_of_mass_position": 0.39747770792429377, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001204439131492549, "throat_radius": 0.011118524414620377, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560606313972082}], "aerodynamic_surfaces": [{"length": 0.5596525873111486, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1363528801750753]}, {"n": 4, "root_chord": 0.11975281100896672, "tip_chord": 0.05977478605724793, "span": 0.11027618751409028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511343919291225]}, {"top_radius": 0.06484583968652329, "bottom_radius": 0.04362994292877898, "length": 0.05948081440419529, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009603223548905, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163800131315154, "upper_button_position": 0.08458030922337512}], "rail_length": 5, "inclination": 86.68601982689013, "heading": 53.510123522870735} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350262448433963, "mass": 16.492623462665712, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307015836506852, "I_33_without_motor": 0.040529464360237084, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93281955648035, "trigger": 800, "sampling_rate": 105, "lag": 1.3310030852528556, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.074579237574546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.483424678193204, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7195.87006611248, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03223198490365094, "grain_number": 5, "grain_density": 1828.6261940017312, "grain_outer_radius": 0.032884672763124824, "grain_initial_inner_radius": 0.014916721225709029, "grain_initial_height": 0.12098987658893055, "grain_separation": 0.006576971854386856, "grains_center_of_mass_position": 0.3976339113914197, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00026153932682653153, "throat_radius": 0.01097411534456318, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25491122517378}], "aerodynamic_surfaces": [{"length": 0.5588911780576611, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331612237062516]}, {"n": 4, "root_chord": 0.12054076216302226, "tip_chord": 0.06014430368507657, "span": 0.10991407281274072, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05140411071197]}, {"top_radius": 0.06416353429584971, "bottom_radius": 0.04520154001401936, "length": 0.0608610868760139, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995910507134702, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184148790823538, "upper_button_position": 0.08117617163111635}], "rail_length": 5, "inclination": 85.76213486148491, "heading": 51.09458397673866} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350447301335169, "mass": 15.78451216445819, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318268325404978, "I_33_without_motor": 0.03667647505634493, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979127238389923, "trigger": 800, "sampling_rate": 105, "lag": 1.471910183871207, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1059013550163603, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0489544293714976, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5458.764103322933, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303964222479048, "grain_number": 5, "grain_density": 1841.9332800788231, "grain_outer_radius": 0.033940886622435565, "grain_initial_inner_radius": 0.014859798086543053, "grain_initial_height": 0.11767327182159672, "grain_separation": 0.006008645386963139, "grains_center_of_mass_position": 0.39833305361859345, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0024504640329910472, "throat_radius": 0.01053813461902224, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554173349219433}], "aerodynamic_surfaces": [{"length": 0.5571674533474583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336100458220182]}, {"n": 4, "root_chord": 0.11997591801446744, "tip_chord": 0.05996743763683663, "span": 0.11069675114759786, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489344944455956]}, {"top_radius": 0.06596648484839092, "bottom_radius": 0.042596585004371995, "length": 0.05950452185479901, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992138521352727, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188852543983737, "upper_button_position": 0.08032859773689893}], "rail_length": 5, "inclination": 85.817064823065, "heading": 54.98145505257228} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349166604128027, "mass": 15.520735350093819, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32131318758395, "I_33_without_motor": 0.04055424556993657, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.207270093410497, "trigger": 800, "sampling_rate": 105, "lag": 1.617516051347876, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.062664201060975, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5827155655134655, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8115.977013125664, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03373991247337542, "grain_number": 5, "grain_density": 1738.857365819314, "grain_outer_radius": 0.03295548369566628, "grain_initial_inner_radius": 0.015310778731636481, "grain_initial_height": 0.12096926374450087, "grain_separation": 0.004931735044235677, "grains_center_of_mass_position": 0.3975269654974311, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004347393117833741, "throat_radius": 0.011662782444297005, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553119541026472}], "aerodynamic_surfaces": [{"length": 0.5590221935625675, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328378995934727]}, {"n": 4, "root_chord": 0.12017266650063589, "tip_chord": 0.060927772963291826, "span": 0.1095071033408231, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486490810032845]}, {"top_radius": 0.06380451906188633, "bottom_radius": 0.04402429988102666, "length": 0.0602082408657922, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996074553811796, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177109254689015, "upper_button_position": 0.08189652991227814}], "rail_length": 5, "inclination": 84.20972504591488, "heading": 56.89067466047355} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349635746925776, "mass": 15.599924694020597, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324827386132954, "I_33_without_motor": 0.018599040917743247, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.117929882437497, "trigger": 800, "sampling_rate": 105, "lag": 1.4554621541137325, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9918881833421965, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3571397525216211, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6267.0863606831435, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032920366856629094, "grain_number": 5, "grain_density": 1827.7684870676478, "grain_outer_radius": 0.03250195680945699, "grain_initial_inner_radius": 0.014812081185424802, "grain_initial_height": 0.12003910667940808, "grain_separation": 0.004820297129748456, "grains_center_of_mass_position": 0.39693671058798735, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004466706967773574, "throat_radius": 0.011093237017931792, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556442114372128}], "aerodynamic_surfaces": [{"length": 0.5578037490835218, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348858155626864]}, {"n": 4, "root_chord": 0.11956515193807862, "tip_chord": 0.06029981945345345, "span": 0.10970999239166693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498676595179475]}, {"top_radius": 0.06548010222536679, "bottom_radius": 0.04454790382610215, "length": 0.06049514110419631, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996761102167448, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174535169879909, "upper_button_position": 0.08222259322875392}], "rail_length": 5, "inclination": 85.6097177444145, "heading": 55.41344566935447} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349778854659534, "mass": 15.685554967356556, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31872155655624, "I_33_without_motor": 0.02226959715973121, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063997355903082, "trigger": 800, "sampling_rate": 105, "lag": 1.509113706943403, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.975974336050848, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4025902928502414, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5778.619295272192, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295249142830051, "grain_number": 5, "grain_density": 1795.9590330195242, "grain_outer_radius": 0.033146477686004136, "grain_initial_inner_radius": 0.015153769717662365, "grain_initial_height": 0.12206040265862557, "grain_separation": 0.004590415398966881, "grains_center_of_mass_position": 0.39543330929619536, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003932717114270269, "throat_radius": 0.011698882832076148, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256459905541046}], "aerodynamic_surfaces": [{"length": 0.5577616441918458, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343586362747946]}, {"n": 4, "root_chord": 0.12001904051613205, "tip_chord": 0.060335535841515325, "span": 0.1101512409686133, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515914436656877]}, {"top_radius": 0.06457482872906752, "bottom_radius": 0.04306224606099308, "length": 0.059556393177898216, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005853212241651, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171931687457181, "upper_button_position": 0.083392152478447}], "rail_length": 5, "inclination": 85.18257442998693, "heading": 55.016766215747126} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349123246552747, "mass": 15.574165798278342, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31701445849301, "I_33_without_motor": 0.03034081339045327, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.922990530268331, "trigger": 800, "sampling_rate": 105, "lag": 1.4782035141784517, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9605124999933045, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4369330884640088, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8817.55589629832, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250517756291173, "grain_number": 5, "grain_density": 1816.3529065476253, "grain_outer_radius": 0.03281222951545626, "grain_initial_inner_radius": 0.015569736693000345, "grain_initial_height": 0.11996317069737567, "grain_separation": 0.004940808393100526, "grains_center_of_mass_position": 0.39755971411327085, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007423918383387466, "throat_radius": 0.011851056308187656, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549354195803917}], "aerodynamic_surfaces": [{"length": 0.5572756753392939, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343258295048007]}, {"n": 4, "root_chord": 0.1204102176520154, "tip_chord": 0.06002398501474701, "span": 0.11051205034290824, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050259436137105]}, {"top_radius": 0.06344219454094555, "bottom_radius": 0.04418088773918621, "length": 0.05968339015009477, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977141068639633, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184320249792536, "upper_button_position": 0.07928208188470964}], "rail_length": 5, "inclination": 84.49448799418317, "heading": 51.81683128472064} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350107573811976, "mass": 14.963337390009661, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337845502559785, "I_33_without_motor": 0.036977714876494, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.108106643574883, "trigger": 800, "sampling_rate": 105, "lag": 1.5040795981683825, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.022950211630444, "trigger": "apogee", "sampling_rate": 105, "lag": 1.269256946176155, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6322.030349893392, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032092917404059326, "grain_number": 5, "grain_density": 1844.60320409979, "grain_outer_radius": 0.03324284638872558, "grain_initial_inner_radius": 0.015050627160762128, "grain_initial_height": 0.11787771946513043, "grain_separation": 0.003474038495865339, "grains_center_of_mass_position": 0.39663218288730306, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.8241247873418325e-05, "throat_radius": 0.010296973728116447, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546719010498077}], "aerodynamic_surfaces": [{"length": 0.5572946560860873, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336091341754924]}, {"n": 4, "root_chord": 0.11960310074201691, "tip_chord": 0.05961466981399044, "span": 0.10895973541107665, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494154949936991]}, {"top_radius": 0.06193593494171585, "bottom_radius": 0.04360367430425649, "length": 0.06165186674501128, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002138234376322, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174607367331209, "upper_button_position": 0.08275308670451131}], "rail_length": 5, "inclination": 84.41095910476983, "heading": 54.42339586059822} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349955754222342, "mass": 15.962022749679896, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314682023539141, "I_33_without_motor": 0.030651998773610967, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99144524528812, "trigger": 800, "sampling_rate": 105, "lag": 1.3881885599689698, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.894011356695628, "trigger": "apogee", "sampling_rate": 105, "lag": 1.270307238431439, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6118.354595593833, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032553525967219304, "grain_number": 5, "grain_density": 1695.1908528717715, "grain_outer_radius": 0.032673037456028654, "grain_initial_inner_radius": 0.015297077746126762, "grain_initial_height": 0.11939900813411115, "grain_separation": 0.004795114004492685, "grains_center_of_mass_position": 0.39923275315475487, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007429833331955658, "throat_radius": 0.010681702823896425, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565704501801467}], "aerodynamic_surfaces": [{"length": 0.5599456653593321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344633481371154]}, {"n": 4, "root_chord": 0.12025523342826819, "tip_chord": 0.06093051478234654, "span": 0.11009829580963607, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489581939688108]}, {"top_radius": 0.06414320367944684, "bottom_radius": 0.04516495235883935, "length": 0.0558505602689493, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991458015763753, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182284587311497, "upper_button_position": 0.08091734284522556}], "rail_length": 5, "inclination": 84.97576741550401, "heading": 54.10130362001294} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350581004596641, "mass": 15.442074094157686, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315232783271112, "I_33_without_motor": 0.02693938452237098, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000173784722225, "trigger": 800, "sampling_rate": 105, "lag": 1.5144425290281447, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9138515223173672, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5381035372999043, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7320.0617082303825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033287328560992153, "grain_number": 5, "grain_density": 1778.739717844322, "grain_outer_radius": 0.03333482464952949, "grain_initial_inner_radius": 0.015019075771025226, "grain_initial_height": 0.1202453414834686, "grain_separation": 0.00455483628626751, "grains_center_of_mass_position": 0.3978884574027044, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002535437253461501, "throat_radius": 0.011117442813780687, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531008789097857}], "aerodynamic_surfaces": [{"length": 0.557403563566722, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133448636827647]}, {"n": 4, "root_chord": 0.11968441098973114, "tip_chord": 0.06041999531915445, "span": 0.10998088242338537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499598731881599]}, {"top_radius": 0.06435109711328112, "bottom_radius": 0.04502059687393409, "length": 0.06233955485685011, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6970794840056747, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619589894205584, "upper_button_position": 0.07748958980009069}], "rail_length": 5, "inclination": 84.99927691149627, "heading": 49.49369605743452} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350223205766954, "mass": 14.80706210148484, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31366885595006, "I_33_without_motor": 0.02311267148518941, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15679221537915, "trigger": 800, "sampling_rate": 105, "lag": 1.4996294736582334, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.918918116544833, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6783768468714424, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5586.466446155417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328960290431069, "grain_number": 5, "grain_density": 1791.564141543328, "grain_outer_radius": 0.03317356462069105, "grain_initial_inner_radius": 0.014905661825817488, "grain_initial_height": 0.11899317565990256, "grain_separation": 0.003646406523273877, "grains_center_of_mass_position": 0.3978325097383681, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00020755290262891682, "throat_radius": 0.011742467218775313, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255794759288092}], "aerodynamic_surfaces": [{"length": 0.5578590319340176, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338179348992317]}, {"n": 4, "root_chord": 0.12040462623968619, "tip_chord": 0.05992454661442429, "span": 0.10926655391538334, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050807335897607]}, {"top_radius": 0.06560512730720798, "bottom_radius": 0.0434051384037683, "length": 0.06046250800489508, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995854587043825, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175871521008561, "upper_button_position": 0.08199830660352636}], "rail_length": 5, "inclination": 86.11759764916818, "heading": 52.24269843354328} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349881163599895, "mass": 14.661079440438192, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303926729065278, "I_33_without_motor": 0.019191690061697485, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040447801420509, "trigger": 800, "sampling_rate": 105, "lag": 1.5374324657764122, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9179572228957317, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2686900397897976, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5977.1728233731255, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032917222325741145, "grain_number": 5, "grain_density": 1821.9665432725421, "grain_outer_radius": 0.03296091939324609, "grain_initial_inner_radius": 0.014698829058063372, "grain_initial_height": 0.11932761298979258, "grain_separation": 0.005476965101071268, "grains_center_of_mass_position": 0.3968241016463662, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000639051858949539, "throat_radius": 0.01091665186635603, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253863213441461}], "aerodynamic_surfaces": [{"length": 0.5570451584520177, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337438832888147]}, {"n": 4, "root_chord": 0.1195358173560773, "tip_chord": 0.05961363528483973, "span": 0.10987786808068356, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515410946945316]}, {"top_radius": 0.0645214483397119, "bottom_radius": 0.04351888260408883, "length": 0.05958961029549295, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015930534520942, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178229398073376, "upper_button_position": 0.08377011364475662}], "rail_length": 5, "inclination": 84.6629498815774, "heading": 50.93300680338687} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349173012018654, "mass": 14.30811946353126, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311741653379316, "I_33_without_motor": 0.038531778792357335, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957613745144346, "trigger": 800, "sampling_rate": 105, "lag": 1.3462507079090194, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9416044258704389, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6686143035700798, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6556.467917238129, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03204348481756665, "grain_number": 5, "grain_density": 1820.6477950327273, "grain_outer_radius": 0.033357269105667484, "grain_initial_inner_radius": 0.014874924384609262, "grain_initial_height": 0.11941336742745225, "grain_separation": 0.0053950979052155255, "grains_center_of_mass_position": 0.39639351995844235, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013221904754256483, "throat_radius": 0.010562500975975416, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553246151199464}], "aerodynamic_surfaces": [{"length": 0.5570381299426773, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349707806022893]}, {"n": 4, "root_chord": 0.11957431684894035, "tip_chord": 0.059973716140868515, "span": 0.11019931364970516, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05048161967022]}, {"top_radius": 0.06378596219927533, "bottom_radius": 0.04419861690323836, "length": 0.06120856603843298, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005850032489729, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175948187239609, "upper_button_position": 0.08299018452501195}], "rail_length": 5, "inclination": 85.94689180639298, "heading": 52.14695738043856} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634996830746154, "mass": 14.743902323056865, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33499920758333, "I_33_without_motor": 0.04184654953744195, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034547871687026, "trigger": 800, "sampling_rate": 105, "lag": 1.444092743014892, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0820601053765295, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6826613465729527, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6843.770766300801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032667616041674154, "grain_number": 5, "grain_density": 1765.4389921527895, "grain_outer_radius": 0.032648636021700074, "grain_initial_inner_radius": 0.015331915177653185, "grain_initial_height": 0.12116652645912548, "grain_separation": 0.006522690775241182, "grains_center_of_mass_position": 0.3989335818160118, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013659920402227734, "throat_radius": 0.010958708119695182, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551763833531666}], "aerodynamic_surfaces": [{"length": 0.5571716838595473, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334547675427373]}, {"n": 4, "root_chord": 0.12037148557249813, "tip_chord": 0.059580817516578254, "span": 0.11001140059590524, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500236039695643]}, {"top_radius": 0.06407688439893502, "bottom_radius": 0.04247230726968851, "length": 0.06083392033737522, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011144195279271, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619980759250295, "upper_button_position": 0.08113366027763202}], "rail_length": 5, "inclination": 84.66611046363249, "heading": 54.528275356517106} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350542804146903, "mass": 15.853646045720101, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323737162166438, "I_33_without_motor": 0.03917440941864349, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.150724429809928, "trigger": 800, "sampling_rate": 105, "lag": 1.6364470241938383, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9458900607543445, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6109169189680805, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7162.635529785489, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03339774297842463, "grain_number": 5, "grain_density": 1801.8543987297016, "grain_outer_radius": 0.032897401083243204, "grain_initial_inner_radius": 0.014556636039728036, "grain_initial_height": 0.11972212501521376, "grain_separation": 0.006378923020078966, "grains_center_of_mass_position": 0.3970655387514802, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013805768263473234, "throat_radius": 0.010705353110081776, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253411197815199}], "aerodynamic_surfaces": [{"length": 0.5580994266175429, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134143482027548]}, {"n": 4, "root_chord": 0.12081268024570335, "tip_chord": 0.06067440490332564, "span": 0.1102646090810139, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05047764272532]}, {"top_radius": 0.06333517235906384, "bottom_radius": 0.04146369719798332, "length": 0.06021495197468106, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999322408235138, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177018421574074, "upper_button_position": 0.08223039866610637}], "rail_length": 5, "inclination": 83.2749725536266, "heading": 53.96612530325485} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06351339246538598, "mass": 15.803960728851287, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317526865023154, "I_33_without_motor": 0.03190461649949524, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.826356354789947, "trigger": 800, "sampling_rate": 105, "lag": 1.5998711421483491, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0196992289847406, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5071474732324188, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5795.87660230721, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032919347093453205, "grain_number": 5, "grain_density": 1888.5334943678079, "grain_outer_radius": 0.03299967199831763, "grain_initial_inner_radius": 0.015001002249456706, "grain_initial_height": 0.12256654074239015, "grain_separation": 0.004576084108107684, "grains_center_of_mass_position": 0.3970590074460975, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.695039885750884e-05, "throat_radius": 0.011299289991062111, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255136371165536}], "aerodynamic_surfaces": [{"length": 0.5585996446178365, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342765115062532]}, {"n": 4, "root_chord": 0.12029985848518453, "tip_chord": 0.06006535827498561, "span": 0.11061847399975039, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493119647886318]}, {"top_radius": 0.06368060276046704, "bottom_radius": 0.04416930543091807, "length": 0.05955845492770167, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991538153095734, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61693190527743, "upper_button_position": 0.08222191003214341}], "rail_length": 5, "inclination": 83.42954001108912, "heading": 50.90435626038846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349578874485824, "mass": 16.281030395949323, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330300644937028, "I_33_without_motor": 0.022512710072396268, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.102775635295135, "trigger": 800, "sampling_rate": 105, "lag": 1.4901706179612506, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9301544947195425, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3117365946934652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6619.987083638243, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032950136048739254, "grain_number": 5, "grain_density": 1804.5879148124277, "grain_outer_radius": 0.033405687347400854, "grain_initial_inner_radius": 0.014862659663151832, "grain_initial_height": 0.1207420498167944, "grain_separation": 0.006525732833590449, "grains_center_of_mass_position": 0.39438514573920486, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00019467710342063561, "throat_radius": 0.010755441862557497, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541748639909993}], "aerodynamic_surfaces": [{"length": 0.5583691805557199, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340969634340692]}, {"n": 4, "root_chord": 0.11933213718588329, "tip_chord": 0.0608433554392202, "span": 0.10970562546144749, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048923727546274]}, {"top_radius": 0.0648439015600472, "bottom_radius": 0.04344100376574285, "length": 0.06048408386809928, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006974487159798, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168210788914105, "upper_button_position": 0.08387636982456936}], "rail_length": 5, "inclination": 84.76321589295168, "heading": 51.51968923479884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350226582866257, "mass": 16.179539077320193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322271471104651, "I_33_without_motor": 0.04584336459732918, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.900992188754117, "trigger": 800, "sampling_rate": 105, "lag": 1.4469948597768638, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0105491262443331, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9407792200123235, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7808.043651066771, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033161585614105905, "grain_number": 5, "grain_density": 1783.4030052109924, "grain_outer_radius": 0.03327542065980224, "grain_initial_inner_radius": 0.015225714857691782, "grain_initial_height": 0.12067269510655672, "grain_separation": 0.003129223120630669, "grains_center_of_mass_position": 0.3976458284931641, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010391035221853475, "throat_radius": 0.011373373828096542, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562750845353234}], "aerodynamic_surfaces": [{"length": 0.5555106596797621, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325890949653428]}, {"n": 4, "root_chord": 0.11959457270402155, "tip_chord": 0.06029020409970438, "span": 0.10969113837180186, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502255956293773]}, {"top_radius": 0.06222558581736187, "bottom_radius": 0.043364538575894424, "length": 0.06071783024047575, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991438168856847, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6206177228048834, "upper_button_position": 0.07852609408080136}], "rail_length": 5, "inclination": 83.46150556060967, "heading": 55.71670504107672} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349811433824264, "mass": 15.117872151378725, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3202942707855545, "I_33_without_motor": 0.042788008362986255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017584772601555, "trigger": 800, "sampling_rate": 105, "lag": 1.5519952203315328, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9481554443391266, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6474794651799196, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5532.4534993644775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03300872059260424, "grain_number": 5, "grain_density": 1810.714303072215, "grain_outer_radius": 0.0326086558508983, "grain_initial_inner_radius": 0.014828307404184607, "grain_initial_height": 0.12069499205639306, "grain_separation": 0.005059908515105351, "grains_center_of_mass_position": 0.3952390538505011, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006377575970349531, "throat_radius": 0.011204093823223044, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539223630495544}], "aerodynamic_surfaces": [{"length": 0.5576520154039958, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348474916781954]}, {"n": 4, "root_chord": 0.12022649042290227, "tip_chord": 0.059641348184786405, "span": 0.11038899792038982, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485972129406456]}, {"top_radius": 0.06230575796023642, "bottom_radius": 0.04303865956182337, "length": 0.06040766236809171, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001076052978562, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179986296138922, "upper_button_position": 0.08210897568396403}], "rail_length": 5, "inclination": 85.6682855057573, "heading": 49.123202742750294} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350404624722134, "mass": 15.348780612199189, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3325107631780275, "I_33_without_motor": 0.03955219182255099, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09983213307723, "trigger": 800, "sampling_rate": 105, "lag": 1.494875588413848, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.039692520372728, "trigger": "apogee", "sampling_rate": 105, "lag": 1.433676775259622, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4551.364722595588, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03238769865826409, "grain_number": 5, "grain_density": 1829.8881314653222, "grain_outer_radius": 0.03387806254584343, "grain_initial_inner_radius": 0.015161923066670862, "grain_initial_height": 0.12008310776207975, "grain_separation": 0.0038720210347911073, "grains_center_of_mass_position": 0.3983012540664373, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007846171058288536, "throat_radius": 0.010646917502966723, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255369548688793}], "aerodynamic_surfaces": [{"length": 0.5584911283411544, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349068297217213]}, {"n": 4, "root_chord": 0.11994238338915109, "tip_chord": 0.059766744498579744, "span": 0.10991007937748593, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051312767640566]}, {"top_radius": 0.06200740033110755, "bottom_radius": 0.04483445664198271, "length": 0.05809146029172001, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700135474344913, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191000109080326, "upper_button_position": 0.0810354634368804}], "rail_length": 5, "inclination": 84.78133865106743, "heading": 54.75429623250779} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349290166799718, "mass": 15.685531123108376, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331082219482587, "I_33_without_motor": 0.03422416195826372, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998434083114876, "trigger": 800, "sampling_rate": 105, "lag": 1.3223096804141161, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.888495350454871, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4958997335781579, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5258.789469341096, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032519356042940796, "grain_number": 5, "grain_density": 1830.226854320676, "grain_outer_radius": 0.033190201534136654, "grain_initial_inner_radius": 0.015162006478633642, "grain_initial_height": 0.12076542167869334, "grain_separation": 0.0034654897281326622, "grains_center_of_mass_position": 0.3973933655797619, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010477296102485096, "throat_radius": 0.011392249560225704, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548776253325857}], "aerodynamic_surfaces": [{"length": 0.5587515340973742, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332651654748274]}, {"n": 4, "root_chord": 0.11975432214707973, "tip_chord": 0.06006650545286569, "span": 0.10990017478205333, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481109786988465]}, {"top_radius": 0.06232704876105977, "bottom_radius": 0.04326067032630481, "length": 0.06173317872031314, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980225498462183, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186631353365116, "upper_button_position": 0.07935941450970663}], "rail_length": 5, "inclination": 84.17363176691282, "heading": 56.778262640484215} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350313636680012, "mass": 15.910009475741447, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3116667206710835, "I_33_without_motor": 0.03513621053468466, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.106043432437266, "trigger": 800, "sampling_rate": 105, "lag": 1.686652079216078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.970011114247375, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4616359643008754, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7588.3616932514, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297595756604476, "grain_number": 5, "grain_density": 1746.5531501905314, "grain_outer_radius": 0.03288980377602301, "grain_initial_inner_radius": 0.01469322230307425, "grain_initial_height": 0.12013753790253255, "grain_separation": 0.00534201766836398, "grains_center_of_mass_position": 0.3963006072805192, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00022195910320266897, "throat_radius": 0.011205187652884736, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544758228916673}], "aerodynamic_surfaces": [{"length": 0.557517054168329, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343384041115707]}, {"n": 4, "root_chord": 0.12030981023740252, "tip_chord": 0.059415750373700275, "span": 0.11036549360360921, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0474359349406108]}, {"top_radius": 0.06449543961752205, "bottom_radius": 0.04188763791737066, "length": 0.058661584675363865, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985011629753117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186442465621084, "upper_button_position": 0.07985691641320336}], "rail_length": 5, "inclination": 86.7037854468914, "heading": 54.59756742762648} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350846954633453, "mass": 15.979689112305666, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317154204609377, "I_33_without_motor": 0.041357033907924855, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017442848522933, "trigger": 800, "sampling_rate": 105, "lag": 1.340822626711431, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1121360664829416, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4167475414982502, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6564.201261856161, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03243300720326084, "grain_number": 5, "grain_density": 1710.4514977447582, "grain_outer_radius": 0.03279461869590838, "grain_initial_inner_radius": 0.015508370152342832, "grain_initial_height": 0.12116281018950006, "grain_separation": 0.004446157789276936, "grains_center_of_mass_position": 0.3969126100518863, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001908992390294352, "throat_radius": 0.010721639980060947, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564647840171512}], "aerodynamic_surfaces": [{"length": 0.5586923852372054, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328372384154037]}, {"n": 4, "root_chord": 0.12095956288945499, "tip_chord": 0.05954880931992584, "span": 0.10991503251019225, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504369564944327]}, {"top_radius": 0.06372416633488405, "bottom_radius": 0.04394140718501141, "length": 0.05933532585412636, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.702663824958737, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173620173549915, "upper_button_position": 0.0853018076037455}], "rail_length": 5, "inclination": 86.4912185905307, "heading": 51.33292311411866} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349605615578949, "mass": 16.17314916128067, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318628784223071, "I_33_without_motor": 0.054023486794382805, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.888388148480763, "trigger": 800, "sampling_rate": 105, "lag": 1.4745318148787583, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.024760639314899, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5517185551256312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7807.3457071452285, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364982671733094, "grain_number": 5, "grain_density": 1706.0117402413891, "grain_outer_radius": 0.03289380845711011, "grain_initial_inner_radius": 0.014195179230028138, "grain_initial_height": 0.11946983513038649, "grain_separation": 0.004848816921308499, "grains_center_of_mass_position": 0.39473090707252395, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000738324897074111, "throat_radius": 0.011238826302676204, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548635013247798}], "aerodynamic_surfaces": [{"length": 0.557746789143445, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134309338603491]}, {"n": 4, "root_chord": 0.12008376872214124, "tip_chord": 0.060376691724336885, "span": 0.11014421452005581, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050996525585985]}, {"top_radius": 0.06418712079570034, "bottom_radius": 0.04342939942692955, "length": 0.059849788545511456, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983133794106132, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183221249158749, "upper_button_position": 0.07999125449473832}], "rail_length": 5, "inclination": 84.99366842583737, "heading": 51.757517824543356} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350504213095313, "mass": 15.022569886463607, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314829271464599, "I_33_without_motor": 0.016706595995015838, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040063817321192, "trigger": 800, "sampling_rate": 105, "lag": 1.5336387837294818, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.094461552656014, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7293381537296715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6034.408851299032, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248445546527978, "grain_number": 5, "grain_density": 1852.909690463624, "grain_outer_radius": 0.03351387577839652, "grain_initial_inner_radius": 0.014926524139754045, "grain_initial_height": 0.1209779226688648, "grain_separation": 0.004454227281094352, "grains_center_of_mass_position": 0.39764492022472797, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001794693614413167, "throat_radius": 0.010955923053977721, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253700427124961}], "aerodynamic_surfaces": [{"length": 0.5584766391968159, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134260202844494]}, {"n": 4, "root_chord": 0.11895989426615938, "tip_chord": 0.06045210292206501, "span": 0.10964930593602952, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503437088652652]}, {"top_radius": 0.06426977608162612, "bottom_radius": 0.04219507709576622, "length": 0.05758150636839167, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988654659278273, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180961077196545, "upper_button_position": 0.08076935820817277}], "rail_length": 5, "inclination": 84.11799764052843, "heading": 49.8292988731377} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349765468329918, "mass": 14.999948348399146, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322125234114418, "I_33_without_motor": 0.043592975116648586, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.051848634831936, "trigger": 800, "sampling_rate": 105, "lag": 1.5067924692915282, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1018796880986301, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4821544375607076, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6182.555850999124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03265192824970038, "grain_number": 5, "grain_density": 1808.9902490817692, "grain_outer_radius": 0.03284260181783003, "grain_initial_inner_radius": 0.014050494729765632, "grain_initial_height": 0.1205782138568406, "grain_separation": 0.005786866421523467, "grains_center_of_mass_position": 0.3976744295303719, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010332795235166537, "throat_radius": 0.011355415977360282, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542592889904216}], "aerodynamic_surfaces": [{"length": 0.5584946113326044, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349090151337111]}, {"n": 4, "root_chord": 0.11923557838719662, "tip_chord": 0.059610914756677284, "span": 0.11042721315543554, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0463208488131965]}, {"top_radius": 0.06361741134671621, "bottom_radius": 0.04372387989348141, "length": 0.06044091004095963, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699284976619399, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179845368103513, "upper_button_position": 0.08130043980904778}], "rail_length": 5, "inclination": 84.58203489509829, "heading": 52.60362430149198} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350032979844894, "mass": 15.206327564712451, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339987424120207, "I_33_without_motor": 0.030145515208280217, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.084254626757437, "trigger": 800, "sampling_rate": 105, "lag": 1.5819072871686484, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0457999773167628, "trigger": "apogee", "sampling_rate": 105, "lag": 1.497705861448762, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7085.575164353536, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03369386756776177, "grain_number": 5, "grain_density": 1938.1169316368723, "grain_outer_radius": 0.03292642539574576, "grain_initial_inner_radius": 0.014845645611675427, "grain_initial_height": 0.12103095108073289, "grain_separation": 0.004182625343703459, "grains_center_of_mass_position": 0.3971866251553521, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00015137892965925875, "throat_radius": 0.011087256844635901, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550010661847688}], "aerodynamic_surfaces": [{"length": 0.5582832320070117, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336716890058312]}, {"n": 4, "root_chord": 0.1201291365733453, "tip_chord": 0.06056427857823218, "span": 0.10938091207396496, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491823616392664]}, {"top_radius": 0.06357821916420334, "bottom_radius": 0.04522899105367328, "length": 0.05835839044315057, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997942133012696, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194693340266346, "upper_button_position": 0.08032487927463494}], "rail_length": 5, "inclination": 84.40262911104169, "heading": 53.35987116176287} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06348284890434591, "mass": 15.435721714871717, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321911168814059, "I_33_without_motor": 0.04504086855079753, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.900266542552771, "trigger": 800, "sampling_rate": 105, "lag": 1.5430481534851652, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9413036565886452, "trigger": "apogee", "sampling_rate": 105, "lag": 1.635693352194087, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6467.549397838875, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321198074903256, "grain_number": 5, "grain_density": 1890.3667402727347, "grain_outer_radius": 0.033030076265071456, "grain_initial_inner_radius": 0.014720575708781767, "grain_initial_height": 0.12095445785866632, "grain_separation": 0.0044065703479611975, "grains_center_of_mass_position": 0.3977693005257719, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007465359286462337, "throat_radius": 0.010413447391479033, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558951169002592}], "aerodynamic_surfaces": [{"length": 0.5589457347226401, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350303719576724]}, {"n": 4, "root_chord": 0.11912360125289106, "tip_chord": 0.060298735757510775, "span": 0.11034477906475605, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482604854491817]}, {"top_radius": 0.06426966672080729, "bottom_radius": 0.04442233213808942, "length": 0.057222149814198514, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000983799416838, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174531580460141, "upper_button_position": 0.0826452218956697}], "rail_length": 5, "inclination": 85.35304380703204, "heading": 57.82930902519172} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0634968648704692, "mass": 15.23518416967638, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334373690687541, "I_33_without_motor": 0.03708190535417573, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.867154041849354, "trigger": 800, "sampling_rate": 105, "lag": 1.553704989868284, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.030497824494969, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5290541875200279, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8016.94441846777, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033056108054664704, "grain_number": 5, "grain_density": 1740.323896504818, "grain_outer_radius": 0.03330603156716757, "grain_initial_inner_radius": 0.015022034070515881, "grain_initial_height": 0.11895017062086041, "grain_separation": 0.004623154992941311, "grains_center_of_mass_position": 0.3979819053195725, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000411095460589337, "throat_radius": 0.011266863686146088, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568884100733555}], "aerodynamic_surfaces": [{"length": 0.557821094336833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342183824005223]}, {"n": 4, "root_chord": 0.1203833424167498, "tip_chord": 0.05927704882700135, "span": 0.10965080553494487, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494855829954812]}, {"top_radius": 0.06334011101901099, "bottom_radius": 0.04292144012712012, "length": 0.060202091274807815, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.69991695284501, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180346128536469, "upper_button_position": 0.08188233999136307}], "rail_length": 5, "inclination": 84.88534147044648, "heading": 51.39123447864247} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350418522391611, "mass": 14.29611197762607, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317534801981356, "I_33_without_motor": 0.02130971372356761, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.141369516480832, "trigger": 800, "sampling_rate": 105, "lag": 1.614976712793267, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.096995845652552, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4402399061784918, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7881.472469842122, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033167015440345865, "grain_number": 5, "grain_density": 1766.2332914200301, "grain_outer_radius": 0.03331850949448451, "grain_initial_inner_radius": 0.015186536749907477, "grain_initial_height": 0.11945109953881952, "grain_separation": 0.005279525325156447, "grains_center_of_mass_position": 0.39633657071334716, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002645781840107107, "throat_radius": 0.011449371896432189, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561973713287344}], "aerodynamic_surfaces": [{"length": 0.5565059455205095, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351714983162944]}, {"n": 4, "root_chord": 0.11968822076144792, "tip_chord": 0.05949258438757646, "span": 0.10989679534712937, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492190769148786]}, {"top_radius": 0.06319210027189093, "bottom_radius": 0.044040171609068285, "length": 0.05931488975596293, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7022562589343908, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189472975059838, "upper_button_position": 0.08330896142840705}], "rail_length": 5, "inclination": 87.95071097257963, "heading": 54.8550327317597} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06351045167892243, "mass": 15.24245621918697, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318091279362117, "I_33_without_motor": 0.02491429519828913, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932502363596459, "trigger": 800, "sampling_rate": 105, "lag": 1.4856926123332428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8742579741131643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5419412447800778, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7549.340165077774, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326664277655682, "grain_number": 5, "grain_density": 1852.9676359381767, "grain_outer_radius": 0.03296335840520629, "grain_initial_inner_radius": 0.015259001935466098, "grain_initial_height": 0.11915274099038994, "grain_separation": 0.004290958590582813, "grains_center_of_mass_position": 0.39625548738973454, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00041722149762315466, "throat_radius": 0.011091626558008045, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256637505002736}], "aerodynamic_surfaces": [{"length": 0.5587690820891431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348130054669547]}, {"n": 4, "root_chord": 0.11943182414201382, "tip_chord": 0.05893606570019045, "span": 0.11052061065788817, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050823613276021]}, {"top_radius": 0.06390972225293386, "bottom_radius": 0.043752656214096866, "length": 0.06307004441884895, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001753774253077, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168435766021256, "upper_button_position": 0.08333180082318203}], "rail_length": 5, "inclination": 84.74025675764882, "heading": 53.500631357269505} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349362860151621, "mass": 15.768660411697812, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312931167665413, "I_33_without_motor": 0.03852639911883704, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.986447030323928, "trigger": 800, "sampling_rate": 105, "lag": 1.5689651616143223, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9444486788890507, "trigger": "apogee", "sampling_rate": 105, "lag": 1.388294300620948, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8021.349766613528, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03405007267987556, "grain_number": 5, "grain_density": 1864.7440385151945, "grain_outer_radius": 0.03323066311081393, "grain_initial_inner_radius": 0.014942473900422316, "grain_initial_height": 0.12067397637304075, "grain_separation": 0.005389762669055996, "grains_center_of_mass_position": 0.395391458062393, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020172450916309729, "throat_radius": 0.011439845196969403, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552670122311307}], "aerodynamic_surfaces": [{"length": 0.5588862727121277, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342166547052288]}, {"n": 4, "root_chord": 0.12079392113400007, "tip_chord": 0.05979784498051317, "span": 0.10968332756801495, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496293329686341]}, {"top_radius": 0.06328196929764457, "bottom_radius": 0.04656451954672599, "length": 0.06043726758581597, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988141478192184, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181464692184954, "upper_button_position": 0.08066767860072299}], "rail_length": 5, "inclination": 84.89243032950915, "heading": 52.46349979884652} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350361568314851, "mass": 15.4633398980454, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3096993846916, "I_33_without_motor": 0.03169904627940877, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.123062371584645, "trigger": 800, "sampling_rate": 105, "lag": 1.4957221359016108, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0341206013967574, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1172535013141498, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6022.933455968396, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249401563240952, "grain_number": 5, "grain_density": 1783.3459283904551, "grain_outer_radius": 0.03323060222366199, "grain_initial_inner_radius": 0.015530867917990111, "grain_initial_height": 0.11924306903320005, "grain_separation": 0.0037544460079648365, "grains_center_of_mass_position": 0.39653352862444485, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003125488199344839, "throat_radius": 0.01141905195156635, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559997046760074}], "aerodynamic_surfaces": [{"length": 0.5576698735133834, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133543842362037]}, {"n": 4, "root_chord": 0.11975039901825738, "tip_chord": 0.0600406743207343, "span": 0.11035924749395144, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05072977619885]}, {"top_radius": 0.06348208026939793, "bottom_radius": 0.042450953965129073, "length": 0.0613310867523356, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003088179036607, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173530451305564, "upper_button_position": 0.08295577277310429}], "rail_length": 5, "inclination": 85.18159561904449, "heading": 54.61157519407878} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06351455899944991, "mass": 15.410150790090675, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3276690774948365, "I_33_without_motor": 0.02669434630900195, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01805361571931, "trigger": 800, "sampling_rate": 105, "lag": 1.5051256238095005, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.108174683345032, "trigger": "apogee", "sampling_rate": 105, "lag": 1.576992179961974, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7444.986638312818, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032126491072151056, "grain_number": 5, "grain_density": 1708.9838837051389, "grain_outer_radius": 0.03243963917804502, "grain_initial_inner_radius": 0.014439155614369814, "grain_initial_height": 0.12068585619237594, "grain_separation": 0.004820558190818771, "grains_center_of_mass_position": 0.39764794934792536, "center_of_dry_mass_position": 0.317, "nozzle_position": -5.899334628864471e-05, "throat_radius": 0.010329544863866008, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255990148931233}], "aerodynamic_surfaces": [{"length": 0.5581991252612589, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347902075314886]}, {"n": 4, "root_chord": 0.12024211014387923, "tip_chord": 0.05973776287358264, "span": 0.1100924735256602, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0480110766433248]}, {"top_radius": 0.0650282789916389, "bottom_radius": 0.04391104945532899, "length": 0.06045132852718816, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992791560309384, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186113799668269, "upper_button_position": 0.08066777606411146}], "rail_length": 5, "inclination": 84.31597859883976, "heading": 52.789798132277696} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350235300117864, "mass": 15.169335767565235, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323243343208638, "I_33_without_motor": 0.03446705328478459, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90044892760135, "trigger": 800, "sampling_rate": 105, "lag": 1.5938689070305985, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.913790915193467, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5481694817386247, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4623.261109520971, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032842690462503085, "grain_number": 5, "grain_density": 1769.8232757651435, "grain_outer_radius": 0.03329885904533127, "grain_initial_inner_radius": 0.015453773192258647, "grain_initial_height": 0.11982877479264344, "grain_separation": 0.005317779976415101, "grains_center_of_mass_position": 0.3972538185943652, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014666320393097202, "throat_radius": 0.011245142070742363, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542494481753843}], "aerodynamic_surfaces": [{"length": 0.5559653336248789, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325968539970392]}, {"n": 4, "root_chord": 0.12006993755418786, "tip_chord": 0.05990974230535468, "span": 0.10940031154121765, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050004268961609]}, {"top_radius": 0.06449716484397337, "bottom_radius": 0.042561436288994836, "length": 0.060725905140007676, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006218885175626, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185652039884305, "upper_button_position": 0.08205668452913206}], "rail_length": 5, "inclination": 84.65434362663062, "heading": 51.037961394043435} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0635094596761983, "mass": 15.946088213779944, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318756500536885, "I_33_without_motor": 0.040819715499506797, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.886129751886584, "trigger": 800, "sampling_rate": 105, "lag": 1.4712025472382209, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0040457609333184, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3469878543809815, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6798.806607433429, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03347122905377447, "grain_number": 5, "grain_density": 1736.8889853956662, "grain_outer_radius": 0.03298607964667271, "grain_initial_inner_radius": 0.014444317333063048, "grain_initial_height": 0.11782433152289487, "grain_separation": 0.005499995738221029, "grains_center_of_mass_position": 0.3972272051443275, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00034165640145323906, "throat_radius": 0.011494213477892735, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2525176134940283}], "aerodynamic_surfaces": [{"length": 0.5571145091088086, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336025605856435]}, {"n": 4, "root_chord": 0.11988295383001475, "tip_chord": 0.06006272742977654, "span": 0.10981452897602398, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501422822428372]}, {"top_radius": 0.06313886826039894, "bottom_radius": 0.04190670538567255, "length": 0.059332137349749896, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699426319098437, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186403343312954, "upper_button_position": 0.0807859847671416}], "rail_length": 5, "inclination": 84.14800272023446, "heading": 51.69155685357649} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635017099572674, "mass": 15.580704839366282, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316168757127134, "I_33_without_motor": 0.03638196502697784, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083013946634873, "trigger": 800, "sampling_rate": 105, "lag": 1.585933812943751, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9538669851270428, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1890043646069977, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7870.213834865715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308252015778422, "grain_number": 5, "grain_density": 1777.6061428550822, "grain_outer_radius": 0.03295669542797176, "grain_initial_inner_radius": 0.014726855528910439, "grain_initial_height": 0.11855391152620438, "grain_separation": 0.004554058353843371, "grains_center_of_mass_position": 0.3946049594828492, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002790192684174572, "throat_radius": 0.011312771267996331, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255003643795985}], "aerodynamic_surfaces": [{"length": 0.5582288309509552, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325301742956981]}, {"n": 4, "root_chord": 0.11911237022989171, "tip_chord": 0.060198687361509226, "span": 0.1094573234550986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487827499682894]}, {"top_radius": 0.06521971727928655, "bottom_radius": 0.04334389605449102, "length": 0.05888613500896381, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993255879928406, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182943353091068, "upper_button_position": 0.08103125268373379}], "rail_length": 5, "inclination": 83.85412368379046, "heading": 51.336345590471886} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635079905221092, "mass": 14.590468431434289, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328883506075277, "I_33_without_motor": 0.05317427319338418, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.088925927878817, "trigger": 800, "sampling_rate": 105, "lag": 1.3629994903410392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1343452871124224, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2406200965841236, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7078.285438571801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351362458058287, "grain_number": 5, "grain_density": 1805.9937163815205, "grain_outer_radius": 0.03321237093184666, "grain_initial_inner_radius": 0.015413590041902639, "grain_initial_height": 0.12073201775743737, "grain_separation": 0.00491245057159729, "grains_center_of_mass_position": 0.3960937303891806, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006036549641805294, "throat_radius": 0.011330117615503111, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553166069970603}], "aerodynamic_surfaces": [{"length": 0.5598650455057649, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336811855971745]}, {"n": 4, "root_chord": 0.11955604965614254, "tip_chord": 0.0602416354183002, "span": 0.11045174725483763, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048432750074136]}, {"top_radius": 0.06443230418855105, "bottom_radius": 0.04424364123449492, "length": 0.0616574193427323, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985978772846972, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177618675595862, "upper_button_position": 0.08083600972511107}], "rail_length": 5, "inclination": 84.70754564528617, "heading": 53.38895572486916} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350286275035065, "mass": 15.469431144768008, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317061957778114, "I_33_without_motor": 0.03697176156594725, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.71531011696364, "trigger": 800, "sampling_rate": 105, "lag": 1.4909911690187743, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9234880262201453, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5300620254013477, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5827.03543725864, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032885713943288965, "grain_number": 5, "grain_density": 1722.5781808973484, "grain_outer_radius": 0.032975296684723626, "grain_initial_inner_radius": 0.014946110329701468, "grain_initial_height": 0.11959341010932445, "grain_separation": 0.004133968798782776, "grains_center_of_mass_position": 0.39545057466446903, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018452244224109549, "throat_radius": 0.009802045998211424, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25380638945284}], "aerodynamic_surfaces": [{"length": 0.5577501514813558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332127251322146]}, {"n": 4, "root_chord": 0.12033395156518231, "tip_chord": 0.06003578529369424, "span": 0.1088941112774874, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049884122991129]}, {"top_radius": 0.06139947883865605, "bottom_radius": 0.043280570927933755, "length": 0.061360349060014266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989832740830974, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178435327488525, "upper_button_position": 0.08113974133424484}], "rail_length": 5, "inclination": 86.1467794235174, "heading": 52.682948462362916} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349814216989913, "mass": 15.373563143024397, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323490812530547, "I_33_without_motor": 0.03974966978869481, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.096604145887678, "trigger": 800, "sampling_rate": 105, "lag": 1.5844429604410688, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0141319736658727, "trigger": "apogee", "sampling_rate": 105, "lag": 1.746631236621339, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6951.7715892503265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033087331021636565, "grain_number": 5, "grain_density": 1853.1390704508874, "grain_outer_radius": 0.03302588472171324, "grain_initial_inner_radius": 0.0161456402174593, "grain_initial_height": 0.11951684008376326, "grain_separation": 0.004739688844308023, "grains_center_of_mass_position": 0.39786971571091984, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00046784964209580957, "throat_radius": 0.010881550887212233, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562399214993756}], "aerodynamic_surfaces": [{"length": 0.5577690836356354, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349431736006657]}, {"n": 4, "root_chord": 0.1198639671114358, "tip_chord": 0.061024557246807526, "span": 0.1101514910108332, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494766080776152]}, {"top_radius": 0.06295789887539709, "bottom_radius": 0.04071036495059496, "length": 0.059606235259428215, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992498293115992, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.620956293486922, "upper_button_position": 0.07829353582467713}], "rail_length": 5, "inclination": 84.39936012359784, "heading": 52.77900628828172} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349172246702167, "mass": 15.67382187727774, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301173636271067, "I_33_without_motor": 0.045349902328530506, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9056078142131, "trigger": 800, "sampling_rate": 105, "lag": 1.4832976811336787, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0185682386547443, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5720609634868916, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5333.83895273596, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288149717167882, "grain_number": 5, "grain_density": 1848.0262451160318, "grain_outer_radius": 0.03246112026428372, "grain_initial_inner_radius": 0.014726089577533694, "grain_initial_height": 0.12056952591682804, "grain_separation": 0.004958162843968385, "grains_center_of_mass_position": 0.39753680701729693, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037254362908171313, "throat_radius": 0.010482317525737072, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555089868037355}], "aerodynamic_surfaces": [{"length": 0.558602239907021, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134509100456188]}, {"n": 4, "root_chord": 0.12040283730719414, "tip_chord": 0.06003039794030326, "span": 0.11016775614505277, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494850426435984]}, {"top_radius": 0.062388062171509405, "bottom_radius": 0.043991569011912646, "length": 0.061421544356471076, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993960247473919, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6201482050992833, "upper_button_position": 0.07924781964810867}], "rail_length": 5, "inclination": 84.73808935527951, "heading": 55.66055025743931} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06351464521297177, "mass": 14.829669647027448, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321454784674103, "I_33_without_motor": 0.028793008710067403, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022809464441327, "trigger": 800, "sampling_rate": 105, "lag": 1.4475694039388283, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0133752774602562, "trigger": "apogee", "sampling_rate": 105, "lag": 1.462091248212636, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7435.851277464225, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033099274567655726, "grain_number": 5, "grain_density": 1900.008802230715, "grain_outer_radius": 0.03313715628956033, "grain_initial_inner_radius": 0.014740796227120158, "grain_initial_height": 0.12150377433939023, "grain_separation": 0.0030420159193153455, "grains_center_of_mass_position": 0.396603652101368, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008146150814685722, "throat_radius": 0.009884797982405831, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550641544259982}], "aerodynamic_surfaces": [{"length": 0.5580231708186733, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333395297476174]}, {"n": 4, "root_chord": 0.12016820461376854, "tip_chord": 0.061217964125613485, "span": 0.110618238096764, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504282470046173]}, {"top_radius": 0.06347270509394702, "bottom_radius": 0.04380108193209487, "length": 0.06240659183906289, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989874270036694, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192927379035434, "upper_button_position": 0.079694689100126}], "rail_length": 5, "inclination": 84.2788461664432, "heading": 52.73478994993767} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349385374144398, "mass": 15.712044127769525, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305827966555479, "I_33_without_motor": 0.029430343786311625, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09948091703643, "trigger": 800, "sampling_rate": 105, "lag": 1.398532195597414, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.074579848956318, "trigger": "apogee", "sampling_rate": 105, "lag": 1.726789557970837, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4697.339133366744, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310598316335491, "grain_number": 5, "grain_density": 1659.8121146131944, "grain_outer_radius": 0.032222290020050885, "grain_initial_inner_radius": 0.015458601614755998, "grain_initial_height": 0.11993453354674559, "grain_separation": 0.005199089390604869, "grains_center_of_mass_position": 0.3971322410607942, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005487647106476859, "throat_radius": 0.010788394577929463, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547961340466975}], "aerodynamic_surfaces": [{"length": 0.5580450363013234, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338170412304338]}, {"n": 4, "root_chord": 0.12045606496885561, "tip_chord": 0.05947324181861425, "span": 0.11021645281525762, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049763403015129]}, {"top_radius": 0.06432759858475168, "bottom_radius": 0.04278259025562806, "length": 0.06136825847874791, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995878746958604, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180008811977423, "upper_button_position": 0.08158699349811804}], "rail_length": 5, "inclination": 86.00089824620406, "heading": 55.661102779473374} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349959830458352, "mass": 15.443241180700877, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322007122724533, "I_33_without_motor": 0.027660304650686522, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.148165976069718, "trigger": 800, "sampling_rate": 105, "lag": 1.6975351193334662, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9541246810615148, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2004840268472916, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4706.92620888994, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033135024545294, "grain_number": 5, "grain_density": 1808.3318061683701, "grain_outer_radius": 0.032751946540122354, "grain_initial_inner_radius": 0.015115898368677059, "grain_initial_height": 0.1191984861720634, "grain_separation": 0.004904376089041365, "grains_center_of_mass_position": 0.3962358921635152, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001764663266816112, "throat_radius": 0.011655885669875828, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552062331283245}], "aerodynamic_surfaces": [{"length": 0.5583710537591334, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134282362953546]}, {"n": 4, "root_chord": 0.1204915578848274, "tip_chord": 0.060063893349089535, "span": 0.10998629122210693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511877493520436]}, {"top_radius": 0.06368073438035267, "bottom_radius": 0.041625105235575374, "length": 0.05933450880156494, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005172961871804, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161693511408711, "upper_button_position": 0.08434794504630927}], "rail_length": 5, "inclination": 85.3716185387502, "heading": 48.83430974465506} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.063501552751438, "mass": 16.274911121069273, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321687917479669, "I_33_without_motor": 0.036617511778667025, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02652529598369, "trigger": 800, "sampling_rate": 105, "lag": 1.5975801109805383, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9998822918965722, "trigger": "apogee", "sampling_rate": 105, "lag": 1.637747900763367, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6443.9542717993045, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03167204535152239, "grain_number": 5, "grain_density": 1813.996334436601, "grain_outer_radius": 0.03269373975850785, "grain_initial_inner_radius": 0.01459981569882764, "grain_initial_height": 0.1193242977310014, "grain_separation": 0.005993241037578668, "grains_center_of_mass_position": 0.3972282675995198, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005377955044300216, "throat_radius": 0.011091709737979133, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255160062425202}], "aerodynamic_surfaces": [{"length": 0.5582380214882658, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345404878754988]}, {"n": 4, "root_chord": 0.1200850135283647, "tip_chord": 0.059343983882282, "span": 0.10946470248344194, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515032184678728]}, {"top_radius": 0.06578454407971918, "bottom_radius": 0.04210697098685617, "length": 0.060300898964631915, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993366004691144, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188431993518007, "upper_button_position": 0.08049340111731373}], "rail_length": 5, "inclination": 83.46563028383258, "heading": 51.75296388354173} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06348916422962265, "mass": 15.411845166775828, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328046704513015, "I_33_without_motor": 0.033944763731615576, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992940415678383, "trigger": 800, "sampling_rate": 105, "lag": 1.4220786548545357, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9179127375075776, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4802429804207216, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6057.512642982464, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274240083545209, "grain_number": 5, "grain_density": 1848.6148523417264, "grain_outer_radius": 0.03262184901863875, "grain_initial_inner_radius": 0.015396982919532731, "grain_initial_height": 0.11854042973108257, "grain_separation": 0.005436334094454197, "grains_center_of_mass_position": 0.39762927956239896, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014379792257077503, "throat_radius": 0.012099034732267205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544919768869267}], "aerodynamic_surfaces": [{"length": 0.5563184457876057, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325312029246062]}, {"n": 4, "root_chord": 0.12048426945121692, "tip_chord": 0.0588763977077139, "span": 0.11052942091481073, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490774092197364]}, {"top_radius": 0.06380476775546107, "bottom_radius": 0.04384912284698773, "length": 0.058568924266483746, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699683796013269, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6161622057805595, "upper_button_position": 0.08352159023270955}], "rail_length": 5, "inclination": 83.80402598396223, "heading": 52.34684906242823} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350346898905139, "mass": 14.541874719236567, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318350033486436, "I_33_without_motor": 0.015076599384216342, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997754371261951, "trigger": 800, "sampling_rate": 105, "lag": 1.5537919420449966, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9959161868915691, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6555814634809347, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7422.538306314283, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326937627855402, "grain_number": 5, "grain_density": 1806.1853890794644, "grain_outer_radius": 0.03345632611318738, "grain_initial_inner_radius": 0.014730991532574095, "grain_initial_height": 0.12133353804301897, "grain_separation": 0.004939245360702298, "grains_center_of_mass_position": 0.398747771331702, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024472948648806864, "throat_radius": 0.010358944569698264, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543047928388078}], "aerodynamic_surfaces": [{"length": 0.5568975179683859, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338188435424434]}, {"n": 4, "root_chord": 0.12033392941760881, "tip_chord": 0.06028716714025278, "span": 0.109371188224522, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502537688153915]}, {"top_radius": 0.06414641798332213, "bottom_radius": 0.04466677032242608, "length": 0.05988782614038722, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992267637556956, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181233272889954, "upper_button_position": 0.08110343646670015}], "rail_length": 5, "inclination": 85.28760882378577, "heading": 57.63608743614378} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349352997444288, "mass": 15.022536218706447, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314280712222711, "I_33_without_motor": 0.028987058991441862, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913781465175031, "trigger": 800, "sampling_rate": 105, "lag": 1.4406584781499685, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0569158242375727, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5290218008766676, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5367.221045607504, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288739128501225, "grain_number": 5, "grain_density": 1835.7187125457394, "grain_outer_radius": 0.03244721661444294, "grain_initial_inner_radius": 0.015541000084191417, "grain_initial_height": 0.12179354799348607, "grain_separation": 0.005269870105276329, "grains_center_of_mass_position": 0.39708455462322084, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015344148719793034, "throat_radius": 0.011105305689065433, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543631974959806}], "aerodynamic_surfaces": [{"length": 0.5582852042521497, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134345531940402]}, {"n": 4, "root_chord": 0.11907830055173152, "tip_chord": 0.059889412354265995, "span": 0.11003159541072095, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0476798138520962]}, {"top_radius": 0.06511193628107752, "bottom_radius": 0.04291599932862282, "length": 0.060557282896454415, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996003985295781, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618035555128325, "upper_button_position": 0.08156484340125314}], "rail_length": 5, "inclination": 84.59847860434361, "heading": 53.627484918562885} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350276144752509, "mass": 15.545388310247073, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324828138826892, "I_33_without_motor": 0.03144078574285587, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037573149295348, "trigger": 800, "sampling_rate": 105, "lag": 1.4428086680519465, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8995400061910211, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7493209807144248, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6757.275702185852, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03344367199105777, "grain_number": 5, "grain_density": 1808.9238290109145, "grain_outer_radius": 0.03357228436707041, "grain_initial_inner_radius": 0.014883491824651002, "grain_initial_height": 0.11962012283204095, "grain_separation": 0.0038005942853874706, "grains_center_of_mass_position": 0.39663970447645613, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012868979109699403, "throat_radius": 0.01194373248634558, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542029021638477}], "aerodynamic_surfaces": [{"length": 0.5561175218731926, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346884415026082]}, {"n": 4, "root_chord": 0.11940507984260759, "tip_chord": 0.05952341358745186, "span": 0.1104781731937502, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048997834702105]}, {"top_radius": 0.06407279506451953, "bottom_radius": 0.04338163280714573, "length": 0.06043741854697546, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989493164999381, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191792444937415, "upper_button_position": 0.07977007200619657}], "rail_length": 5, "inclination": 84.14744206794194, "heading": 54.372494048171966} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350297526130719, "mass": 15.340581870563756, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316209383571861, "I_33_without_motor": 0.031282872194670956, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083672228028394, "trigger": 800, "sampling_rate": 105, "lag": 1.5957093654174777, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9646825698030169, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2867208174634204, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5877.911461086239, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328156324813507, "grain_number": 5, "grain_density": 1786.1723627555946, "grain_outer_radius": 0.03307663813178241, "grain_initial_inner_radius": 0.014954160567600091, "grain_initial_height": 0.12170986735075176, "grain_separation": 0.005705946139756578, "grains_center_of_mass_position": 0.3980876402387401, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008695867218972118, "throat_radius": 0.011661158276035307, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541659135937426}], "aerodynamic_surfaces": [{"length": 0.5567318927473304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338043305850132]}, {"n": 4, "root_chord": 0.1197797883449424, "tip_chord": 0.05968433218635792, "span": 0.11050289067745507, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048371355655775]}, {"top_radius": 0.061864465178043754, "bottom_radius": 0.04175571384191593, "length": 0.059592917509847916, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990132602312151, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169574083226179, "upper_button_position": 0.08205585190859721}], "rail_length": 5, "inclination": 84.77315790874857, "heading": 49.502936313647254} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349034206862936, "mass": 15.42232553155143, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332398971943603, "I_33_without_motor": 0.01765730078009888, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.049062550538363, "trigger": 800, "sampling_rate": 105, "lag": 1.6169235239912103, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0187644613841251, "trigger": "apogee", "sampling_rate": 105, "lag": 0.8999468936425928, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8165.77062219852, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285112775884242, "grain_number": 5, "grain_density": 1857.6512499489224, "grain_outer_radius": 0.03302314929492021, "grain_initial_inner_radius": 0.015047856629742102, "grain_initial_height": 0.12309643193050107, "grain_separation": 0.003435010189277606, "grains_center_of_mass_position": 0.3958465044107143, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009224611683211668, "throat_radius": 0.010830930648000512, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545809680493027}], "aerodynamic_surfaces": [{"length": 0.5586212784450738, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133042368076274]}, {"n": 4, "root_chord": 0.12038330366088808, "tip_chord": 0.05917873486672767, "span": 0.11035284902312904, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478645804943154]}, {"top_radius": 0.06176234690283473, "bottom_radius": 0.04423828013963566, "length": 0.06083299881843986, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013023195200008, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169525513133285, "upper_button_position": 0.08434976820667228}], "rail_length": 5, "inclination": 83.52313887521098, "heading": 52.35951033502843} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0634933392816455, "mass": 15.921343364745537, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3463395503304785, "I_33_without_motor": 0.04052417888639104, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.124482086461533, "trigger": 800, "sampling_rate": 105, "lag": 1.4897857207542684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0448193691016678, "trigger": "apogee", "sampling_rate": 105, "lag": 1.577639237516381, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7247.768070047447, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273509277144169, "grain_number": 5, "grain_density": 1766.5736260185593, "grain_outer_radius": 0.03333556176135222, "grain_initial_inner_radius": 0.01493925250427688, "grain_initial_height": 0.11873092521940944, "grain_separation": 0.00509063182051354, "grains_center_of_mass_position": 0.3964821612878431, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002170953480491853, "throat_radius": 0.011443036096914511, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254006772665924}], "aerodynamic_surfaces": [{"length": 0.5590032711038436, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134038383921895]}, {"n": 4, "root_chord": 0.1199254286916888, "tip_chord": 0.059615841799879506, "span": 0.10946902415870875, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494595850536765]}, {"top_radius": 0.06267077180909539, "bottom_radius": 0.04401463495076314, "length": 0.05999898587922428, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012456877236192, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188031794352455, "upper_button_position": 0.08244250828837363}], "rail_length": 5, "inclination": 85.88065420043606, "heading": 53.73675717860476} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350765170931762, "mass": 15.11750207245102, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3168635451177435, "I_33_without_motor": 0.04014049875465767, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036353718792789, "trigger": 800, "sampling_rate": 105, "lag": 1.5477369765065743, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0292940336015508, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7442897963758113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6311.860595615751, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033279505150340005, "grain_number": 5, "grain_density": 1873.454144167614, "grain_outer_radius": 0.032968618931397894, "grain_initial_inner_radius": 0.014734205320639288, "grain_initial_height": 0.12017009105339642, "grain_separation": 0.007845258744172337, "grains_center_of_mass_position": 0.3972500283393062, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003996367147758191, "throat_radius": 0.010260833372292366, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533722995873644}], "aerodynamic_surfaces": [{"length": 0.5599725212368003, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353871275591758]}, {"n": 4, "root_chord": 0.1198697711371838, "tip_chord": 0.05998339278356604, "span": 0.1098792786254797, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488222273767847]}, {"top_radius": 0.06307893102908117, "bottom_radius": 0.042983929218778395, "length": 0.060455908221907995, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997282168936682, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183700703165854, "upper_button_position": 0.08135814657708274}], "rail_length": 5, "inclination": 83.70424810720503, "heading": 53.736202357395406} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350821992723471, "mass": 15.34952634840497, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3284969399864, "I_33_without_motor": 0.03255996323215216, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90739461603031, "trigger": 800, "sampling_rate": 105, "lag": 1.4727849908229456, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9744233415687684, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4411881011861127, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8110.170215676487, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032621985682798796, "grain_number": 5, "grain_density": 1790.3865464444384, "grain_outer_radius": 0.03320576607027046, "grain_initial_inner_radius": 0.014304142051589518, "grain_initial_height": 0.1186382412248723, "grain_separation": 0.0030691875725074864, "grains_center_of_mass_position": 0.3970104298480706, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007499051112865964, "throat_radius": 0.01043944740131406, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254226899197614}], "aerodynamic_surfaces": [{"length": 0.5575203049257498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340218527069164]}, {"n": 4, "root_chord": 0.1196956054756792, "tip_chord": 0.05982129773702671, "span": 0.11060142913187755, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501745406525407]}, {"top_radius": 0.06454809722747026, "bottom_radius": 0.04292021963257026, "length": 0.06072062122382883, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984092943902681, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190562416841915, "upper_button_position": 0.07935305270607662}], "rail_length": 5, "inclination": 84.36342508146653, "heading": 53.722932537885924} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349470186890607, "mass": 15.286696258602074, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3285351134498455, "I_33_without_motor": 0.03433986431913882, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.061889653048903, "trigger": 800, "sampling_rate": 105, "lag": 1.2949717913917658, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.976781993540532, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5030958475493412, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6145.801525578374, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033084073639067076, "grain_number": 5, "grain_density": 1741.5774511783254, "grain_outer_radius": 0.03369138902956952, "grain_initial_inner_radius": 0.014358474301663317, "grain_initial_height": 0.12070348105760421, "grain_separation": 0.004860748249894441, "grains_center_of_mass_position": 0.39517958262339936, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018931775383244722, "throat_radius": 0.011131362423145663, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536064722845675}], "aerodynamic_surfaces": [{"length": 0.5576517731383517, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349017384930902]}, {"n": 4, "root_chord": 0.119402033130918, "tip_chord": 0.05980790972854818, "span": 0.1084184541386066, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504490196828349]}, {"top_radius": 0.06284199269872849, "bottom_radius": 0.04350976671086035, "length": 0.05926177307663741, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991337974823878, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6210268213040884, "upper_button_position": 0.07810697617829943}], "rail_length": 5, "inclination": 82.96933006262188, "heading": 50.143198215316396} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349629128124631, "mass": 15.374191948977423, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321095532954371, "I_33_without_motor": 0.04679014439712108, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018780426595187, "trigger": 800, "sampling_rate": 105, "lag": 1.4094914202790219, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9420901349172649, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2424984862041266, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7536.556388357001, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244683213982212, "grain_number": 5, "grain_density": 1758.6144880740815, "grain_outer_radius": 0.03305557702501802, "grain_initial_inner_radius": 0.015744097997471847, "grain_initial_height": 0.12010739543793576, "grain_separation": 0.003550719888274821, "grains_center_of_mass_position": 0.39705108696938857, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006768903651456434, "throat_radius": 0.010860955800944374, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549410464487805}], "aerodynamic_surfaces": [{"length": 0.5570248803990044, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336092087563678]}, {"n": 4, "root_chord": 0.11976923389913728, "tip_chord": 0.06039680327760144, "span": 0.11071339062576971, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485958545536198]}, {"top_radius": 0.06574832650719709, "bottom_radius": 0.043493336173767064, "length": 0.05869580087450855, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003957552959382, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6151373691514136, "upper_button_position": 0.08525838614452463}], "rail_length": 5, "inclination": 84.48083346450824, "heading": 50.4825877078791} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349754890979281, "mass": 15.464048861962096, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3085903917541035, "I_33_without_motor": 0.032567178470658355, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932612901740866, "trigger": 800, "sampling_rate": 105, "lag": 1.5140583911249343, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.081546212874264, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3223609783984183, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7280.982645816243, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033010409486323375, "grain_number": 5, "grain_density": 1867.0870077336835, "grain_outer_radius": 0.03289081392399794, "grain_initial_inner_radius": 0.014883226601567809, "grain_initial_height": 0.12052866538094374, "grain_separation": 0.006160966324933598, "grains_center_of_mass_position": 0.3969173059392471, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006111119845383838, "throat_radius": 0.01096791798056901, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548639996965414}], "aerodynamic_surfaces": [{"length": 0.558906280403522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345026513516452]}, {"n": 4, "root_chord": 0.12013750697474532, "tip_chord": 0.06024496143075448, "span": 0.11032199793604153, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501930134647988]}, {"top_radius": 0.06405048409353828, "bottom_radius": 0.043380950811348115, "length": 0.05907430452174502, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995786428972066, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190601605458476, "upper_button_position": 0.08051848235135906}], "rail_length": 5, "inclination": 82.33290032188863, "heading": 52.57720482079271} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350667881412536, "mass": 16.172314392653018, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318370954422538, "I_33_without_motor": 0.04399388262097978, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.242183527931685, "trigger": 800, "sampling_rate": 105, "lag": 1.576453698449946, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0753083508998011, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7887570232388164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5301.468763706969, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03200086291525927, "grain_number": 5, "grain_density": 1828.8275649502752, "grain_outer_radius": 0.03289587229465808, "grain_initial_inner_radius": 0.015016640496937388, "grain_initial_height": 0.12153700377603228, "grain_separation": 0.003167785717509335, "grains_center_of_mass_position": 0.3979069798602769, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.274765542465624e-05, "throat_radius": 0.010442525898304363, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254621808250654}], "aerodynamic_surfaces": [{"length": 0.5589040932765822, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339624752513333]}, {"n": 4, "root_chord": 0.12014225947913756, "tip_chord": 0.060372841200729555, "span": 0.10925190833643851, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484937070245115]}, {"top_radius": 0.06290650587007067, "bottom_radius": 0.04219889342038275, "length": 0.06089979939549824, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7019080588001961, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185667798723522, "upper_button_position": 0.08334127892784393}], "rail_length": 5, "inclination": 85.57077762530825, "heading": 56.10773386849692} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350601434744226, "mass": 15.60839872199415, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319631597686038, "I_33_without_motor": 0.035905123208714196, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978090898074573, "trigger": 800, "sampling_rate": 105, "lag": 1.5363782106896038, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0463920191625526, "trigger": "apogee", "sampling_rate": 105, "lag": 1.834549472797625, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6067.327975161309, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03344565151193778, "grain_number": 5, "grain_density": 1812.16616186247, "grain_outer_radius": 0.03282107459883758, "grain_initial_inner_radius": 0.015459855931620227, "grain_initial_height": 0.11967817571286626, "grain_separation": 0.004829247594476633, "grains_center_of_mass_position": 0.3961287126632348, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00011831666598606409, "throat_radius": 0.010863038687665905, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563254632183947}], "aerodynamic_surfaces": [{"length": 0.5585415230925367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335430632245285]}, {"n": 4, "root_chord": 0.12003401227105753, "tip_chord": 0.06002766329022174, "span": 0.11034621641566918, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484373134156226]}, {"top_radius": 0.06420977720825294, "bottom_radius": 0.04417687601871424, "length": 0.060140627470912714, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004254055691902, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180070401150792, "upper_button_position": 0.08241836545411096}], "rail_length": 5, "inclination": 85.04788467612138, "heading": 51.24893968446809} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349871885692557, "mass": 15.690715743975007, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3206090085172315, "I_33_without_motor": 0.03385100519635644, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.920768040651367, "trigger": 800, "sampling_rate": 105, "lag": 1.6183636877568088, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8591949931712971, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2269347602143923, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4792.42705413904, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032297550263332066, "grain_number": 5, "grain_density": 1772.1991039954698, "grain_outer_radius": 0.03301074861551979, "grain_initial_inner_radius": 0.015049665960936261, "grain_initial_height": 0.12166972139985126, "grain_separation": 0.003022095854956895, "grains_center_of_mass_position": 0.3985822389897714, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009439981315249953, "throat_radius": 0.011417805550266372, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253803797915415}], "aerodynamic_surfaces": [{"length": 0.5574145168093708, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337518314459833]}, {"n": 4, "root_chord": 0.11992166833054191, "tip_chord": 0.05981577788940902, "span": 0.11052497205773626, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501871266416591]}, {"top_radius": 0.06312017774546233, "bottom_radius": 0.044267488718675856, "length": 0.05934462828266221, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012788314917716, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616763557397589, "upper_button_position": 0.08451527409418258}], "rail_length": 5, "inclination": 85.15312483552805, "heading": 56.41341863159433} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350185471538554, "mass": 16.093160692506437, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315361517365255, "I_33_without_motor": 0.047230928257354074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90908344934581, "trigger": 800, "sampling_rate": 105, "lag": 1.519099771452671, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9889958439197265, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2467330360876439, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4322.692080941433, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033008113738051785, "grain_number": 5, "grain_density": 1847.0655540343037, "grain_outer_radius": 0.033265230397378165, "grain_initial_inner_radius": 0.01524974465634801, "grain_initial_height": 0.11968961020813554, "grain_separation": 0.00603273017356374, "grains_center_of_mass_position": 0.3973580543933542, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00045434507625067915, "throat_radius": 0.00997600081696908, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528566132922143}], "aerodynamic_surfaces": [{"length": 0.5578207713940371, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341341840956507]}, {"n": 4, "root_chord": 0.12046483380627318, "tip_chord": 0.05935542938639914, "span": 0.11009748758468503, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500203059018485]}, {"top_radius": 0.06361419013871399, "bottom_radius": 0.04295757512794606, "length": 0.06091200169755163, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994720548753988, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184171465901804, "upper_button_position": 0.08105490828521833}], "rail_length": 5, "inclination": 85.2205213573026, "heading": 54.85464210705406} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0635030332306874, "mass": 15.58305581672065, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318945566581021, "I_33_without_motor": 0.012645861826728971, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992669309320501, "trigger": 800, "sampling_rate": 105, "lag": 1.5750090606946168, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8345317565280541, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3278708915836863, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5229.852358089975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03214470607960333, "grain_number": 5, "grain_density": 1810.6593314563918, "grain_outer_radius": 0.03261254921150864, "grain_initial_inner_radius": 0.01560145023115135, "grain_initial_height": 0.11993721272827153, "grain_separation": 0.006206231644371291, "grains_center_of_mass_position": 0.39755971023476117, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017005264744183477, "throat_radius": 0.01157186431515515, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254218106698485}], "aerodynamic_surfaces": [{"length": 0.5571134312027483, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349254102296797]}, {"n": 4, "root_chord": 0.11976976869067543, "tip_chord": 0.06020099233378877, "span": 0.10959457879860593, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493937868868015]}, {"top_radius": 0.06379258435459209, "bottom_radius": 0.04322707865573803, "length": 0.05829069310876653, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700712815075577, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183613529887998, "upper_button_position": 0.08235146208677724}], "rail_length": 5, "inclination": 85.8511051871549, "heading": 49.83471945306217} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350019767765197, "mass": 15.68802652254786, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328646282287704, "I_33_without_motor": 0.021205881848967937, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.004415117064527, "trigger": 800, "sampling_rate": 105, "lag": 1.383331143922606, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9459310439959937, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3511345901642033, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5694.527500548624, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325047769876998, "grain_number": 5, "grain_density": 1864.9961243019372, "grain_outer_radius": 0.03330873501623719, "grain_initial_inner_radius": 0.015144690212173115, "grain_initial_height": 0.11910941314283378, "grain_separation": 0.006114121135399625, "grains_center_of_mass_position": 0.3971124606211263, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00032461992842394005, "throat_radius": 0.011213976082286406, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531784531448333}], "aerodynamic_surfaces": [{"length": 0.5586976938135383, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1358072309368563]}, {"n": 4, "root_chord": 0.11965468098015168, "tip_chord": 0.05947807196677365, "span": 0.10986115770157624, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497401747041757]}, {"top_radius": 0.06274358566179809, "bottom_radius": 0.0443555443829573, "length": 0.06038744009331449, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998965447713502, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181718609453837, "upper_button_position": 0.08172468382596654}], "rail_length": 5, "inclination": 85.41535577011024, "heading": 56.26161956390422} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350852557121749, "mass": 15.229509954107934, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306576734237231, "I_33_without_motor": 0.036384427746309594, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.124555527028114, "trigger": 800, "sampling_rate": 105, "lag": 1.558029015197399, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0083681150646777, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7466842459255008, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6731.958049023174, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247508079007743, "grain_number": 5, "grain_density": 1739.413246670912, "grain_outer_radius": 0.03325173042608234, "grain_initial_inner_radius": 0.01525135846137716, "grain_initial_height": 0.11889211617623376, "grain_separation": 0.005150554513860403, "grains_center_of_mass_position": 0.3972095950054468, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011366107643669787, "throat_radius": 0.011432963350296641, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530199061759544}], "aerodynamic_surfaces": [{"length": 0.558714190824846, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338740886231957]}, {"n": 4, "root_chord": 0.11904011192706235, "tip_chord": 0.059771479874818206, "span": 0.11082067765458786, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047648466162732]}, {"top_radius": 0.06337569786541557, "bottom_radius": 0.04309006585243515, "length": 0.06023385180732944, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995831040940225, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194899414857389, "upper_button_position": 0.08009316260828359}], "rail_length": 5, "inclination": 83.77339293211564, "heading": 51.207961226071724} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349851485095788, "mass": 15.000565565177316, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336194366846289, "I_33_without_motor": 0.030023780140510284, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009994405241034, "trigger": 800, "sampling_rate": 105, "lag": 1.3547548868935897, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9993467900002261, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5455147912648117, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5755.461524885082, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033363592884637354, "grain_number": 5, "grain_density": 1805.2703423504915, "grain_outer_radius": 0.03272144566521823, "grain_initial_inner_radius": 0.015679951783598826, "grain_initial_height": 0.11986098855013128, "grain_separation": 0.0034799173394458186, "grains_center_of_mass_position": 0.3967944847700205, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007198650868461479, "throat_radius": 0.01093140561985796, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539106550658314}], "aerodynamic_surfaces": [{"length": 0.5586404066740431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339367475359559]}, {"n": 4, "root_chord": 0.12015695310428998, "tip_chord": 0.06056591619011852, "span": 0.10946259622429355, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486964628464626]}, {"top_radius": 0.06501973549720458, "bottom_radius": 0.04403345341726787, "length": 0.05890021426291953, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993016777299227, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174233524279216, "upper_button_position": 0.08187832530200112}], "rail_length": 5, "inclination": 83.21788194443245, "heading": 55.30702066898198} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.0635053133035666, "mass": 15.575626178091955, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306103669316763, "I_33_without_motor": 0.021287601978876552, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.11895666087506, "trigger": 800, "sampling_rate": 105, "lag": 1.4331103730390877, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0253104720372264, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8369673315019184, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6677.095430004502, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288618499927362, "grain_number": 5, "grain_density": 1908.137763037461, "grain_outer_radius": 0.03246250647033894, "grain_initial_inner_radius": 0.015239587892241644, "grain_initial_height": 0.11887490565725838, "grain_separation": 0.005060576364775757, "grains_center_of_mass_position": 0.396686031226301, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011886818015319925, "throat_radius": 0.011278571658718666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528017368526267}], "aerodynamic_surfaces": [{"length": 0.5578212477003578, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133852236516707]}, {"n": 4, "root_chord": 0.11991474001476095, "tip_chord": 0.0593365774029634, "span": 0.11017403122004825, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05131100466013]}, {"top_radius": 0.06493408415774707, "bottom_radius": 0.04338750845096633, "length": 0.059797858749102414, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990046246433236, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186953169898872, "upper_button_position": 0.08030930765343636}], "rail_length": 5, "inclination": 85.17292104409778, "heading": 54.86236397050882} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350504431177309, "mass": 15.641133084726135, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339676097203448, "I_33_without_motor": 0.046393646078640924, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.008826360673625, "trigger": 800, "sampling_rate": 105, "lag": 1.3382060257059967, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8726011329069153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4705592826162053, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6797.620717758894, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03338320545472104, "grain_number": 5, "grain_density": 1913.1317260219273, "grain_outer_radius": 0.03296339645636045, "grain_initial_inner_radius": 0.015466221506118264, "grain_initial_height": 0.1177487332701741, "grain_separation": 0.005650927689082796, "grains_center_of_mass_position": 0.3973448906337343, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00021049187662166693, "throat_radius": 0.011403551650153505, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537555441511357}], "aerodynamic_surfaces": [{"length": 0.5579796414089266, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327838630782239]}, {"n": 4, "root_chord": 0.11954498456698502, "tip_chord": 0.05996529684208102, "span": 0.11039086946394247, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505006393914913]}, {"top_radius": 0.06359796258763159, "bottom_radius": 0.04475936206163676, "length": 0.05923696328525661, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012079519250684, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61716221872935, "upper_button_position": 0.0840457331957184}], "rail_length": 5, "inclination": 83.40876588781047, "heading": 51.33621778050858} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350682054427102, "mass": 15.072725289929206, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3244122094323565, "I_33_without_motor": 0.01903082026781744, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984750916754324, "trigger": 800, "sampling_rate": 105, "lag": 1.5516075060172374, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0296173780751878, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3446632288317177, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6909.547225125358, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377004049241926, "grain_number": 5, "grain_density": 1841.339274079718, "grain_outer_radius": 0.03305544930834884, "grain_initial_inner_radius": 0.01417183339233636, "grain_initial_height": 0.12025716799961918, "grain_separation": 0.004941352853185462, "grains_center_of_mass_position": 0.39684102028703094, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005653173282546821, "throat_radius": 0.010708141837724262, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541295988013421}], "aerodynamic_surfaces": [{"length": 0.5578068178956851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326708031964128]}, {"n": 4, "root_chord": 0.11946640499561226, "tip_chord": 0.06020565143923566, "span": 0.11018701067648963, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504260857726386]}, {"top_radius": 0.06453020765245722, "bottom_radius": 0.04261919210155381, "length": 0.061726834206579276, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997932421600551, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182455342120664, "upper_button_position": 0.08154770794798871}], "rail_length": 5, "inclination": 85.39074899972607, "heading": 56.95204508485822} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350243246099486, "mass": 14.70946788781255, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326380889095393, "I_33_without_motor": 0.03568620530496062, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939101330423046, "trigger": 800, "sampling_rate": 105, "lag": 1.5427484496316959, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9401728618856464, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6145540154324438, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7239.911641073848, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032848813813228496, "grain_number": 5, "grain_density": 1843.6158198534358, "grain_outer_radius": 0.03293421608743755, "grain_initial_inner_radius": 0.01440233187481905, "grain_initial_height": 0.1202361714689805, "grain_separation": 0.005261303966024304, "grains_center_of_mass_position": 0.3974909084678026, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008595878296267988, "throat_radius": 0.010699070900431255, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555076287749214}], "aerodynamic_surfaces": [{"length": 0.5570191182212068, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338991772516283]}, {"n": 4, "root_chord": 0.11922239474444749, "tip_chord": 0.06007695213222839, "span": 0.10985151972149719, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489264301831314]}, {"top_radius": 0.06475838492298323, "bottom_radius": 0.042689303655832275, "length": 0.061232535844758906, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012843268979587, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160523393761114, "upper_button_position": 0.08523198752184735}], "rail_length": 5, "inclination": 84.58205259933821, "heading": 52.434944360874795} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350055669141685, "mass": 15.415007929150121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330310678294783, "I_33_without_motor": 0.03385626824833732, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029327604319608, "trigger": 800, "sampling_rate": 105, "lag": 1.3881085512441653, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0701305952447706, "trigger": "apogee", "sampling_rate": 105, "lag": 1.318062405908518, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5769.356365098592, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032739414210588826, "grain_number": 5, "grain_density": 1718.0391587153879, "grain_outer_radius": 0.0330137610261195, "grain_initial_inner_radius": 0.015304591663001006, "grain_initial_height": 0.11910194713063621, "grain_separation": 0.004793939208899853, "grains_center_of_mass_position": 0.39629036276645435, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017615605799484225, "throat_radius": 0.010688775498250817, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541509085108733}], "aerodynamic_surfaces": [{"length": 0.5592613620389814, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334856831793516]}, {"n": 4, "root_chord": 0.1200395276511872, "tip_chord": 0.05920079576123588, "span": 0.11010280408090116, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493228964127728]}, {"top_radius": 0.06587261530515359, "bottom_radius": 0.0435654193847361, "length": 0.059783537443902565, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996740749336197, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187523730174075, "upper_button_position": 0.08092170191621217}], "rail_length": 5, "inclination": 87.02810936462727, "heading": 52.4777202782274} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349285542283101, "mass": 15.110983255281724, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33049310056325, "I_33_without_motor": 0.04316058134319131, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.883405151960938, "trigger": 800, "sampling_rate": 105, "lag": 1.4806563611455836, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9717141057397025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5479720051668198, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5753.0959896259155, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337067849897524, "grain_number": 5, "grain_density": 1812.9432969494112, "grain_outer_radius": 0.03282893938758124, "grain_initial_inner_radius": 0.015217832363528479, "grain_initial_height": 0.11881759532347376, "grain_separation": 0.0048333827390759755, "grains_center_of_mass_position": 0.39744037351957034, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010590986921517104, "throat_radius": 0.010741019562982332, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534938523479784}], "aerodynamic_surfaces": [{"length": 0.5588585173253503, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335790454921768]}, {"n": 4, "root_chord": 0.12020238776085557, "tip_chord": 0.06012076864448635, "span": 0.11038007384355342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506588494772762]}, {"top_radius": 0.06366753538570678, "bottom_radius": 0.045455322802765506, "length": 0.05987474629345734, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015385238006644, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167536390137569, "upper_button_position": 0.08478488478690749}], "rail_length": 5, "inclination": 84.93674231537469, "heading": 53.70760529654781} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348457697690374, "mass": 15.052673610526085, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316392636629737, "I_33_without_motor": 0.03330857154225926, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02757992215306, "trigger": 800, "sampling_rate": 105, "lag": 1.452737300663501, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8768181747228498, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4489515214177726, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7973.016865865111, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296823247137318, "grain_number": 5, "grain_density": 1743.400300203292, "grain_outer_radius": 0.03247434076538226, "grain_initial_inner_radius": 0.015739964614801386, "grain_initial_height": 0.1180381771540186, "grain_separation": 0.004934777232023385, "grains_center_of_mass_position": 0.39720327964508545, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.264117284307737e-05, "throat_radius": 0.011890791824611906, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546773149040504}], "aerodynamic_surfaces": [{"length": 0.5587895877211708, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337997785853249]}, {"n": 4, "root_chord": 0.11930014137908855, "tip_chord": 0.059809063786378305, "span": 0.11029192871773748, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05063410073664]}, {"top_radius": 0.062043671102129695, "bottom_radius": 0.04442662056650565, "length": 0.0597732444973786, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997118791877156, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180673873657014, "upper_button_position": 0.08164449182201416}], "rail_length": 5, "inclination": 84.04032403987469, "heading": 52.2837378123485} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350996288497864, "mass": 15.10635981199517, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3174967848576955, "I_33_without_motor": 0.047174092389492384, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.113948309401037, "trigger": 800, "sampling_rate": 105, "lag": 1.6800921965770326, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0183837027752256, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6988102840870365, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5649.071983431747, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03344797091967112, "grain_number": 5, "grain_density": 1885.6118349316298, "grain_outer_radius": 0.032908654752447905, "grain_initial_inner_radius": 0.015269537509035584, "grain_initial_height": 0.11938259529969972, "grain_separation": 0.004194881857184417, "grains_center_of_mass_position": 0.39784257875644125, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005878981952614495, "throat_radius": 0.010471090240533425, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550454596575051}], "aerodynamic_surfaces": [{"length": 0.5571802474199954, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135157828541137]}, {"n": 4, "root_chord": 0.11945020855018593, "tip_chord": 0.059926770044509824, "span": 0.11017180180257276, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481682953558003]}, {"top_radius": 0.06315134820905884, "bottom_radius": 0.04282632983449965, "length": 0.060013494449472626, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998549905687333, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61852993303469, "upper_button_position": 0.0813250575340434}], "rail_length": 5, "inclination": 84.93957256975993, "heading": 53.38187739735489} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349916810201854, "mass": 15.290445171373769, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316061195940135, "I_33_without_motor": 0.03485762857339513, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.033249750593203, "trigger": 800, "sampling_rate": 105, "lag": 1.546424335149171, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8626568975647161, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6044894898420108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5616.457118106515, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033900834956948296, "grain_number": 5, "grain_density": 1807.2810076184226, "grain_outer_radius": 0.03360809449916733, "grain_initial_inner_radius": 0.014813567895044113, "grain_initial_height": 0.11915285038640266, "grain_separation": 0.004583938335049084, "grains_center_of_mass_position": 0.39648353369278455, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005995768243282685, "throat_radius": 0.01088002886749053, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565211434591639}], "aerodynamic_surfaces": [{"length": 0.5558902728850018, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331401285670817]}, {"n": 4, "root_chord": 0.12027924533129687, "tip_chord": 0.060405283520774566, "span": 0.1089086254110351, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050982097732894]}, {"top_radius": 0.0632372452165883, "bottom_radius": 0.04367336934696723, "length": 0.06135966717935374, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015114108805295, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180278682980993, "upper_button_position": 0.08348354258243018}], "rail_length": 5, "inclination": 84.4633706640194, "heading": 51.35867992735177} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349811258444771, "mass": 15.23202352152253, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310935894739665, "I_33_without_motor": 0.046954362414334705, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000600224016534, "trigger": 800, "sampling_rate": 105, "lag": 1.46531953564244, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0278870313842665, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7772628442577834, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5393.453403170333, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311941585983178, "grain_number": 5, "grain_density": 1894.2255553373934, "grain_outer_radius": 0.03219578684924965, "grain_initial_inner_radius": 0.014617262330720688, "grain_initial_height": 0.12139928039911865, "grain_separation": 0.005943760752971294, "grains_center_of_mass_position": 0.3980741913245907, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020880776142934623, "throat_radius": 0.011063072184861243, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545680027710853}], "aerodynamic_surfaces": [{"length": 0.5581711065252577, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320975882622286]}, {"n": 4, "root_chord": 0.12042391456424409, "tip_chord": 0.06028006167357847, "span": 0.11070597236467512, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479804045421828]}, {"top_radius": 0.06273437212049836, "bottom_radius": 0.044314059154903294, "length": 0.06021877784134091, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699640186107394, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170678998926273, "upper_button_position": 0.08257228621476664}], "rail_length": 5, "inclination": 85.8259464248544, "heading": 53.68356496201927} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350221797823624, "mass": 15.6484751184074, "I_11_without_motor": 6.321, "I_22_without_motor": 6.296155275692241, "I_33_without_motor": 0.027692604061795353, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.995417812586735, "trigger": 800, "sampling_rate": 105, "lag": 1.6295374320256089, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0686641668290917, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6288277651341003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4544.4383498418365, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341742409722497, "grain_number": 5, "grain_density": 1815.2955259562107, "grain_outer_radius": 0.03319469930623044, "grain_initial_inner_radius": 0.01545399789636861, "grain_initial_height": 0.11932537869926038, "grain_separation": 0.004330693329588943, "grains_center_of_mass_position": 0.3967850621276421, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001582152264466961, "throat_radius": 0.011609562740814055, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544020720183162}], "aerodynamic_surfaces": [{"length": 0.5589515161303483, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135024800330208]}, {"n": 4, "root_chord": 0.12020309753112308, "tip_chord": 0.05974696022401088, "span": 0.11107369897072959, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489423235673991]}, {"top_radius": 0.06308863360519737, "bottom_radius": 0.04383504552438216, "length": 0.06020609871173472, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009262979176909, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617736112419881, "upper_button_position": 0.08319018549780988}], "rail_length": 5, "inclination": 84.91941760943384, "heading": 53.23412880808799} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349822719777412, "mass": 14.177166465660104, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315852411134771, "I_33_without_motor": 0.0525140128186584, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031284791718246, "trigger": 800, "sampling_rate": 105, "lag": 1.5408144257732732, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9467355824492671, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1206568129069336, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5653.943103642923, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034234012041541674, "grain_number": 5, "grain_density": 1708.9943767903044, "grain_outer_radius": 0.03294442115217783, "grain_initial_inner_radius": 0.015008833294295294, "grain_initial_height": 0.11990575418600358, "grain_separation": 0.003626429400134388, "grains_center_of_mass_position": 0.3976978943763044, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.0457443440629462e-05, "throat_radius": 0.011722223659140529, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539070810302806}], "aerodynamic_surfaces": [{"length": 0.5573676527332889, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337197217920196]}, {"n": 4, "root_chord": 0.11962554771511055, "tip_chord": 0.059868478278607855, "span": 0.11022895248855075, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048758103544873]}, {"top_radius": 0.06196181433949168, "bottom_radius": 0.04384028307639238, "length": 0.059458878717680914, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001166530124676, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167764811461584, "upper_button_position": 0.08334017186630926}], "rail_length": 5, "inclination": 85.04499805397245, "heading": 50.59374740976227} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349519846517207, "mass": 16.375930314020415, "I_11_without_motor": 6.321, "I_22_without_motor": 6.345552555464614, "I_33_without_motor": 0.04346096079469527, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939984652309096, "trigger": 800, "sampling_rate": 105, "lag": 1.5484438013762343, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9825814524133806, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4133630247369322, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6826.029608548413, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313720955714178, "grain_number": 5, "grain_density": 1859.4506231529383, "grain_outer_radius": 0.033292163459340586, "grain_initial_inner_radius": 0.01462107274916093, "grain_initial_height": 0.12068175071505104, "grain_separation": 0.003991315176066588, "grains_center_of_mass_position": 0.3959426640978616, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005303595781409647, "throat_radius": 0.010478002255783, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257934831004377}], "aerodynamic_surfaces": [{"length": 0.5594366445100527, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320605423149919]}, {"n": 4, "root_chord": 0.11905721004059183, "tip_chord": 0.06051657093145223, "span": 0.10949501290166537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478676073557176]}, {"top_radius": 0.06310228312649908, "bottom_radius": 0.04364612083747506, "length": 0.060221002005275304, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006068961647309, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200711569919625, "upper_button_position": 0.08053573917276846}], "rail_length": 5, "inclination": 86.26033142730148, "heading": 50.97344720186868} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.063498146812346, "mass": 15.354544217841497, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339588964742514, "I_33_without_motor": 0.041333899856171426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925622038458933, "trigger": 800, "sampling_rate": 105, "lag": 1.375375559271358, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0425398794978218, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3549360959401022, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5376.245496491465, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033500512939386225, "grain_number": 5, "grain_density": 1808.7591204306025, "grain_outer_radius": 0.032764945118504044, "grain_initial_inner_radius": 0.015020129653509962, "grain_initial_height": 0.1186923624130188, "grain_separation": 0.005610920353825781, "grains_center_of_mass_position": 0.3993471697749711, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001003252897406708, "throat_radius": 0.01069415336721647, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557574113780243}], "aerodynamic_surfaces": [{"length": 0.5572991346759321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133261351155369]}, {"n": 4, "root_chord": 0.11934487641623909, "tip_chord": 0.06034564175296464, "span": 0.10980407497210537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503681948676404]}, {"top_radius": 0.06533066229411984, "bottom_radius": 0.04343639593269107, "length": 0.05979583076268535, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996548275437457, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177570134468636, "upper_button_position": 0.08189781409688213}], "rail_length": 5, "inclination": 82.89900261431673, "heading": 53.86080252225644} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350132582117857, "mass": 15.262480853141398, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32211800462854, "I_33_without_motor": 0.02919824176514777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.879131813342914, "trigger": 800, "sampling_rate": 105, "lag": 1.4619949267607093, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0305071874642802, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2268979363676682, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5304.301145430034, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313089309511887, "grain_number": 5, "grain_density": 1810.9418947880558, "grain_outer_radius": 0.032633893975153046, "grain_initial_inner_radius": 0.014489316378339874, "grain_initial_height": 0.11914470430110462, "grain_separation": 0.00624776885595823, "grains_center_of_mass_position": 0.39712347164345635, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009765007193149725, "throat_radius": 0.011288508608025714, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560467166373597}], "aerodynamic_surfaces": [{"length": 0.5574373025393579, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134158587716856]}, {"n": 4, "root_chord": 0.11930480811231262, "tip_chord": 0.06085661063960119, "span": 0.11003059245033862, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0472350656790792]}, {"top_radius": 0.06383634358720174, "bottom_radius": 0.04277888582329232, "length": 0.06022626383715523, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990629029255805, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193159047977203, "upper_button_position": 0.07974699812786024}], "rail_length": 5, "inclination": 85.69862085284714, "heading": 50.96280655216079} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349463408753846, "mass": 14.83589397930871, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330415052727813, "I_33_without_motor": 0.024845854338683998, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94530397329754, "trigger": 800, "sampling_rate": 105, "lag": 1.5005908665120178, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.2468236806312305, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9669487462957274, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6683.297543403877, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03395021869283829, "grain_number": 5, "grain_density": 1778.967136875586, "grain_outer_radius": 0.03212956371725625, "grain_initial_inner_radius": 0.014868925286065546, "grain_initial_height": 0.12145844468268199, "grain_separation": 0.0017557823622412474, "grains_center_of_mass_position": 0.3970436306381538, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.1489713073605854e-05, "throat_radius": 0.009987079580050495, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253707751605945}], "aerodynamic_surfaces": [{"length": 0.5576555131370269, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329396943916819]}, {"n": 4, "root_chord": 0.12019491614853034, "tip_chord": 0.05972684178328131, "span": 0.109584831660779, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496261827171172]}, {"top_radius": 0.06170345422679474, "bottom_radius": 0.045280745323998596, "length": 0.060472612144972085, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6979104474286242, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180804288503674, "upper_button_position": 0.07983001857825678}], "rail_length": 5, "inclination": 85.54237385992433, "heading": 52.10604006904976} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349385984309346, "mass": 15.0259934279984, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322894111297237, "I_33_without_motor": 0.031702200790319345, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.016071489800396, "trigger": 800, "sampling_rate": 105, "lag": 1.5571558544133706, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8718132712038004, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6902912682322164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7292.205340851745, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032740937463762936, "grain_number": 5, "grain_density": 1877.5705490513276, "grain_outer_radius": 0.032784466922828936, "grain_initial_inner_radius": 0.015451266892821048, "grain_initial_height": 0.11931312326904878, "grain_separation": 0.004636797225394395, "grains_center_of_mass_position": 0.395699613899927, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000385755191397852, "throat_radius": 0.01158845215694074, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559432379180986}], "aerodynamic_surfaces": [{"length": 0.5569386627733425, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335598156478317]}, {"n": 4, "root_chord": 0.11981969337785296, "tip_chord": 0.06028323924334576, "span": 0.10952658481239205, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515626324853926]}, {"top_radius": 0.06328960053362553, "bottom_radius": 0.04317355091205263, "length": 0.058792887130741704, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006663300721238, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182594231402743, "upper_button_position": 0.08240690693184949}], "rail_length": 5, "inclination": 85.00362645354795, "heading": 51.70063509091343} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0634996750523471, "mass": 15.242997132359609, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330279906100775, "I_33_without_motor": 0.04489948466081988, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958939523263295, "trigger": 800, "sampling_rate": 105, "lag": 1.4032754496683024, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.944461706992404, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0841310985544004, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6058.508437688315, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032534467714519705, "grain_number": 5, "grain_density": 1869.829221594781, "grain_outer_radius": 0.03316582047199594, "grain_initial_inner_radius": 0.014762767866557143, "grain_initial_height": 0.12008821278492356, "grain_separation": 0.004555460393348685, "grains_center_of_mass_position": 0.3962103789038932, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010406846278306545, "throat_radius": 0.01169618574105139, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536616004881043}], "aerodynamic_surfaces": [{"length": 0.5589172621776779, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338466679669286]}, {"n": 4, "root_chord": 0.1200164203267972, "tip_chord": 0.05906792849661993, "span": 0.10956855278317196, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490829662977912]}, {"top_radius": 0.0629904054471604, "bottom_radius": 0.04491904649154861, "length": 0.058938615832374, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996497133777656, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187383059533375, "upper_button_position": 0.08091140742442815}], "rail_length": 5, "inclination": 82.6521740148099, "heading": 50.59667319681394} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350011992571349, "mass": 15.608172874895082, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310103876866403, "I_33_without_motor": 0.03879336755602205, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.996574509806177, "trigger": 800, "sampling_rate": 105, "lag": 1.5340852572637331, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0317137082472136, "trigger": "apogee", "sampling_rate": 105, "lag": 1.740457810058222, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6969.961547048688, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032835553711255426, "grain_number": 5, "grain_density": 1789.0931324579199, "grain_outer_radius": 0.03254760869370914, "grain_initial_inner_radius": 0.015277181001700266, "grain_initial_height": 0.12074244594665443, "grain_separation": 0.005030197833500657, "grains_center_of_mass_position": 0.3967064011795579, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.668922502333625e-05, "throat_radius": 0.011321221992605343, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562706190600492}], "aerodynamic_surfaces": [{"length": 0.5582492437971632, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348441871976178]}, {"n": 4, "root_chord": 0.11943424577621717, "tip_chord": 0.059890323558150854, "span": 0.10984053172638517, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503105318676036]}, {"top_radius": 0.0636315908137854, "bottom_radius": 0.043331623817174834, "length": 0.059733642569128116, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984660860942318, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187782978182398, "upper_button_position": 0.07968778827599199}], "rail_length": 5, "inclination": 85.59845243776108, "heading": 49.960070372459825} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349845440371059, "mass": 16.033552152424406, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322429846714112, "I_33_without_motor": 0.025915853965111396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.107579391883144, "trigger": 800, "sampling_rate": 105, "lag": 1.5286030884664228, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.008048304136849, "trigger": "apogee", "sampling_rate": 105, "lag": 1.565729852114689, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6557.266202282655, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0331263971633824, "grain_number": 5, "grain_density": 1782.9023752852531, "grain_outer_radius": 0.03284115827610392, "grain_initial_inner_radius": 0.01479181024523073, "grain_initial_height": 0.11798254312092245, "grain_separation": 0.005567436390489197, "grains_center_of_mass_position": 0.3952793354668137, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001185601904084976, "throat_radius": 0.010624922357195418, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548914629933456}], "aerodynamic_surfaces": [{"length": 0.5587649271349251, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347690311694658]}, {"n": 4, "root_chord": 0.12051059603439293, "tip_chord": 0.059554346683403404, "span": 0.11055100843865584, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.046223681383042]}, {"top_radius": 0.06394481524443199, "bottom_radius": 0.0425426671588874, "length": 0.059544172325212835, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6978925403146322, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184675319853353, "upper_button_position": 0.07942500832929689}], "rail_length": 5, "inclination": 84.23029607304875, "heading": 55.86106916640972} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349412714809326, "mass": 15.088801895475285, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318783180774196, "I_33_without_motor": 0.03746822739240985, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079789054670547, "trigger": 800, "sampling_rate": 105, "lag": 1.4362031124260473, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9953837305081972, "trigger": "apogee", "sampling_rate": 105, "lag": 1.149879372271064, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8118.682851367615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313782747787477, "grain_number": 5, "grain_density": 1828.005804822105, "grain_outer_radius": 0.03247621371474994, "grain_initial_inner_radius": 0.01541129379710922, "grain_initial_height": 0.11872924494810363, "grain_separation": 0.004412444904978059, "grains_center_of_mass_position": 0.39771934774698003, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024021867104128948, "throat_radius": 0.010868432347058159, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550612998177815}], "aerodynamic_surfaces": [{"length": 0.5584754492279732, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346837962168306]}, {"n": 4, "root_chord": 0.11927405874464324, "tip_chord": 0.059474410774577074, "span": 0.11001121984055792, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048422114050226]}, {"top_radius": 0.06439070464086097, "bottom_radius": 0.04287779235770219, "length": 0.061320125697062404, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002231358538519, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181261470107137, "upper_button_position": 0.08209698884313821}], "rail_length": 5, "inclination": 84.60411619672811, "heading": 51.33872315506403} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350360139324808, "mass": 15.722001363227365, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334539257914283, "I_33_without_motor": 0.026435103840347304, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071970817846653, "trigger": 800, "sampling_rate": 105, "lag": 1.5725587937686785, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9784741863647476, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6405199895198097, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6441.625395025934, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317930761780843, "grain_number": 5, "grain_density": 1823.4220788537662, "grain_outer_radius": 0.03357485857936508, "grain_initial_inner_radius": 0.0153275694513459, "grain_initial_height": 0.1186940826305479, "grain_separation": 0.0070001450910367816, "grains_center_of_mass_position": 0.3959371153854894, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0021872676702203455, "throat_radius": 0.010817280979502797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537107366126359}], "aerodynamic_surfaces": [{"length": 0.5574399945233509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134501072278607]}, {"n": 4, "root_chord": 0.12107935834431928, "tip_chord": 0.06040430546043803, "span": 0.10972017745134757, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05163247038223]}, {"top_radius": 0.06242907722707589, "bottom_radius": 0.04444726207887073, "length": 0.061099059744677914, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996680170288756, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181643638634792, "upper_button_position": 0.08150365316539643}], "rail_length": 5, "inclination": 83.94926689016677, "heading": 49.60584183226759} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349502671980364, "mass": 15.48642889212604, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320114744825411, "I_33_without_motor": 0.03393918268533944, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.988838039709144, "trigger": 800, "sampling_rate": 105, "lag": 1.6487726311873756, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.116733641447009, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6324280824637936, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7499.935312881257, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033229591975514824, "grain_number": 5, "grain_density": 1819.6098137023369, "grain_outer_radius": 0.03360020563597003, "grain_initial_inner_radius": 0.015398118244362985, "grain_initial_height": 0.12081391637571506, "grain_separation": 0.005014380531987504, "grains_center_of_mass_position": 0.39706727916966367, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.9708217085173e-05, "throat_radius": 0.010648964564067083, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253641860773603}], "aerodynamic_surfaces": [{"length": 0.5566443355706845, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133777340179332]}, {"n": 4, "root_chord": 0.12028961981885848, "tip_chord": 0.05945164044511776, "span": 0.11029356957583475, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499564289512282]}, {"top_radius": 0.06315354855034382, "bottom_radius": 0.04311388219542383, "length": 0.06067958752359486, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994840590665717, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618157934605703, "upper_button_position": 0.08132612446086873}], "rail_length": 5, "inclination": 84.82604965476351, "heading": 52.818883215885705} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350305463660517, "mass": 15.577195040577635, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305829351175709, "I_33_without_motor": 0.024828581787977443, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079480933105014, "trigger": 800, "sampling_rate": 105, "lag": 1.6236103916167686, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9330839438111286, "trigger": "apogee", "sampling_rate": 105, "lag": 1.621048651329214, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6547.929752791634, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032852476500685374, "grain_number": 5, "grain_density": 1820.2895246303303, "grain_outer_radius": 0.03345075365928238, "grain_initial_inner_radius": 0.015633020577722874, "grain_initial_height": 0.12072952354171095, "grain_separation": 0.004553398250337302, "grains_center_of_mass_position": 0.39644390411785496, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014794849835164802, "throat_radius": 0.011163818564613414, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562750849066024}], "aerodynamic_surfaces": [{"length": 0.5596672698592766, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338398390533906]}, {"n": 4, "root_chord": 0.12047137271999381, "tip_chord": 0.060376360994949245, "span": 0.10987095546899178, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048882267059135]}, {"top_radius": 0.06578592776514867, "bottom_radius": 0.04263478802379944, "length": 0.05960998405563614, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997084300804216, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171218116991377, "upper_button_position": 0.0825866183812839}], "rail_length": 5, "inclination": 84.62032316616656, "heading": 52.95732208685988} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349462168418106, "mass": 15.039888411897882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339301821578357, "I_33_without_motor": 0.040023211019282905, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.030065299208424, "trigger": 800, "sampling_rate": 105, "lag": 1.4569055219397091, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0334964467133394, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4760355422712734, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7570.718188680708, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03217376719523628, "grain_number": 5, "grain_density": 1795.8124191298534, "grain_outer_radius": 0.032950994360828205, "grain_initial_inner_radius": 0.014795540274734653, "grain_initial_height": 0.11928181155922807, "grain_separation": 0.005063286152357924, "grains_center_of_mass_position": 0.39585754252380784, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.4127276094394064e-05, "throat_radius": 0.011216593962087185, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567712249981093}], "aerodynamic_surfaces": [{"length": 0.5565968325224857, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134364822250575]}, {"n": 4, "root_chord": 0.1194822843990169, "tip_chord": 0.06046809597298938, "span": 0.11081658116283269, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496621297001996]}, {"top_radius": 0.06442030002495791, "bottom_radius": 0.04277042704944275, "length": 0.05819783070437561, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002852542441765, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192859926200752, "upper_button_position": 0.08099926162410132}], "rail_length": 5, "inclination": 85.01544334046622, "heading": 53.973567521071644} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349770674219954, "mass": 15.425031829032518, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319904852502501, "I_33_without_motor": 0.03645008596475428, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.041835416239074, "trigger": 800, "sampling_rate": 105, "lag": 1.6928174610215243, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.928518065405677, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4831332980089236, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8758.15240562553, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326609685300288, "grain_number": 5, "grain_density": 1844.536556685399, "grain_outer_radius": 0.033212775665214814, "grain_initial_inner_radius": 0.014874312015723413, "grain_initial_height": 0.12008937318365893, "grain_separation": 0.005638525880165384, "grains_center_of_mass_position": 0.3994416967793741, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016242625115748518, "throat_radius": 0.011452345100219273, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556825678028198}], "aerodynamic_surfaces": [{"length": 0.5586171796013457, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351864089994645]}, {"n": 4, "root_chord": 0.1206138239148198, "tip_chord": 0.05957643718386388, "span": 0.11006296056800087, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498316629071267]}, {"top_radius": 0.06323604622584222, "bottom_radius": 0.04256050427991957, "length": 0.061613875416072154, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002835819681323, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164563599897173, "upper_button_position": 0.08382722197841508}], "rail_length": 5, "inclination": 83.8514681049963, "heading": 53.25443483631535} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350393334769848, "mass": 15.441145028590011, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312433077843358, "I_33_without_motor": 0.03616720907138673, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89080891898804, "trigger": 800, "sampling_rate": 105, "lag": 1.5798913788183402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.950191471679543, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6108729171036935, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7749.701602973477, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033571280767911695, "grain_number": 5, "grain_density": 1779.1927308193458, "grain_outer_radius": 0.033313840971494355, "grain_initial_inner_radius": 0.015129608952930872, "grain_initial_height": 0.11897939939971015, "grain_separation": 0.005580047065806512, "grains_center_of_mass_position": 0.39733415973871355, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019076545392167227, "throat_radius": 0.011718021501033068, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554741288935005}], "aerodynamic_surfaces": [{"length": 0.5591937051072026, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341107191272968]}, {"n": 4, "root_chord": 0.12060027133299495, "tip_chord": 0.060025337008932575, "span": 0.11037553327543481, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498420080051412]}, {"top_radius": 0.06506311569633053, "bottom_radius": 0.04349499177966761, "length": 0.059725773025075785, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700305567565728, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178988419563753, "upper_button_position": 0.0824067256093527}], "rail_length": 5, "inclination": 87.14232240204952, "heading": 55.91843294064443} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350225957004998, "mass": 15.702989491798602, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315929940697999, "I_33_without_motor": 0.0230019206485053, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.922324917408831, "trigger": 800, "sampling_rate": 105, "lag": 1.5671121626189324, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9889248201355407, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2418773586988578, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7001.089455330575, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278591252325871, "grain_number": 5, "grain_density": 1797.6313800102005, "grain_outer_radius": 0.03292557551979545, "grain_initial_inner_radius": 0.015557953428358397, "grain_initial_height": 0.12016810281871476, "grain_separation": 0.005090101663770694, "grains_center_of_mass_position": 0.3967579831789116, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00047795014493589466, "throat_radius": 0.010587704712483673, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254151464483682}], "aerodynamic_surfaces": [{"length": 0.5589305056883526, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338657969587014]}, {"n": 4, "root_chord": 0.11968585686069154, "tip_chord": 0.05949575651608177, "span": 0.11047035225703317, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498347617072203]}, {"top_radius": 0.06501554782759805, "bottom_radius": 0.04289115462514864, "length": 0.05945092456299102, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004331243791042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176041005869348, "upper_button_position": 0.08282902379216939}], "rail_length": 5, "inclination": 84.66735911271427, "heading": 54.63115314141285} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350913164140363, "mass": 15.922965196754566, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32294093638319, "I_33_without_motor": 0.028781533036371654, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86939647689671, "trigger": 800, "sampling_rate": 105, "lag": 1.5995406053404615, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0014189994976341, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3947547298983989, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6594.013672107476, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297299683097327, "grain_number": 5, "grain_density": 1803.4296208051928, "grain_outer_radius": 0.03295359804292689, "grain_initial_inner_radius": 0.015058812440691297, "grain_initial_height": 0.12189151294229499, "grain_separation": 0.004758934936584716, "grains_center_of_mass_position": 0.395395370927056, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013580786448939175, "throat_radius": 0.010924868218347348, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554002324199938}], "aerodynamic_surfaces": [{"length": 0.5586215008173777, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352252952144595]}, {"n": 4, "root_chord": 0.12024727412837914, "tip_chord": 0.06009382763912285, "span": 0.11035631757013252, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496831651566367]}, {"top_radius": 0.06319104742095699, "bottom_radius": 0.04382510038925556, "length": 0.06105124964378726, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7026535841551094, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183025602462533, "upper_button_position": 0.08435102390885607}], "rail_length": 5, "inclination": 84.61919932870762, "heading": 53.15133818434372} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349995674596311, "mass": 16.330497917467966, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3138547550906114, "I_33_without_motor": 0.03446513059324653, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022661817294846, "trigger": 800, "sampling_rate": 105, "lag": 1.516955108816153, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9516843334164902, "trigger": "apogee", "sampling_rate": 105, "lag": 1.775599491099839, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6851.123294484482, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032646289380978064, "grain_number": 5, "grain_density": 1807.8662430610145, "grain_outer_radius": 0.032886284915316595, "grain_initial_inner_radius": 0.01564099215906719, "grain_initial_height": 0.11958391698122384, "grain_separation": 0.005057007544468912, "grains_center_of_mass_position": 0.3966947397082772, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.879152731067356e-05, "throat_radius": 0.011184534118679253, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553203735910978}], "aerodynamic_surfaces": [{"length": 0.5589243859865896, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134363558087031]}, {"n": 4, "root_chord": 0.12024242897379261, "tip_chord": 0.06006603955194626, "span": 0.10936040338699092, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492213839671756]}, {"top_radius": 0.06464589216830306, "bottom_radius": 0.04151711813153293, "length": 0.05897997515486239, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991945144405973, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618097817379856, "upper_button_position": 0.0810966970607413}], "rail_length": 5, "inclination": 86.13328670552727, "heading": 50.76983989348535} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350275122711796, "mass": 15.968001508614604, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31884606738388, "I_33_without_motor": 0.03716762012385125, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.807894180906903, "trigger": 800, "sampling_rate": 105, "lag": 1.4706768187518642, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0274815800421797, "trigger": "apogee", "sampling_rate": 105, "lag": 1.418834756127225, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6928.367212418165, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329056237620102, "grain_number": 5, "grain_density": 1811.2492442924743, "grain_outer_radius": 0.032680762659534054, "grain_initial_inner_radius": 0.015071434115567243, "grain_initial_height": 0.11961382925343038, "grain_separation": 0.004769474425456319, "grains_center_of_mass_position": 0.4001894963404012, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011653082570880536, "throat_radius": 0.010779957408438855, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541131284778686}], "aerodynamic_surfaces": [{"length": 0.558834396554236, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342699269982766]}, {"n": 4, "root_chord": 0.12058096136931318, "tip_chord": 0.060259661111201485, "span": 0.11013622939984281, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050081134031826]}, {"top_radius": 0.06421112483364853, "bottom_radius": 0.04366172742627734, "length": 0.05855257658701598, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994728485572046, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166985376027524, "upper_button_position": 0.0827743109544522}], "rail_length": 5, "inclination": 84.74422946472406, "heading": 53.03130967260279} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349596454948961, "mass": 15.261558673730121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316347904756234, "I_33_without_motor": 0.05340458459293856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.948867725706231, "trigger": 800, "sampling_rate": 105, "lag": 1.409064436724464, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.075842477240277, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4981939121654435, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6660.315447137853, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341184234147035, "grain_number": 5, "grain_density": 1799.1589796649669, "grain_outer_radius": 0.03246687379524274, "grain_initial_inner_radius": 0.014780504323716153, "grain_initial_height": 0.11943955664309862, "grain_separation": 0.005679934058603198, "grains_center_of_mass_position": 0.39556898810969177, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031562898177496523, "throat_radius": 0.010729331096254789, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530556874375771}], "aerodynamic_surfaces": [{"length": 0.5585500188185902, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352747157287861]}, {"n": 4, "root_chord": 0.11966652377118234, "tip_chord": 0.0595541171749897, "span": 0.11020143467327015, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049166676820574]}, {"top_radius": 0.06220211982053571, "bottom_radius": 0.04425669806001894, "length": 0.058685231204005234, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994416313764087, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197086285137011, "upper_button_position": 0.07973300286270757}], "rail_length": 5, "inclination": 85.2746586704769, "heading": 53.98506249544418} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349716016957817, "mass": 15.256884285939915, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304217043834678, "I_33_without_motor": 0.032514305625141536, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86359621987397, "trigger": 800, "sampling_rate": 105, "lag": 1.6284757163965478, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9147775816294215, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5607890115472212, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6291.061812782216, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330012609632841, "grain_number": 5, "grain_density": 1806.705583310397, "grain_outer_radius": 0.03290892389751568, "grain_initial_inner_radius": 0.01473557984454775, "grain_initial_height": 0.11892582676538078, "grain_separation": 0.004185031590209345, "grains_center_of_mass_position": 0.3955283342943824, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007454346788269527, "throat_radius": 0.01035268636446977, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554275492704128}], "aerodynamic_surfaces": [{"length": 0.5551975135596574, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1321393398990598]}, {"n": 4, "root_chord": 0.12065096214368663, "tip_chord": 0.06098989333114975, "span": 0.10969908428981011, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511337260085902]}, {"top_radius": 0.06100753242025436, "bottom_radius": 0.04377483475258998, "length": 0.06082123211920481, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994651999454776, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174811991230812, "upper_button_position": 0.08198400082239643}], "rail_length": 5, "inclination": 86.00265164880906, "heading": 53.887193708423126} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350577430064423, "mass": 15.545095773135195, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3207662535503575, "I_33_without_motor": 0.027898211852439327, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.86914459704218, "trigger": 800, "sampling_rate": 105, "lag": 1.589630469120261, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8952064270588287, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6862239628324813, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6854.953190531061, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244390766660051, "grain_number": 5, "grain_density": 1758.1824031633969, "grain_outer_radius": 0.033383696283804, "grain_initial_inner_radius": 0.015199321424896085, "grain_initial_height": 0.11828381533007146, "grain_separation": 0.005675057519867403, "grains_center_of_mass_position": 0.3971422282283958, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015626205913455142, "throat_radius": 0.011223328782175098, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2578306363231968}], "aerodynamic_surfaces": [{"length": 0.5576447493791464, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134670136834683]}, {"n": 4, "root_chord": 0.11889844839554464, "tip_chord": 0.05950621437894057, "span": 0.11010085067747023, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481683507309194]}, {"top_radius": 0.06385748847838886, "bottom_radius": 0.042671447463947194, "length": 0.058380278952705, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992984328924459, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190851388466209, "upper_button_position": 0.080213294045825}], "rail_length": 5, "inclination": 84.22925516448171, "heading": 55.23211672190329} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350718397741494, "mass": 14.402494146946232, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321303076355459, "I_33_without_motor": 0.026946784909699106, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931417758795398, "trigger": 800, "sampling_rate": 105, "lag": 1.4747783917352075, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9826981322982787, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8009316832265192, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6864.789521365272, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327186586557346, "grain_number": 5, "grain_density": 1854.679850941053, "grain_outer_radius": 0.03269636899493316, "grain_initial_inner_radius": 0.01495387931931542, "grain_initial_height": 0.12095147268028256, "grain_separation": 0.005836368929617776, "grains_center_of_mass_position": 0.3983988036014758, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00038169609019600426, "throat_radius": 0.010962079650358747, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558793684731484}], "aerodynamic_surfaces": [{"length": 0.5594461070280318, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133787279360011]}, {"n": 4, "root_chord": 0.11987130315411779, "tip_chord": 0.06002805914751758, "span": 0.1106969164801281, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494371736290091]}, {"top_radius": 0.0634960629969537, "bottom_radius": 0.042481433401500984, "length": 0.06212745632950567, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997689744164334, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183545863563684, "upper_button_position": 0.08141438806006496}], "rail_length": 5, "inclination": 83.26526204406065, "heading": 50.07773433836076} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349733958561855, "mass": 15.028078731614821, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3126370087410875, "I_33_without_motor": 0.025516646085779443, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98568297302282, "trigger": 800, "sampling_rate": 105, "lag": 1.3569124609139078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0239260573289823, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5573006389498556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6271.093127655282, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033354299944919126, "grain_number": 5, "grain_density": 1779.8042624460977, "grain_outer_radius": 0.03272171604843204, "grain_initial_inner_radius": 0.01464651801776928, "grain_initial_height": 0.11962691201445357, "grain_separation": 0.004066101662995409, "grains_center_of_mass_position": 0.39585018052055726, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00222872862409669, "throat_radius": 0.010525068265172362, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543028656992785}], "aerodynamic_surfaces": [{"length": 0.5567025348347285, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339080017628562]}, {"n": 4, "root_chord": 0.12034227773632787, "tip_chord": 0.05997298379310785, "span": 0.1105774982335381, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048187105088268]}, {"top_radius": 0.06325377507472117, "bottom_radius": 0.04409357206709615, "length": 0.06093567908695828, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700635238628098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173204572384937, "upper_button_position": 0.08331478138960424}], "rail_length": 5, "inclination": 85.12444159649647, "heading": 52.635445794867415} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.0634938399619349, "mass": 15.132926046058635, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329600563469961, "I_33_without_motor": 0.03322200556441937, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.204043227389976, "trigger": 800, "sampling_rate": 105, "lag": 1.4728555450044982, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8343495317962931, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6361126565249597, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6735.616162455652, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03436972489063363, "grain_number": 5, "grain_density": 1866.840411939811, "grain_outer_radius": 0.033073697047144385, "grain_initial_inner_radius": 0.01479850740771508, "grain_initial_height": 0.12146746305042529, "grain_separation": 0.0038548501950465457, "grains_center_of_mass_position": 0.39726287427675794, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002024331252192594, "throat_radius": 0.011423353183501553, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566767404087358}], "aerodynamic_surfaces": [{"length": 0.5568038070883544, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330808728114552]}, {"n": 4, "root_chord": 0.11967911489177842, "tip_chord": 0.06029053241685819, "span": 0.11002852313325313, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484449676100869]}, {"top_radius": 0.06323136388989853, "bottom_radius": 0.043061772777195195, "length": 0.05944327075729096, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996142153707892, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168794671897627, "upper_button_position": 0.08273474818102644}], "rail_length": 5, "inclination": 85.02438789322531, "heading": 52.341182648618954} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350473481278962, "mass": 16.551497370312514, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326201543852278, "I_33_without_motor": 0.02715994829730995, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01968058813809, "trigger": 800, "sampling_rate": 105, "lag": 1.4237261239171735, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.905127313057177, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2564298851650688, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6489.587518816025, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326541621082754, "grain_number": 5, "grain_density": 1902.434780364372, "grain_outer_radius": 0.0326067801625586, "grain_initial_inner_radius": 0.014632637124401457, "grain_initial_height": 0.11942504009879674, "grain_separation": 0.003930358191650373, "grains_center_of_mass_position": 0.39595026018901613, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00038597477370249625, "throat_radius": 0.011045453775880147, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255702339839772}], "aerodynamic_surfaces": [{"length": 0.5578231653196466, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351720946830433]}, {"n": 4, "root_chord": 0.12034612546517545, "tip_chord": 0.060461747521807434, "span": 0.10996819692416522, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491694491551105]}, {"top_radius": 0.06389735468252088, "bottom_radius": 0.04450973994608798, "length": 0.06062822716339738, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001011255334932, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181920662025517, "upper_button_position": 0.0819090593309415}], "rail_length": 5, "inclination": 84.3717042277283, "heading": 52.727813525310985} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.0634897336110861, "mass": 15.124601712807145, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301867188218513, "I_33_without_motor": 0.043673757498572635, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.188570622210294, "trigger": 800, "sampling_rate": 105, "lag": 1.5241694918751787, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9604317422321627, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6028836871907821, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7396.624141958367, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282120490598221, "grain_number": 5, "grain_density": 1738.5410633737906, "grain_outer_radius": 0.03273392813201336, "grain_initial_inner_radius": 0.014730105493943246, "grain_initial_height": 0.12130307005723606, "grain_separation": 0.006733113628567615, "grains_center_of_mass_position": 0.3968172127033433, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00048334820422763234, "throat_radius": 0.010538815922424121, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564059675398933}], "aerodynamic_surfaces": [{"length": 0.5588388796672394, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334733521057987]}, {"n": 4, "root_chord": 0.11937027277759935, "tip_chord": 0.058958669920009074, "span": 0.11120101309318754, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492447123356028]}, {"top_radius": 0.06429676876067013, "bottom_radius": 0.04342761487808656, "length": 0.05931928934888955, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996401558615278, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163393300171076, "upper_button_position": 0.08330082584442022}], "rail_length": 5, "inclination": 86.97612535409286, "heading": 52.34891543104534} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06351117712062516, "mass": 15.90908089911925, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319103362688713, "I_33_without_motor": 0.043517974923963094, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037364417820582, "trigger": 800, "sampling_rate": 105, "lag": 1.280481600026096, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0183617739542214, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5183528683821137, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6519.464113905762, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03219822470694686, "grain_number": 5, "grain_density": 1863.2379850862474, "grain_outer_radius": 0.03304846149400047, "grain_initial_inner_radius": 0.015117778812233739, "grain_initial_height": 0.11956489374093668, "grain_separation": 0.004115242142552268, "grains_center_of_mass_position": 0.3980639280031668, "center_of_dry_mass_position": 0.317, "nozzle_position": -8.477452111968615e-05, "throat_radius": 0.012015886987227916, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549388732118512}], "aerodynamic_surfaces": [{"length": 0.5577683085637837, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133417920391093]}, {"n": 4, "root_chord": 0.12067781032563249, "tip_chord": 0.060228768565319765, "span": 0.11091966667505375, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500504494586687]}, {"top_radius": 0.06266256629229285, "bottom_radius": 0.04382199545956371, "length": 0.058161861682300704, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998012240810924, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177734011487853, "upper_button_position": 0.08202782293230704}], "rail_length": 5, "inclination": 86.32775495096429, "heading": 50.93904676428123} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350147738837833, "mass": 14.850511137253378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330430645115436, "I_33_without_motor": 0.0381390137396544, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.917761628031755, "trigger": 800, "sampling_rate": 105, "lag": 1.4361523885104877, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.963225651975554, "trigger": "apogee", "sampling_rate": 105, "lag": 1.590089337848886, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5728.907176664363, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330378310581716, "grain_number": 5, "grain_density": 1762.4448761902356, "grain_outer_radius": 0.032701368509208247, "grain_initial_inner_radius": 0.014697838798902248, "grain_initial_height": 0.12054928156037518, "grain_separation": 0.005760004839347773, "grains_center_of_mass_position": 0.39812537270222825, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015332139648519558, "throat_radius": 0.01110581801514393, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254471389143758}], "aerodynamic_surfaces": [{"length": 0.5572639970571014, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352220502058297]}, {"n": 4, "root_chord": 0.11998743426999968, "tip_chord": 0.06003390027718552, "span": 0.1098880972833268, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489929702484058]}, {"top_radius": 0.062378636742076166, "bottom_radius": 0.043320731100698444, "length": 0.06061287435147532, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995807340877322, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180806522413397, "upper_button_position": 0.08150008184639257}], "rail_length": 5, "inclination": 86.53448125267884, "heading": 54.05732289042754} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350239032675528, "mass": 15.227704131796925, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321582620877106, "I_33_without_motor": 0.04259039973068257, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.877622496673707, "trigger": 800, "sampling_rate": 105, "lag": 1.4562788825077804, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0707879554545108, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8333182646350368, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5589.813777841045, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032289619240920664, "grain_number": 5, "grain_density": 1772.0407723441294, "grain_outer_radius": 0.03278577085726356, "grain_initial_inner_radius": 0.015054691847601125, "grain_initial_height": 0.11904359094053624, "grain_separation": 0.005185086804000679, "grains_center_of_mass_position": 0.39823144396885723, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005140741751794365, "throat_radius": 0.010362696986306912, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556641177827026}], "aerodynamic_surfaces": [{"length": 0.5611880972216026, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348521802101337]}, {"n": 4, "root_chord": 0.12076652768965904, "tip_chord": 0.05958533164704662, "span": 0.11005090367867722, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0480962457170362]}, {"top_radius": 0.06293163308489948, "bottom_radius": 0.04315151150886523, "length": 0.060473003659221876, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995853829665071, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170148406854433, "upper_button_position": 0.08257054228106375}], "rail_length": 5, "inclination": 84.55646283342202, "heading": 52.75915742101804} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348728366807821, "mass": 16.15356652273927, "I_11_without_motor": 6.321, "I_22_without_motor": 6.301883992508211, "I_33_without_motor": 0.02209017175683505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00101518606945, "trigger": 800, "sampling_rate": 105, "lag": 1.449475291314057, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9320575301326244, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6076893813038615, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5911.75564598648, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03261766258044957, "grain_number": 5, "grain_density": 1846.2683589598178, "grain_outer_radius": 0.03275302338512543, "grain_initial_inner_radius": 0.015564534810355775, "grain_initial_height": 0.12059826896500311, "grain_separation": 0.005817630252706263, "grains_center_of_mass_position": 0.39580063460414533, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00016507276062242593, "throat_radius": 0.011338797673344534, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557161459170492}], "aerodynamic_surfaces": [{"length": 0.5582569624119584, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133767213343638]}, {"n": 4, "root_chord": 0.11934642337151531, "tip_chord": 0.059381127157661584, "span": 0.11027084548105197, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493636544987328]}, {"top_radius": 0.06411218052308768, "bottom_radius": 0.04431918135846226, "length": 0.06112268583548576, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001243953086909, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188435484791849, "upper_button_position": 0.08128084682950598}], "rail_length": 5, "inclination": 84.30946000370919, "heading": 50.91128545037676} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349730742504148, "mass": 15.210352005252686, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331872587533177, "I_33_without_motor": 0.04126393506582578, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989058484907384, "trigger": 800, "sampling_rate": 105, "lag": 1.3395630443218156, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0170694412693617, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4097638091748654, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6960.168728071478, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033609788569194034, "grain_number": 5, "grain_density": 1748.1151970781536, "grain_outer_radius": 0.03315982295461023, "grain_initial_inner_radius": 0.015212018989698027, "grain_initial_height": 0.12088706915967758, "grain_separation": 0.0053984436677739335, "grains_center_of_mass_position": 0.3960824134172168, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00044007902360466256, "throat_radius": 0.010746929500934477, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539178313552024}], "aerodynamic_surfaces": [{"length": 0.5563985540800827, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344727952656464]}, {"n": 4, "root_chord": 0.12050359477495255, "tip_chord": 0.059973920142000675, "span": 0.10958995827180368, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497463854839522]}, {"top_radius": 0.06470469480497214, "bottom_radius": 0.043249250245152186, "length": 0.06198602602196578, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698126721733179, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182887061906146, "upper_button_position": 0.07983801554256442}], "rail_length": 5, "inclination": 85.65331396531454, "heading": 50.347692822592954} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.0634995541025053, "mass": 15.86947287812827, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331930212966853, "I_33_without_motor": 0.04173097431752325, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932643881747666, "trigger": 800, "sampling_rate": 105, "lag": 1.4563480323426656, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9136571964768818, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4769433286396476, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6717.178344873726, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295566179728751, "grain_number": 5, "grain_density": 1733.4395778426663, "grain_outer_radius": 0.03271917779091661, "grain_initial_inner_radius": 0.015155102433695392, "grain_initial_height": 0.1186978117590049, "grain_separation": 0.005551936129426469, "grains_center_of_mass_position": 0.39648097220056344, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009789534360674507, "throat_radius": 0.010375216295126208, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551323214466041}], "aerodynamic_surfaces": [{"length": 0.557790013878355, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336619790156526]}, {"n": 4, "root_chord": 0.11978459575387596, "tip_chord": 0.060380643678781466, "span": 0.10991833580988944, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486258058877929]}, {"top_radius": 0.06303178855225808, "bottom_radius": 0.044205190098015275, "length": 0.05815764139207793, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699077630893941, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189955591540843, "upper_button_position": 0.08008207173985671}], "rail_length": 5, "inclination": 86.13168482727558, "heading": 50.90766686590429} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0634979036615635, "mass": 15.041406998674269, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325921096358268, "I_33_without_motor": 0.03648929659775437, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.183799562595087, "trigger": 800, "sampling_rate": 105, "lag": 1.545785318795982, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.052105830096116, "trigger": "apogee", "sampling_rate": 105, "lag": 1.917669638005245, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5295.87568024074, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033619918191297844, "grain_number": 5, "grain_density": 1786.0150952310673, "grain_outer_radius": 0.0338267359570322, "grain_initial_inner_radius": 0.014243665975056639, "grain_initial_height": 0.11940285573665967, "grain_separation": 0.0043300392860347045, "grains_center_of_mass_position": 0.3966644920195455, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0027554677752782693, "throat_radius": 0.010886209874371408, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253359944242864}], "aerodynamic_surfaces": [{"length": 0.5598518275415116, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343824401263887]}, {"n": 4, "root_chord": 0.12027369417446002, "tip_chord": 0.06001845693881283, "span": 0.11103006501161304, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050077054516051]}, {"top_radius": 0.0633465781556898, "bottom_radius": 0.04306151453686412, "length": 0.05994458573005785, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015341985369908, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617610619371008, "upper_button_position": 0.08392357916598281}], "rail_length": 5, "inclination": 84.04055885975625, "heading": 54.556981834971054} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06348702091089381, "mass": 15.381372795122102, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313920944448642, "I_33_without_motor": 0.04040252457172093, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.847379686130324, "trigger": 800, "sampling_rate": 105, "lag": 1.4331973234565163, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0108542805931018, "trigger": "apogee", "sampling_rate": 105, "lag": 1.40381759863402, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6021.997794434472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033792081448467653, "grain_number": 5, "grain_density": 1897.2948878845343, "grain_outer_radius": 0.032435084075390946, "grain_initial_inner_radius": 0.01511408564110814, "grain_initial_height": 0.11964898542775221, "grain_separation": 0.004477143035902445, "grains_center_of_mass_position": 0.3974711122371625, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039025782203530807, "throat_radius": 0.010618802098071367, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562030892445784}], "aerodynamic_surfaces": [{"length": 0.5590513725663573, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333232348591917]}, {"n": 4, "root_chord": 0.1195782311258582, "tip_chord": 0.060748154864355274, "span": 0.10987638754977917, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506592394092082]}, {"top_radius": 0.06452968880726762, "bottom_radius": 0.04517042237266776, "length": 0.06039402302879488, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994806764739233, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178244525573835, "upper_button_position": 0.08165622391653982}], "rail_length": 5, "inclination": 84.08285248714691, "heading": 54.77644322039434} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.063491046878265, "mass": 15.712011341976675, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335611404751395, "I_33_without_motor": 0.040440241683381555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9415641625638, "trigger": 800, "sampling_rate": 105, "lag": 1.5581853003207238, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.000727584328946, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6452523773220455, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8838.24432613386, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033343387509563616, "grain_number": 5, "grain_density": 1795.573620528095, "grain_outer_radius": 0.032628350145590804, "grain_initial_inner_radius": 0.014404287597554799, "grain_initial_height": 0.12136936176366027, "grain_separation": 0.00424680428654867, "grains_center_of_mass_position": 0.39572190838571153, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037494814815928107, "throat_radius": 0.011354630350980334, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530877230673596}], "aerodynamic_surfaces": [{"length": 0.5588569854837128, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333701862104166]}, {"n": 4, "root_chord": 0.11938618441391897, "tip_chord": 0.06143859718684193, "span": 0.10991929438241191, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495469587142858]}, {"top_radius": 0.06231108086399106, "bottom_radius": 0.04527450420529361, "length": 0.060922135794528334, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002131359734202, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172371682806124, "upper_button_position": 0.0829759676928078}], "rail_length": 5, "inclination": 85.29741066384543, "heading": 50.48956813056718} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349540847877008, "mass": 16.354322170547338, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322504658041007, "I_33_without_motor": 0.052917206307531786, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0721133288098, "trigger": 800, "sampling_rate": 105, "lag": 1.3285444376652058, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0017417025218738, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4272989626961914, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5846.920693391898, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03391172579942831, "grain_number": 5, "grain_density": 1800.225745824605, "grain_outer_radius": 0.03293420739398429, "grain_initial_inner_radius": 0.014953485211599856, "grain_initial_height": 0.11919574504865778, "grain_separation": 0.006564094904647851, "grains_center_of_mass_position": 0.39573394935391193, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000869954331587416, "throat_radius": 0.010819980614187751, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544142584142859}], "aerodynamic_surfaces": [{"length": 0.5577514339910253, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347506875898394]}, {"n": 4, "root_chord": 0.12057068005402706, "tip_chord": 0.06007279177243443, "span": 0.11060599915763082, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492120553950983]}, {"top_radius": 0.06562924719325357, "bottom_radius": 0.043518812438156196, "length": 0.05906323484535075, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010475706382742, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185868552214896, "upper_button_position": 0.08246071541678457}], "rail_length": 5, "inclination": 85.6562933926958, "heading": 55.55053466360279} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349291458132326, "mass": 16.044644617150936, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312941904995484, "I_33_without_motor": 0.043582583135012204, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.794988432701846, "trigger": 800, "sampling_rate": 105, "lag": 1.4005463198948465, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9824789897904037, "trigger": "apogee", "sampling_rate": 105, "lag": 1.477574444190334, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6484.670692156942, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03380566406455661, "grain_number": 5, "grain_density": 1797.3591228672335, "grain_outer_radius": 0.03280694763032175, "grain_initial_inner_radius": 0.015396756902685344, "grain_initial_height": 0.12092363332211518, "grain_separation": 0.005090668346460789, "grains_center_of_mass_position": 0.39696341102573884, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000931674979366271, "throat_radius": 0.010414513865860677, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554984518632113}], "aerodynamic_surfaces": [{"length": 0.5576613720270905, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133069053800909]}, {"n": 4, "root_chord": 0.11946970860638241, "tip_chord": 0.06024243915241102, "span": 0.10986349468175266, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049382292872039]}, {"top_radius": 0.063797994640722, "bottom_radius": 0.04238964921845307, "length": 0.06296093457466727, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989993351316437, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177296713820773, "upper_button_position": 0.08126966374956635}], "rail_length": 5, "inclination": 85.42833115102937, "heading": 56.260170495690325} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349387134335059, "mass": 15.450111400535308, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303790088963249, "I_33_without_motor": 0.044884170333992265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974308752817954, "trigger": 800, "sampling_rate": 105, "lag": 1.5643154686381002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9568150893314384, "trigger": "apogee", "sampling_rate": 105, "lag": 1.676348606797132, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6719.768267048346, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220315117314123, "grain_number": 5, "grain_density": 1774.8083351591965, "grain_outer_radius": 0.03263023076378135, "grain_initial_inner_radius": 0.014961379431837724, "grain_initial_height": 0.11969305385580038, "grain_separation": 0.004862642145570147, "grains_center_of_mass_position": 0.39830155838285264, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00032248948999582773, "throat_radius": 0.010705037970884066, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563718768915824}], "aerodynamic_surfaces": [{"length": 0.5592240457355938, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1316792861418095]}, {"n": 4, "root_chord": 0.12002754020501386, "tip_chord": 0.060528969378713535, "span": 0.11019141251394032, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488081834115284]}, {"top_radius": 0.06354342720775366, "bottom_radius": 0.045144377412384085, "length": 0.057687595396751334, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997490267653876, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190190442908141, "upper_button_position": 0.08072998247457353}], "rail_length": 5, "inclination": 83.18013945683842, "heading": 54.45638498392191} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349045468803378, "mass": 15.458748658539243, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33033717029756, "I_33_without_motor": 0.0397426076340062, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92177398315419, "trigger": 800, "sampling_rate": 105, "lag": 1.4778843344553794, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9795575058680437, "trigger": "apogee", "sampling_rate": 105, "lag": 1.229258783654068, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7173.644188446136, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032856212557724584, "grain_number": 5, "grain_density": 1793.3014755685615, "grain_outer_radius": 0.0327308559464785, "grain_initial_inner_radius": 0.014854153554935407, "grain_initial_height": 0.11908607188915138, "grain_separation": 0.0038669496778751563, "grains_center_of_mass_position": 0.3973464732633844, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.291511831627138e-06, "throat_radius": 0.011298541966915238, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562403589942888}], "aerodynamic_surfaces": [{"length": 0.5574142811885847, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328387722536273]}, {"n": 4, "root_chord": 0.12006777607561499, "tip_chord": 0.05933459716645191, "span": 0.10987528322863394, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508000805658564]}, {"top_radius": 0.0634025555199897, "bottom_radius": 0.044399827519490655, "length": 0.06012544815764517, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010137637890445, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176696926187686, "upper_button_position": 0.08334407117027587}], "rail_length": 5, "inclination": 84.28717516722354, "heading": 53.13313784763674} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349993343960572, "mass": 16.03215284431091, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3205041326805995, "I_33_without_motor": 0.04142160842742697, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939904588267357, "trigger": 800, "sampling_rate": 105, "lag": 1.5282807053693332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0025427759228906, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3354368986438956, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7281.018241270794, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359797663098547, "grain_number": 5, "grain_density": 1839.5906242179879, "grain_outer_radius": 0.032766736704952504, "grain_initial_inner_radius": 0.014757295936741873, "grain_initial_height": 0.11891969400534846, "grain_separation": 0.006095303645356367, "grains_center_of_mass_position": 0.39648148030760194, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004986447280869175, "throat_radius": 0.012407822509016985, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560831129074193}], "aerodynamic_surfaces": [{"length": 0.557784176030139, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355429663341894]}, {"n": 4, "root_chord": 0.11929782975071682, "tip_chord": 0.06132763772404811, "span": 0.10963839999468071, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049037574393745]}, {"top_radius": 0.061427521941497046, "bottom_radius": 0.04365318763507636, "length": 0.05946803219513479, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006645347952397, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618608031936672, "upper_button_position": 0.08205650285856769}], "rail_length": 5, "inclination": 85.97963947500054, "heading": 53.15223713002957} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349370892979556, "mass": 15.605044145130684, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315565561497404, "I_33_without_motor": 0.03311295076985746, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977804663947584, "trigger": 800, "sampling_rate": 105, "lag": 1.579266744346664, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9947015992017187, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3227641931855258, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6298.8204255574265, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278395180136261, "grain_number": 5, "grain_density": 1904.4505141309173, "grain_outer_radius": 0.032972333427805346, "grain_initial_inner_radius": 0.015285664601115372, "grain_initial_height": 0.12011578267528542, "grain_separation": 0.007224659922347174, "grains_center_of_mass_position": 0.39726177526661427, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010073443572465091, "throat_radius": 0.011131550727642645, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532063369199873}], "aerodynamic_surfaces": [{"length": 0.5592512051418135, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339017566616167]}, {"n": 4, "root_chord": 0.1205221129397401, "tip_chord": 0.06044066058932487, "span": 0.11041246880644551, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482035506692187]}, {"top_radius": 0.06517392585240263, "bottom_radius": 0.044452234334425515, "length": 0.06068952028228173, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006968616932074, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619090284041538, "upper_button_position": 0.08160657765166945}], "rail_length": 5, "inclination": 84.43375154099475, "heading": 53.554827996102} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349640360889297, "mass": 16.08423928840624, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313228306465402, "I_33_without_motor": 0.03592031341929391, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04342293673876, "trigger": 800, "sampling_rate": 105, "lag": 1.5240646145595433, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9946399277157629, "trigger": "apogee", "sampling_rate": 105, "lag": 1.812872442454861, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7161.17611342927, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0329318744896443, "grain_number": 5, "grain_density": 1775.274007489387, "grain_outer_radius": 0.03319486429812904, "grain_initial_inner_radius": 0.015402998808604866, "grain_initial_height": 0.12048813309602138, "grain_separation": 0.0056092161737687305, "grains_center_of_mass_position": 0.3969802166359618, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.972340691317441e-05, "throat_radius": 0.010544858577360237, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254943481705753}], "aerodynamic_surfaces": [{"length": 0.5582634067165217, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327328337258888]}, {"n": 4, "root_chord": 0.11987149666637628, "tip_chord": 0.06052100062961526, "span": 0.11163560205573986, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0477805406679905]}, {"top_radius": 0.06459619927834613, "bottom_radius": 0.04285794563026598, "length": 0.05978924094856978, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993465375422598, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181529034761959, "upper_button_position": 0.08119363406606395}], "rail_length": 5, "inclination": 84.10484871648111, "heading": 56.562719345318186} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350397730473599, "mass": 15.770516994101577, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311246600090954, "I_33_without_motor": 0.02141787188280192, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.145401152576754, "trigger": 800, "sampling_rate": 105, "lag": 1.7497840312912596, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0672990223368095, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6436297750927273, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5707.932584213341, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033253915419208864, "grain_number": 5, "grain_density": 1842.1404972219375, "grain_outer_radius": 0.032635589809821765, "grain_initial_inner_radius": 0.015390220486407985, "grain_initial_height": 0.12056401141502725, "grain_separation": 0.004491898274204591, "grains_center_of_mass_position": 0.39800068539763245, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00014174149913148717, "throat_radius": 0.01163810017122606, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553858886832419}], "aerodynamic_surfaces": [{"length": 0.5580088498823765, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354257538132244]}, {"n": 4, "root_chord": 0.12036907152662117, "tip_chord": 0.059412246722975286, "span": 0.1093986934087864, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500080918053072]}, {"top_radius": 0.06081288136316515, "bottom_radius": 0.041707080456801056, "length": 0.059420541711326165, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007276483726144, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176022956015882, "upper_button_position": 0.08312535277102617}], "rail_length": 5, "inclination": 83.9735846624844, "heading": 54.58790835944139} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350514654623513, "mass": 15.172253415270278, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306407771915496, "I_33_without_motor": 0.023818595414407756, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.863381959028015, "trigger": 800, "sampling_rate": 105, "lag": 1.520195587613959, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0690506912720934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5428656140553363, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6901.672136556784, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032176385488669045, "grain_number": 5, "grain_density": 1741.5615117229697, "grain_outer_radius": 0.03225648484820012, "grain_initial_inner_radius": 0.014698455464958913, "grain_initial_height": 0.11893410334897168, "grain_separation": 0.005339979157136137, "grains_center_of_mass_position": 0.3978141538653516, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001165912589834285, "throat_radius": 0.010772803778396314, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539012321080467}], "aerodynamic_surfaces": [{"length": 0.5592608400364238, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134458399356684]}, {"n": 4, "root_chord": 0.11929456519577952, "tip_chord": 0.059633774625553096, "span": 0.1098166920653552, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511039642096631]}, {"top_radius": 0.06370708013372349, "bottom_radius": 0.04432328119544045, "length": 0.05973547493467684, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013695064344425, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179362533644365, "upper_button_position": 0.08343325307000604}], "rail_length": 5, "inclination": 85.43850447007102, "heading": 50.44313297306912} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350541545102636, "mass": 15.950714458909335, "I_11_without_motor": 6.321, "I_22_without_motor": 6.346494475943722, "I_33_without_motor": 0.04882586194080532, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037466430516751, "trigger": 800, "sampling_rate": 105, "lag": 1.4826792943492983, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1296273385669175, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6932028624936777, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6280.128915193343, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0334980126709267, "grain_number": 5, "grain_density": 1813.5964106906079, "grain_outer_radius": 0.032847930851850546, "grain_initial_inner_radius": 0.01536117558622685, "grain_initial_height": 0.12023402768079017, "grain_separation": 0.005139646819449555, "grains_center_of_mass_position": 0.3955701384541711, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.8016509038923153e-05, "throat_radius": 0.011088725442170728, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566676735525022}], "aerodynamic_surfaces": [{"length": 0.5594964652477102, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338074247319545]}, {"n": 4, "root_chord": 0.11990197633373466, "tip_chord": 0.06032276858957969, "span": 0.11001061148645261, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492151429837613]}, {"top_radius": 0.0637396395456367, "bottom_radius": 0.04270298358238237, "length": 0.059125409190021294, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988798437066381, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162174318013064, "upper_button_position": 0.08266241190533175}], "rail_length": 5, "inclination": 84.523830736843, "heading": 52.01166726743007} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350207582300336, "mass": 15.235632210845207, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328641203867235, "I_33_without_motor": 0.021131996243143, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979563682187248, "trigger": 800, "sampling_rate": 105, "lag": 1.4156285451082316, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9268123257744738, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6104013339396024, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4601.32513461878, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328812395458483, "grain_number": 5, "grain_density": 1769.982831052249, "grain_outer_radius": 0.03321987723826095, "grain_initial_inner_radius": 0.015547020638296508, "grain_initial_height": 0.11865676620722623, "grain_separation": 0.004568712808511561, "grains_center_of_mass_position": 0.3974932730288825, "center_of_dry_mass_position": 0.317, "nozzle_position": 1.8878795073718066e-06, "throat_radius": 0.010023811960906874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539924422370758}], "aerodynamic_surfaces": [{"length": 0.5587261790965633, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133692481066567]}, {"n": 4, "root_chord": 0.11992711435080264, "tip_chord": 0.06038747480743502, "span": 0.11084053590660889, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0480539853210262]}, {"top_radius": 0.06361843659802383, "bottom_radius": 0.04303974477210041, "length": 0.05973453226870815, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7017747532322826, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198349567014505, "upper_button_position": 0.08193979653083205}], "rail_length": 5, "inclination": 86.74069267248218, "heading": 50.302769749933624} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350163948919886, "mass": 15.32243697789345, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324469997672251, "I_33_without_motor": 0.03714643830643057, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.981955404582726, "trigger": 800, "sampling_rate": 105, "lag": 1.4549464838930084, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9151600347267219, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4171076324914014, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6082.758030810147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331268699196765, "grain_number": 5, "grain_density": 1732.6822667995052, "grain_outer_radius": 0.03320632420814196, "grain_initial_inner_radius": 0.015073050531920104, "grain_initial_height": 0.12061467929766613, "grain_separation": 0.004255796221842118, "grains_center_of_mass_position": 0.3979294596189428, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002132981162574354, "throat_radius": 0.01063319053228085, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564811528530822}], "aerodynamic_surfaces": [{"length": 0.5596055384030623, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357681714455357]}, {"n": 4, "root_chord": 0.12095789963200447, "tip_chord": 0.05963389386934815, "span": 0.11047620401236034, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050292844558104]}, {"top_radius": 0.06459050030257472, "bottom_radius": 0.04565136268621771, "length": 0.059509959729977684, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996438455885031, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162075766735046, "upper_button_position": 0.08343626891499856}], "rail_length": 5, "inclination": 84.47981153648126, "heading": 54.24114398517818} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348915550989909, "mass": 15.505238043152024, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300916621922819, "I_33_without_motor": 0.035001443173892935, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.086345010099262, "trigger": 800, "sampling_rate": 105, "lag": 1.4526427223164309, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0083116943297818, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2000243099529435, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5618.293579616575, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297158125761795, "grain_number": 5, "grain_density": 1816.1987560549749, "grain_outer_radius": 0.03310569982182475, "grain_initial_inner_radius": 0.014350824510534618, "grain_initial_height": 0.11978304791711528, "grain_separation": 0.004220200805966571, "grains_center_of_mass_position": 0.3973791585295384, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00022371753194026756, "throat_radius": 0.010231110962148151, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540262393483341}], "aerodynamic_surfaces": [{"length": 0.5586065247953644, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330958374833262]}, {"n": 4, "root_chord": 0.12061515851870422, "tip_chord": 0.06019169759099843, "span": 0.10948354604554739, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049819209877653]}, {"top_radius": 0.06372041962746876, "bottom_radius": 0.04393562263060945, "length": 0.05909714651937593, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004347828981187, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186832099133684, "upper_button_position": 0.08175157298475022}], "rail_length": 5, "inclination": 85.34554918893943, "heading": 57.0999081321321} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350232151914782, "mass": 14.558532313640626, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322817071323329, "I_33_without_motor": 0.04699524231602277, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02646731119638, "trigger": 800, "sampling_rate": 105, "lag": 1.5808120833856676, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0413224188620425, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6533122891909473, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6151.516052453472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315303259791577, "grain_number": 5, "grain_density": 1856.7577268126809, "grain_outer_radius": 0.033448613042227016, "grain_initial_inner_radius": 0.015138685909396732, "grain_initial_height": 0.11839834361175164, "grain_separation": 0.005370792032429637, "grains_center_of_mass_position": 0.39894001199926693, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006142703332293944, "throat_radius": 0.011340681944482614, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548730445350593}], "aerodynamic_surfaces": [{"length": 0.5571061345250103, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346285041406292]}, {"n": 4, "root_chord": 0.11954663382924363, "tip_chord": 0.0589250784418282, "span": 0.1098305611429875, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050050522903333]}, {"top_radius": 0.0649333969877983, "bottom_radius": 0.04343725380463902, "length": 0.05820160376958232, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997067532858154, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171258139594372, "upper_button_position": 0.08258093932637822}], "rail_length": 5, "inclination": 83.51925415964185, "heading": 53.5648340368212} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.0634979139089766, "mass": 15.694839996068636, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313872247348113, "I_33_without_motor": 0.03622719791039111, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034910127306741, "trigger": 800, "sampling_rate": 105, "lag": 1.827866218579354, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0941492664660069, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7674643713048912, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7803.81112329242, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03240568622291671, "grain_number": 5, "grain_density": 1770.5491120212077, "grain_outer_radius": 0.03359885357519842, "grain_initial_inner_radius": 0.014537693365099837, "grain_initial_height": 0.11974564093751232, "grain_separation": 0.005798739353650393, "grains_center_of_mass_position": 0.39909703804006375, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013021950373375277, "throat_radius": 0.011488095801330445, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534087968457195}], "aerodynamic_surfaces": [{"length": 0.5583499975351928, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336954504106647]}, {"n": 4, "root_chord": 0.12046807552802166, "tip_chord": 0.05969750000338692, "span": 0.10858003385705675, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0513286765260268]}, {"top_radius": 0.064313088572258, "bottom_radius": 0.046271686638215646, "length": 0.06064943756854538, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009043632880639, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173932621453146, "upper_button_position": 0.08351110114274929}], "rail_length": 5, "inclination": 86.86374079717366, "heading": 52.04243757147916} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349390002747936, "mass": 15.610171438059337, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338257834223158, "I_33_without_motor": 0.03049750753955611, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.899285878525514, "trigger": 800, "sampling_rate": 105, "lag": 1.46098041102981, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0352132275785917, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6102734237695249, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7260.887349202126, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323935105758123, "grain_number": 5, "grain_density": 1851.362101222271, "grain_outer_radius": 0.0331330570426344, "grain_initial_inner_radius": 0.014683436197101562, "grain_initial_height": 0.12156491473879139, "grain_separation": 0.003531453515386698, "grains_center_of_mass_position": 0.3966887713499749, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012063203214892212, "throat_radius": 0.010800680524639521, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557398578855115}], "aerodynamic_surfaces": [{"length": 0.557324348412083, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341373807717248]}, {"n": 4, "root_chord": 0.12081331884786686, "tip_chord": 0.06071319749347289, "span": 0.10960895880136431, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503090634576278]}, {"top_radius": 0.06490433592626002, "bottom_radius": 0.04274171397386626, "length": 0.05868724863262, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001642995518372, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186305570659922, "upper_button_position": 0.081533742485845}], "rail_length": 5, "inclination": 84.53362759101029, "heading": 52.53746907661524} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350911941128103, "mass": 16.000753363783385, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323191721826396, "I_33_without_motor": 0.024982356530176063, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10658685844588, "trigger": 800, "sampling_rate": 105, "lag": 1.559424144061555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9391970709678115, "trigger": "apogee", "sampling_rate": 105, "lag": 1.302109253460699, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6192.621120754006, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03253500772902649, "grain_number": 5, "grain_density": 1881.0222852069337, "grain_outer_radius": 0.033208043800258005, "grain_initial_inner_radius": 0.014848493652525632, "grain_initial_height": 0.11961853424154802, "grain_separation": 0.006115516221186586, "grains_center_of_mass_position": 0.39482195970588113, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010638004941693614, "throat_radius": 0.011244838537007872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559882295328872}], "aerodynamic_surfaces": [{"length": 0.5570340573218558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133629110434731]}, {"n": 4, "root_chord": 0.12069060075973773, "tip_chord": 0.060047854604301766, "span": 0.11037608898808535, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494062505524335]}, {"top_radius": 0.06362372399155608, "bottom_radius": 0.04300127364586044, "length": 0.06013445945506936, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.697879085198396, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173720210867644, "upper_button_position": 0.08050706411163167}], "rail_length": 5, "inclination": 84.57797208782013, "heading": 51.27048334617227} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350278806808063, "mass": 15.781919293976946, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327971803179335, "I_33_without_motor": 0.028440679192305064, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021447176710227, "trigger": 800, "sampling_rate": 105, "lag": 1.4546537286953614, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0969897003127844, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5099886983721533, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6626.466942330904, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03232858488337488, "grain_number": 5, "grain_density": 1860.5062339481303, "grain_outer_radius": 0.03328165721089245, "grain_initial_inner_radius": 0.015216746394241063, "grain_initial_height": 0.12005154224300232, "grain_separation": 0.00477855709363867, "grains_center_of_mass_position": 0.3970959057106981, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011534510854213208, "throat_radius": 0.010818657831573361, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254529499123051}], "aerodynamic_surfaces": [{"length": 0.5582059701536265, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336557852732185]}, {"n": 4, "root_chord": 0.12094487223499467, "tip_chord": 0.05941817503104297, "span": 0.10925929795448058, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489431167750745]}, {"top_radius": 0.06258081971281951, "bottom_radius": 0.043121462523144076, "length": 0.059424666741975406, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992974435778666, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167264182384575, "upper_button_position": 0.08257102533940908}], "rail_length": 5, "inclination": 84.63932596579151, "heading": 53.81517899227214} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349278032914625, "mass": 16.01406733656561, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31550280133437, "I_33_without_motor": 0.044468054783416304, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963018083654909, "trigger": 800, "sampling_rate": 105, "lag": 1.5316419076777834, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9257705225260582, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6451631941988538, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5165.121864161163, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034274727911704744, "grain_number": 5, "grain_density": 1829.5420154646101, "grain_outer_radius": 0.03327677953195817, "grain_initial_inner_radius": 0.015356641652098435, "grain_initial_height": 0.12165915257400987, "grain_separation": 0.004808984897977957, "grains_center_of_mass_position": 0.3977233018801605, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006862300389960489, "throat_radius": 0.010533241414937312, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253164711757241}], "aerodynamic_surfaces": [{"length": 0.5568362693838261, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134725790364704]}, {"n": 4, "root_chord": 0.12012574410849162, "tip_chord": 0.060026030417358794, "span": 0.10992894614614264, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478602432766202]}, {"top_radius": 0.06530735127080262, "bottom_radius": 0.041569048573368586, "length": 0.05991104422652364, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993925088033396, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174042500677276, "upper_button_position": 0.081988258735612}], "rail_length": 5, "inclination": 84.85226116823307, "heading": 51.873899536218815} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349990711775057, "mass": 15.499538845534895, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340219817165753, "I_33_without_motor": 0.025699150279306714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.061682400905754, "trigger": 800, "sampling_rate": 105, "lag": 1.5023478383758695, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0134317939834672, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4347826065951346, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6824.844162979769, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331573892430499, "grain_number": 5, "grain_density": 1852.3692436266801, "grain_outer_radius": 0.033402584882555965, "grain_initial_inner_radius": 0.014321268732480208, "grain_initial_height": 0.1196450824449893, "grain_separation": 0.004603350201639587, "grains_center_of_mass_position": 0.39662559172021883, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016913243446040748, "throat_radius": 0.010593095683425377, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547515906429885}], "aerodynamic_surfaces": [{"length": 0.5577668725501688, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332008375466118]}, {"n": 4, "root_chord": 0.11982847831687195, "tip_chord": 0.06108900190451369, "span": 0.10973848011860392, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493800440125574]}, {"top_radius": 0.06247714539427995, "bottom_radius": 0.041737244375382045, "length": 0.0590499244056065, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002470908122103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192826143559301, "upper_button_position": 0.08096447645628013}], "rail_length": 5, "inclination": 84.20733630877703, "heading": 49.70157616787367} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06348403176081756, "mass": 14.66097262261521, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319763440017889, "I_33_without_motor": 0.03549131633104404, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956067327537173, "trigger": 800, "sampling_rate": 105, "lag": 1.3387159941106574, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0839744800515998, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3619231687963065, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6175.18719897039, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304746982054488, "grain_number": 5, "grain_density": 1783.0793437727948, "grain_outer_radius": 0.033479187340321306, "grain_initial_inner_radius": 0.014477994349369487, "grain_initial_height": 0.11951346873584563, "grain_separation": 0.00554245635652461, "grains_center_of_mass_position": 0.396979066677312, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001592730087138205, "throat_radius": 0.010327951600478023, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541589909442068}], "aerodynamic_surfaces": [{"length": 0.5588786803454926, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347461733903699]}, {"n": 4, "root_chord": 0.11952152806800559, "tip_chord": 0.06019526824628401, "span": 0.11081547633832828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490573895267077]}, {"top_radius": 0.06373045708588619, "bottom_radius": 0.044445454403350126, "length": 0.06135618820014619, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.697556327833026, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61694234836847, "upper_button_position": 0.08061397946455606}], "rail_length": 5, "inclination": 83.09565246443587, "heading": 50.71635930033462} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350405309379457, "mass": 14.021188372859472, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3238492404184425, "I_33_without_motor": 0.026817502613723048, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040604446256689, "trigger": 800, "sampling_rate": 105, "lag": 1.4979625807897359, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0551825964821027, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4578966036327652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6822.3678710459135, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03257493009873369, "grain_number": 5, "grain_density": 1796.6787973774433, "grain_outer_radius": 0.033352336830417155, "grain_initial_inner_radius": 0.0146428475079172, "grain_initial_height": 0.11794716639787539, "grain_separation": 0.005003832896900881, "grains_center_of_mass_position": 0.3947968586828255, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007060238332981014, "throat_radius": 0.010957741760786838, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552751160895421}], "aerodynamic_surfaces": [{"length": 0.5579160288722468, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133076805212245]}, {"n": 4, "root_chord": 0.12061456421372409, "tip_chord": 0.0612411594149841, "span": 0.10933855969984413, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047612331146318]}, {"top_radius": 0.0625241114229528, "bottom_radius": 0.044341035292935704, "length": 0.06166103938181631, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000582538808227, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171675474922917, "upper_button_position": 0.08289070638853091}], "rail_length": 5, "inclination": 84.08871697782557, "heading": 53.17573094462406} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350243086378313, "mass": 15.003194451811712, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333917807700289, "I_33_without_motor": 0.02905880114495931, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971100137032805, "trigger": 800, "sampling_rate": 105, "lag": 1.4472734897176571, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.035730634853753, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2058479890710732, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5893.664146723746, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03233139607110004, "grain_number": 5, "grain_density": 1821.6165224211347, "grain_outer_radius": 0.03303046312123007, "grain_initial_inner_radius": 0.014830945433216502, "grain_initial_height": 0.120078734302408, "grain_separation": 0.004187860137670477, "grains_center_of_mass_position": 0.397595401055552, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005230794588166352, "throat_radius": 0.010882036328025242, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533090234396687}], "aerodynamic_surfaces": [{"length": 0.5585490353009773, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135306595086932]}, {"n": 4, "root_chord": 0.12002012781167329, "tip_chord": 0.06134476107287724, "span": 0.11054766836340728, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050216236924271]}, {"top_radius": 0.06363232375640678, "bottom_radius": 0.043699663585201574, "length": 0.059005218898860186, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989745963069488, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183959511120186, "upper_button_position": 0.08057864519493019}], "rail_length": 5, "inclination": 85.32913098376173, "heading": 53.79632838257104} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349438229417584, "mass": 14.759823256332872, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323517748483988, "I_33_without_motor": 0.038805311224681935, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038403650231578, "trigger": 800, "sampling_rate": 105, "lag": 1.4257945681710695, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0080387144871334, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3941032317832092, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6418.412911013967, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366224817983232, "grain_number": 5, "grain_density": 1911.1424042949202, "grain_outer_radius": 0.03299806140625038, "grain_initial_inner_radius": 0.015393335056901644, "grain_initial_height": 0.12017485503233266, "grain_separation": 0.004235345080052388, "grains_center_of_mass_position": 0.3969468083643499, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.619160780778696e-05, "throat_radius": 0.01152850785344456, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552459089596624}], "aerodynamic_surfaces": [{"length": 0.5594777703435132, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350837218555387]}, {"n": 4, "root_chord": 0.11987242472323817, "tip_chord": 0.05968482952023781, "span": 0.11011367207993343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502165141741118]}, {"top_radius": 0.06321579908912695, "bottom_radius": 0.044776991988111046, "length": 0.06002914829415173, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005216826376042, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166000803967376, "upper_button_position": 0.08392160224086653}], "rail_length": 5, "inclination": 84.07564206067866, "heading": 53.99699714595482} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349720339021277, "mass": 15.657177840381047, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320125875312108, "I_33_without_motor": 0.031987509702419, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.987122382317407, "trigger": 800, "sampling_rate": 105, "lag": 1.518218110215856, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0146780619167768, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5519556667815906, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5468.418383287737, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03241697319763908, "grain_number": 5, "grain_density": 1793.8621828881903, "grain_outer_radius": 0.0333788622104544, "grain_initial_inner_radius": 0.01593406418730777, "grain_initial_height": 0.12104346541011406, "grain_separation": 0.004741314168933765, "grains_center_of_mass_position": 0.39685127400137593, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001286382109788879, "throat_radius": 0.011045155715148788, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540332427099843}], "aerodynamic_surfaces": [{"length": 0.5585013152120084, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322858729746967]}, {"n": 4, "root_chord": 0.120515860854095, "tip_chord": 0.05986684965718076, "span": 0.11003510830607126, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510096769914181]}, {"top_radius": 0.06375580024777387, "bottom_radius": 0.04410882981385615, "length": 0.062000769644994166, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001711695488273, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183757080166216, "upper_button_position": 0.08179546153220574}], "rail_length": 5, "inclination": 84.50865229383729, "heading": 51.82064118132723} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350465879824625, "mass": 14.616654409126367, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319726634779308, "I_33_without_motor": 0.05093493546758358, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.897021336080952, "trigger": 800, "sampling_rate": 105, "lag": 1.393814805936283, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0515525020045744, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1952590163413948, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6851.445984958061, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323930573017902, "grain_number": 5, "grain_density": 1857.3393762448459, "grain_outer_radius": 0.03262985504875688, "grain_initial_inner_radius": 0.014493078102134046, "grain_initial_height": 0.12061612702059332, "grain_separation": 0.004259570842149599, "grains_center_of_mass_position": 0.3972958899610878, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005690346888893417, "throat_radius": 0.011669828620212933, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563426068042978}], "aerodynamic_surfaces": [{"length": 0.5585062649354302, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344237527351728]}, {"n": 4, "root_chord": 0.11940315170655583, "tip_chord": 0.060207654215747995, "span": 0.10942894802954153, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0475186692757952]}, {"top_radius": 0.06461512105450547, "bottom_radius": 0.04200629170109814, "length": 0.05978424854753514, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998987780473985, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618248014944827, "upper_button_position": 0.08165076310257158}], "rail_length": 5, "inclination": 84.3110801793964, "heading": 52.245816541707754} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349649267932614, "mass": 15.274900533404178, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3188162503893235, "I_33_without_motor": 0.013089952232220738, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911641126361921, "trigger": 800, "sampling_rate": 105, "lag": 1.5024765254835017, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.98527516452532, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2136739393361715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5866.125780106934, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296381189616483, "grain_number": 5, "grain_density": 1676.0436631151485, "grain_outer_radius": 0.033532907853069026, "grain_initial_inner_radius": 0.014199128777360343, "grain_initial_height": 0.12194002623061284, "grain_separation": 0.0040651341010783364, "grains_center_of_mass_position": 0.3973700748812622, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006351022793922167, "throat_radius": 0.010971098552792293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557305020992533}], "aerodynamic_surfaces": [{"length": 0.5576178668199806, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341177298721223]}, {"n": 4, "root_chord": 0.1195676908879315, "tip_chord": 0.06118176777370209, "span": 0.11018689190712118, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482475797591722]}, {"top_radius": 0.062012604264294724, "bottom_radius": 0.04312255335415458, "length": 0.05838269685497794, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698818988059212, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179874621965907, "upper_button_position": 0.08083152586262132}], "rail_length": 5, "inclination": 83.33654250974072, "heading": 50.58741119444775} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349119295404117, "mass": 15.588665185548976, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323783031401186, "I_33_without_motor": 0.016155378952964494, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851322305129374, "trigger": 800, "sampling_rate": 105, "lag": 1.5477345970392635, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.014847360930274, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2946156787302154, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5901.015698294042, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033302022540300076, "grain_number": 5, "grain_density": 1845.1547600220397, "grain_outer_radius": 0.03318659437758192, "grain_initial_inner_radius": 0.014857071955170522, "grain_initial_height": 0.12074243396761579, "grain_separation": 0.005016581480385445, "grains_center_of_mass_position": 0.3968143773744069, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00045144263282850155, "throat_radius": 0.010852795225041326, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556423334285602}], "aerodynamic_surfaces": [{"length": 0.5598346184035531, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336821971001263]}, {"n": 4, "root_chord": 0.12000875629876684, "tip_chord": 0.06037086547535378, "span": 0.10982869696692409, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504189682414362]}, {"top_radius": 0.06368986323589437, "bottom_radius": 0.042143203450363695, "length": 0.059484339052413474, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992578994173597, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155731500592203, "upper_button_position": 0.08368474935813941}], "rail_length": 5, "inclination": 84.36807064088835, "heading": 56.743971879741835} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349848354077783, "mass": 15.074714030690215, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314924251307171, "I_33_without_motor": 0.03857943614043143, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978643490364103, "trigger": 800, "sampling_rate": 105, "lag": 1.4707550296231562, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0000166648379734, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6577195866845191, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4996.994421426205, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03408858697956688, "grain_number": 5, "grain_density": 1762.863841771015, "grain_outer_radius": 0.0336227051396031, "grain_initial_inner_radius": 0.01413586973512413, "grain_initial_height": 0.11892349273291805, "grain_separation": 0.004799087076682814, "grains_center_of_mass_position": 0.39902663399722993, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004398357067265578, "throat_radius": 0.011083900945799655, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548501248232182}], "aerodynamic_surfaces": [{"length": 0.5603332179071835, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349390995073618]}, {"n": 4, "root_chord": 0.11916351549640038, "tip_chord": 0.060098733159970226, "span": 0.11036139609595914, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509537932619697]}, {"top_radius": 0.06528523023429698, "bottom_radius": 0.04408910266835803, "length": 0.06034997102574584, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998488647469, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189678774405012, "upper_button_position": 0.08088098730639881}], "rail_length": 5, "inclination": 87.29724187035701, "heading": 51.74536794773193} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350635979342499, "mass": 15.599013320758946, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325805749074538, "I_33_without_motor": 0.02998256605600879, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.151620597992345, "trigger": 800, "sampling_rate": 105, "lag": 1.3371696218215259, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9247179519335343, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3435895498982982, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6804.251915220426, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247969810245297, "grain_number": 5, "grain_density": 1788.176384634377, "grain_outer_radius": 0.03247959059217345, "grain_initial_inner_radius": 0.01543987730591038, "grain_initial_height": 0.12011761172694294, "grain_separation": 0.00410697256226807, "grains_center_of_mass_position": 0.3952365742677524, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0023789072511995173, "throat_radius": 0.010044324716661873, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253813758205289}], "aerodynamic_surfaces": [{"length": 0.55851076029615, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337047989897686]}, {"n": 4, "root_chord": 0.12053506817894938, "tip_chord": 0.05993162224528445, "span": 0.11061666553753892, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049019722169394]}, {"top_radius": 0.06317470406459144, "bottom_radius": 0.045174922792002074, "length": 0.05898634837441873, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991859323797687, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188855121831107, "upper_button_position": 0.08030042019665795}], "rail_length": 5, "inclination": 84.7000517736675, "heading": 53.876328366293265} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349577083778116, "mass": 15.522138854389777, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323937473542894, "I_33_without_motor": 0.04065893646496016, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990447555795562, "trigger": 800, "sampling_rate": 105, "lag": 1.2951144126645893, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9436785819639094, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5412761702326108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5488.608750552847, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03404791363626516, "grain_number": 5, "grain_density": 1807.8566166882042, "grain_outer_radius": 0.032472353008394315, "grain_initial_inner_radius": 0.014825244797448595, "grain_initial_height": 0.12085542195832065, "grain_separation": 0.006828675782805137, "grains_center_of_mass_position": 0.39817468367051445, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00013132465971653123, "throat_radius": 0.0112323753580729, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569913420083174}], "aerodynamic_surfaces": [{"length": 0.5589163553006823, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339020397249924]}, {"n": 4, "root_chord": 0.12011940697703186, "tip_chord": 0.05994354117201655, "span": 0.11031647601180812, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489085376187586]}, {"top_radius": 0.06476807697496864, "bottom_radius": 0.04403415773790604, "length": 0.059787871148089526, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990264553025087, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180597544085228, "upper_button_position": 0.08096670089398594}], "rail_length": 5, "inclination": 85.58819145263202, "heading": 53.51676732772638} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350500144023837, "mass": 14.061444967603125, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326399832312963, "I_33_without_motor": 0.025992105216951732, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01821348314909, "trigger": 800, "sampling_rate": 105, "lag": 1.4550412446328158, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.086065776387558, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6737643817468237, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5325.554935701622, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318271241486049, "grain_number": 5, "grain_density": 1868.6869589861806, "grain_outer_radius": 0.03293558265992718, "grain_initial_inner_radius": 0.015014631625657198, "grain_initial_height": 0.12164646382266202, "grain_separation": 0.005046634053495843, "grains_center_of_mass_position": 0.3966489868037032, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006085386816829594, "throat_radius": 0.011946497737503258, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556143841760026}], "aerodynamic_surfaces": [{"length": 0.5586708872972916, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1323260305442275]}, {"n": 4, "root_chord": 0.11997520099254237, "tip_chord": 0.06041069812797542, "span": 0.11017646174044293, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049793835801613]}, {"top_radius": 0.06432855931945489, "bottom_radius": 0.04385784408259439, "length": 0.06044833444595806, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003945544633265, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164957411192751, "upper_button_position": 0.08389881334405147}], "rail_length": 5, "inclination": 84.58600129319277, "heading": 55.650444500814814} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349809179419004, "mass": 15.072951093356217, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324396903301069, "I_33_without_motor": 0.026626461890204275, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017467469308142, "trigger": 800, "sampling_rate": 105, "lag": 1.5247387774423824, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.004727961077819, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4458815085422907, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8305.1794011934, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032725944258112816, "grain_number": 5, "grain_density": 1750.311231977233, "grain_outer_radius": 0.033381365340630895, "grain_initial_inner_radius": 0.014784760482106423, "grain_initial_height": 0.12076026427957885, "grain_separation": 0.004767739053025811, "grains_center_of_mass_position": 0.39843413838166064, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000618672022995302, "throat_radius": 0.011654492623151361, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255110474532067}], "aerodynamic_surfaces": [{"length": 0.5578619015659977, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341358151358631]}, {"n": 4, "root_chord": 0.11943867087077248, "tip_chord": 0.06022154900675082, "span": 0.11031299814207124, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0512159794192044]}, {"top_radius": 0.06387803805474639, "bottom_radius": 0.04371971552791831, "length": 0.059127085822155284, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988746973407135, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618461518036176, "upper_button_position": 0.08041317930453751}], "rail_length": 5, "inclination": 84.76598859305896, "heading": 53.99535245210614} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350200847805006, "mass": 14.56637721216519, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331828347408095, "I_33_without_motor": 0.03333292492506716, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040918882740618, "trigger": 800, "sampling_rate": 105, "lag": 1.4064457335237213, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027634626961922, "trigger": "apogee", "sampling_rate": 105, "lag": 1.153755745200035, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5333.373373416069, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262573292318114, "grain_number": 5, "grain_density": 1770.2413302137238, "grain_outer_radius": 0.032581613965938123, "grain_initial_inner_radius": 0.014772099751555749, "grain_initial_height": 0.11986457841114566, "grain_separation": 0.0037241411157224982, "grains_center_of_mass_position": 0.39783847027614344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008689632400059313, "throat_radius": 0.011301066363308432, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547895961921312}], "aerodynamic_surfaces": [{"length": 0.558216820051537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352846170162636]}, {"n": 4, "root_chord": 0.11940642507298287, "tip_chord": 0.06086945175692727, "span": 0.11031646763172337, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498855186062137]}, {"top_radius": 0.06222576871888442, "bottom_radius": 0.04455977333383775, "length": 0.05912449336819151, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008108769503388, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184909205249289, "upper_button_position": 0.0823199564254099}], "rail_length": 5, "inclination": 84.42759334352169, "heading": 55.16285930695062} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350189447857124, "mass": 15.457546314813982, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3186620603080454, "I_33_without_motor": 0.04111849336487176, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.152412404728366, "trigger": 800, "sampling_rate": 105, "lag": 1.3894340025370155, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9712873864293999, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7577213333360202, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4149.003095005703, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032669570634040135, "grain_number": 5, "grain_density": 1865.7655917244547, "grain_outer_radius": 0.03265274565661517, "grain_initial_inner_radius": 0.014698528920647908, "grain_initial_height": 0.11764273935258326, "grain_separation": 0.006407556382264542, "grains_center_of_mass_position": 0.39694009327118923, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.5305996876096894e-05, "throat_radius": 0.011144690753514593, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552321159279667}], "aerodynamic_surfaces": [{"length": 0.5568337862618712, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336705807828826]}, {"n": 4, "root_chord": 0.12000559804783402, "tip_chord": 0.06078098696666717, "span": 0.11004897059638667, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495605230490987]}, {"top_radius": 0.06433158092981445, "bottom_radius": 0.04390530494165772, "length": 0.059255446167874495, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995294806890973, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194701005339339, "upper_button_position": 0.08005938015516334}], "rail_length": 5, "inclination": 84.79264713598054, "heading": 50.21668076278283} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349303495870288, "mass": 15.139471260843326, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30967724374345, "I_33_without_motor": 0.03667227861146536, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952757583152545, "trigger": 800, "sampling_rate": 105, "lag": 1.3949636429815173, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0578482516364651, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4966338275832745, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5871.658338812989, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311944813654615, "grain_number": 5, "grain_density": 1798.1876746005048, "grain_outer_radius": 0.03289685179491484, "grain_initial_inner_radius": 0.014621754954862324, "grain_initial_height": 0.11891736949549177, "grain_separation": 0.004385183588981326, "grains_center_of_mass_position": 0.3963765104798846, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.76031885489295e-06, "throat_radius": 0.011241604383945026, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542385005154113}], "aerodynamic_surfaces": [{"length": 0.5578437300110624, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1360101576536725]}, {"n": 4, "root_chord": 0.12002807517065753, "tip_chord": 0.05998994111018637, "span": 0.11019648765741179, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505236722314981]}, {"top_radius": 0.06456681272613166, "bottom_radius": 0.04216308981688548, "length": 0.058699722832008194, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996986619092459, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167579107040498, "upper_button_position": 0.08294075120519606}], "rail_length": 5, "inclination": 85.21730554420624, "heading": 52.02796622107596} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348334631149724, "mass": 14.640281550607988, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322340578089464, "I_33_without_motor": 0.03294811850003259, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.055254455717998, "trigger": 800, "sampling_rate": 105, "lag": 1.5541349060869594, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8671042502324, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4376821003856586, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3936.9168768844124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033174523594240175, "grain_number": 5, "grain_density": 1818.4839259019802, "grain_outer_radius": 0.0328815661288641, "grain_initial_inner_radius": 0.015421896075758609, "grain_initial_height": 0.12060311180002528, "grain_separation": 0.004626707826413229, "grains_center_of_mass_position": 0.3962062533019512, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015764937034604876, "throat_radius": 0.010728120798906816, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558475546009804}], "aerodynamic_surfaces": [{"length": 0.5588918002327309, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133244838301749]}, {"n": 4, "root_chord": 0.12024969465017595, "tip_chord": 0.05976734357284027, "span": 0.11034046776821728, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05018164635494]}, {"top_radius": 0.06412543760426755, "bottom_radius": 0.04303730605883428, "length": 0.05964934690130022, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989380563015272, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164008051230476, "upper_button_position": 0.08253725117847954}], "rail_length": 5, "inclination": 84.26950690353304, "heading": 54.4342716580213} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350432084547429, "mass": 14.639121645542831, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3286498698159175, "I_33_without_motor": 0.024503616270430344, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.972670185340192, "trigger": 800, "sampling_rate": 105, "lag": 1.5615628369568164, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.034237399544897, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4734248912891246, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6364.092827350851, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328345989050954, "grain_number": 5, "grain_density": 1824.4287951103054, "grain_outer_radius": 0.03255200797253197, "grain_initial_inner_radius": 0.01533572631603518, "grain_initial_height": 0.11997995424189747, "grain_separation": 0.004149486738320984, "grains_center_of_mass_position": 0.3976180771725198, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.754040093695726e-05, "throat_radius": 0.01162595548897174, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537775558750905}], "aerodynamic_surfaces": [{"length": 0.558122415863446, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336397677271135]}, {"n": 4, "root_chord": 0.12019864913321912, "tip_chord": 0.05935862072689701, "span": 0.10979838610800727, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496578655194115]}, {"top_radius": 0.06174788801822081, "bottom_radius": 0.04347318393652399, "length": 0.058925164189282855, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990143492985955, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183227135448253, "upper_button_position": 0.08069163575377025}], "rail_length": 5, "inclination": 85.06729539226818, "heading": 52.97378313911464} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06348924158684964, "mass": 15.663835633209633, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310422724316856, "I_33_without_motor": 0.021190714801084837, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911327455957451, "trigger": 800, "sampling_rate": 105, "lag": 1.5464426448884647, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9414984270704956, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6526571411847308, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7556.515017048033, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304543166935815, "grain_number": 5, "grain_density": 1844.1470005197225, "grain_outer_radius": 0.03309508679882315, "grain_initial_inner_radius": 0.014785413325748316, "grain_initial_height": 0.11999320452302403, "grain_separation": 0.004576000901379264, "grains_center_of_mass_position": 0.39815041571028537, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001461763815936282, "throat_radius": 0.010859874071341306, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567573984269518}], "aerodynamic_surfaces": [{"length": 0.5573702140362699, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135055928644023]}, {"n": 4, "root_chord": 0.12069197841779822, "tip_chord": 0.060687524841962784, "span": 0.11061495035526832, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047941399011695]}, {"top_radius": 0.06367735616699377, "bottom_radius": 0.04349079068248824, "length": 0.05914141283234725, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996382843442683, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177243366315676, "upper_button_position": 0.08191394771270077}], "rail_length": 5, "inclination": 85.94079198709633, "heading": 54.226387693403716} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350166319971032, "mass": 16.133680728633873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3195205782774515, "I_33_without_motor": 0.05773714437298531, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1454607890838, "trigger": 800, "sampling_rate": 105, "lag": 1.3711876070413263, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.920535051039625, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4987560612927404, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7044.455669325547, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03347926207456103, "grain_number": 5, "grain_density": 1772.744538984492, "grain_outer_radius": 0.03329300491451648, "grain_initial_inner_radius": 0.015015075764196457, "grain_initial_height": 0.1211850760624404, "grain_separation": 0.005016947007202156, "grains_center_of_mass_position": 0.3979986203746472, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029428344070874115, "throat_radius": 0.010546806115671983, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561650650848335}], "aerodynamic_surfaces": [{"length": 0.5586837907693257, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324143331255294]}, {"n": 4, "root_chord": 0.11989450453888348, "tip_chord": 0.05930815831935708, "span": 0.10999709910715932, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511892799713236]}, {"top_radius": 0.0645886005462962, "bottom_radius": 0.04343878370940091, "length": 0.05926559060336153, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999363711466468, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618022890442815, "upper_button_position": 0.08191348070383175}], "rail_length": 5, "inclination": 84.25871338374746, "heading": 54.32388496858876} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349282111528047, "mass": 15.368897028302491, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342909641440027, "I_33_without_motor": 0.03923947911620379, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.898935034760807, "trigger": 800, "sampling_rate": 105, "lag": 1.516006389500952, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.10593623112152, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2555165432209872, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5812.288352514805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334355417709642, "grain_number": 5, "grain_density": 1883.510154830654, "grain_outer_radius": 0.03286051175381039, "grain_initial_inner_radius": 0.01528137940539721, "grain_initial_height": 0.12030432221862515, "grain_separation": 0.0059952447005258555, "grains_center_of_mass_position": 0.3985010297504162, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012658440027175002, "throat_radius": 0.011319254453737156, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536536400076737}], "aerodynamic_surfaces": [{"length": 0.5593295654417205, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134142344440226]}, {"n": 4, "root_chord": 0.12004886127141359, "tip_chord": 0.06039851556620352, "span": 0.11023730113247802, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499682599713849]}, {"top_radius": 0.06410064206743164, "bottom_radius": 0.04397682322978792, "length": 0.061600014697897665, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996582480882353, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159591930085409, "upper_button_position": 0.08369905507969444}], "rail_length": 5, "inclination": 85.16410066172521, "heading": 52.87804423680814} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349861954252084, "mass": 15.557300553551086, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330984969326051, "I_33_without_motor": 0.049894213298994655, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00191695653257, "trigger": 800, "sampling_rate": 105, "lag": 1.6334432301631987, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0720236539516834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7495226991496642, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7200.639962106202, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247578584851999, "grain_number": 5, "grain_density": 1788.8924076788644, "grain_outer_radius": 0.032852889070937016, "grain_initial_inner_radius": 0.014978037039359897, "grain_initial_height": 0.12168425329704916, "grain_separation": 0.004637774510179668, "grains_center_of_mass_position": 0.3970089126871934, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00016447132479619858, "throat_radius": 0.011570223372551255, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2522491886606113}], "aerodynamic_surfaces": [{"length": 0.5608469733062702, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343123939439224]}, {"n": 4, "root_chord": 0.1195453193436914, "tip_chord": 0.05873957715814441, "span": 0.1108036790540993, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498743500895862]}, {"top_radius": 0.06413921055536825, "bottom_radius": 0.04322861043245836, "length": 0.06111918083656011, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982481126187366, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187241567055741, "upper_button_position": 0.07952395591316253}], "rail_length": 5, "inclination": 86.37456004644464, "heading": 53.26645735025307} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349367930610314, "mass": 14.219411173836637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320616520154852, "I_33_without_motor": 0.016130383188089955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851836915921615, "trigger": 800, "sampling_rate": 105, "lag": 1.4037563616428679, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9738128104966385, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5145931727452788, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5627.708534386907, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03393029822897359, "grain_number": 5, "grain_density": 1895.3013203052517, "grain_outer_radius": 0.0328565613424682, "grain_initial_inner_radius": 0.01580974101805683, "grain_initial_height": 0.11966517287452076, "grain_separation": 0.004858667833031585, "grains_center_of_mass_position": 0.39769050475039025, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007056965206633564, "throat_radius": 0.011522412618234902, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254093824160007}], "aerodynamic_surfaces": [{"length": 0.5599715836402527, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13279697109995]}, {"n": 4, "root_chord": 0.12049303571193895, "tip_chord": 0.06042449349044378, "span": 0.1108605584949131, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493821968125243]}, {"top_radius": 0.0628419805184854, "bottom_radius": 0.043178568870371345, "length": 0.06086761245575454, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012544357103843, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192510495110606, "upper_button_position": 0.08200338619932368}], "rail_length": 5, "inclination": 86.09752129050779, "heading": 54.757549194287506} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350407696324138, "mass": 15.19341612904471, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30515674761546, "I_33_without_motor": 0.03098830428214017, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.987759106546157, "trigger": 800, "sampling_rate": 105, "lag": 1.5353124835169516, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9883316274674622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.731170740038462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7812.670557936315, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298847953933229, "grain_number": 5, "grain_density": 1757.0088143402104, "grain_outer_radius": 0.03249343203151157, "grain_initial_inner_radius": 0.01431556395898429, "grain_initial_height": 0.11908290010336044, "grain_separation": 0.006330715443631223, "grains_center_of_mass_position": 0.39646773627787546, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00142362911591784, "throat_radius": 0.01166461975492909, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254154923898871}], "aerodynamic_surfaces": [{"length": 0.5569323545877226, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133525477798471]}, {"n": 4, "root_chord": 0.11977705616254228, "tip_chord": 0.06052500867010664, "span": 0.11010916447896767, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503660397292809]}, {"top_radius": 0.06453440352762628, "bottom_radius": 0.04366153118617023, "length": 0.05893368900480266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995978579094376, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6204655519226607, "upper_button_position": 0.0791323059867769}], "rail_length": 5, "inclination": 84.72676419657883, "heading": 49.01917970303271} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350114936508044, "mass": 15.868089523404947, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30210439651074, "I_33_without_motor": 0.023716217169733954, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979877755127305, "trigger": 800, "sampling_rate": 105, "lag": 1.4458853994672214, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.934988941633689, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4317068168120577, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6478.040601054931, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242527373094334, "grain_number": 5, "grain_density": 1755.279772263121, "grain_outer_radius": 0.033465450456579, "grain_initial_inner_radius": 0.015821817656195437, "grain_initial_height": 0.12110492916465776, "grain_separation": 0.0053286505228442435, "grains_center_of_mass_position": 0.39721300024308187, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000315561662368784, "throat_radius": 0.010503747170229265, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538932055054557}], "aerodynamic_surfaces": [{"length": 0.5591106928643835, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134578095149555]}, {"n": 4, "root_chord": 0.11976921722418357, "tip_chord": 0.06000978480249087, "span": 0.10933184478583798, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486491903117081]}, {"top_radius": 0.06363902969341574, "bottom_radius": 0.043097602069043936, "length": 0.06039223622588984, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7014032883056374, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184076092176923, "upper_button_position": 0.08299567908794503}], "rail_length": 5, "inclination": 86.61890193410315, "heading": 51.51755410618637} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350110806604607, "mass": 15.453281927074363, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330069172627132, "I_33_without_motor": 0.04280656413494396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059642482214572, "trigger": 800, "sampling_rate": 105, "lag": 1.5182880841554447, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8905815162132031, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2267321180254613, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6993.282641967784, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032629888120143856, "grain_number": 5, "grain_density": 1826.6482450767191, "grain_outer_radius": 0.032628725017414345, "grain_initial_inner_radius": 0.01525692123242003, "grain_initial_height": 0.12047327707576799, "grain_separation": 0.004735167996091265, "grains_center_of_mass_position": 0.3993569388211626, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021831105044187152, "throat_radius": 0.010461504984258272, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256177577944822}], "aerodynamic_surfaces": [{"length": 0.5585182305257949, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329374650667652]}, {"n": 4, "root_chord": 0.1199500966780598, "tip_chord": 0.06076064305690083, "span": 0.1091629175846767, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482391572046834]}, {"top_radius": 0.062145923709881624, "bottom_radius": 0.044605134488389445, "length": 0.06095124329115595, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6981635423231738, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181199503371924, "upper_button_position": 0.08004359198598143}], "rail_length": 5, "inclination": 86.27620439346072, "heading": 54.01973525427851} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349954034670019, "mass": 15.302552026811531, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3132598883926745, "I_33_without_motor": 0.04589564356994162, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.157285749933441, "trigger": 800, "sampling_rate": 105, "lag": 1.5629069223718588, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8930732032015706, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5940104499204595, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5130.5634023527955, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251047682203675, "grain_number": 5, "grain_density": 1770.890081398482, "grain_outer_radius": 0.03330961145239682, "grain_initial_inner_radius": 0.015128478366305088, "grain_initial_height": 0.11843361400893539, "grain_separation": 0.004197681510004204, "grains_center_of_mass_position": 0.39676058759045385, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001060037692990691, "throat_radius": 0.011306363987778309, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541290427775131}], "aerodynamic_surfaces": [{"length": 0.5579573851878173, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335214702000072]}, {"n": 4, "root_chord": 0.11965979804906639, "tip_chord": 0.060824416575403766, "span": 0.10999479944547633, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484043593577816]}, {"top_radius": 0.06127895395177035, "bottom_radius": 0.04177724083568521, "length": 0.06132547751788414, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998450737907125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195127000728917, "upper_button_position": 0.08033237371782076}], "rail_length": 5, "inclination": 81.91987808045752, "heading": 50.82097803166149} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349866446387006, "mass": 14.64303420239263, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3357335087317965, "I_33_without_motor": 0.049044062644988354, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.171224368753027, "trigger": 800, "sampling_rate": 105, "lag": 1.3664699896136945, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1017949596229548, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9773770657853506, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5825.127406080379, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03329079919484834, "grain_number": 5, "grain_density": 1797.4050950112976, "grain_outer_radius": 0.03275859179090956, "grain_initial_inner_radius": 0.015230783532789222, "grain_initial_height": 0.11935084654003371, "grain_separation": 0.0035420167002379512, "grains_center_of_mass_position": 0.39770359600075633, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000324248574338176, "throat_radius": 0.010624731874964235, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253843180266073}], "aerodynamic_surfaces": [{"length": 0.5592351156697194, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342837450622516]}, {"n": 4, "root_chord": 0.11985017249866613, "tip_chord": 0.06046000608173581, "span": 0.10933512085017189, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047949354317116]}, {"top_radius": 0.06440889505455895, "bottom_radius": 0.04327346093174916, "length": 0.058384374004581296, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985204292696295, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167334559088953, "upper_button_position": 0.08178697336073426}], "rail_length": 5, "inclination": 84.99511847863077, "heading": 53.360780501633776} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350307884552431, "mass": 15.299459124456716, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330412849597676, "I_33_without_motor": 0.04819110698152415, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.352183924993943, "trigger": 800, "sampling_rate": 105, "lag": 1.4055930255473164, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8990302150601153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3712834450819849, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6420.121632053442, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03247133995319087, "grain_number": 5, "grain_density": 1786.2259734290406, "grain_outer_radius": 0.03280240145976384, "grain_initial_inner_radius": 0.01472049193656412, "grain_initial_height": 0.12036615191589015, "grain_separation": 0.005166308275357442, "grains_center_of_mass_position": 0.39669548217406453, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00040070140441524586, "throat_radius": 0.010300751491112757, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543628296516114}], "aerodynamic_surfaces": [{"length": 0.5563459487948907, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328067705533946]}, {"n": 4, "root_chord": 0.11934558402327916, "tip_chord": 0.05983382182266055, "span": 0.10951001283111973, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497040416442738]}, {"top_radius": 0.06183465486199358, "bottom_radius": 0.0420552551459367, "length": 0.061828123628056515, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002522510374102, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188425626438221, "upper_button_position": 0.08140968839358809}], "rail_length": 5, "inclination": 84.30874433743865, "heading": 48.49392211619815} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349757868080605, "mass": 14.937344113977444, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31113410508939, "I_33_without_motor": 0.01533819826104748, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.122519505525041, "trigger": 800, "sampling_rate": 105, "lag": 1.4779238793926237, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0302156865749639, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4543623960559435, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6477.409665086792, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.031939310730054536, "grain_number": 5, "grain_density": 1717.3265252721187, "grain_outer_radius": 0.03321674170680397, "grain_initial_inner_radius": 0.015182007291538345, "grain_initial_height": 0.12090705353969121, "grain_separation": 0.005454805187708868, "grains_center_of_mass_position": 0.39601025416942787, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004028472905206065, "throat_radius": 0.010844203140246991, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562217832587752}], "aerodynamic_surfaces": [{"length": 0.558262921786763, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353836027211686]}, {"n": 4, "root_chord": 0.11997427015393271, "tip_chord": 0.05931803807750325, "span": 0.11071068835486314, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507792910418519]}, {"top_radius": 0.06327279405197613, "bottom_radius": 0.044363157951243334, "length": 0.05895413222199313, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984394987918061, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180980047010614, "upper_button_position": 0.08034149409074476}], "rail_length": 5, "inclination": 83.93684451117993, "heading": 53.25646224937715} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635012809633589, "mass": 14.903631523563918, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319063247084361, "I_33_without_motor": 0.030805580401779113, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.947695203390213, "trigger": 800, "sampling_rate": 105, "lag": 1.443673962466955, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.053313139987629, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4865859259945535, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4877.186706724677, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315349341200771, "grain_number": 5, "grain_density": 1757.6683377487248, "grain_outer_radius": 0.03244127699971018, "grain_initial_inner_radius": 0.015157297858319286, "grain_initial_height": 0.1211625515925341, "grain_separation": 0.003836527712934938, "grains_center_of_mass_position": 0.39650272427669814, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003883800086462959, "throat_radius": 0.011437025256728328, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561229646112166}], "aerodynamic_surfaces": [{"length": 0.5587702466385039, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335675117165316]}, {"n": 4, "root_chord": 0.11981141638365783, "tip_chord": 0.06042303169181598, "span": 0.1104847743465889, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0469100331146575]}, {"top_radius": 0.06459509522323255, "bottom_radius": 0.04274622715628515, "length": 0.060100893896378654, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987553693124594, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617479885266875, "upper_button_position": 0.08127548404558438}], "rail_length": 5, "inclination": 84.53588182789554, "heading": 48.25979511342253} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350047232537818, "mass": 15.24630426681354, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326204173046984, "I_33_without_motor": 0.05303897969875298, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.132803288470116, "trigger": 800, "sampling_rate": 105, "lag": 1.5973780132758315, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.112592871348507, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5461209695215208, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6829.745179725479, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335721823692854, "grain_number": 5, "grain_density": 1849.339725094122, "grain_outer_radius": 0.033279665772248807, "grain_initial_inner_radius": 0.014807134555803186, "grain_initial_height": 0.12070865030723173, "grain_separation": 0.003331154519264748, "grains_center_of_mass_position": 0.3969166945527319, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001240764711901897, "throat_radius": 0.010703825938586117, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540224517502845}], "aerodynamic_surfaces": [{"length": 0.5579186227522657, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334201088087963]}, {"n": 4, "root_chord": 0.1199191050155871, "tip_chord": 0.06007255756585871, "span": 0.11089858198734366, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504544523973047]}, {"top_radius": 0.06364030674285127, "bottom_radius": 0.04249641950725657, "length": 0.06094658668318761, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011868644880633, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175702789001946, "upper_button_position": 0.08361658558786877}], "rail_length": 5, "inclination": 83.98300435179634, "heading": 50.69389103371961} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350268837610834, "mass": 15.607553820350995, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322814732413258, "I_33_without_motor": 0.046539160129204074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.865105779135705, "trigger": 800, "sampling_rate": 105, "lag": 1.5258190645895315, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9594976630787165, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4772458357156255, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5637.109191107291, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034252055923824715, "grain_number": 5, "grain_density": 1816.0934088688896, "grain_outer_radius": 0.033451333880357634, "grain_initial_inner_radius": 0.0152405365629402, "grain_initial_height": 0.12006431601278007, "grain_separation": 0.005405572227922395, "grains_center_of_mass_position": 0.397635021332783, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002438844598572258, "throat_radius": 0.011253418961545887, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545210328992473}], "aerodynamic_surfaces": [{"length": 0.5597106653796748, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348811463128528]}, {"n": 4, "root_chord": 0.1202448382825528, "tip_chord": 0.05931159708031566, "span": 0.10988893845906733, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0512949716047482]}, {"top_radius": 0.06266244240678763, "bottom_radius": 0.04246678541424531, "length": 0.058952355748095556, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007448036022117, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184407436380123, "upper_button_position": 0.08230405996419943}], "rail_length": 5, "inclination": 86.48854417584423, "heading": 56.06158958142262} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0634966989909045, "mass": 15.708667531911127, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302100283204235, "I_33_without_motor": 0.038860266811759636, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.074944972676212, "trigger": 800, "sampling_rate": 105, "lag": 1.4991666065563172, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.980889542346054, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6320874943547519, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6814.97184922804, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320873813537177, "grain_number": 5, "grain_density": 1787.8046778534942, "grain_outer_radius": 0.033523137473723236, "grain_initial_inner_radius": 0.014574122468090624, "grain_initial_height": 0.11850872915408721, "grain_separation": 0.005019380175001005, "grains_center_of_mass_position": 0.3989665999197105, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011118624951817922, "throat_radius": 0.010669493878548056, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550734741873535}], "aerodynamic_surfaces": [{"length": 0.5565698332174955, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134665413452716]}, {"n": 4, "root_chord": 0.12044111849667469, "tip_chord": 0.05962638181453834, "span": 0.1100550771168003, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494846507798996]}, {"top_radius": 0.06290743267495708, "bottom_radius": 0.04303326209407965, "length": 0.06053365510368479, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995668011714287, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181898001968478, "upper_button_position": 0.0813770009745809}], "rail_length": 5, "inclination": 84.811763661652, "heading": 48.66028142290013} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349926786485256, "mass": 15.608806145938642, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313495175062822, "I_33_without_motor": 0.029953204433495976, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.815063069465722, "trigger": 800, "sampling_rate": 105, "lag": 1.4438834586149276, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.013589609861345, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5038480195382988, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4987.779645875489, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033136392100947175, "grain_number": 5, "grain_density": 1811.604712961779, "grain_outer_radius": 0.03343641419641688, "grain_initial_inner_radius": 0.01477106153355474, "grain_initial_height": 0.11985595074893526, "grain_separation": 0.005793492536377183, "grains_center_of_mass_position": 0.3962115698275224, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010175079458027967, "throat_radius": 0.011572365033834924, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254429037572772}], "aerodynamic_surfaces": [{"length": 0.557971983848898, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134213776337605]}, {"n": 4, "root_chord": 0.12036473138875332, "tip_chord": 0.06019147485751354, "span": 0.11030190825695357, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0516984869873207]}, {"top_radius": 0.06387812785147222, "bottom_radius": 0.04483281972515759, "length": 0.05924169413783875, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7020291859209009, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617778744856794, "upper_button_position": 0.08425044106410695}], "rail_length": 5, "inclination": 84.43226146653387, "heading": 54.40982086119414} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635107478536489, "mass": 15.266237896220247, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326141019947135, "I_33_without_motor": 0.036365659340257, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93390081701047, "trigger": 800, "sampling_rate": 105, "lag": 1.3834680108125779, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9577286327367016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4947129111997581, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6585.530749834101, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03348588509164263, "grain_number": 5, "grain_density": 1830.7704781624727, "grain_outer_radius": 0.033041107291725776, "grain_initial_inner_radius": 0.014995392016932126, "grain_initial_height": 0.11914568563120152, "grain_separation": 0.006228519208903481, "grains_center_of_mass_position": 0.39637244938389327, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.542944424204969e-05, "throat_radius": 0.011178085148479285, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569638188243764}], "aerodynamic_surfaces": [{"length": 0.5579633097909168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1321022578976827]}, {"n": 4, "root_chord": 0.1207358903992799, "tip_chord": 0.05976926567578458, "span": 0.11000924343169215, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478388864965336]}, {"top_radius": 0.06436074480409079, "bottom_radius": 0.04585711910442402, "length": 0.06016923469230438, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002578002545696, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617664075281178, "upper_button_position": 0.08259372497339168}], "rail_length": 5, "inclination": 85.83145614721347, "heading": 54.14609610469817} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635025103605345, "mass": 16.1753128711698, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325526735218902, "I_33_without_motor": 0.04056021286519367, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.011488112286546, "trigger": 800, "sampling_rate": 105, "lag": 1.301483248508993, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.035016060889747, "trigger": "apogee", "sampling_rate": 105, "lag": 1.682296373687919, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7266.232593727653, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03371333185819424, "grain_number": 5, "grain_density": 1819.1593613685263, "grain_outer_radius": 0.032905067802731836, "grain_initial_inner_radius": 0.015036673022014958, "grain_initial_height": 0.1202953802376394, "grain_separation": 0.005230771506956418, "grains_center_of_mass_position": 0.3973858239445716, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014385040034878213, "throat_radius": 0.01058655586789127, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535856930355838}], "aerodynamic_surfaces": [{"length": 0.5590551575473931, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357845549502632]}, {"n": 4, "root_chord": 0.11978136624605239, "tip_chord": 0.06030979265291526, "span": 0.10955274559932136, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048690123558981]}, {"top_radius": 0.06357553949089034, "bottom_radius": 0.04412821789270505, "length": 0.06034360499915246, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997132114988236, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185337127035755, "upper_button_position": 0.0811794987952481}], "rail_length": 5, "inclination": 84.90759406223368, "heading": 53.33569687976823} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06350112572729616, "mass": 15.183875575387264, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319546695384284, "I_33_without_motor": 0.044046742377702154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.062610324386306, "trigger": 800, "sampling_rate": 105, "lag": 1.5850204663303513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0455481900043764, "trigger": "apogee", "sampling_rate": 105, "lag": 1.310673756475977, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6239.349821329493, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03245269285942613, "grain_number": 5, "grain_density": 1837.772866112972, "grain_outer_radius": 0.03343847692210694, "grain_initial_inner_radius": 0.014769582460947426, "grain_initial_height": 0.11971370759880788, "grain_separation": 0.005668213652531598, "grains_center_of_mass_position": 0.39659536346954427, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007120240039783059, "throat_radius": 0.010796517448493964, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539202276619197}], "aerodynamic_surfaces": [{"length": 0.558541495160977, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337719840243643]}, {"n": 4, "root_chord": 0.1200223751746198, "tip_chord": 0.05983638137576463, "span": 0.10986892625080974, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509328154248538]}, {"top_radius": 0.06539569240254353, "bottom_radius": 0.04365989017573055, "length": 0.059495463475546365, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002164126227506, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171392962930072, "upper_button_position": 0.08307711632974335}], "rail_length": 5, "inclination": 84.78601613081369, "heading": 49.756879611388825} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350905512750284, "mass": 15.795236486560146, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319783687160465, "I_33_without_motor": 0.03132637992974994, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.052041750389897, "trigger": 800, "sampling_rate": 105, "lag": 1.5770813471025684, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9250148781344579, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5241023041104869, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6199.944290458621, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328081481694358, "grain_number": 5, "grain_density": 1733.5061798549177, "grain_outer_radius": 0.033371161053068664, "grain_initial_inner_radius": 0.014959451412893843, "grain_initial_height": 0.11970674143997707, "grain_separation": 0.0049312664131183044, "grains_center_of_mass_position": 0.39702500153429354, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008089373699556846, "throat_radius": 0.010448856581904642, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545072923309208}], "aerodynamic_surfaces": [{"length": 0.5607115119993058, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338291473347437]}, {"n": 4, "root_chord": 0.12051019884492917, "tip_chord": 0.059808036024663835, "span": 0.10962320844168162, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502066078223167]}, {"top_radius": 0.06411083935332804, "bottom_radius": 0.044067394700908036, "length": 0.05975502600019071, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995244563970239, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180287835387986, "upper_button_position": 0.08149567285822523}], "rail_length": 5, "inclination": 84.43697312454115, "heading": 55.105104119584375} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350511386215618, "mass": 15.66079804174669, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336577142688563, "I_33_without_motor": 0.036985065898576856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.943788567508026, "trigger": 800, "sampling_rate": 105, "lag": 1.5154202728593096, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.955557390873704, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7009547105176344, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6899.060412077707, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032964749612632724, "grain_number": 5, "grain_density": 1739.7739712726707, "grain_outer_radius": 0.03295379770918956, "grain_initial_inner_radius": 0.014923863629302725, "grain_initial_height": 0.11955417623042505, "grain_separation": 0.004989169552504049, "grains_center_of_mass_position": 0.3960408819485878, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008474333517442047, "throat_radius": 0.010568365108907202, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254670872863172}], "aerodynamic_surfaces": [{"length": 0.5596267843402509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346478733063143]}, {"n": 4, "root_chord": 0.12031222732432117, "tip_chord": 0.06047835129345364, "span": 0.10997570176029929, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507950771828802]}, {"top_radius": 0.06220386493527089, "bottom_radius": 0.0415236554245799, "length": 0.060403341672084644, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000151183136406, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175026226186047, "upper_button_position": 0.08251249569503594}], "rail_length": 5, "inclination": 85.6132032863435, "heading": 53.629530478790166} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349614954415383, "mass": 15.56864771389353, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307976325362015, "I_33_without_motor": 0.03215343181584091, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.130438988742554, "trigger": 800, "sampling_rate": 105, "lag": 1.4294536142602654, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0776571995926056, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8362407278966257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6545.3959260843285, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03315200297336826, "grain_number": 5, "grain_density": 1821.582099562638, "grain_outer_radius": 0.032445058716504487, "grain_initial_inner_radius": 0.014273592229603643, "grain_initial_height": 0.12059921488698436, "grain_separation": 0.0034764174061202046, "grains_center_of_mass_position": 0.3960191786967019, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00020654340889815644, "throat_radius": 0.010995746566233826, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255015465472459}], "aerodynamic_surfaces": [{"length": 0.5584145260063503, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324064301233785]}, {"n": 4, "root_chord": 0.11991321900469129, "tip_chord": 0.060520258169114674, "span": 0.11006015480402401, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049208948839574]}, {"top_radius": 0.06384760720638705, "bottom_radius": 0.04190715647626403, "length": 0.058501971274610015, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7024301447404098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172781334564504, "upper_button_position": 0.08515201128395933}], "rail_length": 5, "inclination": 85.22756226329334, "heading": 50.03456670275332} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349502254167783, "mass": 15.989921800850773, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323475361285629, "I_33_without_motor": 0.033064959942460136, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88956776902539, "trigger": 800, "sampling_rate": 105, "lag": 1.513090882098553, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9163208458003524, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2852086431232261, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6440.868392266536, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03417341187975655, "grain_number": 5, "grain_density": 1880.6860205531339, "grain_outer_radius": 0.03297065575466729, "grain_initial_inner_radius": 0.014931011541986172, "grain_initial_height": 0.12012807018168109, "grain_separation": 0.0035876843662371286, "grains_center_of_mass_position": 0.39563961540728054, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009252206256179007, "throat_radius": 0.011478985911307481, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538221070824953}], "aerodynamic_surfaces": [{"length": 0.5595872410622184, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350390604348086]}, {"n": 4, "root_chord": 0.1190680744109567, "tip_chord": 0.05999002236135637, "span": 0.10888658123787512, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502668130773813]}, {"top_radius": 0.06362998303671828, "bottom_radius": 0.04275763684698928, "length": 0.05953638474114696, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982902092683476, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183071701232139, "upper_button_position": 0.07998303914513372}], "rail_length": 5, "inclination": 84.8486793440033, "heading": 56.16480873497645} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350438154244403, "mass": 15.646418108619498, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340435206436833, "I_33_without_motor": 0.03497632297506776, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.811296400289017, "trigger": 800, "sampling_rate": 105, "lag": 1.5011002632532302, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9423047495577862, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3292665192657465, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6580.938730638924, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03409338603725633, "grain_number": 5, "grain_density": 1795.6522220517168, "grain_outer_radius": 0.03348654695407591, "grain_initial_inner_radius": 0.015114117729112194, "grain_initial_height": 0.12161758357913663, "grain_separation": 0.00395781271901741, "grains_center_of_mass_position": 0.39654540535038835, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001319300285423396, "throat_radius": 0.0111945342855804, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256536361087544}], "aerodynamic_surfaces": [{"length": 0.5563761810038482, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133011901769377]}, {"n": 4, "root_chord": 0.11978396903030039, "tip_chord": 0.05929571213579055, "span": 0.10975262754917538, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497851234863869]}, {"top_radius": 0.06372782707881473, "bottom_radius": 0.04184437467366575, "length": 0.059255813773285926, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699449165011488, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183658255029617, "upper_button_position": 0.08108333950852631}], "rail_length": 5, "inclination": 82.53039229850235, "heading": 54.462114437154} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06351127041699947, "mass": 15.211761172330744, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315977747925529, "I_33_without_motor": 0.02728787301293484, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.9776100364977, "trigger": 800, "sampling_rate": 105, "lag": 1.3910226208343313, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.050645263206189, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6438474363569746, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6751.651403496521, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306635980740061, "grain_number": 5, "grain_density": 1784.7899446583478, "grain_outer_radius": 0.033195776014509557, "grain_initial_inner_radius": 0.014412205063872268, "grain_initial_height": 0.1197735051483886, "grain_separation": 0.003902326909612514, "grains_center_of_mass_position": 0.3974762910857033, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005992177549812822, "throat_radius": 0.010578727456233351, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559293962273586}], "aerodynamic_surfaces": [{"length": 0.5594295083040912, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133672008213632]}, {"n": 4, "root_chord": 0.12068344869076643, "tip_chord": 0.06045516164270126, "span": 0.11031886228614908, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050240111914353]}, {"top_radius": 0.06394333082559125, "bottom_radius": 0.04271161256440708, "length": 0.06081854585670041, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999462846852321, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169498585235826, "upper_button_position": 0.08299642616164948}], "rail_length": 5, "inclination": 85.6758887287362, "heading": 54.448472274103565} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349144958226834, "mass": 15.171837771165748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311280221832762, "I_33_without_motor": 0.023179855698215818, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.965529891342227, "trigger": 800, "sampling_rate": 105, "lag": 1.456455118675806, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9455192804505556, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4105869903732462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7750.499066470417, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03379807949366793, "grain_number": 5, "grain_density": 1787.5462468866338, "grain_outer_radius": 0.0329736044786018, "grain_initial_inner_radius": 0.014966490875297257, "grain_initial_height": 0.11896999837517151, "grain_separation": 0.005061495694893432, "grains_center_of_mass_position": 0.3986109303092945, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002477254028156899, "throat_radius": 0.01155299104467492, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255359709114433}], "aerodynamic_surfaces": [{"length": 0.5600230277496611, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.136465506636651]}, {"n": 4, "root_chord": 0.11977444590060722, "tip_chord": 0.06013999894208701, "span": 0.10985016702980246, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507866943309176]}, {"top_radius": 0.06327864630241052, "bottom_radius": 0.04144951208770351, "length": 0.06110020351834091, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993293838639972, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182453157157468, "upper_button_position": 0.08108406814825042}], "rail_length": 5, "inclination": 84.5790680620225, "heading": 57.10020106467096} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350084837257665, "mass": 14.87747842645456, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30765303866236, "I_33_without_motor": 0.041546312539107906, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.959872306234042, "trigger": 800, "sampling_rate": 105, "lag": 1.500134229445268, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8982062037428309, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6423918677252163, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7568.6344549212545, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03298601361794712, "grain_number": 5, "grain_density": 1794.7927698776439, "grain_outer_radius": 0.03330639554966281, "grain_initial_inner_radius": 0.015867350414591613, "grain_initial_height": 0.12084718372896662, "grain_separation": 0.005716403304768942, "grains_center_of_mass_position": 0.3965337993336957, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009730290898955759, "throat_radius": 0.011971227526327038, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254793650983758}], "aerodynamic_surfaces": [{"length": 0.5592054937693628, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354272098660119]}, {"n": 4, "root_chord": 0.11964175489786719, "tip_chord": 0.06085347383685327, "span": 0.10936246295123482, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494280856848066]}, {"top_radius": 0.06240831897245389, "bottom_radius": 0.0431841923333072, "length": 0.05893483965234803, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994037253244227, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186813063725143, "upper_button_position": 0.08072241895190846}], "rail_length": 5, "inclination": 86.57354918438968, "heading": 53.380225948158646} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349668064978274, "mass": 14.75115857444561, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317445351294149, "I_33_without_motor": 0.028945270093639827, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071085660342748, "trigger": 800, "sampling_rate": 105, "lag": 1.537603774309705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9698846091921619, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5690910402756728, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6796.994046900357, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032589481701166496, "grain_number": 5, "grain_density": 1910.104149318529, "grain_outer_radius": 0.03268757113315412, "grain_initial_inner_radius": 0.015381338668353237, "grain_initial_height": 0.11965672667786117, "grain_separation": 0.005514097719306232, "grains_center_of_mass_position": 0.3965475196634501, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004078040981931073, "throat_radius": 0.010616652331551905, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554572724116766}], "aerodynamic_surfaces": [{"length": 0.5584137085788992, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340719946576985]}, {"n": 4, "root_chord": 0.11974527845325532, "tip_chord": 0.06003304187822084, "span": 0.10977812534500153, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049374728895066]}, {"top_radius": 0.06391591471950396, "bottom_radius": 0.04423800347345129, "length": 0.061449905160769897, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993665333738388, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187478816192085, "upper_button_position": 0.08061865175463034}], "rail_length": 5, "inclination": 83.81783426539876, "heading": 54.94915292954628} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06351626587777429, "mass": 16.041794766527815, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321948772600831, "I_33_without_motor": 0.04739580123228551, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93460423922106, "trigger": 800, "sampling_rate": 105, "lag": 1.4039356856059457, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9782455642966575, "trigger": "apogee", "sampling_rate": 105, "lag": 1.443235932739316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6296.178863985272, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301741166460128, "grain_number": 5, "grain_density": 1727.8085880849076, "grain_outer_radius": 0.03355154215383563, "grain_initial_inner_radius": 0.014186854147554398, "grain_initial_height": 0.12004317784299555, "grain_separation": 0.005430544229133787, "grains_center_of_mass_position": 0.3977232956694165, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008938988865987066, "throat_radius": 0.010531209350522822, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567243946524238}], "aerodynamic_surfaces": [{"length": 0.5580443104575997, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133443446378213]}, {"n": 4, "root_chord": 0.1194295174174422, "tip_chord": 0.06011760835222952, "span": 0.10969833183126461, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479118044205074]}, {"top_radius": 0.06320384684756078, "bottom_radius": 0.04425084464639051, "length": 0.06073257798660635, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983183777505001, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178524748997465, "upper_button_position": 0.08046590285075361}], "rail_length": 5, "inclination": 85.15078586733485, "heading": 54.55959830090721} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349737421428354, "mass": 15.934713526082888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319597598551712, "I_33_without_motor": 0.03472984014875488, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.025964125476538, "trigger": 800, "sampling_rate": 105, "lag": 1.452708461582512, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0519550868444962, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2118483537098999, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6748.4297113313405, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03231072531878609, "grain_number": 5, "grain_density": 1894.263491364531, "grain_outer_radius": 0.03262809433105305, "grain_initial_inner_radius": 0.01525380796610134, "grain_initial_height": 0.11927671741736089, "grain_separation": 0.0043987590551138895, "grains_center_of_mass_position": 0.3964150091391827, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009211087640359035, "throat_radius": 0.011346628447703238, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536289837334413}], "aerodynamic_surfaces": [{"length": 0.5572000045637671, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13520126216627]}, {"n": 4, "root_chord": 0.11931838096864197, "tip_chord": 0.059391923412638936, "span": 0.10999888767411646, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499794952628683]}, {"top_radius": 0.06365941899238592, "bottom_radius": 0.04136303718738198, "length": 0.05819966898619248, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991616518538626, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179754219043172, "upper_button_position": 0.08118622994954539}], "rail_length": 5, "inclination": 86.47122304958206, "heading": 54.67819195219485} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350508736854284, "mass": 15.288010600774331, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328916638453036, "I_33_without_motor": 0.030604879928013754, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.127572776987492, "trigger": 800, "sampling_rate": 105, "lag": 1.3650680219013474, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9715310136387773, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7992668776478467, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6229.987305054239, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313380503981856, "grain_number": 5, "grain_density": 1876.5381878073665, "grain_outer_radius": 0.032740670979806, "grain_initial_inner_radius": 0.014399760752653463, "grain_initial_height": 0.11966921671816692, "grain_separation": 0.0031262383142456373, "grains_center_of_mass_position": 0.39672066490833807, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002865649676212137, "throat_radius": 0.01157607163031133, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538307604432777}], "aerodynamic_surfaces": [{"length": 0.5580846785407544, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134350634435526]}, {"n": 4, "root_chord": 0.1199200028197998, "tip_chord": 0.060721803664123226, "span": 0.11053810195450435, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493587056132727]}, {"top_radius": 0.06307822416019447, "bottom_radius": 0.0437222026176874, "length": 0.06052678625174102, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993762566601562, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180207185623664, "upper_button_position": 0.08135553809778984}], "rail_length": 5, "inclination": 85.2074671738049, "heading": 51.92923860768198} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350788009912478, "mass": 15.235775295630015, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321088966482751, "I_33_without_motor": 0.008838935778654293, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05320348949439, "trigger": 800, "sampling_rate": 105, "lag": 1.3854489678161048, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.057213006101654, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0724342567764997, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7147.695986226805, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364150166951675, "grain_number": 5, "grain_density": 1833.5836956948503, "grain_outer_radius": 0.03294913318001869, "grain_initial_inner_radius": 0.014976299112347087, "grain_initial_height": 0.12010506498172006, "grain_separation": 0.0063091836167278505, "grains_center_of_mass_position": 0.39815451386379563, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017492939466579203, "throat_radius": 0.011191503994129907, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540153914133811}], "aerodynamic_surfaces": [{"length": 0.5588663142344029, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349703247859495]}, {"n": 4, "root_chord": 0.12010342824134852, "tip_chord": 0.06107288361579858, "span": 0.10957199932729648, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493368443945428]}, {"top_radius": 0.06438502059166644, "bottom_radius": 0.04220239969934622, "length": 0.060256577224611016, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991781689157194, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174508716350409, "upper_button_position": 0.08172729728067851}], "rail_length": 5, "inclination": 83.64542925157807, "heading": 52.9492472714027} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350608301366141, "mass": 14.267346140835057, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327282709392957, "I_33_without_motor": 0.044832783395076986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.924145105806407, "trigger": 800, "sampling_rate": 105, "lag": 1.338216657419807, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0798511963894213, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5708032567400605, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6262.056849433964, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03299918915548823, "grain_number": 5, "grain_density": 1804.6803944081307, "grain_outer_radius": 0.033384465753236274, "grain_initial_inner_radius": 0.015541543322232159, "grain_initial_height": 0.12103832028750139, "grain_separation": 0.005160627982292972, "grains_center_of_mass_position": 0.39559960400982186, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008485940201949692, "throat_radius": 0.011393141712613348, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543733532181216}], "aerodynamic_surfaces": [{"length": 0.5586247426016498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133751185735801]}, {"n": 4, "root_chord": 0.12033064216133828, "tip_chord": 0.06012968354340727, "span": 0.11002494006649234, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049163745657939]}, {"top_radius": 0.0646127672370348, "bottom_radius": 0.04293135005633647, "length": 0.06112759687084042, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992006817073412, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191003418217015, "upper_button_position": 0.0801003398856397}], "rail_length": 5, "inclination": 84.04058056071858, "heading": 50.89470500280865} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349981559110238, "mass": 15.443427258795746, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320313482723813, "I_33_without_motor": 0.028858075348430545, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.989422008821407, "trigger": 800, "sampling_rate": 105, "lag": 1.4960319851587829, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.031574094009297, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5380590645559873, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6045.157921546866, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03237551278011035, "grain_number": 5, "grain_density": 1804.7517670763496, "grain_outer_radius": 0.033658454229421625, "grain_initial_inner_radius": 0.015186577406707357, "grain_initial_height": 0.12080388082690503, "grain_separation": 0.005553324723976383, "grains_center_of_mass_position": 0.39671461366293426, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012407473445749425, "throat_radius": 0.0112816311175219, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554099802211864}], "aerodynamic_surfaces": [{"length": 0.5591011308077558, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346250441806105]}, {"n": 4, "root_chord": 0.11882654283286925, "tip_chord": 0.060287114698176006, "span": 0.11043059679821646, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503827473055747]}, {"top_radius": 0.06408900787105565, "bottom_radius": 0.04248699003999239, "length": 0.06037643600072063, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006121964882871, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6159248386812397, "upper_button_position": 0.08468735780704739}], "rail_length": 5, "inclination": 83.96424537054509, "heading": 50.72349122392116} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349477590503727, "mass": 15.347757077234263, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33339539855838, "I_33_without_motor": 0.0370147943101433, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.006430469324116, "trigger": 800, "sampling_rate": 105, "lag": 1.6472950204998882, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.009149811918641, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7348028028994886, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5741.648365525498, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320646271076936, "grain_number": 5, "grain_density": 1919.464676604701, "grain_outer_radius": 0.03289581900496518, "grain_initial_inner_radius": 0.016080848716726107, "grain_initial_height": 0.11915165115561802, "grain_separation": 0.005184116825600256, "grains_center_of_mass_position": 0.3989222534195876, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001016754238564915, "throat_radius": 0.010749192696539324, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559161944106356}], "aerodynamic_surfaces": [{"length": 0.557660317250816, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346507906698164]}, {"n": 4, "root_chord": 0.12038012137513293, "tip_chord": 0.060730129841696345, "span": 0.11118660040458565, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049630487753314]}, {"top_radius": 0.06383068974602342, "bottom_radius": 0.04316775888564201, "length": 0.058544135194924726, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007215763130259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181392078545712, "upper_button_position": 0.08258236845845468}], "rail_length": 5, "inclination": 85.51347396281061, "heading": 51.01595400222452} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349625291829408, "mass": 15.046464077247789, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305862839086681, "I_33_without_motor": 0.05459197683594119, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.183110240916204, "trigger": 800, "sampling_rate": 105, "lag": 1.30046684133131, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0562106422507005, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5668945542093593, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8270.577130493895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264809771722031, "grain_number": 5, "grain_density": 1809.1844771697154, "grain_outer_radius": 0.03280352933039521, "grain_initial_inner_radius": 0.014907038552898436, "grain_initial_height": 0.11914855975140369, "grain_separation": 0.005936779384674024, "grains_center_of_mass_position": 0.3960597443749011, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005745175454998076, "throat_radius": 0.012546632281976219, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545052097486347}], "aerodynamic_surfaces": [{"length": 0.5574016374079646, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13509538141855]}, {"n": 4, "root_chord": 0.11948649155867877, "tip_chord": 0.06002997388766304, "span": 0.11090693975896543, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492015425690973]}, {"top_radius": 0.06380753501947742, "bottom_radius": 0.043914890703023235, "length": 0.06131162581642445, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998155476588903, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177693461063871, "upper_button_position": 0.0820462015525032}], "rail_length": 5, "inclination": 85.05577689849233, "heading": 52.73303765864025} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350171251446703, "mass": 15.56566622195022, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3246377574831305, "I_33_without_motor": 0.012330273657758298, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.134141079473657, "trigger": 800, "sampling_rate": 105, "lag": 1.6243601819212317, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0065909411235063, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5689850464783566, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7113.837441010125, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305487379244378, "grain_number": 5, "grain_density": 1799.9246420329214, "grain_outer_radius": 0.03278302842925468, "grain_initial_inner_radius": 0.015441320913399833, "grain_initial_height": 0.11914474081556609, "grain_separation": 0.005976750522806438, "grains_center_of_mass_position": 0.3963837391575671, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001359277440079673, "throat_radius": 0.010793561234445276, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529228313362866}], "aerodynamic_surfaces": [{"length": 0.558203528964185, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329509946312035]}, {"n": 4, "root_chord": 0.11909837822114049, "tip_chord": 0.05974539317683638, "span": 0.10932649741833761, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509105139268737]}, {"top_radius": 0.06402514932233903, "bottom_radius": 0.04237339176152917, "length": 0.06074010030412229, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984130536687868, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190780137731269, "upper_button_position": 0.07933503989565993}], "rail_length": 5, "inclination": 83.43910777881614, "heading": 51.70613207337081} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350109182361885, "mass": 15.594596040502564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314925933775096, "I_33_without_motor": 0.0458434172225175, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953557780617574, "trigger": 800, "sampling_rate": 105, "lag": 1.4706318976306259, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1017723952496965, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5216552065800826, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6748.18128966365, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033753123024419206, "grain_number": 5, "grain_density": 1852.851995634312, "grain_outer_radius": 0.0334418619032943, "grain_initial_inner_radius": 0.014545067762080343, "grain_initial_height": 0.11903821881727471, "grain_separation": 0.005524049204815245, "grains_center_of_mass_position": 0.3974366085578211, "center_of_dry_mass_position": 0.317, "nozzle_position": -7.266568890356642e-05, "throat_radius": 0.010666020135857322, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255753777049703}], "aerodynamic_surfaces": [{"length": 0.5580430754295401, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345745622493053]}, {"n": 4, "root_chord": 0.11917162530028867, "tip_chord": 0.05947083498924881, "span": 0.11005208507389799, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491333491417298]}, {"top_radius": 0.062483447196622244, "bottom_radius": 0.0429210502235319, "length": 0.06009223408317398, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990094948273684, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186141416226519, "upper_button_position": 0.08039535320471647}], "rail_length": 5, "inclination": 84.3453266526354, "heading": 51.777446786083175} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350774380520467, "mass": 15.116536946540693, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32997743427966, "I_33_without_motor": 0.02125362314162925, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02538936094886, "trigger": 800, "sampling_rate": 105, "lag": 1.4201698307116697, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0214455547127304, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3941014401946306, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5039.220553264033, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03307591093766865, "grain_number": 5, "grain_density": 1885.6201685293186, "grain_outer_radius": 0.03291746753774354, "grain_initial_inner_radius": 0.014134722207242238, "grain_initial_height": 0.11897617707029368, "grain_separation": 0.00591408412760072, "grains_center_of_mass_position": 0.3986107794402587, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007762189555363448, "throat_radius": 0.011092057711873667, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555372148847062}], "aerodynamic_surfaces": [{"length": 0.5576175324850225, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330629910642496]}, {"n": 4, "root_chord": 0.12044319804836254, "tip_chord": 0.060391484335011895, "span": 0.10997110187754643, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496501454691587]}, {"top_radius": 0.06431307519307287, "bottom_radius": 0.04523978386744054, "length": 0.059879873698969986, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699044771570599, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160437019129047, "upper_button_position": 0.08300106965769427}], "rail_length": 5, "inclination": 86.42366388454528, "heading": 56.06516088687846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0635098842254866, "mass": 16.434031929829388, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314986531138132, "I_33_without_motor": 0.02752742487283487, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.961123244605911, "trigger": 800, "sampling_rate": 105, "lag": 1.5895600380245143, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.014434614227272, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6660252483708715, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5495.540323167932, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313871622346349, "grain_number": 5, "grain_density": 1844.571204382841, "grain_outer_radius": 0.03312638441459399, "grain_initial_inner_radius": 0.0150398778472899, "grain_initial_height": 0.11980601475378126, "grain_separation": 0.005848814102867152, "grains_center_of_mass_position": 0.3986846919536473, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012149000650022708, "throat_radius": 0.010852244615046582, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544596082830493}], "aerodynamic_surfaces": [{"length": 0.5583269377787345, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351435361919886]}, {"n": 4, "root_chord": 0.12024808433797025, "tip_chord": 0.06007187515526784, "span": 0.11017913108290056, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0473779027005208]}, {"top_radius": 0.06372354172006497, "bottom_radius": 0.042194043281121, "length": 0.058844996526856465, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989116223034271, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177038422919643, "upper_button_position": 0.08120778001146278}], "rail_length": 5, "inclination": 83.20815523598182, "heading": 52.531949621350044} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350565782565322, "mass": 15.549264166960581, "I_11_without_motor": 6.321, "I_22_without_motor": 6.29763165265552, "I_33_without_motor": 0.007563215511963237, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916828025464145, "trigger": 800, "sampling_rate": 105, "lag": 1.414494236926941, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9127794755785542, "trigger": "apogee", "sampling_rate": 105, "lag": 1.744552172462372, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4182.127601571825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302665163556923, "grain_number": 5, "grain_density": 1821.099992797679, "grain_outer_radius": 0.03329324824076109, "grain_initial_inner_radius": 0.014976891463292915, "grain_initial_height": 0.11936519570914952, "grain_separation": 0.0046798736066476, "grains_center_of_mass_position": 0.39681569133155886, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003516996306109788, "throat_radius": 0.01074433523368856, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556666709142656}], "aerodynamic_surfaces": [{"length": 0.5577070269526172, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343036454065782]}, {"n": 4, "root_chord": 0.11983090712642817, "tip_chord": 0.05983235770402949, "span": 0.1091474534041076, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506649662549261]}, {"top_radius": 0.06350587804793043, "bottom_radius": 0.04371529940957797, "length": 0.05921226676799456, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006105824590642, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184665482063042, "upper_button_position": 0.08214403425275996}], "rail_length": 5, "inclination": 84.75610774113322, "heading": 53.028801399374096} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349887518612819, "mass": 15.322163564917123, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32118799076208, "I_33_without_motor": 0.03501085429420261, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.092770271938964, "trigger": 800, "sampling_rate": 105, "lag": 1.3496798428148347, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9120674781575826, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3307765993156733, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8529.185430500731, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0335714643050543, "grain_number": 5, "grain_density": 1865.35494158242, "grain_outer_radius": 0.03350041295673661, "grain_initial_inner_radius": 0.015125646337838338, "grain_initial_height": 0.12209328762405727, "grain_separation": 0.004145325364367466, "grains_center_of_mass_position": 0.39650968327752345, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011723937776379997, "throat_radius": 0.011068604591864628, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563280579402865}], "aerodynamic_surfaces": [{"length": 0.5583260090702441, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133120386875395]}, {"n": 4, "root_chord": 0.12034087213357694, "tip_chord": 0.06013817142195936, "span": 0.11072266101431125, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499749234621634]}, {"top_radius": 0.06379929383681247, "bottom_radius": 0.044012110731023645, "length": 0.05980024320596355, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996948614113653, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61705763505812, "upper_button_position": 0.08263722635324533}], "rail_length": 5, "inclination": 85.77880874644917, "heading": 49.879482482917965} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349644146965758, "mass": 15.963866095368394, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323991095262317, "I_33_without_motor": 0.04506267501726556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90154384659209, "trigger": 800, "sampling_rate": 105, "lag": 1.5318864058147217, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.982821971837566, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2725988796755159, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6840.522077008397, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03217085524851645, "grain_number": 5, "grain_density": 1843.2843616231628, "grain_outer_radius": 0.03311045697029468, "grain_initial_inner_radius": 0.014151152097059699, "grain_initial_height": 0.11974556611253154, "grain_separation": 0.006404825032687442, "grains_center_of_mass_position": 0.3984256860820271, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001548078754262424, "throat_radius": 0.010395570253293135, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551479290801506}], "aerodynamic_surfaces": [{"length": 0.5591298252520711, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332234878674206]}, {"n": 4, "root_chord": 0.11884299181854514, "tip_chord": 0.06047318937664282, "span": 0.10985711683961431, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048030298226542]}, {"top_radius": 0.06375740700803852, "bottom_radius": 0.04391166993011513, "length": 0.060583835736541816, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.702094431536372, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182396437488304, "upper_button_position": 0.08385478778754152}], "rail_length": 5, "inclination": 84.87352759530415, "heading": 50.54456892140527} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349921412307903, "mass": 15.934104245915236, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322684118206779, "I_33_without_motor": 0.020984852955978666, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.085643954350465, "trigger": 800, "sampling_rate": 105, "lag": 1.5301560350323435, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9645107958813314, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6978586968572071, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7468.441078039448, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032768442925310635, "grain_number": 5, "grain_density": 1742.2236104407077, "grain_outer_radius": 0.03291740822938413, "grain_initial_inner_radius": 0.015396645727732876, "grain_initial_height": 0.11930865510753397, "grain_separation": 0.004930537201659597, "grains_center_of_mass_position": 0.396419100282365, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009330648651123187, "throat_radius": 0.010438972099501167, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545192948491637}], "aerodynamic_surfaces": [{"length": 0.5564318177006894, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349843043561447]}, {"n": 4, "root_chord": 0.12038684700076022, "tip_chord": 0.05950447658779207, "span": 0.10947683971832989, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508047518934251]}, {"top_radius": 0.06407575287302662, "bottom_radius": 0.04299476832959872, "length": 0.060251769839850186, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7020913971581121, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174150606476642, "upper_button_position": 0.08467633651044792}], "rail_length": 5, "inclination": 84.45924597178363, "heading": 56.05298246318162} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350580978229486, "mass": 14.980953767467788, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319941619890292, "I_33_without_motor": 0.039660905981123984, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035932362749719, "trigger": 800, "sampling_rate": 105, "lag": 1.4797232679247396, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0557838938245923, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5160878121126142, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8049.93815939646, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03347980576667772, "grain_number": 5, "grain_density": 1718.8192174836338, "grain_outer_radius": 0.03284229080807652, "grain_initial_inner_radius": 0.014567034104315165, "grain_initial_height": 0.11921545225277756, "grain_separation": 0.004316755564332223, "grains_center_of_mass_position": 0.39825331912168627, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013791275752504898, "throat_radius": 0.011110234065975775, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25594995953964}], "aerodynamic_surfaces": [{"length": 0.5583608364085207, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349554908788508]}, {"n": 4, "root_chord": 0.11953952499546078, "tip_chord": 0.060019515589670794, "span": 0.11048023466154316, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502189419236891]}, {"top_radius": 0.06251772710484692, "bottom_radius": 0.0445960715373835, "length": 0.060409573155761856, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002195933879958, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181571198602088, "upper_button_position": 0.08206247352778695}], "rail_length": 5, "inclination": 85.4083980621424, "heading": 54.02997376911363} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.0635047033458565, "mass": 14.6771399532182, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321441137383793, "I_33_without_motor": 0.04775554965894323, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960883703006308, "trigger": 800, "sampling_rate": 105, "lag": 1.4243060970064967, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0454417793616064, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1583659461835523, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4445.963223465393, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326336355315252, "grain_number": 5, "grain_density": 1838.4280803600514, "grain_outer_radius": 0.032310265322667876, "grain_initial_inner_radius": 0.01515904041006457, "grain_initial_height": 0.11838325582512885, "grain_separation": 0.005564273980905943, "grains_center_of_mass_position": 0.3975390318855369, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013194184898053212, "throat_radius": 0.010817259440831749, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543453399679896}], "aerodynamic_surfaces": [{"length": 0.557654764875664, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352851225328817]}, {"n": 4, "root_chord": 0.12032649476711936, "tip_chord": 0.05969866259348668, "span": 0.11033586212029822, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0523580741145477]}, {"top_radius": 0.06383411951276252, "bottom_radius": 0.04257912670889796, "length": 0.06105700830155141, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.69896734285853, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186124910248563, "upper_button_position": 0.08035485183367375}], "rail_length": 5, "inclination": 84.32193709088708, "heading": 55.95580469251935} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350556367871639, "mass": 15.951214122101035, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320005759774674, "I_33_without_motor": 0.04015072103192025, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.113869118509456, "trigger": 800, "sampling_rate": 105, "lag": 1.4648448208735805, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0123925942111052, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2441518945661352, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6645.053249538524, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0340482314588973, "grain_number": 5, "grain_density": 1822.6491410409703, "grain_outer_radius": 0.03326475916707935, "grain_initial_inner_radius": 0.014757991249786929, "grain_initial_height": 0.12006972756383724, "grain_separation": 0.006174795431137202, "grains_center_of_mass_position": 0.39686262433125896, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008751966977858825, "throat_radius": 0.010834761435525832, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553238762447536}], "aerodynamic_surfaces": [{"length": 0.5588573198853152, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344389202771994]}, {"n": 4, "root_chord": 0.1201193563878947, "tip_chord": 0.059571534366444204, "span": 0.10964998804507943, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488539325956112]}, {"top_radius": 0.0631925875556907, "bottom_radius": 0.04182773899894014, "length": 0.060473778666589026, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002021864760456, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198232531389589, "upper_button_position": 0.08037893333708668}], "rail_length": 5, "inclination": 85.01575941285422, "heading": 57.14356165785935} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350157889182158, "mass": 14.959993200017083, "I_11_without_motor": 6.321, "I_22_without_motor": 6.343660613139071, "I_33_without_motor": 0.04946386092798216, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.905985157000972, "trigger": 800, "sampling_rate": 105, "lag": 1.5387617334923123, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9486359700558743, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0816468352619257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6413.028691995611, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351256449091267, "grain_number": 5, "grain_density": 1765.2231091256467, "grain_outer_radius": 0.03285608522179555, "grain_initial_inner_radius": 0.014905117479017939, "grain_initial_height": 0.1196052028912649, "grain_separation": 0.002940766650555996, "grains_center_of_mass_position": 0.3968852209134051, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003653486264137632, "throat_radius": 0.01040568670231555, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254466457302398}], "aerodynamic_surfaces": [{"length": 0.5597928713039452, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334518893295387]}, {"n": 4, "root_chord": 0.11982999546262035, "tip_chord": 0.05999740697018726, "span": 0.1101488466934032, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485633985921847]}, {"top_radius": 0.06348886076656148, "bottom_radius": 0.04514386412740823, "length": 0.058585751081168785, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006676010889913, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181336899745598, "upper_button_position": 0.08253391111443154}], "rail_length": 5, "inclination": 84.77977356740573, "heading": 53.80745015441055} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.063494904168505, "mass": 15.086763276974438, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315823393583024, "I_33_without_motor": 0.01929090980936051, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00026555672131, "trigger": 800, "sampling_rate": 105, "lag": 1.3002352280576657, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.055358954943602, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8362163565958554, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7337.244458258304, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325637956219351, "grain_number": 5, "grain_density": 1865.734236771446, "grain_outer_radius": 0.03310328668924694, "grain_initial_inner_radius": 0.01489382598841287, "grain_initial_height": 0.11919877232165016, "grain_separation": 0.004371248262835012, "grains_center_of_mass_position": 0.3970606783557094, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000540412008844212, "throat_radius": 0.011209853924973496, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563525998301808}], "aerodynamic_surfaces": [{"length": 0.5566726733689197, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356878717813579]}, {"n": 4, "root_chord": 0.12008054850999883, "tip_chord": 0.06110832109943068, "span": 0.10963987774710203, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0480830419859626]}, {"top_radius": 0.06143475147331471, "bottom_radius": 0.04478517984044823, "length": 0.05857517777574764, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010849987657906, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166682637497665, "upper_button_position": 0.08441673501602409}], "rail_length": 5, "inclination": 82.4904222126703, "heading": 53.60719236129066} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350375345739893, "mass": 16.213878340787492, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313572171080515, "I_33_without_motor": 0.029776578741943456, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979267879831205, "trigger": 800, "sampling_rate": 105, "lag": 1.445839640474086, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0020892689585603, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5008642335014974, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7113.1689402232905, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03264237170075856, "grain_number": 5, "grain_density": 1788.6057000489507, "grain_outer_radius": 0.03286867990610589, "grain_initial_inner_radius": 0.01536725539840212, "grain_initial_height": 0.11995459856112245, "grain_separation": 0.0049561042600263705, "grains_center_of_mass_position": 0.3985383189588447, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000208570616178282, "throat_radius": 0.011372973214633706, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550584801744047}], "aerodynamic_surfaces": [{"length": 0.5580622076186339, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353335960799809]}, {"n": 4, "root_chord": 0.11995143429718592, "tip_chord": 0.059896923348468016, "span": 0.10991649031562449, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492223639739897]}, {"top_radius": 0.06452848439157807, "bottom_radius": 0.04416205430101723, "length": 0.05974718712399719, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989883621234233, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169577296358283, "upper_button_position": 0.08203063248759501}], "rail_length": 5, "inclination": 84.32201812428049, "heading": 52.11075279095065} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349502646012745, "mass": 14.939312042099322, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324405808433186, "I_33_without_motor": 0.012997698374840175, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.945837084259656, "trigger": 800, "sampling_rate": 105, "lag": 1.515958222204131, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1201101878348168, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9205160798106324, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6435.893017522784, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03283094468330699, "grain_number": 5, "grain_density": 1884.1436427984167, "grain_outer_radius": 0.032531713771339586, "grain_initial_inner_radius": 0.014081480933547197, "grain_initial_height": 0.1194207455437871, "grain_separation": 0.005488159225790873, "grains_center_of_mass_position": 0.3976093747348795, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008262024894361425, "throat_radius": 0.011092687155605576, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567379226996052}], "aerodynamic_surfaces": [{"length": 0.5575918560114195, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344122773540124]}, {"n": 4, "root_chord": 0.11976142437566424, "tip_chord": 0.060142102987537346, "span": 0.1100136315823332, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490441918051494]}, {"top_radius": 0.06305025107985503, "bottom_radius": 0.043885902335141884, "length": 0.06023028834295907, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984224794644628, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185460530380953, "upper_button_position": 0.0798764264263675}], "rail_length": 5, "inclination": 85.08589645079991, "heading": 51.7423571538903} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349263284906302, "mass": 15.513447793424424, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320498006816321, "I_33_without_motor": 0.04017003162565946, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057610196839267, "trigger": 800, "sampling_rate": 105, "lag": 1.4184171053288226, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9981955030338034, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7654175415974351, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8441.775691644321, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033622075756028956, "grain_number": 5, "grain_density": 1819.2727223841857, "grain_outer_radius": 0.032994016760251, "grain_initial_inner_radius": 0.014837247195484618, "grain_initial_height": 0.12073816384653546, "grain_separation": 0.004351407083997871, "grains_center_of_mass_position": 0.39491383244981826, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00040002772610682875, "throat_radius": 0.010826647759067106, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549591394257589}], "aerodynamic_surfaces": [{"length": 0.5590961475899947, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357414665855168]}, {"n": 4, "root_chord": 0.12046978171040347, "tip_chord": 0.06041624408922515, "span": 0.10936610185832855, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493422735437692]}, {"top_radius": 0.06251677419023417, "bottom_radius": 0.04483741273898661, "length": 0.060398806091873314, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013479165455294, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178606066966449, "upper_button_position": 0.08348730984888453}], "rail_length": 5, "inclination": 84.08430993608347, "heading": 48.793795515742914} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06351228098223431, "mass": 15.85670192003887, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332344888371147, "I_33_without_motor": 0.02583191286783025, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021270225245186, "trigger": 800, "sampling_rate": 105, "lag": 1.494091212769819, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8926142279073767, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4522852316302484, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5428.296189958678, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249774376110672, "grain_number": 5, "grain_density": 1752.554013505081, "grain_outer_radius": 0.032886234691480346, "grain_initial_inner_radius": 0.014414471596391202, "grain_initial_height": 0.12088821981755277, "grain_separation": 0.006287637454251682, "grains_center_of_mass_position": 0.39746463665159115, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00013291767743166328, "throat_radius": 0.010859218943841127, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547779079948407}], "aerodynamic_surfaces": [{"length": 0.5581334420661994, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338167887302617]}, {"n": 4, "root_chord": 0.11977537560942889, "tip_chord": 0.060669756685500426, "span": 0.1108729690409159, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494742480594854]}, {"top_radius": 0.06501278876864412, "bottom_radius": 0.04340850410343756, "length": 0.05997362172100104, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983245355088026, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169201338708725, "upper_button_position": 0.08140440163793006}], "rail_length": 5, "inclination": 84.98764675437678, "heading": 54.038435387598184} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349459213103098, "mass": 16.09383907086666, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333178915443415, "I_33_without_motor": 0.05078349036007862, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.082243675046188, "trigger": 800, "sampling_rate": 105, "lag": 1.4366994264583266, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1404601074818572, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4400838708467292, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7188.61976637496, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359684475068025, "grain_number": 5, "grain_density": 1757.4335480162267, "grain_outer_radius": 0.03305569156871891, "grain_initial_inner_radius": 0.015064736138760311, "grain_initial_height": 0.1226003258149217, "grain_separation": 0.0045703133967935575, "grains_center_of_mass_position": 0.3973735933230767, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005453057354315985, "throat_radius": 0.010733400102825879, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25244204953195}], "aerodynamic_surfaces": [{"length": 0.5580439054799509, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345014663903201]}, {"n": 4, "root_chord": 0.12007262453711545, "tip_chord": 0.06027332576438146, "span": 0.10999636306436764, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501681841444024]}, {"top_radius": 0.06277628693397504, "bottom_radius": 0.0438102363414448, "length": 0.05947101274856825, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010344954900528, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178681387446102, "upper_button_position": 0.0831663567454426}], "rail_length": 5, "inclination": 84.58389897902548, "heading": 53.91415101964775} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349851493450968, "mass": 15.246312233512526, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314574963291141, "I_33_without_motor": 0.04347744808711012, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.957026167905433, "trigger": 800, "sampling_rate": 105, "lag": 1.4464131345381004, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9749179829158365, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4851157986620744, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4808.26037614095, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269094126523998, "grain_number": 5, "grain_density": 1870.1416634482584, "grain_outer_radius": 0.032619863372042084, "grain_initial_inner_radius": 0.01439900208237439, "grain_initial_height": 0.1208495752404922, "grain_separation": 0.004866680476320654, "grains_center_of_mass_position": 0.3969076642977557, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006293519437933242, "throat_radius": 0.011325117172357594, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547494848493537}], "aerodynamic_surfaces": [{"length": 0.5600109640917359, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132708087435898]}, {"n": 4, "root_chord": 0.11968901818040223, "tip_chord": 0.05961576159671969, "span": 0.11013629210506284, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501011923224783]}, {"top_radius": 0.06437510962974559, "bottom_radius": 0.041548372603294303, "length": 0.06100194071954792, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987825256535096, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198097572924984, "upper_button_position": 0.07897276836101119}], "rail_length": 5, "inclination": 84.59417463985221, "heading": 54.30163413768792} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349555280453498, "mass": 15.688551874639433, "I_11_without_motor": 6.321, "I_22_without_motor": 6.339590738926091, "I_33_without_motor": 0.0339863523432693, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.944895718468535, "trigger": 800, "sampling_rate": 105, "lag": 1.7028942749010576, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8605205179481739, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5056801778996591, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6362.310855438838, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273625627500147, "grain_number": 5, "grain_density": 1710.2419050357012, "grain_outer_radius": 0.03272273616841736, "grain_initial_inner_radius": 0.014933797926361079, "grain_initial_height": 0.11901853996973678, "grain_separation": 0.00479995995961203, "grains_center_of_mass_position": 0.39997784139394466, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005108810516592815, "throat_radius": 0.010850102506183316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254723102425265}], "aerodynamic_surfaces": [{"length": 0.5589907719358906, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344529697733636]}, {"n": 4, "root_chord": 0.12009187566698053, "tip_chord": 0.05973477556264585, "span": 0.10984891781503053, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500813676018228]}, {"top_radius": 0.06267833022980121, "bottom_radius": 0.04475706276487981, "length": 0.06115299089822076, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986271704321723, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619732673974601, "upper_button_position": 0.0788944964575713}], "rail_length": 5, "inclination": 87.25420176806038, "heading": 53.43768016617599} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350296567833966, "mass": 15.338496461935641, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317269136201369, "I_33_without_motor": 0.03617788381857444, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022077093557183, "trigger": 800, "sampling_rate": 105, "lag": 1.567296584997923, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.988102093983008, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4471877469664436, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7106.302131409373, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276490979799016, "grain_number": 5, "grain_density": 1734.9796087420173, "grain_outer_radius": 0.03340870357392118, "grain_initial_inner_radius": 0.015097487051771974, "grain_initial_height": 0.12252717401218577, "grain_separation": 0.005248784933461759, "grains_center_of_mass_position": 0.39740915830872914, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00024386843877950237, "throat_radius": 0.011322243574162548, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537636489560418}], "aerodynamic_surfaces": [{"length": 0.5590376753682448, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135032731934747]}, {"n": 4, "root_chord": 0.1191371212964559, "tip_chord": 0.05978215165643132, "span": 0.11019032473691674, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05054174710464]}, {"top_radius": 0.06250508016076685, "bottom_radius": 0.043416066598102314, "length": 0.05861193460155287, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990678599236986, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169568734989073, "upper_button_position": 0.08211098642479131}], "rail_length": 5, "inclination": 85.94326682873586, "heading": 48.91424380343259} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06351089561013772, "mass": 15.375404433441417, "I_11_without_motor": 6.321, "I_22_without_motor": 6.347238864185113, "I_33_without_motor": 0.056176015155962405, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.974749672015983, "trigger": 800, "sampling_rate": 105, "lag": 1.4962540987917439, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9627013560922904, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9483729307678332, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6981.100988852505, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033317922716700615, "grain_number": 5, "grain_density": 1807.0239339709867, "grain_outer_radius": 0.032865108108375965, "grain_initial_inner_radius": 0.014263650311014283, "grain_initial_height": 0.12221315129233663, "grain_separation": 0.005289010887720902, "grains_center_of_mass_position": 0.3970937558530112, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012567092390925391, "throat_radius": 0.009798052585454608, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542214684514346}], "aerodynamic_surfaces": [{"length": 0.5584371883478733, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356677840727312]}, {"n": 4, "root_chord": 0.12028574786665874, "tip_chord": 0.060189315045389276, "span": 0.10978645938417067, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491751951681676]}, {"top_radius": 0.0629982027576706, "bottom_radius": 0.04298466101240134, "length": 0.06056724349129467, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000725714333128, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164285444305387, "upper_button_position": 0.08364402700277407}], "rail_length": 5, "inclination": 85.97990093021703, "heading": 53.647453169714645} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350380368386102, "mass": 15.937141391756356, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3169578108210835, "I_33_without_motor": 0.030112679125763438, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02104205078655, "trigger": 800, "sampling_rate": 105, "lag": 1.4468179714742435, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.014443631312662, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4853983158091322, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7133.150235331569, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03354478954454251, "grain_number": 5, "grain_density": 1854.5226598422107, "grain_outer_radius": 0.03278024453923398, "grain_initial_inner_radius": 0.015167169491727202, "grain_initial_height": 0.11900266857082534, "grain_separation": 0.003297427028368143, "grains_center_of_mass_position": 0.3956924176491691, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007773049446065653, "throat_radius": 0.011120638920380205, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556941935273576}], "aerodynamic_surfaces": [{"length": 0.5588234364548098, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345969458765188]}, {"n": 4, "root_chord": 0.11891611184159821, "tip_chord": 0.06036139176692371, "span": 0.10975539479653343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486060111723245]}, {"top_radius": 0.0629736812026661, "bottom_radius": 0.043288051678580484, "length": 0.05861670722932083, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016146460000843, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173335474773197, "upper_button_position": 0.08428109852276455}], "rail_length": 5, "inclination": 82.82003383417913, "heading": 53.46383987605169} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350271313701464, "mass": 15.52552813847975, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32302498935216, "I_33_without_motor": 0.03506343712277397, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.906326270891139, "trigger": 800, "sampling_rate": 105, "lag": 1.3902063614599904, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8311678950934929, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2386779243528776, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4321.23600895133, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03412628638896731, "grain_number": 5, "grain_density": 1877.2193980306888, "grain_outer_radius": 0.032708533884007324, "grain_initial_inner_radius": 0.01507359329445075, "grain_initial_height": 0.12011108728452152, "grain_separation": 0.004083823372718707, "grains_center_of_mass_position": 0.397354416298895, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004901318372932218, "throat_radius": 0.01009984376482765, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254922145799322}], "aerodynamic_surfaces": [{"length": 0.5568880443938654, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133572276164099]}, {"n": 4, "root_chord": 0.12087052759883131, "tip_chord": 0.05987524285837209, "span": 0.11012259043661737, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485334317550057]}, {"top_radius": 0.06566872969916089, "bottom_radius": 0.044296386607815756, "length": 0.059808562983818835, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995117846094379, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179905850428548, "upper_button_position": 0.0815211995665831}], "rail_length": 5, "inclination": 84.32644506238402, "heading": 55.64649114219934} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350264895844049, "mass": 15.057273892808482, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323524860053769, "I_33_without_motor": 0.051046041702981194, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908960190779135, "trigger": 800, "sampling_rate": 105, "lag": 1.570509318313704, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.133528809682642, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6490599596110502, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6345.767609670865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03220159587102893, "grain_number": 5, "grain_density": 1779.070162383601, "grain_outer_radius": 0.03294839991650555, "grain_initial_inner_radius": 0.015248511484673915, "grain_initial_height": 0.11905115649880624, "grain_separation": 0.00495116872152809, "grains_center_of_mass_position": 0.3971920302073714, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0017817934273997608, "throat_radius": 0.010619049940346268, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566843258567826}], "aerodynamic_surfaces": [{"length": 0.556829279916571, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1364770633806085]}, {"n": 4, "root_chord": 0.11993615940559554, "tip_chord": 0.05974947889267695, "span": 0.10964107653688632, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048689461392288]}, {"top_radius": 0.06292785106342705, "bottom_radius": 0.044794487378718, "length": 0.06134242838973053, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997549865631482, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179854849224355, "upper_button_position": 0.08176950164071262}], "rail_length": 5, "inclination": 85.6307417880396, "heading": 54.57036094512087} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350139165820981, "mass": 15.243351001206328, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333496510831125, "I_33_without_motor": 0.04208604976861438, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.97698730332013, "trigger": 800, "sampling_rate": 105, "lag": 1.3433366680927754, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9175900589148959, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7605084765571275, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6738.7948324657455, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313644415563477, "grain_number": 5, "grain_density": 1839.1319330900517, "grain_outer_radius": 0.03273511854586341, "grain_initial_inner_radius": 0.01564936822148568, "grain_initial_height": 0.12030595536903439, "grain_separation": 0.0024836714517729374, "grains_center_of_mass_position": 0.3967302772014639, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013263098891789565, "throat_radius": 0.010432548693621271, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550630600672155}], "aerodynamic_surfaces": [{"length": 0.5590164897193991, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350933172000057]}, {"n": 4, "root_chord": 0.1193420926098538, "tip_chord": 0.05981441258728995, "span": 0.10998637971468984, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488302909817167]}, {"top_radius": 0.06257755598744655, "bottom_radius": 0.04302984556422558, "length": 0.06071353545267109, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003465703609423, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174665274219387, "upper_button_position": 0.08288004293900353}], "rail_length": 5, "inclination": 86.34742979378142, "heading": 51.875505783078644} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349311212955863, "mass": 15.034650317732634, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331023368077293, "I_33_without_motor": 0.037292388430591794, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.208907702880714, "trigger": 800, "sampling_rate": 105, "lag": 1.497345095352789, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0528246564036765, "trigger": "apogee", "sampling_rate": 105, "lag": 2.253001257076424, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7755.977419656086, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032978947182267855, "grain_number": 5, "grain_density": 1790.3463142734684, "grain_outer_radius": 0.03246136591870724, "grain_initial_inner_radius": 0.01534982339558268, "grain_initial_height": 0.1196827997483724, "grain_separation": 0.0037742612498423353, "grains_center_of_mass_position": 0.3978889560818731, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001813777343226938, "throat_radius": 0.01107878585056053, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547513121588396}], "aerodynamic_surfaces": [{"length": 0.5573454666677897, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346813200134438]}, {"n": 4, "root_chord": 0.11925978540609337, "tip_chord": 0.060536565210216546, "span": 0.11017909648640856, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505699431127578]}, {"top_radius": 0.06250917625036122, "bottom_radius": 0.04345374131204298, "length": 0.06000529865660437, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977222649147169, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169580262879988, "upper_button_position": 0.08076423862671811}], "rail_length": 5, "inclination": 84.16800104626827, "heading": 54.17921098019529} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349923487529147, "mass": 15.777594131172547, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326687376607426, "I_33_without_motor": 0.04269345212698108, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.050138353029311, "trigger": 800, "sampling_rate": 105, "lag": 1.7407707096647917, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0295344018853736, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6357829161393092, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8465.649098312568, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338278451951113, "grain_number": 5, "grain_density": 1751.048041421587, "grain_outer_radius": 0.032730719285893765, "grain_initial_inner_radius": 0.015005806243151325, "grain_initial_height": 0.12039322546677159, "grain_separation": 0.004914747232508815, "grains_center_of_mass_position": 0.39705566621727256, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008162166738205734, "throat_radius": 0.010305231642268195, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541077339504325}], "aerodynamic_surfaces": [{"length": 0.5596794514025156, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341855517978874]}, {"n": 4, "root_chord": 0.12045276288685204, "tip_chord": 0.05990222079772096, "span": 0.11018486446223498, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496801561416729]}, {"top_radius": 0.062290932872214266, "bottom_radius": 0.04457290449304146, "length": 0.06192062419256537, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6978516631148021, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178744226936645, "upper_button_position": 0.07997724042113752}], "rail_length": 5, "inclination": 86.7452829559596, "heading": 54.75296050515539} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349563262667625, "mass": 15.036242881661906, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328154437806794, "I_33_without_motor": 0.05028551404086981, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014069237519843, "trigger": 800, "sampling_rate": 105, "lag": 1.5642146641270902, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9940231556981094, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6476010534831889, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6316.5125272618825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317664524539637, "grain_number": 5, "grain_density": 1733.1512120612754, "grain_outer_radius": 0.03292487326464219, "grain_initial_inner_radius": 0.014914542465827891, "grain_initial_height": 0.11979261702379476, "grain_separation": 0.004371737519549821, "grains_center_of_mass_position": 0.39911405816514145, "center_of_dry_mass_position": 0.317, "nozzle_position": 7.216200999885842e-06, "throat_radius": 0.011702991578351262, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254042769603492}], "aerodynamic_surfaces": [{"length": 0.5565810703194051, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351149221547636]}, {"n": 4, "root_chord": 0.11996828287188406, "tip_chord": 0.05971953218876548, "span": 0.10925793621779593, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048889402931273]}, {"top_radius": 0.06322896844819573, "bottom_radius": 0.044518571808787176, "length": 0.06107181075701125, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986703873517659, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182071833437651, "upper_button_position": 0.08046320400800078}], "rail_length": 5, "inclination": 83.03245614320828, "heading": 52.541025470696255} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350217893239427, "mass": 15.271454601888802, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325715398559546, "I_33_without_motor": 0.03224271777335693, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.872487645324929, "trigger": 800, "sampling_rate": 105, "lag": 1.6116473557616955, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9337495186046463, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6523075666454021, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5029.1017674896975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032505767202150086, "grain_number": 5, "grain_density": 1882.3691910977627, "grain_outer_radius": 0.03292442401859661, "grain_initial_inner_radius": 0.014553555787152296, "grain_initial_height": 0.119460269033686, "grain_separation": 0.006245262125704764, "grains_center_of_mass_position": 0.3953066622016696, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006183509952802789, "throat_radius": 0.010958759898082586, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551443829821898}], "aerodynamic_surfaces": [{"length": 0.5573215191340137, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344994192225402]}, {"n": 4, "root_chord": 0.11985369863554012, "tip_chord": 0.059914613840437454, "span": 0.10989169631962949, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488534411126191]}, {"top_radius": 0.06243297995547278, "bottom_radius": 0.04394452425856621, "length": 0.060689893767519744, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995281701706146, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177587743775803, "upper_button_position": 0.08176939579303433}], "rail_length": 5, "inclination": 85.89416585423994, "heading": 58.30298880000966} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350175535997438, "mass": 15.127288642335694, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33244847909139, "I_33_without_motor": 0.04071049989016342, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908125776919206, "trigger": 800, "sampling_rate": 105, "lag": 1.552829996523475, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9184797325433699, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6343418680517452, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5669.177681465671, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03251143627094544, "grain_number": 5, "grain_density": 1760.4415962224045, "grain_outer_radius": 0.0335547884302645, "grain_initial_inner_radius": 0.01492453583790962, "grain_initial_height": 0.12101645971414436, "grain_separation": 0.004326051404673183, "grains_center_of_mass_position": 0.39626390775784626, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014616406588992378, "throat_radius": 0.01089617345057554, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535798069910173}], "aerodynamic_surfaces": [{"length": 0.5583067509550814, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334703500649816]}, {"n": 4, "root_chord": 0.12065949544772109, "tip_chord": 0.06005891776611765, "span": 0.1104533639660214, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049674884534514]}, {"top_radius": 0.06258953343494815, "bottom_radius": 0.04378267824532615, "length": 0.058742835843445564, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998307439717164, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.620244042850007, "upper_button_position": 0.0795867011217094}], "rail_length": 5, "inclination": 83.31039959503802, "heading": 50.54389136646926} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349521458601523, "mass": 15.761001466796186, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326551705746702, "I_33_without_motor": 0.020003536024910985, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15821650129816, "trigger": 800, "sampling_rate": 105, "lag": 1.3975191143893604, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9689001038493782, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5230472178222547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5857.023833872563, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364995125812358, "grain_number": 5, "grain_density": 1823.9160591312518, "grain_outer_radius": 0.03317855282438854, "grain_initial_inner_radius": 0.014667085573243904, "grain_initial_height": 0.1190055953696461, "grain_separation": 0.005025929963058816, "grains_center_of_mass_position": 0.3964535571192754, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001079005701867501, "throat_radius": 0.0111184059964438, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551838413304237}], "aerodynamic_surfaces": [{"length": 0.558706057668256, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340475260560379]}, {"n": 4, "root_chord": 0.11996709570155692, "tip_chord": 0.060438839056671474, "span": 0.10939385616651982, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514555024875336]}, {"top_radius": 0.0629050545889006, "bottom_radius": 0.04271895877295745, "length": 0.058212488743661146, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005795416979578, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190236353210441, "upper_button_position": 0.08155590637691368}], "rail_length": 5, "inclination": 85.39554499593393, "heading": 54.90931227452015} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350006548150573, "mass": 15.030966566871829, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331959638559402, "I_33_without_motor": 0.046950379517886415, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.042283511880056, "trigger": 800, "sampling_rate": 105, "lag": 1.4389840776973846, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9299823656710544, "trigger": "apogee", "sampling_rate": 105, "lag": 1.361187415850293, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6588.50971652622, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03301469903373206, "grain_number": 5, "grain_density": 1792.0439014778522, "grain_outer_radius": 0.033382115055129315, "grain_initial_inner_radius": 0.014733298694595038, "grain_initial_height": 0.12110545819216414, "grain_separation": 0.0033904010815139626, "grains_center_of_mass_position": 0.3974303161495319, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00024438644983991226, "throat_radius": 0.011326022471824472, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547235103205}], "aerodynamic_surfaces": [{"length": 0.5594383662923729, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345364629851424]}, {"n": 4, "root_chord": 0.11989733358659889, "tip_chord": 0.0600280323459937, "span": 0.11088769557772496, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050339400584582]}, {"top_radius": 0.06276731420329149, "bottom_radius": 0.0439928826970717, "length": 0.06020184128035113, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993864683312216, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186805563215814, "upper_button_position": 0.08070591200964028}], "rail_length": 5, "inclination": 84.683661148958, "heading": 49.69005903401184} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350232936531937, "mass": 15.751629388882739, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325371353362718, "I_33_without_motor": 0.024975105666647845, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.900301933627173, "trigger": 800, "sampling_rate": 105, "lag": 1.3415603032517884, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0797990279696945, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4992152921938706, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6320.020338853345, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281237046968873, "grain_number": 5, "grain_density": 1935.6951004066768, "grain_outer_radius": 0.03290163622331336, "grain_initial_inner_radius": 0.015395373337478205, "grain_initial_height": 0.1213321096181507, "grain_separation": 0.004093385409526192, "grains_center_of_mass_position": 0.3957510952849324, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004068081693376392, "throat_radius": 0.011058599924536078, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254299158680194}], "aerodynamic_surfaces": [{"length": 0.5589072555768849, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328534266186894]}, {"n": 4, "root_chord": 0.11921762355741213, "tip_chord": 0.06051567209543616, "span": 0.10976596538055311, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500456994375846]}, {"top_radius": 0.06338497679112091, "bottom_radius": 0.04219577155189998, "length": 0.060589238535115914, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994085357171413, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167605189685813, "upper_button_position": 0.08264801674856004}], "rail_length": 5, "inclination": 84.86283802028566, "heading": 47.25550884460915} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0634962262380789, "mass": 15.265518479448291, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319812531531232, "I_33_without_motor": 0.04274044725135713, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014780718300045, "trigger": 800, "sampling_rate": 105, "lag": 1.3402786598483711, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9496814912116316, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5950612276859502, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6567.156568548895, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032511585663136756, "grain_number": 5, "grain_density": 1858.9037991548691, "grain_outer_radius": 0.03351760494195077, "grain_initial_inner_radius": 0.015208127130482984, "grain_initial_height": 0.11832800495003061, "grain_separation": 0.0060528896792025385, "grains_center_of_mass_position": 0.3977378668357443, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000601051372275991, "throat_radius": 0.011112904861932962, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554075104390512}], "aerodynamic_surfaces": [{"length": 0.5583925310923541, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335278441461634]}, {"n": 4, "root_chord": 0.1189221472233989, "tip_chord": 0.06113135267337732, "span": 0.10998106136201677, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488806476117007]}, {"top_radius": 0.06455653914289021, "bottom_radius": 0.04459621105615217, "length": 0.060735688682433515, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984193005787146, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177206537963595, "upper_button_position": 0.08069864678235505}], "rail_length": 5, "inclination": 84.89185328356857, "heading": 54.946289000561336} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350105193982425, "mass": 15.111050657800988, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3401770845573315, "I_33_without_motor": 0.03416150418743654, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00493181100256, "trigger": 800, "sampling_rate": 105, "lag": 1.61287327026481, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0223468482593105, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6065614325286492, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6980.991147042957, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317465916547353, "grain_number": 5, "grain_density": 1766.7548664940082, "grain_outer_radius": 0.03311740231017148, "grain_initial_inner_radius": 0.014654731669291715, "grain_initial_height": 0.12096910079304339, "grain_separation": 0.005274630024459539, "grains_center_of_mass_position": 0.39774414014955817, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005609788195666557, "throat_radius": 0.010143445376137249, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256696245724801}], "aerodynamic_surfaces": [{"length": 0.5601938810850735, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344367065335963]}, {"n": 4, "root_chord": 0.12012357303421195, "tip_chord": 0.059314458501353855, "span": 0.10914301933773964, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478537419656442]}, {"top_radius": 0.06294517159424047, "bottom_radius": 0.041003436937520635, "length": 0.06000263826038823, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991536085845504, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180444072924922, "upper_button_position": 0.08110920129205823}], "rail_length": 5, "inclination": 85.15182633299364, "heading": 54.613821810583126} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350145007218215, "mass": 15.262584938351987, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318512103763232, "I_33_without_motor": 0.03225529183946932, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.860867286672647, "trigger": 800, "sampling_rate": 105, "lag": 1.4519404824445221, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9903429624585355, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4334798084739893, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3566.4124552460744, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03280742452329913, "grain_number": 5, "grain_density": 1822.2390321141156, "grain_outer_radius": 0.033059311994637054, "grain_initial_inner_radius": 0.015313166366135889, "grain_initial_height": 0.12276043392819225, "grain_separation": 0.006208385871984451, "grains_center_of_mass_position": 0.39651573207110424, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018744511582680016, "throat_radius": 0.010455240361053502, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568361439526512}], "aerodynamic_surfaces": [{"length": 0.5598244972225584, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340718808474666]}, {"n": 4, "root_chord": 0.1192043187906862, "tip_chord": 0.060416713103847976, "span": 0.11079296894127716, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485605117263412]}, {"top_radius": 0.06409558700431889, "bottom_radius": 0.04446115127832139, "length": 0.05994465344077145, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001540273467675, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185701795213963, "upper_button_position": 0.0815838478253712}], "rail_length": 5, "inclination": 83.5359095398495, "heading": 53.40897568975733} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350497292033117, "mass": 15.004345712295194, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316148515362308, "I_33_without_motor": 0.04016391725786375, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.99022659901807, "trigger": 800, "sampling_rate": 105, "lag": 1.4583581625531061, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9459780263193014, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7863564057029937, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7414.872271083916, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294670652778986, "grain_number": 5, "grain_density": 1752.1259588255043, "grain_outer_radius": 0.03393242981081452, "grain_initial_inner_radius": 0.014523835893633279, "grain_initial_height": 0.11879637193393067, "grain_separation": 0.0059940072860715865, "grains_center_of_mass_position": 0.39544124597180286, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000526454916639025, "throat_radius": 0.010954849846558628, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254993643575975}], "aerodynamic_surfaces": [{"length": 0.5569723289914913, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343078532442612]}, {"n": 4, "root_chord": 0.11966049964458707, "tip_chord": 0.06103553977033497, "span": 0.10954567506641329, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495160788989881]}, {"top_radius": 0.06273557469066074, "bottom_radius": 0.044165109610244786, "length": 0.0594883496860743, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001779923710483, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176048842160381, "upper_button_position": 0.08257310815501018}], "rail_length": 5, "inclination": 85.47740151103743, "heading": 52.45396153661797} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350364309883752, "mass": 15.536829449205685, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3054447136366765, "I_33_without_motor": 0.02779974412040071, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.180255190465969, "trigger": 800, "sampling_rate": 105, "lag": 1.644541460142065, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0790562784675757, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5946846918521835, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6880.088253132789, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032214384685606404, "grain_number": 5, "grain_density": 1882.7256029236169, "grain_outer_radius": 0.03335696658270955, "grain_initial_inner_radius": 0.015082429700977718, "grain_initial_height": 0.1214540937913061, "grain_separation": 0.00509902395691921, "grains_center_of_mass_position": 0.3988791283616123, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000867124195670177, "throat_radius": 0.011751627878629092, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558907790636005}], "aerodynamic_surfaces": [{"length": 0.5589118751059595, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333382432562595]}, {"n": 4, "root_chord": 0.11904103702889667, "tip_chord": 0.059518905468577285, "span": 0.10960716909517935, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507130760273649]}, {"top_radius": 0.06423523654876517, "bottom_radius": 0.04240499025656951, "length": 0.05988802390115004, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991981901120835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183951893687963, "upper_button_position": 0.08080300074328717}], "rail_length": 5, "inclination": 85.37144723518009, "heading": 55.60121815039689} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350452040034608, "mass": 15.168856022942617, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3113594580505366, "I_33_without_motor": 0.044652218420206446, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090549262679112, "trigger": 800, "sampling_rate": 105, "lag": 1.496167624256874, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8337075028142357, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5159915104634687, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6170.004499290819, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033044205298827775, "grain_number": 5, "grain_density": 1886.590532786842, "grain_outer_radius": 0.03396822923914479, "grain_initial_inner_radius": 0.015355674796846694, "grain_initial_height": 0.11955275225918668, "grain_separation": 0.005482118598937694, "grains_center_of_mass_position": 0.39672526284381204, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00046756527132764766, "throat_radius": 0.01072051034048234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537556880668204}], "aerodynamic_surfaces": [{"length": 0.5581157222953, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133470449213522]}, {"n": 4, "root_chord": 0.12015872580530507, "tip_chord": 0.060395346261724665, "span": 0.11079082782818699, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05204049647821]}, {"top_radius": 0.06299785317825411, "bottom_radius": 0.042721794116236084, "length": 0.06130615549125856, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002115160912135, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179182665062248, "upper_button_position": 0.08229324958498863}], "rail_length": 5, "inclination": 83.68846529911325, "heading": 50.38854953534766} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350249494149907, "mass": 15.266008203893412, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3191799078455135, "I_33_without_motor": 0.04560205932777747, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89920531019185, "trigger": 800, "sampling_rate": 105, "lag": 1.600366706240701, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0639998723820627, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7439735903008442, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6439.363307436382, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343881530141053, "grain_number": 5, "grain_density": 1736.3183715546488, "grain_outer_radius": 0.03277371403179589, "grain_initial_inner_radius": 0.014913631153515334, "grain_initial_height": 0.12130396523855999, "grain_separation": 0.0055796017905588614, "grains_center_of_mass_position": 0.3971707468808023, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005384525961170852, "throat_radius": 0.01000366912327004, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565008312576478}], "aerodynamic_surfaces": [{"length": 0.5562193496894883, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338022960899117]}, {"n": 4, "root_chord": 0.12063870640328504, "tip_chord": 0.05992908817257836, "span": 0.10979616925029967, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484539556571175]}, {"top_radius": 0.06334328198220521, "bottom_radius": 0.04512733717809992, "length": 0.05984553413990472, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998648052094474, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188367842688056, "upper_button_position": 0.08102802094064177}], "rail_length": 5, "inclination": 84.29944968933196, "heading": 53.0328694565553} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349815513668688, "mass": 15.8518875621232, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330997783279869, "I_33_without_motor": 0.04855068440525993, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.163409799868592, "trigger": 800, "sampling_rate": 105, "lag": 1.5105988352429587, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9655049026429153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4066319886445464, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6085.462922433339, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033968001520082766, "grain_number": 5, "grain_density": 1704.0251354408415, "grain_outer_radius": 0.03335820272843942, "grain_initial_inner_radius": 0.015520426357947065, "grain_initial_height": 0.11974377474895496, "grain_separation": 0.007612020310498581, "grains_center_of_mass_position": 0.39796517817714516, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00020562307264493452, "throat_radius": 0.01086257502402275, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541512277836584}], "aerodynamic_surfaces": [{"length": 0.5592890262790786, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338111539344364]}, {"n": 4, "root_chord": 0.12034142846929315, "tip_chord": 0.059633896731487154, "span": 0.11036603478976698, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497849668341233]}, {"top_radius": 0.06339213464867974, "bottom_radius": 0.04210432338147142, "length": 0.06003196678748668, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992233914516502, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618627401406388, "upper_button_position": 0.0805959900452623}], "rail_length": 5, "inclination": 83.06946126072714, "heading": 49.34500610969657} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349671426673958, "mass": 15.391630318131673, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327126360372265, "I_33_without_motor": 0.04271132961053227, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.994245533502577, "trigger": 800, "sampling_rate": 105, "lag": 1.3167659809067285, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0501427608454335, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4260716065230317, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4942.36337264312, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0325610955356209, "grain_number": 5, "grain_density": 1866.0792357687965, "grain_outer_radius": 0.03343418599413143, "grain_initial_inner_radius": 0.015008382753626625, "grain_initial_height": 0.11985930066739979, "grain_separation": 0.006389341766711765, "grains_center_of_mass_position": 0.3986802981810642, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002348341811633436, "throat_radius": 0.010136760060719327, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254286139476395}], "aerodynamic_surfaces": [{"length": 0.5573166403507973, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328872876907177]}, {"n": 4, "root_chord": 0.11944147412730757, "tip_chord": 0.06017886769812806, "span": 0.10992321494494524, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483043457360375]}, {"top_radius": 0.06447772099704462, "bottom_radius": 0.04348493243517282, "length": 0.05905296838698975, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989051510319695, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184657076268668, "upper_button_position": 0.08043944340510267}], "rail_length": 5, "inclination": 83.64648161142553, "heading": 53.124985006662} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06351039447306103, "mass": 15.357024325778593, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328421144905703, "I_33_without_motor": 0.026786618104791722, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.879899038663797, "trigger": 800, "sampling_rate": 105, "lag": 1.3324145158849396, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9513973073529288, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4273532227527888, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5964.951885794558, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033052805459066185, "grain_number": 5, "grain_density": 1833.8722919463337, "grain_outer_radius": 0.03284173879531873, "grain_initial_inner_radius": 0.014205253717837197, "grain_initial_height": 0.12128200451453285, "grain_separation": 0.0070987995023458865, "grains_center_of_mass_position": 0.39714971790170106, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005523703940125268, "throat_radius": 0.010621930830162099, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552590334844078}], "aerodynamic_surfaces": [{"length": 0.5579234064218485, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337567205684649]}, {"n": 4, "root_chord": 0.12020136499259482, "tip_chord": 0.059068610496717217, "span": 0.11111821744403286, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503701955162466]}, {"top_radius": 0.06261725147102769, "bottom_radius": 0.04507614970214873, "length": 0.06048803997110129, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699452104473959, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192482701647588, "upper_button_position": 0.0802038343092002}], "rail_length": 5, "inclination": 84.92035124868029, "heading": 51.87296812250537} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349670226495813, "mass": 15.643876543907757, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327348844999056, "I_33_without_motor": 0.04031155809047008, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.023095958603134, "trigger": 800, "sampling_rate": 105, "lag": 1.4859047905600924, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9729424752913698, "trigger": "apogee", "sampling_rate": 105, "lag": 1.539645149958529, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7017.214455204171, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282830026374952, "grain_number": 5, "grain_density": 1841.3508643517, "grain_outer_radius": 0.032968447589441514, "grain_initial_inner_radius": 0.015062826653452491, "grain_initial_height": 0.11931783566825488, "grain_separation": 0.004995416385713879, "grains_center_of_mass_position": 0.39764604626306616, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013069836319928075, "throat_radius": 0.010081859450829478, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546750076186428}], "aerodynamic_surfaces": [{"length": 0.5582477659690347, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333670275540404]}, {"n": 4, "root_chord": 0.1195501135285466, "tip_chord": 0.060343097890004756, "span": 0.1095181480162601, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493066433591758]}, {"top_radius": 0.06384053866862703, "bottom_radius": 0.04451245901381556, "length": 0.06071108064434416, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700771850785148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193829186139446, "upper_button_position": 0.08138893217120347}], "rail_length": 5, "inclination": 83.91885953994408, "heading": 52.353860321914546} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350229822161425, "mass": 15.943566442942652, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310454192316073, "I_33_without_motor": 0.0229358799169347, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.951294608365956, "trigger": 800, "sampling_rate": 105, "lag": 1.4922505658102347, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9977576147709168, "trigger": "apogee", "sampling_rate": 105, "lag": 1.60090368196316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5197.267166747015, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295579043970143, "grain_number": 5, "grain_density": 1857.9077631943326, "grain_outer_radius": 0.03296636515952078, "grain_initial_inner_radius": 0.015459004045702529, "grain_initial_height": 0.12070596250054422, "grain_separation": 0.005565137772410995, "grains_center_of_mass_position": 0.3973072201261587, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007611010917679906, "throat_radius": 0.010631391481749354, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255660686104537}], "aerodynamic_surfaces": [{"length": 0.5572489612154091, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337713373993041]}, {"n": 4, "root_chord": 0.11939675182136883, "tip_chord": 0.059767026963534135, "span": 0.11056111810679771, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050185884328298]}, {"top_radius": 0.0635658609762217, "bottom_radius": 0.04336512336997032, "length": 0.058709055037727984, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000359754206437, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183891341047301, "upper_button_position": 0.0816468413159136}], "rail_length": 5, "inclination": 84.55774420372092, "heading": 52.80599146367649} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06351090774531747, "mass": 15.379960470547813, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306245921833207, "I_33_without_motor": 0.023849647959649126, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.900880371647611, "trigger": 800, "sampling_rate": 105, "lag": 1.6400778219934748, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0646544177791188, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3670727721739595, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6086.380908813613, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032930431484459705, "grain_number": 5, "grain_density": 1822.3292345512339, "grain_outer_radius": 0.03319211868538409, "grain_initial_inner_radius": 0.015328649691166906, "grain_initial_height": 0.12079403478601593, "grain_separation": 0.006628804959409665, "grains_center_of_mass_position": 0.39858691126852375, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016735164364605599, "throat_radius": 0.012342770227057287, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552267752016963}], "aerodynamic_surfaces": [{"length": 0.5564172370439088, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134666742513063]}, {"n": 4, "root_chord": 0.12012468078204194, "tip_chord": 0.060406824027655986, "span": 0.10903197383287312, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496727043191618]}, {"top_radius": 0.06222451268579203, "bottom_radius": 0.04310987762933625, "length": 0.061701234544090766, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996198164116519, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173664226698234, "upper_button_position": 0.0822533937418285}], "rail_length": 5, "inclination": 84.37655843890767, "heading": 54.2725134488252} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0634960656643911, "mass": 14.971134975766002, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311684894231926, "I_33_without_motor": 0.023174153849685145, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054840587599909, "trigger": 800, "sampling_rate": 105, "lag": 1.4985485218169468, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9076583867186471, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6833535539754374, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7743.944586861753, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033755476142306166, "grain_number": 5, "grain_density": 1897.7393901466562, "grain_outer_radius": 0.03330630083714205, "grain_initial_inner_radius": 0.01507069178367623, "grain_initial_height": 0.11984991478043545, "grain_separation": 0.004917187171975485, "grains_center_of_mass_position": 0.3957785917722271, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00020917488307930628, "throat_radius": 0.011062691502277589, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253458130591637}], "aerodynamic_surfaces": [{"length": 0.5573379047638858, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348945974240663]}, {"n": 4, "root_chord": 0.1191882346389013, "tip_chord": 0.06034424940289524, "span": 0.11045755693600537, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484984730400067]}, {"top_radius": 0.06487277113893242, "bottom_radius": 0.044539971862034594, "length": 0.06071825799885583, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989701777566242, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194520747326309, "upper_button_position": 0.07951810302399331}], "rail_length": 5, "inclination": 83.64725924948318, "heading": 53.405981328739834} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350447655293212, "mass": 15.382500631684453, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319014398416424, "I_33_without_motor": 0.03220597292328091, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.17925887947132, "trigger": 800, "sampling_rate": 105, "lag": 1.5758038141957444, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9374255567371393, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2930450609067359, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4847.491487713269, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03342140175592871, "grain_number": 5, "grain_density": 1871.430119573105, "grain_outer_radius": 0.033209429253293926, "grain_initial_inner_radius": 0.014543729368513562, "grain_initial_height": 0.11783211423185094, "grain_separation": 0.005877796077739796, "grains_center_of_mass_position": 0.3988488689636251, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000228796439686751, "throat_radius": 0.011328018208292615, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558394825657861}], "aerodynamic_surfaces": [{"length": 0.5601731290139014, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135908202012188]}, {"n": 4, "root_chord": 0.120314390123065, "tip_chord": 0.06053660299874932, "span": 0.11057308149242483, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050096841727053]}, {"top_radius": 0.06428261155021714, "bottom_radius": 0.043222715151279664, "length": 0.060419274765254084, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004246833794405, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172737689004607, "upper_button_position": 0.08315091447897982}], "rail_length": 5, "inclination": 87.08827665090621, "heading": 50.870131780551205} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350229718469422, "mass": 15.559886912005753, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312505138650756, "I_33_without_motor": 0.029107137590350288, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017045843335696, "trigger": 800, "sampling_rate": 105, "lag": 1.5224828480500532, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9938687473397013, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6488222023678387, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6208.286952344212, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332673496599484, "grain_number": 5, "grain_density": 1791.2068008393535, "grain_outer_radius": 0.03341310051012124, "grain_initial_inner_radius": 0.014970619014685516, "grain_initial_height": 0.11875647391213028, "grain_separation": 0.00609056354884834, "grains_center_of_mass_position": 0.39791176275433926, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001598092002813151, "throat_radius": 0.011560908558806907, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561673543789995}], "aerodynamic_surfaces": [{"length": 0.5609235369531583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327784130719807]}, {"n": 4, "root_chord": 0.12037796270488751, "tip_chord": 0.06022217754816611, "span": 0.10994361361854724, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490294085055967]}, {"top_radius": 0.06289329367555833, "bottom_radius": 0.04341918440508617, "length": 0.059576383703869355, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700167582034953, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182345847957158, "upper_button_position": 0.08193299723923719}], "rail_length": 5, "inclination": 85.67670533807582, "heading": 52.20140219674064} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349646374840653, "mass": 15.841314685355853, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311538794004001, "I_33_without_motor": 0.03293281840457727, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.973512476165885, "trigger": 800, "sampling_rate": 105, "lag": 1.309375006758858, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8955400522432259, "trigger": "apogee", "sampling_rate": 105, "lag": 1.290194808960108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6984.848508066699, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278619709725547, "grain_number": 5, "grain_density": 1885.9542798291266, "grain_outer_radius": 0.03251055481761812, "grain_initial_inner_radius": 0.014814538695944741, "grain_initial_height": 0.1187746488856458, "grain_separation": 0.004770130195047359, "grains_center_of_mass_position": 0.39731667669831994, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001036669018493848, "throat_radius": 0.011058423281453036, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255031723285249}], "aerodynamic_surfaces": [{"length": 0.5580508311109142, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347917339119986]}, {"n": 4, "root_chord": 0.11994713726290678, "tip_chord": 0.05964014722387521, "span": 0.108996368944228, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495142194674927]}, {"top_radius": 0.06393500445985964, "bottom_radius": 0.042236724962940446, "length": 0.060085268655610015, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009151000744325, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167184528739557, "upper_button_position": 0.08419664720047682}], "rail_length": 5, "inclination": 86.4467743943315, "heading": 54.96829116496805} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349678901375494, "mass": 15.26507839655482, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335253206466325, "I_33_without_motor": 0.022679619178035938, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.844163014125446, "trigger": 800, "sampling_rate": 105, "lag": 1.5456756941395875, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1417317290980478, "trigger": "apogee", "sampling_rate": 105, "lag": 1.626138816020794, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8833.308239608754, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03227034741677671, "grain_number": 5, "grain_density": 1709.2063754005771, "grain_outer_radius": 0.0327417602184825, "grain_initial_inner_radius": 0.015135675402261574, "grain_initial_height": 0.12061232424308488, "grain_separation": 0.0041667778201124675, "grains_center_of_mass_position": 0.3981029726119653, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012837518677145624, "throat_radius": 0.011380856877550308, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549918055727403}], "aerodynamic_surfaces": [{"length": 0.5578710712690336, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133899295701086]}, {"n": 4, "root_chord": 0.12048200842273549, "tip_chord": 0.059902146971836955, "span": 0.11037699028870324, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051195233621534]}, {"top_radius": 0.06286344289088594, "bottom_radius": 0.04387214657969392, "length": 0.06025148608819187, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009555061092037, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174234026582869, "upper_button_position": 0.08353210345091677}], "rail_length": 5, "inclination": 84.17702384272185, "heading": 49.60533839760393} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06351055769334299, "mass": 15.964424558573958, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319302359175458, "I_33_without_motor": 0.04077247327975055, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.98033623530704, "trigger": 800, "sampling_rate": 105, "lag": 1.5385309958406026, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8973734416134189, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4144778140150003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6151.6936584407, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287195845590146, "grain_number": 5, "grain_density": 1754.956569718196, "grain_outer_radius": 0.03309768370435647, "grain_initial_inner_radius": 0.015283776520283671, "grain_initial_height": 0.12075633243114339, "grain_separation": 0.0045911865094999255, "grains_center_of_mass_position": 0.3983414335585751, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00028971956617039244, "throat_radius": 0.01093830393198033, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564370462521208}], "aerodynamic_surfaces": [{"length": 0.5583843215373727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135234425584673]}, {"n": 4, "root_chord": 0.11950676613707774, "tip_chord": 0.06013386309598451, "span": 0.10976592892074827, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499852823477256]}, {"top_radius": 0.06298358700472138, "bottom_radius": 0.04382964340097355, "length": 0.06023234219045797, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986128208125092, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176699189962509, "upper_button_position": 0.0809429018162583}], "rail_length": 5, "inclination": 86.18736814969007, "heading": 51.94800944627585} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350579214966522, "mass": 15.094870547761193, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323686606252142, "I_33_without_motor": 0.02072039746311804, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06421950324578, "trigger": 800, "sampling_rate": 105, "lag": 1.652077295170392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0885706083758138, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5878884069172872, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6971.1320356852075, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03360577389252902, "grain_number": 5, "grain_density": 1800.9301403475806, "grain_outer_radius": 0.03192770684700297, "grain_initial_inner_radius": 0.01593659074704754, "grain_initial_height": 0.11830630429053104, "grain_separation": 0.005265833043059404, "grains_center_of_mass_position": 0.39670233141258837, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009100011464872376, "throat_radius": 0.010577836437012886, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553084155009027}], "aerodynamic_surfaces": [{"length": 0.5578754682084521, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347859102256042]}, {"n": 4, "root_chord": 0.11955009778530049, "tip_chord": 0.05958803640451725, "span": 0.11071648813834917, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492600083098766]}, {"top_radius": 0.06557326391121995, "bottom_radius": 0.044271670932900735, "length": 0.05941361767919027, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995082720612636, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177029886847634, "upper_button_position": 0.08180528337650028}], "rail_length": 5, "inclination": 83.59016079720044, "heading": 50.33518902057008} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06350312312371874, "mass": 14.927921634775402, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325376050304249, "I_33_without_motor": 0.03167627166763819, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.814322620839615, "trigger": 800, "sampling_rate": 105, "lag": 1.612259455294708, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0436869876848502, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3541926405411286, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6512.469945318508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336679706236145, "grain_number": 5, "grain_density": 1870.5099117178304, "grain_outer_radius": 0.033397753334151646, "grain_initial_inner_radius": 0.01500579871173055, "grain_initial_height": 0.12222419341962164, "grain_separation": 0.0059303689979202335, "grains_center_of_mass_position": 0.39631009157553637, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001309675931816028, "throat_radius": 0.010693462986025777, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546542661690376}], "aerodynamic_surfaces": [{"length": 0.5580118257299367, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1316314100775184]}, {"n": 4, "root_chord": 0.12034384663654157, "tip_chord": 0.060632063534884796, "span": 0.10917588986152324, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050489387626772]}, {"top_radius": 0.06276864549612869, "bottom_radius": 0.04384143386366833, "length": 0.05890318309718788, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983478740321416, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6201652985467292, "upper_button_position": 0.07818257548541241}], "rail_length": 5, "inclination": 84.6033912557921, "heading": 55.5155867211444} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349003172624103, "mass": 16.02810760336703, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318753769145343, "I_33_without_motor": 0.03101875455620293, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009244387164708, "trigger": 800, "sampling_rate": 105, "lag": 1.4810827857658755, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0365995720637344, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2677938590738516, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7728.036972272133, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03289516508467166, "grain_number": 5, "grain_density": 1880.435414143882, "grain_outer_radius": 0.03261429312476922, "grain_initial_inner_radius": 0.014692009319123988, "grain_initial_height": 0.1211066001774249, "grain_separation": 0.004474636201141181, "grains_center_of_mass_position": 0.39664241843605685, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0020322031396679784, "throat_radius": 0.010838472656986666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555929901973648}], "aerodynamic_surfaces": [{"length": 0.5584052391847781, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354522044560726]}, {"n": 4, "root_chord": 0.11959292280679985, "tip_chord": 0.06055505729088714, "span": 0.11021935382513344, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496353066943722]}, {"top_radius": 0.06476404755399133, "bottom_radius": 0.043516167426739936, "length": 0.05953672237036267, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990346258191598, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172452678339323, "upper_button_position": 0.08178935798522746}], "rail_length": 5, "inclination": 85.34508388181291, "heading": 54.80597676167838} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349275108971239, "mass": 15.927031078000752, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335954452150817, "I_33_without_motor": 0.027796409528596588, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.935991720229843, "trigger": 800, "sampling_rate": 105, "lag": 1.5352826716947736, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0168149020276707, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5760817308242638, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8336.33446402513, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03270313177981208, "grain_number": 5, "grain_density": 1862.6529626901333, "grain_outer_radius": 0.03341450199321254, "grain_initial_inner_radius": 0.01523358178376987, "grain_initial_height": 0.11969623296583908, "grain_separation": 0.005438987897608572, "grains_center_of_mass_position": 0.3939995098605848, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00043845649743777044, "throat_radius": 0.011382620830392676, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25590566121912}], "aerodynamic_surfaces": [{"length": 0.5577782904505513, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348579586563554]}, {"n": 4, "root_chord": 0.11884735756812177, "tip_chord": 0.05954022677655772, "span": 0.10972795467615429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049136812691294]}, {"top_radius": 0.06300010211303238, "bottom_radius": 0.04283981668051366, "length": 0.06031730051119695, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001320910052804, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178758272662886, "upper_button_position": 0.08225626373899175}], "rail_length": 5, "inclination": 84.27632373742911, "heading": 55.94997670572609} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349876072275386, "mass": 15.704743302034004, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32960124447333, "I_33_without_motor": 0.025071907656546502, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063857257536169, "trigger": 800, "sampling_rate": 105, "lag": 1.535002732266353, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.107459927105034, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4651992159424454, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6122.487876484904, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032838613922817915, "grain_number": 5, "grain_density": 1852.009681738, "grain_outer_radius": 0.03299832399336008, "grain_initial_inner_radius": 0.01501745187143502, "grain_initial_height": 0.1205920679216308, "grain_separation": 0.006066743366364746, "grains_center_of_mass_position": 0.3970348183321882, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000255910635314731, "throat_radius": 0.011050708957416897, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554641448144797}], "aerodynamic_surfaces": [{"length": 0.5604904844318832, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328695908981394]}, {"n": 4, "root_chord": 0.12045410901273203, "tip_chord": 0.06072166559508716, "span": 0.10934815106970878, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508238011426823]}, {"top_radius": 0.06350648904969029, "bottom_radius": 0.041374095167859386, "length": 0.058898651486906484, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6974451214920019, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185258053812744, "upper_button_position": 0.07891931611072744}], "rail_length": 5, "inclination": 83.79469416508103, "heading": 48.607201577942504} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350869442029543, "mass": 14.36476646899185, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310559516989157, "I_33_without_motor": 0.028465652194543056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.081213014105712, "trigger": 800, "sampling_rate": 105, "lag": 1.5410315637629928, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0163156334579213, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3813816564284553, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6819.824232093023, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03284560595629421, "grain_number": 5, "grain_density": 1809.7957925875685, "grain_outer_radius": 0.032771063839056085, "grain_initial_inner_radius": 0.01526979048392566, "grain_initial_height": 0.1202236218461993, "grain_separation": 0.00530286711569651, "grains_center_of_mass_position": 0.3958853709927965, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011244682689783997, "throat_radius": 0.01095656220832169, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255257882367732}], "aerodynamic_surfaces": [{"length": 0.557553453391117, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329122428893943]}, {"n": 4, "root_chord": 0.11970168010831969, "tip_chord": 0.0607384805193775, "span": 0.11103598661496342, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495002432503087]}, {"top_radius": 0.06432943546317339, "bottom_radius": 0.042496979442248124, "length": 0.058625950679431625, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006789586394169, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193557140412398, "upper_button_position": 0.08132324459817708}], "rail_length": 5, "inclination": 84.03973101126232, "heading": 52.830245951284674} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349405084162194, "mass": 15.350899770681046, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318651547415716, "I_33_without_motor": 0.03206482336785619, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.090177655880304, "trigger": 800, "sampling_rate": 105, "lag": 1.5651838405408225, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.961308187571955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.305731661671681, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5465.647472208973, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03396331245722355, "grain_number": 5, "grain_density": 1837.807159357997, "grain_outer_radius": 0.033066801739154016, "grain_initial_inner_radius": 0.014874013350294191, "grain_initial_height": 0.12097218819347239, "grain_separation": 0.004283935155871064, "grains_center_of_mass_position": 0.39575856218285044, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010590423316226305, "throat_radius": 0.010018001923994465, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253489646072747}], "aerodynamic_surfaces": [{"length": 0.559055944017133, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339540280273777]}, {"n": 4, "root_chord": 0.11966973862834861, "tip_chord": 0.059532564293488896, "span": 0.1090861898941243, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499370413739813]}, {"top_radius": 0.06345044312855457, "bottom_radius": 0.04375053399708206, "length": 0.06013208423789153, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003265691030199, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618164492103614, "upper_button_position": 0.08216207699940592}], "rail_length": 5, "inclination": 84.94470520790843, "heading": 53.897812081045565} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349545952353627, "mass": 14.888698488647426, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311567018641253, "I_33_without_motor": 0.02719822212614829, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06815121347679, "trigger": 800, "sampling_rate": 105, "lag": 1.6812073853570422, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9594599558643815, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0823650793872002, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7659.186036875412, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03319166686426309, "grain_number": 5, "grain_density": 1849.0300397731244, "grain_outer_radius": 0.032608207042293454, "grain_initial_inner_radius": 0.014843515295354322, "grain_initial_height": 0.11787060825643414, "grain_separation": 0.0058029551443111805, "grains_center_of_mass_position": 0.39597132118945993, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012777785396716739, "throat_radius": 0.011893401858909518, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549258868541309}], "aerodynamic_surfaces": [{"length": 0.5571915985637345, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134238633823841]}, {"n": 4, "root_chord": 0.11919320910898705, "tip_chord": 0.059341968569269425, "span": 0.11011286024197978, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051116186997025]}, {"top_radius": 0.06190947158569585, "bottom_radius": 0.04245612236898352, "length": 0.05905521413073299, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004008389067737, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6158520602380569, "upper_button_position": 0.0845487786687168}], "rail_length": 5, "inclination": 86.17213856654651, "heading": 52.53321483733061} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349186794106135, "mass": 15.017777180745815, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318148043657594, "I_33_without_motor": 0.022700348449107857, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.970889496267935, "trigger": 800, "sampling_rate": 105, "lag": 1.4816453896872543, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0888996041746302, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3339127664637056, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6484.288452061411, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272770324399055, "grain_number": 5, "grain_density": 1782.8370478148208, "grain_outer_radius": 0.0334516610718714, "grain_initial_inner_radius": 0.014722352166094141, "grain_initial_height": 0.11842726808385577, "grain_separation": 0.004692035995236463, "grains_center_of_mass_position": 0.39620638904143574, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008817039163654867, "throat_radius": 0.011571479612676974, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252972717127857}], "aerodynamic_surfaces": [{"length": 0.5595267760326579, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322286431753636]}, {"n": 4, "root_chord": 0.12059162141230803, "tip_chord": 0.060695682132629276, "span": 0.1099706400520742, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487820672822963]}, {"top_radius": 0.06355479909695465, "bottom_radius": 0.04544672218231918, "length": 0.06036019105734094, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013210817731211, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180768073236086, "upper_button_position": 0.08324427444951255}], "rail_length": 5, "inclination": 84.54055029238894, "heading": 53.300221724679055} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349958122292108, "mass": 15.994020036753799, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325712327248279, "I_33_without_motor": 0.042785251522933346, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911191933706078, "trigger": 800, "sampling_rate": 105, "lag": 1.5221450340835456, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9626792013159555, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5590025880572391, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6223.963739967143, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033301536677504164, "grain_number": 5, "grain_density": 1832.0261422617305, "grain_outer_radius": 0.032341158247759544, "grain_initial_inner_radius": 0.01498500489150814, "grain_initial_height": 0.12038149415537677, "grain_separation": 0.004185010120923577, "grains_center_of_mass_position": 0.3979501224131344, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011872262687140608, "throat_radius": 0.010397090582106897, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535416003001632}], "aerodynamic_surfaces": [{"length": 0.5578012739901804, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133475215210802]}, {"n": 4, "root_chord": 0.11967753134578496, "tip_chord": 0.0594048080151247, "span": 0.10990499600600816, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502197252482552]}, {"top_radius": 0.0627672473143286, "bottom_radius": 0.04363561784421249, "length": 0.060552237953754126, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990007402910744, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166589660576612, "upper_button_position": 0.08234177423341316}], "rail_length": 5, "inclination": 84.53165575208732, "heading": 55.05512153517997} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350300098746274, "mass": 15.239162618737135, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317694786624376, "I_33_without_motor": 0.04377183759028508, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.883918822347427, "trigger": 800, "sampling_rate": 105, "lag": 1.4316939464367235, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9838178801751155, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1431950760110932, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4389.33180490258, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033321372279208755, "grain_number": 5, "grain_density": 1789.8420312281955, "grain_outer_radius": 0.032902153556325024, "grain_initial_inner_radius": 0.014767791508025973, "grain_initial_height": 0.12141853131356964, "grain_separation": 0.006292472874169181, "grains_center_of_mass_position": 0.3981433197957624, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006640547647469903, "throat_radius": 0.012023712603144797, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2519325642730819}], "aerodynamic_surfaces": [{"length": 0.5586959017857156, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357593120849332]}, {"n": 4, "root_chord": 0.12080637951405904, "tip_chord": 0.06030600750478072, "span": 0.11016403742013248, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497507986580372]}, {"top_radius": 0.06461536431265352, "bottom_radius": 0.04329147217725096, "length": 0.05887750370762897, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001122109090392, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168634372740388, "upper_button_position": 0.08324877363500038}], "rail_length": 5, "inclination": 84.37831980235595, "heading": 56.46099436969685} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0635115823775162, "mass": 15.370288562709352, "I_11_without_motor": 6.321, "I_22_without_motor": 6.300137071875627, "I_33_without_motor": 0.031120229364474485, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01438844396683, "trigger": 800, "sampling_rate": 105, "lag": 1.523682792483234, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8442487567558994, "trigger": "apogee", "sampling_rate": 105, "lag": 1.27626070719829, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5169.675569574385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03363315345646497, "grain_number": 5, "grain_density": 1828.1267777495718, "grain_outer_radius": 0.033328732007082716, "grain_initial_inner_radius": 0.014085986055336265, "grain_initial_height": 0.11961309535262732, "grain_separation": 0.004915864953218076, "grains_center_of_mass_position": 0.3952273889664925, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005114650524790724, "throat_radius": 0.011832626921182006, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543835205285037}], "aerodynamic_surfaces": [{"length": 0.5595250362901887, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135475555110974]}, {"n": 4, "root_chord": 0.12082170428278041, "tip_chord": 0.06032160498083891, "span": 0.11022765436051729, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489760271617024]}, {"top_radius": 0.06160704706163002, "bottom_radius": 0.043300411208701484, "length": 0.060032975547381226, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005421312367198, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172628739939692, "upper_button_position": 0.08327925724275065}], "rail_length": 5, "inclination": 84.39643831038889, "heading": 53.554151092027794} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350584367601225, "mass": 16.38851161666443, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308491015384371, "I_33_without_motor": 0.03052954783625669, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.003025040010943, "trigger": 800, "sampling_rate": 105, "lag": 1.4529906593367174, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9762444802760033, "trigger": "apogee", "sampling_rate": 105, "lag": 1.323409936460739, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6003.353057474187, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327532467921464, "grain_number": 5, "grain_density": 1828.412403444137, "grain_outer_radius": 0.032766083179445835, "grain_initial_inner_radius": 0.01502592213696386, "grain_initial_height": 0.11989656212744243, "grain_separation": 0.004056632330847372, "grains_center_of_mass_position": 0.39753093837297776, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015345689976251744, "throat_radius": 0.011793680360890185, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553514880553283}], "aerodynamic_surfaces": [{"length": 0.5569859500388885, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1359143520206083]}, {"n": 4, "root_chord": 0.12097645459115569, "tip_chord": 0.06000332274361396, "span": 0.11041635134929577, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496409645440143]}, {"top_radius": 0.06242499440763759, "bottom_radius": 0.044397999708448835, "length": 0.05861702172926121, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990775953070014, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617249032867934, "upper_button_position": 0.08182856243906744}], "rail_length": 5, "inclination": 86.18901765704938, "heading": 54.07415044003057} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350225892331413, "mass": 16.033942831436796, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323111989640863, "I_33_without_motor": 0.0482416071497854, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.916114271636342, "trigger": 800, "sampling_rate": 105, "lag": 1.5531192008515278, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0490172106640143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.445023248450864, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5081.791196728467, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032493803853429745, "grain_number": 5, "grain_density": 1819.3808336452546, "grain_outer_radius": 0.032669418106315885, "grain_initial_inner_radius": 0.014485328699004495, "grain_initial_height": 0.12078896904239363, "grain_separation": 0.005337651429537467, "grains_center_of_mass_position": 0.3950582526406118, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.3149510072266036e-05, "throat_radius": 0.011206224472197126, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542393608322935}], "aerodynamic_surfaces": [{"length": 0.5590153463747879, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346708223296953]}, {"n": 4, "root_chord": 0.11991683302963299, "tip_chord": 0.060012115923924504, "span": 0.11058838813167664, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049118293755558]}, {"top_radius": 0.06346194170008061, "bottom_radius": 0.04331302437494721, "length": 0.059373774690712054, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982786010448545, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168411475318167, "upper_button_position": 0.08143745351303777}], "rail_length": 5, "inclination": 85.48863951382057, "heading": 52.3019981852427} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349963368679899, "mass": 15.607119673607501, "I_11_without_motor": 6.321, "I_22_without_motor": 6.346675047725802, "I_33_without_motor": 0.031080138982588712, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932791494310315, "trigger": 800, "sampling_rate": 105, "lag": 1.6545165721042805, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9794781154750164, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4242577639165588, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6715.739609606184, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03265656840079304, "grain_number": 5, "grain_density": 1742.3787751738228, "grain_outer_radius": 0.03281888926455505, "grain_initial_inner_radius": 0.014706371738595113, "grain_initial_height": 0.1206997518870848, "grain_separation": 0.00534248088442128, "grains_center_of_mass_position": 0.39605616876175437, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001204718554663883, "throat_radius": 0.010538087575931838, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255476440549646}], "aerodynamic_surfaces": [{"length": 0.5575663981508869, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135288047992883]}, {"n": 4, "root_chord": 0.12028542765109772, "tip_chord": 0.05966689867475337, "span": 0.11038262682228553, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0518338893565489]}, {"top_radius": 0.06384913316904883, "bottom_radius": 0.04439282324985561, "length": 0.06050185886781055, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700128455053695, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177415251248549, "upper_button_position": 0.08238692992884011}], "rail_length": 5, "inclination": 84.57933830860345, "heading": 52.665972813825874} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350963790962476, "mass": 16.24978572672582, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322805918038925, "I_33_without_motor": 0.047077172781131785, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998326634926507, "trigger": 800, "sampling_rate": 105, "lag": 1.4680454210470297, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0216792691450438, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4306959429895372, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6899.309836369824, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032266480386231394, "grain_number": 5, "grain_density": 1874.3142729218498, "grain_outer_radius": 0.03285169775483177, "grain_initial_inner_radius": 0.015017291766278593, "grain_initial_height": 0.11856932884626731, "grain_separation": 0.0044841144253843735, "grains_center_of_mass_position": 0.39561639810180216, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011677537669741857, "throat_radius": 0.010465349000647037, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559071954455958}], "aerodynamic_surfaces": [{"length": 0.5594282245845663, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352878622572193]}, {"n": 4, "root_chord": 0.12018933609617398, "tip_chord": 0.059627368501601975, "span": 0.10962440280040295, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502934941926505]}, {"top_radius": 0.06472745938743929, "bottom_radius": 0.04290182678663376, "length": 0.05876775172149402, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997431588508141, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163713224895895, "upper_button_position": 0.08337183636122458}], "rail_length": 5, "inclination": 83.71079582579625, "heading": 53.81157035792362} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.0634999918085768, "mass": 15.208559889810044, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3251042302894716, "I_33_without_motor": 0.05213240484059933, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.152592288143465, "trigger": 800, "sampling_rate": 105, "lag": 1.4147199135269428, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9856010293201105, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6033624163510976, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6033.227341218501, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271984849779203, "grain_number": 5, "grain_density": 1914.0054739559187, "grain_outer_radius": 0.0327265740677755, "grain_initial_inner_radius": 0.015221801699851519, "grain_initial_height": 0.12045569901390574, "grain_separation": 0.004870561597477902, "grains_center_of_mass_position": 0.3956980024364533, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00031805303893173696, "throat_radius": 0.012022825100294152, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25630814816333}], "aerodynamic_surfaces": [{"length": 0.5578078203787761, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356148017658472]}, {"n": 4, "root_chord": 0.12069208847448343, "tip_chord": 0.059710558595930455, "span": 0.11047008795392758, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487260958955413]}, {"top_radius": 0.06276710230769184, "bottom_radius": 0.04286058470351923, "length": 0.057701301405736295, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7026340704204248, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175616762030854, "upper_button_position": 0.08507239421733936}], "rail_length": 5, "inclination": 84.495603628103, "heading": 51.947627271279664} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350420175735824, "mass": 14.69453292989019, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319304311637302, "I_33_without_motor": 0.0534075862184997, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.951661288123388, "trigger": 800, "sampling_rate": 105, "lag": 1.4699309144262107, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9330572033975422, "trigger": "apogee", "sampling_rate": 105, "lag": 1.209869283254165, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7443.216778881237, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033298634425080034, "grain_number": 5, "grain_density": 1781.8222633776304, "grain_outer_radius": 0.03270234133544349, "grain_initial_inner_radius": 0.01480288574337119, "grain_initial_height": 0.12037890963258358, "grain_separation": 0.002966778922093459, "grains_center_of_mass_position": 0.3981691585704562, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011414035146578277, "throat_radius": 0.010953176975994874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554662473063078}], "aerodynamic_surfaces": [{"length": 0.5600240705912697, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333752000034958]}, {"n": 4, "root_chord": 0.1199009493985588, "tip_chord": 0.06003802232695046, "span": 0.11036460245245167, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504826676199952]}, {"top_radius": 0.06284036401562244, "bottom_radius": 0.044626824529490586, "length": 0.06062217358917022, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989784840873474, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187004255881178, "upper_button_position": 0.08027805849922964}], "rail_length": 5, "inclination": 83.67728755158512, "heading": 54.596199285198495} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349580857568757, "mass": 15.812594687650005, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305315912544572, "I_33_without_motor": 0.03665760333715411, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.029990362434964, "trigger": 800, "sampling_rate": 105, "lag": 1.5876599936321814, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9116686748634775, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5210391745566247, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5970.201301835208, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343325075655384, "grain_number": 5, "grain_density": 1876.213115446407, "grain_outer_radius": 0.03299750016409455, "grain_initial_inner_radius": 0.015368076982714241, "grain_initial_height": 0.11781633396620672, "grain_separation": 0.004020916151831337, "grains_center_of_mass_position": 0.39690988655810344, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00019260681237290016, "throat_radius": 0.01160481684551644, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542542303687194}], "aerodynamic_surfaces": [{"length": 0.5574544804644954, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336973906250793]}, {"n": 4, "root_chord": 0.12155550646368066, "tip_chord": 0.061004192570064585, "span": 0.11025083426118307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494459695260643]}, {"top_radius": 0.06564425841207963, "bottom_radius": 0.0426845398759868, "length": 0.06043857969838934, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999156568947018, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178745070667809, "upper_button_position": 0.08204114982792088}], "rail_length": 5, "inclination": 85.06748575060543, "heading": 53.74445370278859} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0635049098211149, "mass": 15.695009140594003, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328066675620937, "I_33_without_motor": 0.016624443651876757, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.190155679471237, "trigger": 800, "sampling_rate": 105, "lag": 1.3499271740571384, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9844420539346861, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3591030533898683, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6681.185715852636, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286142810727335, "grain_number": 5, "grain_density": 1702.9183898392694, "grain_outer_radius": 0.033447980718069356, "grain_initial_inner_radius": 0.015077204872496058, "grain_initial_height": 0.11851948368241079, "grain_separation": 0.0036817808830907858, "grains_center_of_mass_position": 0.39727730187684407, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014168197723184264, "throat_radius": 0.01123180657292669, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546231296169874}], "aerodynamic_surfaces": [{"length": 0.5574816477471666, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333047202654458]}, {"n": 4, "root_chord": 0.1196696298823377, "tip_chord": 0.06040694077956282, "span": 0.1097292605470109, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485549106534262]}, {"top_radius": 0.06400866779522103, "bottom_radius": 0.04401156343127217, "length": 0.06094848974595202, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991846187664148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188045946763356, "upper_button_position": 0.08038002409007916}], "rail_length": 5, "inclination": 86.16238072692816, "heading": 53.07825890831618} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349730167739871, "mass": 15.804314519696646, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331210223076995, "I_33_without_motor": 0.031084471648529323, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.018106497009496, "trigger": 800, "sampling_rate": 105, "lag": 1.4378717979118134, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0873956206579327, "trigger": "apogee", "sampling_rate": 105, "lag": 1.290809072140698, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5981.107610652416, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033442557286188244, "grain_number": 5, "grain_density": 1723.0145241615319, "grain_outer_radius": 0.033189825735959896, "grain_initial_inner_radius": 0.014620139245776266, "grain_initial_height": 0.11982829044385744, "grain_separation": 0.004215770373832838, "grains_center_of_mass_position": 0.39779484942504784, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.46757221164978e-05, "throat_radius": 0.011572702183985803, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552479967074266}], "aerodynamic_surfaces": [{"length": 0.5596468284870547, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354367209416534]}, {"n": 4, "root_chord": 0.1202030038225061, "tip_chord": 0.05916520779050592, "span": 0.11138464944723978, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050841729227932]}, {"top_radius": 0.06272674916838046, "bottom_radius": 0.04304857943222304, "length": 0.05963671138600036, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012550267234011, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177609029786623, "upper_button_position": 0.08349412374473886}], "rail_length": 5, "inclination": 86.14546950788773, "heading": 50.16710741111733} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349389949991432, "mass": 15.833184772262259, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31436318712592, "I_33_without_motor": 0.04157307903154764, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125740752081247, "trigger": 800, "sampling_rate": 105, "lag": 1.7358388829220524, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8760646276152619, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6746249268426532, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6712.513768263072, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305517724004848, "grain_number": 5, "grain_density": 1814.9326626346665, "grain_outer_radius": 0.033500431080484734, "grain_initial_inner_radius": 0.0154318780815785, "grain_initial_height": 0.1210098224718027, "grain_separation": 0.004506888313608716, "grains_center_of_mass_position": 0.39898821581769245, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012764046846938937, "throat_radius": 0.011112507273280678, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255306673013333}], "aerodynamic_surfaces": [{"length": 0.5584316525550405, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352645434474158]}, {"n": 4, "root_chord": 0.1201327418625336, "tip_chord": 0.059492134381699285, "span": 0.11023334300397492, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0520444760526992]}, {"top_radius": 0.06384684671049133, "bottom_radius": 0.0432341869797856, "length": 0.059876160881052895, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998058254928335, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178960383225964, "upper_button_position": 0.08190978717023711}], "rail_length": 5, "inclination": 82.63778439224818, "heading": 49.1559376480284} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349390423494153, "mass": 16.336783684566644, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333744844512897, "I_33_without_motor": 0.032239771787372494, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.066126416529332, "trigger": 800, "sampling_rate": 105, "lag": 1.437038304887612, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9304194488251014, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6613007726319682, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6673.094826071281, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03234519028275679, "grain_number": 5, "grain_density": 1856.5725933794574, "grain_outer_radius": 0.03288085481202434, "grain_initial_inner_radius": 0.01521763314279368, "grain_initial_height": 0.12230608278187208, "grain_separation": 0.004176918311302664, "grains_center_of_mass_position": 0.39602599833952773, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007938231634919846, "throat_radius": 0.010639617468766112, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253731642949516}], "aerodynamic_surfaces": [{"length": 0.5583689271625276, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353960366248166]}, {"n": 4, "root_chord": 0.1207378882021906, "tip_chord": 0.05971873106346895, "span": 0.11012263003324983, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049252594935086]}, {"top_radius": 0.062395221197684106, "bottom_radius": 0.043422367521890284, "length": 0.06005004331881397, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987321225430551, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164695566238848, "upper_button_position": 0.08226256591917025}], "rail_length": 5, "inclination": 85.06056439430638, "heading": 50.530081697260805} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06351090581652685, "mass": 15.377453763958815, "I_11_without_motor": 6.321, "I_22_without_motor": 6.287627666400441, "I_33_without_motor": 0.03189847162319194, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933509241190356, "trigger": 800, "sampling_rate": 105, "lag": 1.3899130222212899, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9788500327431846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7019666408607406, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6924.697407891185, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033344024897821706, "grain_number": 5, "grain_density": 1730.3643845602662, "grain_outer_radius": 0.032570433183802816, "grain_initial_inner_radius": 0.014606678516230353, "grain_initial_height": 0.1189226943051547, "grain_separation": 0.00457845852174891, "grains_center_of_mass_position": 0.39629368858791997, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006915244231694503, "throat_radius": 0.01110368789912673, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567697300192242}], "aerodynamic_surfaces": [{"length": 0.5582186696584028, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332232576760493]}, {"n": 4, "root_chord": 0.11917608205297159, "tip_chord": 0.06043557802925291, "span": 0.1089961610669776, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050407296336434]}, {"top_radius": 0.06403328089661132, "bottom_radius": 0.04131273284911148, "length": 0.06138694426238296, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989411047883208, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192384757781135, "upper_button_position": 0.0797026290102073}], "rail_length": 5, "inclination": 85.63460918486533, "heading": 51.29739157402748} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06351730136485247, "mass": 15.30452747436922, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334021641500018, "I_33_without_motor": 0.04311541090345156, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.932621313610884, "trigger": 800, "sampling_rate": 105, "lag": 1.5066025634581504, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8791681655783927, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5493381795005974, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5368.327676932437, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033460228453821184, "grain_number": 5, "grain_density": 1852.0284404478964, "grain_outer_radius": 0.032996210774939354, "grain_initial_inner_radius": 0.014610497080354046, "grain_initial_height": 0.11840670289187812, "grain_separation": 0.0016936583985832487, "grains_center_of_mass_position": 0.3960604146056465, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005530507982004796, "throat_radius": 0.010265440180519505, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568363910745575}], "aerodynamic_surfaces": [{"length": 0.558927397506784, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332912115650249]}, {"n": 4, "root_chord": 0.12019943034854674, "tip_chord": 0.059964700513299884, "span": 0.10902519932735548, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493634674605705]}, {"top_radius": 0.06431232698643814, "bottom_radius": 0.043535428396892444, "length": 0.05897130844071393, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007233893612652, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189838610563081, "upper_button_position": 0.08173952830495712}], "rail_length": 5, "inclination": 84.15351296408478, "heading": 50.69767153278456} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349684778216129, "mass": 15.12267958126463, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321286925973328, "I_33_without_motor": 0.04369007425493018, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.991419720396967, "trigger": 800, "sampling_rate": 105, "lag": 1.4475995114139937, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.048997481538417, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4015268191010577, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6686.904509793706, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032778336636013476, "grain_number": 5, "grain_density": 1842.368518239502, "grain_outer_radius": 0.032816852125195056, "grain_initial_inner_radius": 0.015064096376634323, "grain_initial_height": 0.11971333117323184, "grain_separation": 0.005039958015599686, "grains_center_of_mass_position": 0.3962043049225475, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008594800600569607, "throat_radius": 0.010879305342469673, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557208187009852}], "aerodynamic_surfaces": [{"length": 0.5573856980998896, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343551806807333]}, {"n": 4, "root_chord": 0.12014930733102541, "tip_chord": 0.05990442303753283, "span": 0.11000310482009414, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496581356140156]}, {"top_radius": 0.06248225609635887, "bottom_radius": 0.04289051578943711, "length": 0.06058785739044151, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7023610600099568, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179959051492389, "upper_button_position": 0.08436515486071794}], "rail_length": 5, "inclination": 83.88310286480237, "heading": 55.49183614120162} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349873457669736, "mass": 15.419183747824539, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325018539779617, "I_33_without_motor": 0.029710960425467958, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.019714260517583, "trigger": 800, "sampling_rate": 105, "lag": 1.6219981166613897, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0921787654808903, "trigger": "apogee", "sampling_rate": 105, "lag": 1.31022643924479, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5511.7509271069775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316602301230512, "grain_number": 5, "grain_density": 1787.3610970148598, "grain_outer_radius": 0.03346974949364333, "grain_initial_inner_radius": 0.015340836970081885, "grain_initial_height": 0.12001495971363055, "grain_separation": 0.0030362543140278605, "grains_center_of_mass_position": 0.3963416925544249, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0022308355925966224, "throat_radius": 0.011330563526578666, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535832086231606}], "aerodynamic_surfaces": [{"length": 0.5566054144220741, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335902507307998]}, {"n": 4, "root_chord": 0.12028175724988328, "tip_chord": 0.06005044612754678, "span": 0.10830736233611984, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501284733397511]}, {"top_radius": 0.0646194340193174, "bottom_radius": 0.043975566781491816, "length": 0.05874639291101227, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005246607386291, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189718572773569, "upper_button_position": 0.08155280346127214}], "rail_length": 5, "inclination": 84.14687294950984, "heading": 53.92125155593098} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0635116668213082, "mass": 15.32467691409748, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316701999786398, "I_33_without_motor": 0.04018527928869253, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.061886875816718, "trigger": 800, "sampling_rate": 105, "lag": 1.4100589512686574, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0270682558583806, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8561721974885133, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8546.374465080542, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033562074916069794, "grain_number": 5, "grain_density": 1801.4234571229765, "grain_outer_radius": 0.03256370381084436, "grain_initial_inner_radius": 0.015193315315092812, "grain_initial_height": 0.1201733456807118, "grain_separation": 0.0037892376274920206, "grains_center_of_mass_position": 0.39633370431920556, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010118835382637835, "throat_radius": 0.01119222205464401, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546790818572517}], "aerodynamic_surfaces": [{"length": 0.5576521576902372, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133748277479791]}, {"n": 4, "root_chord": 0.12006764660211236, "tip_chord": 0.060533022998055, "span": 0.11012775386291013, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481520081428852]}, {"top_radius": 0.06198530363779318, "bottom_radius": 0.04421445391690955, "length": 0.059921804376641054, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011077769609623, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168119476446836, "upper_button_position": 0.08429582931627866}], "rail_length": 5, "inclination": 84.86061538310634, "heading": 50.7161104666484} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350115865078995, "mass": 15.390104007612837, "I_11_without_motor": 6.321, "I_22_without_motor": 6.337259987003018, "I_33_without_motor": 0.03540027472262652, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.066256856810458, "trigger": 800, "sampling_rate": 105, "lag": 1.6021988870392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0321399338321813, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4259607446582414, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7414.213866755939, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03242466565326906, "grain_number": 5, "grain_density": 1819.696060037, "grain_outer_radius": 0.032045285344836597, "grain_initial_inner_radius": 0.015562734694776507, "grain_initial_height": 0.11989999598607883, "grain_separation": 0.004956396828532427, "grains_center_of_mass_position": 0.3958330158819159, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001099397606214398, "throat_radius": 0.011468359349812822, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255337708929416}], "aerodynamic_surfaces": [{"length": 0.5582418377630993, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337408596627359]}, {"n": 4, "root_chord": 0.11930058024803349, "tip_chord": 0.06020422973826332, "span": 0.11037121817971873, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497243974062231]}, {"top_radius": 0.06186778079186998, "bottom_radius": 0.04358238319998163, "length": 0.06127772074878261, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994016042209384, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191939985686495, "upper_button_position": 0.0802076056522889}], "rail_length": 5, "inclination": 85.46054832586272, "heading": 50.96261199484865} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349894252781885, "mass": 15.954804160278558, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331357435865278, "I_33_without_motor": 0.027970036736439025, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034078530356474, "trigger": 800, "sampling_rate": 105, "lag": 1.4108944277743765, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9288166170111651, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2685814114220197, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7052.413860234449, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311039397833018, "grain_number": 5, "grain_density": 1808.18733647684, "grain_outer_radius": 0.032881664639907715, "grain_initial_inner_radius": 0.015120902888709493, "grain_initial_height": 0.11745997473067349, "grain_separation": 0.005991070801170677, "grains_center_of_mass_position": 0.3980887212438491, "center_of_dry_mass_position": 0.317, "nozzle_position": 2.980084258064901e-05, "throat_radius": 0.011515530999327464, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560279681647097}], "aerodynamic_surfaces": [{"length": 0.5581923032173138, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339729638286382]}, {"n": 4, "root_chord": 0.12011041192138164, "tip_chord": 0.060496031089816264, "span": 0.10971238787550583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490662529167556]}, {"top_radius": 0.06427483244113474, "bottom_radius": 0.04313844025977555, "length": 0.05963922235549732, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994892331987252, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183385089973097, "upper_button_position": 0.08115072420141556}], "rail_length": 5, "inclination": 84.22384322824627, "heading": 55.10927771693147} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0634973361509983, "mass": 15.051744172220443, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317664712477921, "I_33_without_motor": 0.03734937823995139, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89424065526182, "trigger": 800, "sampling_rate": 105, "lag": 1.659924258297181, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0021832601813287, "trigger": "apogee", "sampling_rate": 105, "lag": 1.37839774554534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6231.414616567743, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032539734241242194, "grain_number": 5, "grain_density": 1849.5945234704818, "grain_outer_radius": 0.03277056580758915, "grain_initial_inner_radius": 0.014502897163373371, "grain_initial_height": 0.11918990236853022, "grain_separation": 0.005312031887909523, "grains_center_of_mass_position": 0.3960136458585184, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001760632338355489, "throat_radius": 0.010761888921099296, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254778260969594}], "aerodynamic_surfaces": [{"length": 0.55816180275484, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352235857033148]}, {"n": 4, "root_chord": 0.12005488494401959, "tip_chord": 0.06067705662164549, "span": 0.10970097469590787, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496205771265574]}, {"top_radius": 0.06367565858885774, "bottom_radius": 0.04488013802734058, "length": 0.0603631338744529, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994160200816129, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192598725532799, "upper_button_position": 0.080156147528333}], "rail_length": 5, "inclination": 84.90128423253927, "heading": 51.03836888864657} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350076126670319, "mass": 15.001971611443656, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329609981300778, "I_33_without_motor": 0.03526128769073426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.771619356378315, "trigger": 800, "sampling_rate": 105, "lag": 1.5901408651459081, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1323669292317278, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5778867832272447, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6282.2033106947865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288715290651765, "grain_number": 5, "grain_density": 1789.1290835849059, "grain_outer_radius": 0.03342635718047267, "grain_initial_inner_radius": 0.015609776280986308, "grain_initial_height": 0.11900607169955245, "grain_separation": 0.002834281859242617, "grains_center_of_mass_position": 0.39712717460611086, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00022751122520976968, "throat_radius": 0.010913419739254887, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549208642953353}], "aerodynamic_surfaces": [{"length": 0.5580787472900696, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335804175281636]}, {"n": 4, "root_chord": 0.12024876738156043, "tip_chord": 0.05973166088846167, "span": 0.1102752314959789, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488160720434148]}, {"top_radius": 0.06422139530937161, "bottom_radius": 0.04359291523838965, "length": 0.05861074788662747, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6981767361646608, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175150875129062, "upper_button_position": 0.08066164865175462}], "rail_length": 5, "inclination": 85.08949180026866, "heading": 53.52638585657387} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06351366736679517, "mass": 15.66896327586133, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314727850484319, "I_33_without_motor": 0.03632703980075317, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.759306202681307, "trigger": 800, "sampling_rate": 105, "lag": 1.5781273012842183, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0846146065139484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7155382725403379, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5826.711134265399, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03239914873758376, "grain_number": 5, "grain_density": 1790.716277239635, "grain_outer_radius": 0.033004823327858944, "grain_initial_inner_radius": 0.014755323195435533, "grain_initial_height": 0.12172180744143078, "grain_separation": 0.00479077391055119, "grains_center_of_mass_position": 0.39833442860015894, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007683097639771991, "throat_radius": 0.010529038158868853, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561038082368352}], "aerodynamic_surfaces": [{"length": 0.5580710771969382, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132112778417617]}, {"n": 4, "root_chord": 0.11921805517374812, "tip_chord": 0.05921258074428891, "span": 0.11021243639670772, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050316444058335]}, {"top_radius": 0.06441146358696685, "bottom_radius": 0.0447116437731035, "length": 0.059807735612434826, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007669809115573, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185816364464152, "upper_button_position": 0.08218534446514214}], "rail_length": 5, "inclination": 85.42130533860518, "heading": 52.502847638992776} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349174163314578, "mass": 14.606121045263466, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319119726643603, "I_33_without_motor": 0.04293447862476054, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.977645412010284, "trigger": 800, "sampling_rate": 105, "lag": 1.4198630294335937, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1124219559249993, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0671233374217506, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7404.339840575322, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336475762990951, "grain_number": 5, "grain_density": 1853.6807760358954, "grain_outer_radius": 0.032635176637114446, "grain_initial_inner_radius": 0.014944271481188764, "grain_initial_height": 0.1203646012048594, "grain_separation": 0.004509276929047958, "grains_center_of_mass_position": 0.395563916511602, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010410542982235624, "throat_radius": 0.011285446021729591, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534031440717661}], "aerodynamic_surfaces": [{"length": 0.5586172457605193, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337749939479806]}, {"n": 4, "root_chord": 0.12068767429669613, "tip_chord": 0.05987667920053337, "span": 0.11040219355783645, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049032110423357]}, {"top_radius": 0.06556439552949188, "bottom_radius": 0.04255971908420164, "length": 0.05845442315865268, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005470894500941, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187086113352109, "upper_button_position": 0.0818384781148832}], "rail_length": 5, "inclination": 86.30785499168184, "heading": 51.02353804400938} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350075491617449, "mass": 15.897025122001814, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325768804734839, "I_33_without_motor": 0.041779729786977325, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93462142289604, "trigger": 800, "sampling_rate": 105, "lag": 1.4549603555455741, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0186545895879209, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3705427066696485, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5030.847047682277, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335615067535261, "grain_number": 5, "grain_density": 1783.2297334849538, "grain_outer_radius": 0.03352807023924826, "grain_initial_inner_radius": 0.014686620260903067, "grain_initial_height": 0.12154581166213016, "grain_separation": 0.005378591881719048, "grains_center_of_mass_position": 0.39617514475572385, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001582285747611544, "throat_radius": 0.011730527560593158, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547991833483756}], "aerodynamic_surfaces": [{"length": 0.5602181207632566, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348279765206255]}, {"n": 4, "root_chord": 0.12063976216831306, "tip_chord": 0.05927124406542893, "span": 0.11022284025483327, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489168206594304]}, {"top_radius": 0.06406748744293336, "bottom_radius": 0.04342791769764743, "length": 0.06146493645961522, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.70060013542935, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172155536686693, "upper_button_position": 0.08338458176068064}], "rail_length": 5, "inclination": 85.03113001467611, "heading": 54.06841250916392} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.0634960836825028, "mass": 15.175766200230077, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326199226701412, "I_33_without_motor": 0.018608459103794384, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.888450193153723, "trigger": 800, "sampling_rate": 105, "lag": 1.4309526936212704, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9252801768138174, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4300279990761935, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6540.833817646903, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03240839734646863, "grain_number": 5, "grain_density": 1831.6660874578563, "grain_outer_radius": 0.0330241186061275, "grain_initial_inner_radius": 0.015175383140416464, "grain_initial_height": 0.1201175404848968, "grain_separation": 0.0057465639016484, "grains_center_of_mass_position": 0.39565033268144245, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00044608112493110157, "throat_radius": 0.010876469645456261, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551593032307184}], "aerodynamic_surfaces": [{"length": 0.5579963827812381, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132470134195512]}, {"n": 4, "root_chord": 0.1188124973834181, "tip_chord": 0.060445771361879924, "span": 0.108805864601381, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049470683601851]}, {"top_radius": 0.06383140777928216, "bottom_radius": 0.043102035745298486, "length": 0.05817483986233416, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994478194079471, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617806203591401, "upper_button_position": 0.08164161581654605}], "rail_length": 5, "inclination": 85.12848546768899, "heading": 56.099871143392534} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349552831802728, "mass": 15.116649507313976, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326230551200657, "I_33_without_motor": 0.029167719541407157, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.896600315621262, "trigger": 800, "sampling_rate": 105, "lag": 1.6146707509587424, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.11177615006226, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5090747899901578, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5111.015828886242, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03235867502960293, "grain_number": 5, "grain_density": 1853.9893332450224, "grain_outer_radius": 0.03288733889097096, "grain_initial_inner_radius": 0.014962203454603683, "grain_initial_height": 0.12087678135424258, "grain_separation": 0.004854362115892527, "grains_center_of_mass_position": 0.3957734727329277, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007044862044790958, "throat_radius": 0.010875681559809131, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567447129278289}], "aerodynamic_surfaces": [{"length": 0.5593703748895956, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344829253074684]}, {"n": 4, "root_chord": 0.12014466067952523, "tip_chord": 0.06018874175511407, "span": 0.10992972141834653, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510558408539015]}, {"top_radius": 0.06282852058110813, "bottom_radius": 0.04452221936808268, "length": 0.05890661825788936, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983848701507138, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162000895057601, "upper_button_position": 0.08218478064495371}], "rail_length": 5, "inclination": 84.01886982821382, "heading": 49.627010789365684} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350327600851256, "mass": 14.912334737477604, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326926927450368, "I_33_without_motor": 0.031221075221191465, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.822714029781059, "trigger": 800, "sampling_rate": 105, "lag": 1.6227564561968668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.089745206613844, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3652045937975013, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6728.667375627386, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03219222128713535, "grain_number": 5, "grain_density": 1746.8246904134082, "grain_outer_radius": 0.032984076199837106, "grain_initial_inner_radius": 0.01546851750964418, "grain_initial_height": 0.12111690040868138, "grain_separation": 0.005055650498949718, "grains_center_of_mass_position": 0.3987655165806271, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001813254102601858, "throat_radius": 0.010420174473665318, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256283148155875}], "aerodynamic_surfaces": [{"length": 0.5574912496235849, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338977918635764]}, {"n": 4, "root_chord": 0.1212914069600375, "tip_chord": 0.06008965960391202, "span": 0.10973787074741598, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515915668072129]}, {"top_radius": 0.06150802466838929, "bottom_radius": 0.0456301503327489, "length": 0.0621038249518183, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002737461466652, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189178763176982, "upper_button_position": 0.08135586982896692}], "rail_length": 5, "inclination": 84.27856158120632, "heading": 54.07025719577007} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06351047836432017, "mass": 15.437909010633367, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329156588974337, "I_33_without_motor": 0.036560740039825255, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.796691851556078, "trigger": 800, "sampling_rate": 105, "lag": 1.7439109949085232, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0076720172163187, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3345837581099702, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6622.299372005917, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0321784553518471, "grain_number": 5, "grain_density": 1768.8535369755155, "grain_outer_radius": 0.03316415746478715, "grain_initial_inner_radius": 0.014646103903189123, "grain_initial_height": 0.11844079246068104, "grain_separation": 0.005394324666872722, "grains_center_of_mass_position": 0.39788780140427266, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00023052361944305965, "throat_radius": 0.010729280970899209, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541930048751186}], "aerodynamic_surfaces": [{"length": 0.5594169052085091, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350190786067635]}, {"n": 4, "root_chord": 0.12002470631407111, "tip_chord": 0.05993131564384251, "span": 0.10952696999159581, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502610402338162]}, {"top_radius": 0.06409336493673072, "bottom_radius": 0.04412983909855576, "length": 0.05961852419533907, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000424839930957, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184611502347611, "upper_button_position": 0.08158133375833454}], "rail_length": 5, "inclination": 85.01286443432681, "heading": 51.59971225515482} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06349244050437279, "mass": 15.63638994397869, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329506422119274, "I_33_without_motor": 0.03363458252819717, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984588818596253, "trigger": 800, "sampling_rate": 105, "lag": 1.4570772137307002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0193459008102093, "trigger": "apogee", "sampling_rate": 105, "lag": 1.705599717555455, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6803.205855748993, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350336977728008, "grain_number": 5, "grain_density": 1772.5059068204534, "grain_outer_radius": 0.032626329368094086, "grain_initial_inner_radius": 0.015126877790724714, "grain_initial_height": 0.12180717963776, "grain_separation": 0.0057515907533874245, "grains_center_of_mass_position": 0.39685972119581886, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013290985530587135, "throat_radius": 0.011664623717522284, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555812265981705}], "aerodynamic_surfaces": [{"length": 0.5575063949619847, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346271060013458]}, {"n": 4, "root_chord": 0.11957722227635131, "tip_chord": 0.06005223850412262, "span": 0.10909671488488243, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507465283815953]}, {"top_radius": 0.061607285836388734, "bottom_radius": 0.04265570224759543, "length": 0.05942832061974414, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003479993758679, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168958619773098, "upper_button_position": 0.08345213739855806}], "rail_length": 5, "inclination": 85.51974497862967, "heading": 52.25894911678696} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349385642590774, "mass": 15.663533424219482, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317608310809023, "I_33_without_motor": 0.03141245591351376, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.911183731245758, "trigger": 800, "sampling_rate": 105, "lag": 1.4809160229265466, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0300961772161932, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6675585718222339, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5913.8295739796295, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033966335035950986, "grain_number": 5, "grain_density": 1862.3360207005878, "grain_outer_radius": 0.03315103206040188, "grain_initial_inner_radius": 0.014737305131925355, "grain_initial_height": 0.11941297807271758, "grain_separation": 0.005781993853173808, "grains_center_of_mass_position": 0.39840529287143694, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00047759238077422405, "throat_radius": 0.010592517460864885, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547793729771781}], "aerodynamic_surfaces": [{"length": 0.5579540500332311, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134010059128755]}, {"n": 4, "root_chord": 0.12019034511048848, "tip_chord": 0.059706561856019184, "span": 0.10942740329883674, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0464475679074512]}, {"top_radius": 0.06132940637602938, "bottom_radius": 0.04296701847547844, "length": 0.05959905785950735, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999178646832074, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618633934337767, "upper_button_position": 0.08128393034544035}], "rail_length": 5, "inclination": 85.66909232844112, "heading": 54.532916076362895} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0634985956292542, "mass": 15.364235210241949, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33842823982285, "I_33_without_motor": 0.04122307447798121, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953284584522681, "trigger": 800, "sampling_rate": 105, "lag": 1.681598884477594, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9501995370197757, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6187129766889816, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4557.418397142374, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0339412863641482, "grain_number": 5, "grain_density": 1861.8531991969066, "grain_outer_radius": 0.03317427286075919, "grain_initial_inner_radius": 0.015075798611031845, "grain_initial_height": 0.11979204110061999, "grain_separation": 0.004696832018942713, "grains_center_of_mass_position": 0.39590601708516304, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011530032404068653, "throat_radius": 0.010099627485193077, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549381112042153}], "aerodynamic_surfaces": [{"length": 0.5575579531169015, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356959575843135]}, {"n": 4, "root_chord": 0.12018692359462095, "tip_chord": 0.06058098422423076, "span": 0.1097274683885813, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486887582336473]}, {"top_radius": 0.06351518684858, "bottom_radius": 0.0437398972099297, "length": 0.06048537476875917, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996078955763039, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180048173811246, "upper_button_position": 0.08160307819517931}], "rail_length": 5, "inclination": 83.68572216161724, "heading": 53.94766799624894} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06348924216101308, "mass": 15.312839546270752, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31640394687953, "I_33_without_motor": 0.039828529592097206, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.197983966814375, "trigger": 800, "sampling_rate": 105, "lag": 1.4074467205394448, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9929553257395017, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6654382228866937, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6861.005219128767, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362147112384172, "grain_number": 5, "grain_density": 1793.9195057805189, "grain_outer_radius": 0.03281188173378274, "grain_initial_inner_radius": 0.014973595690221093, "grain_initial_height": 0.12046315530979498, "grain_separation": 0.004714504841971201, "grains_center_of_mass_position": 0.3971825001626112, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0025752691042571175, "throat_radius": 0.010657269117103718, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533878737685311}], "aerodynamic_surfaces": [{"length": 0.5579026370300171, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135059165370656]}, {"n": 4, "root_chord": 0.11996833956091058, "tip_chord": 0.060255710795710654, "span": 0.11112652488249476, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499893893168464]}, {"top_radius": 0.0631347324365134, "bottom_radius": 0.041549035021960896, "length": 0.06056508323371441, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015154283197934, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175394835750244, "upper_button_position": 0.083975944744769}], "rail_length": 5, "inclination": 84.82112772246788, "heading": 54.289770008076594} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0634888526078057, "mass": 15.9526424023536, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328344511492597, "I_33_without_motor": 0.027142461536882892, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057205570084184, "trigger": 800, "sampling_rate": 105, "lag": 1.4239179040090901, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0777340759362395, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5455506700051342, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5967.0934334888825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295216374687809, "grain_number": 5, "grain_density": 1790.083481371989, "grain_outer_radius": 0.032669075782434095, "grain_initial_inner_radius": 0.014617390845831602, "grain_initial_height": 0.11999360312674938, "grain_separation": 0.004359082239411157, "grains_center_of_mass_position": 0.3981843913392998, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.620864306258794e-06, "throat_radius": 0.010881175824782974, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561496520602138}], "aerodynamic_surfaces": [{"length": 0.5588480866646709, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342501282688144]}, {"n": 4, "root_chord": 0.1195680366575312, "tip_chord": 0.060488181422632355, "span": 0.10994899651137087, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495250036942687]}, {"top_radius": 0.06500582709906544, "bottom_radius": 0.04214682760173337, "length": 0.05971012085395286, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6981781088384551, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176358046291641, "upper_button_position": 0.08054230420929098}], "rail_length": 5, "inclination": 84.93537748241518, "heading": 53.12776576700282} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06348613635030227, "mass": 15.588237013783917, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311049435517934, "I_33_without_motor": 0.038104340257409546, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.204440237019412, "trigger": 800, "sampling_rate": 105, "lag": 1.4961319916145488, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9433833888057161, "trigger": "apogee", "sampling_rate": 105, "lag": 1.591977352597623, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5404.394526023316, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033129451586973, "grain_number": 5, "grain_density": 1769.6248006796743, "grain_outer_radius": 0.03268563381107102, "grain_initial_inner_radius": 0.015227810844041489, "grain_initial_height": 0.11833549123592417, "grain_separation": 0.005462241027123536, "grains_center_of_mass_position": 0.3984995331526287, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00027420397417830724, "throat_radius": 0.010580752248033124, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256375521009415}], "aerodynamic_surfaces": [{"length": 0.5584599030347467, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326983058392115]}, {"n": 4, "root_chord": 0.11961546034025883, "tip_chord": 0.06038557324429281, "span": 0.10994142522582136, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048680351758055]}, {"top_radius": 0.06236601323628497, "bottom_radius": 0.043492856565806655, "length": 0.05787447423080722, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997296092221783, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183825332972495, "upper_button_position": 0.08134707592492885}], "rail_length": 5, "inclination": 84.45194763645969, "heading": 51.07644400841781} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06351079411619043, "mass": 15.911635215194003, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32169079602165, "I_33_without_motor": 0.031594861882077316, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.852320310581108, "trigger": 800, "sampling_rate": 105, "lag": 1.5760937445593486, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9251493032951119, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4893808276503797, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8090.682341423856, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032149145404508604, "grain_number": 5, "grain_density": 1860.3807469033616, "grain_outer_radius": 0.03309965739017591, "grain_initial_inner_radius": 0.01457006050309854, "grain_initial_height": 0.12048353897004487, "grain_separation": 0.005343610560450592, "grains_center_of_mass_position": 0.39649617011070953, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012962538058188262, "throat_radius": 0.010163972089695163, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554191980160085}], "aerodynamic_surfaces": [{"length": 0.5588473915887473, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337559140257236]}, {"n": 4, "root_chord": 0.12055924657450047, "tip_chord": 0.060397313202351456, "span": 0.1105819702551408, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497824795987505]}, {"top_radius": 0.06080091459469936, "bottom_radius": 0.04410211581936776, "length": 0.06068357404424977, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989921706449179, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194948773034831, "upper_button_position": 0.07949729334143485}], "rail_length": 5, "inclination": 82.88271277739172, "heading": 50.22386855240689} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349832266422295, "mass": 15.608813891496041, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3148809487846345, "I_33_without_motor": 0.049675369038272174, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15668582950272, "trigger": 800, "sampling_rate": 105, "lag": 1.3968506662672338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9963171041722539, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3948673473037503, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7001.077906374261, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03197181324286123, "grain_number": 5, "grain_density": 1778.6656709236897, "grain_outer_radius": 0.0327113254355025, "grain_initial_inner_radius": 0.015013410704811917, "grain_initial_height": 0.11847308417783299, "grain_separation": 0.006976255745549232, "grains_center_of_mass_position": 0.3965892561655682, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010026067053419746, "throat_radius": 0.011114598846620392, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537654499123907}], "aerodynamic_surfaces": [{"length": 0.5590901558851676, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327588091545855]}, {"n": 4, "root_chord": 0.11980587075100058, "tip_chord": 0.05951186395501011, "span": 0.10995981461481172, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483331229736534]}, {"top_radius": 0.06338935382559314, "bottom_radius": 0.04303631640146194, "length": 0.05979597772267525, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984416494904032, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183616342858115, "upper_button_position": 0.08008001520459174}], "rail_length": 5, "inclination": 84.43338638893336, "heading": 52.41156560840073} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350012169655923, "mass": 16.228918506677726, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329485089919179, "I_33_without_motor": 0.0512049160831803, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.83974672876537, "trigger": 800, "sampling_rate": 105, "lag": 1.3804872811525848, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0515602742931291, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6307783724642493, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5642.657654793444, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285438644194042, "grain_number": 5, "grain_density": 1884.7667124901202, "grain_outer_radius": 0.0328234713939322, "grain_initial_inner_radius": 0.015199313554232912, "grain_initial_height": 0.1185704952661564, "grain_separation": 0.003972736520915717, "grains_center_of_mass_position": 0.39667497714128575, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00015953094078833362, "throat_radius": 0.011823848971443028, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554787378311028}], "aerodynamic_surfaces": [{"length": 0.5580323170961682, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356012658961003]}, {"n": 4, "root_chord": 0.1197991022558832, "tip_chord": 0.059825031048603636, "span": 0.11074256380452217, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479859071106135]}, {"top_radius": 0.06318007881914912, "bottom_radius": 0.04213958908467011, "length": 0.05783033013208091, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012691445018427, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172248019602568, "upper_button_position": 0.08404434254158599}], "rail_length": 5, "inclination": 83.87632912560622, "heading": 49.77238128202548} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349708674496182, "mass": 16.177809533700223, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320118295751474, "I_33_without_motor": 0.032729176828108004, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.011748583283017, "trigger": 800, "sampling_rate": 105, "lag": 1.5649775334171843, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8744707561877211, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3480413944894716, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3835.739985882755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033301492222087656, "grain_number": 5, "grain_density": 1749.7973022744188, "grain_outer_radius": 0.03306499254438816, "grain_initial_inner_radius": 0.0148848292781074, "grain_initial_height": 0.12048825958724022, "grain_separation": 0.005047145067411688, "grains_center_of_mass_position": 0.39588264847580623, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00046842949779454893, "throat_radius": 0.010837382090951636, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256264221588384}], "aerodynamic_surfaces": [{"length": 0.5588428452293271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350403543095764]}, {"n": 4, "root_chord": 0.12005562336934725, "tip_chord": 0.059596713690295705, "span": 0.10993062217688321, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050280741561928]}, {"top_radius": 0.06336990569235518, "bottom_radius": 0.04285868222037922, "length": 0.06163567800131927, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994583391677507, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169463227725904, "upper_button_position": 0.08251201639516026}], "rail_length": 5, "inclination": 85.07735133740812, "heading": 52.41422398177672} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350065925182284, "mass": 15.799589200969775, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32000624848105, "I_33_without_motor": 0.04572708153088982, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89225773106056, "trigger": 800, "sampling_rate": 105, "lag": 1.6799434240935978, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8809601729307163, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6841790251463484, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6354.502369923479, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032064246430719645, "grain_number": 5, "grain_density": 1807.518392271406, "grain_outer_radius": 0.03231478955922002, "grain_initial_inner_radius": 0.015046746271352053, "grain_initial_height": 0.11884689771295696, "grain_separation": 0.005165760761442783, "grains_center_of_mass_position": 0.39626995822213223, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009634876722937599, "throat_radius": 0.010674161213549317, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535524016789121}], "aerodynamic_surfaces": [{"length": 0.559029847150465, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344375821167585]}, {"n": 4, "root_chord": 0.11993134870498248, "tip_chord": 0.05930720870965932, "span": 0.11031655195667084, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505850915869084]}, {"top_radius": 0.0630390808274289, "bottom_radius": 0.04292147306945127, "length": 0.060847119122881016, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699010665461601, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193629091019275, "upper_button_position": 0.07964775635967347}], "rail_length": 5, "inclination": 85.09052863956268, "heading": 49.91964966999758} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350370074679942, "mass": 14.490398195950622, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326860886206788, "I_33_without_motor": 0.029283882613277783, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.926067978105003, "trigger": 800, "sampling_rate": 105, "lag": 1.4815421611854716, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9912102436865353, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3276130171908251, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6273.3245424390425, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03410373905000838, "grain_number": 5, "grain_density": 1728.551962469846, "grain_outer_radius": 0.03327172951321835, "grain_initial_inner_radius": 0.01444386541236216, "grain_initial_height": 0.12040154097798547, "grain_separation": 0.004136313083968957, "grains_center_of_mass_position": 0.39613427811442353, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009020847657384467, "throat_radius": 0.01169494325923773, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552163016487021}], "aerodynamic_surfaces": [{"length": 0.5584094892411352, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336054518534593]}, {"n": 4, "root_chord": 0.11900970173323588, "tip_chord": 0.060350028235365276, "span": 0.11048723974887055, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504890577474477]}, {"top_radius": 0.06287658936546789, "bottom_radius": 0.04308068146931298, "length": 0.05984687083230651, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996405445588147, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6158244892848668, "upper_button_position": 0.08381605527394798}], "rail_length": 5, "inclination": 84.52475989041068, "heading": 54.70565897201013} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350256819563045, "mass": 15.038990787993015, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3224899348022765, "I_33_without_motor": 0.02942483873675286, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90089674652692, "trigger": 800, "sampling_rate": 105, "lag": 1.453872964904366, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.120892647290249, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3130360547516244, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5220.734583924423, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03172963470883813, "grain_number": 5, "grain_density": 1760.1001025323217, "grain_outer_radius": 0.03224686343102085, "grain_initial_inner_radius": 0.015127956423714855, "grain_initial_height": 0.11942306282493598, "grain_separation": 0.005072099301123047, "grains_center_of_mass_position": 0.39609237949950116, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001904408251496367, "throat_radius": 0.010610588074993052, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255859599692548}], "aerodynamic_surfaces": [{"length": 0.5576956478627942, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322813378386587]}, {"n": 4, "root_chord": 0.12034096285201691, "tip_chord": 0.059609123426088095, "span": 0.11058069396756258, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497140855690472]}, {"top_radius": 0.06420993889129223, "bottom_radius": 0.04442998003217619, "length": 0.05877941218833152, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993718062447013, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190385662644223, "upper_button_position": 0.08033323998027897}], "rail_length": 5, "inclination": 84.90989926985948, "heading": 52.62273934834225} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350032867963998, "mass": 15.628667404032454, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314129396875929, "I_33_without_motor": 0.016310664622717148, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.866965755771226, "trigger": 800, "sampling_rate": 105, "lag": 1.6945395979144142, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1690429656322614, "trigger": "apogee", "sampling_rate": 105, "lag": 1.58169569134214, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4881.246835757078, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032979325943357986, "grain_number": 5, "grain_density": 1880.5933826783657, "grain_outer_radius": 0.03282410882949819, "grain_initial_inner_radius": 0.015587771569360285, "grain_initial_height": 0.11912927400302892, "grain_separation": 0.006496204354449065, "grains_center_of_mass_position": 0.3959914503748177, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006224792453307467, "throat_radius": 0.010837373522392543, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254181775205337}], "aerodynamic_surfaces": [{"length": 0.5581627870085849, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330907155347645]}, {"n": 4, "root_chord": 0.12024080994469682, "tip_chord": 0.06060290969792697, "span": 0.10942785474918966, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489072646496092]}, {"top_radius": 0.06363126435072292, "bottom_radius": 0.044316334774534415, "length": 0.060708479080705986, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016420084951621, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6197057071199757, "upper_button_position": 0.08193630137518637}], "rail_length": 5, "inclination": 86.24596484294673, "heading": 51.86209668287952} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06351201388265038, "mass": 15.435781028429023, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323115868881679, "I_33_without_motor": 0.0351343694896232, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963202639361558, "trigger": 800, "sampling_rate": 105, "lag": 1.4795665677085839, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0968714874543606, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5489996399134998, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6275.744092288944, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0323446483239517, "grain_number": 5, "grain_density": 1846.5293334551664, "grain_outer_radius": 0.033003903655970494, "grain_initial_inner_radius": 0.015174353306240874, "grain_initial_height": 0.118728537775873, "grain_separation": 0.005152997497795528, "grains_center_of_mass_position": 0.39906289777207576, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029285342988053756, "throat_radius": 0.011388009231529772, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565038571486098}], "aerodynamic_surfaces": [{"length": 0.5583457432613069, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333515256733926]}, {"n": 4, "root_chord": 0.12022343348401064, "tip_chord": 0.06043997328235828, "span": 0.11048796770092566, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049426671483719]}, {"top_radius": 0.06244833235332316, "bottom_radius": 0.04338039986356803, "length": 0.060062227278766984, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000310290226842, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617660998551096, "upper_button_position": 0.0823700304715882}], "rail_length": 5, "inclination": 85.40181384822502, "heading": 54.620846508222265} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350000436950581, "mass": 15.280449855362368, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323687757141299, "I_33_without_motor": 0.040706466098765014, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.937809461691417, "trigger": 800, "sampling_rate": 105, "lag": 1.4143023159531833, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0355770518922882, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1338384435826503, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4938.951141850097, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033411600590240204, "grain_number": 5, "grain_density": 1828.9455586254182, "grain_outer_radius": 0.03274874718631888, "grain_initial_inner_radius": 0.01500397500617047, "grain_initial_height": 0.11949643391067684, "grain_separation": 0.005814478980525278, "grains_center_of_mass_position": 0.3958319813076771, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018796084439821426, "throat_radius": 0.011097481561758273, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551382236255761}], "aerodynamic_surfaces": [{"length": 0.5578245492009988, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135503940486462]}, {"n": 4, "root_chord": 0.1208804473306549, "tip_chord": 0.06013825466359904, "span": 0.10980565402913159, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495807891081317]}, {"top_radius": 0.06515792243849505, "bottom_radius": 0.04477750119637005, "length": 0.059997432443426854, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992516148632272, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183965934660344, "upper_button_position": 0.0808550213971928}], "rail_length": 5, "inclination": 85.07646111436813, "heading": 52.13192263406035} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06348550231986573, "mass": 15.832633454491324, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310621044973134, "I_33_without_motor": 0.03838750847856394, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.084439791481703, "trigger": 800, "sampling_rate": 105, "lag": 1.5698671487164113, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9950945368038533, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3706901907619358, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6434.0223809941945, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03227042166505908, "grain_number": 5, "grain_density": 1821.0107282631116, "grain_outer_radius": 0.032945457325523474, "grain_initial_inner_radius": 0.015176965644611037, "grain_initial_height": 0.12111062945044053, "grain_separation": 0.004087127478501872, "grains_center_of_mass_position": 0.39836099183382456, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006941549725224489, "throat_radius": 0.0123911459811876, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550057615723376}], "aerodynamic_surfaces": [{"length": 0.558032196675046, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13371790887879]}, {"n": 4, "root_chord": 0.12036720114177878, "tip_chord": 0.061579621307887904, "span": 0.11060041825903463, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048819284164015]}, {"top_radius": 0.06417663100404407, "bottom_radius": 0.04426589554439889, "length": 0.061038677133914664, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699430871557191, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176696469113501, "upper_button_position": 0.0817612246458409}], "rail_length": 5, "inclination": 85.0547632861887, "heading": 51.293157282751594} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350471797773022, "mass": 14.487474532588386, "I_11_without_motor": 6.321, "I_22_without_motor": 6.324501694864967, "I_33_without_motor": 0.03353744541258801, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.799614506130316, "trigger": 800, "sampling_rate": 105, "lag": 1.3965752373307605, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9671159096725704, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3548773178007247, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7110.595251536508, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03366088932039315, "grain_number": 5, "grain_density": 1870.586492187832, "grain_outer_radius": 0.033216031765671755, "grain_initial_inner_radius": 0.015117679533647012, "grain_initial_height": 0.11979499098330942, "grain_separation": 0.0048085620973620045, "grains_center_of_mass_position": 0.39707698401282493, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00015794474921318631, "throat_radius": 0.010832265870996647, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557784030317087}], "aerodynamic_surfaces": [{"length": 0.5605947287328321, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347262562475806]}, {"n": 4, "root_chord": 0.12039237435768824, "tip_chord": 0.0604143427299106, "span": 0.10974048001829288, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491771342411556]}, {"top_radius": 0.06286953433434149, "bottom_radius": 0.04312992583292549, "length": 0.0603783363354075, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002365829860234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193121369948598, "upper_button_position": 0.08092444599116366}], "rail_length": 5, "inclination": 85.78830667291254, "heading": 53.386257305899406} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349698532174566, "mass": 14.24993037114378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.292160030100076, "I_33_without_motor": 0.045527430551610994, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.993044742055927, "trigger": 800, "sampling_rate": 105, "lag": 1.4494559900462567, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9136864179864239, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5346849164996461, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6538.344336901449, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03417977919863401, "grain_number": 5, "grain_density": 1839.837539113393, "grain_outer_radius": 0.0327670589064597, "grain_initial_inner_radius": 0.015586354481543208, "grain_initial_height": 0.1197554158504456, "grain_separation": 0.0064007005187013966, "grains_center_of_mass_position": 0.39711376566798506, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009064104587901662, "throat_radius": 0.01136125984941346, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553105870802679}], "aerodynamic_surfaces": [{"length": 0.5596330913322394, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338683993413583]}, {"n": 4, "root_chord": 0.12111476988705717, "tip_chord": 0.06015928271256899, "span": 0.10974795107275001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050209874829862]}, {"top_radius": 0.06180456091182496, "bottom_radius": 0.043572289593834544, "length": 0.06062180322532575, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005891569640584, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180765804642904, "upper_button_position": 0.08251257649976806}], "rail_length": 5, "inclination": 84.97117650680822, "heading": 54.386735248381704} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349853483238256, "mass": 15.268744153965574, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30652700788222, "I_33_without_motor": 0.04286174804071858, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03549023430579, "trigger": 800, "sampling_rate": 105, "lag": 1.438673854030743, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9536987716819428, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6375004201743786, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6863.884274450276, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286847441091254, "grain_number": 5, "grain_density": 1796.026603866669, "grain_outer_radius": 0.03297463774513242, "grain_initial_inner_radius": 0.01541873002791991, "grain_initial_height": 0.11926880362202795, "grain_separation": 0.0049934077740807, "grains_center_of_mass_position": 0.3978795620692379, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008552094523237118, "throat_radius": 0.009785323635767514, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540436366572774}], "aerodynamic_surfaces": [{"length": 0.5587950630622246, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341087026132717]}, {"n": 4, "root_chord": 0.1203898691274607, "tip_chord": 0.05958564471987557, "span": 0.10947522990825583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483618528498264]}, {"top_radius": 0.06370850565008608, "bottom_radius": 0.044229096405249434, "length": 0.059314136272599315, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987082796412385, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171197551542614, "upper_button_position": 0.08158852448697707}], "rail_length": 5, "inclination": 85.18810192893112, "heading": 53.01751804603852} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349368688890203, "mass": 15.33478361212879, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31843227314537, "I_33_without_motor": 0.03846657795759544, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.909273355038232, "trigger": 800, "sampling_rate": 105, "lag": 1.2802386751591044, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9743427253210739, "trigger": "apogee", "sampling_rate": 105, "lag": 1.197230281768506, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6320.724904963878, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032342695397962494, "grain_number": 5, "grain_density": 1858.6991816118193, "grain_outer_radius": 0.03328831633127678, "grain_initial_inner_radius": 0.015220739239682283, "grain_initial_height": 0.11952090377312391, "grain_separation": 0.004651550710442507, "grains_center_of_mass_position": 0.39803039588981476, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010658941606685355, "throat_radius": 0.011259479464425811, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529493389976145}], "aerodynamic_surfaces": [{"length": 0.5585129206025186, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354186931442392]}, {"n": 4, "root_chord": 0.12010271972669215, "tip_chord": 0.06002884555333835, "span": 0.1097093010166693, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495770310727406]}, {"top_radius": 0.06429308204777565, "bottom_radius": 0.04348218355285538, "length": 0.05981325934279536, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996394859377926, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185128259214476, "upper_button_position": 0.08112666001634494}], "rail_length": 5, "inclination": 84.86214860867695, "heading": 54.54570286095164} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349494518792112, "mass": 15.456886260333103, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31582608152991, "I_33_without_motor": 0.02919033616191908, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928331929007081, "trigger": 800, "sampling_rate": 105, "lag": 1.4799681368374722, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9730057679101355, "trigger": "apogee", "sampling_rate": 105, "lag": 1.665816821589982, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7863.1951849745865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032220930592255746, "grain_number": 5, "grain_density": 1777.9437869166559, "grain_outer_radius": 0.03252775924212069, "grain_initial_inner_radius": 0.015090484517902831, "grain_initial_height": 0.12139806251012496, "grain_separation": 0.006810584263844052, "grains_center_of_mass_position": 0.3984625166120131, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001505357376486037, "throat_radius": 0.010581015316488102, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254381022487604}], "aerodynamic_surfaces": [{"length": 0.5574972795725047, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354216602730782]}, {"n": 4, "root_chord": 0.11995833615985449, "tip_chord": 0.06034528689541504, "span": 0.10943544587492109, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488244112580216]}, {"top_radius": 0.0631879402355065, "bottom_radius": 0.044097134304560186, "length": 0.060123156585986964, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698036048040108, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168881440463772, "upper_button_position": 0.08114790399373084}], "rail_length": 5, "inclination": 85.65772006688627, "heading": 51.816101111450706} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.063503334435919, "mass": 16.054882672942288, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303757567762721, "I_33_without_motor": 0.0436756746719272, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.052653439673534, "trigger": 800, "sampling_rate": 105, "lag": 1.572181009457259, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1007960109667487, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4564097541892977, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4861.255809519209, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033026689837541874, "grain_number": 5, "grain_density": 1808.5167756130327, "grain_outer_radius": 0.03309171750543288, "grain_initial_inner_radius": 0.01476448299072581, "grain_initial_height": 0.1185532709218428, "grain_separation": 0.005723841003687392, "grains_center_of_mass_position": 0.3943426259644984, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00031378347988315105, "throat_radius": 0.010200434349322555, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255528219875997}], "aerodynamic_surfaces": [{"length": 0.5574145655191624, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1358035917149159]}, {"n": 4, "root_chord": 0.12001860543538756, "tip_chord": 0.05937459538544977, "span": 0.11067043550688116, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048171616749287]}, {"top_radius": 0.06123173260729559, "bottom_radius": 0.044020043521759575, "length": 0.058235330488714834, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997531660520153, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170116669061588, "upper_button_position": 0.08274149914585649}], "rail_length": 5, "inclination": 85.44205345227185, "heading": 53.84288900289024} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06348710844875784, "mass": 15.289627376539647, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312563808173785, "I_33_without_motor": 0.027330722733269776, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034834399683373, "trigger": 800, "sampling_rate": 105, "lag": 1.6628291398726613, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9213759936986439, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6208562901687031, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6928.102351464825, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328444670059648, "grain_number": 5, "grain_density": 1894.0136872440237, "grain_outer_radius": 0.033145078032593166, "grain_initial_inner_radius": 0.014972992336976736, "grain_initial_height": 0.11866916792485233, "grain_separation": 0.007155460433900274, "grains_center_of_mass_position": 0.39865174282174964, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003624611265552889, "throat_radius": 0.010784915103130763, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255815658335764}], "aerodynamic_surfaces": [{"length": 0.556819089325339, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325326571845513]}, {"n": 4, "root_chord": 0.12048881934548523, "tip_chord": 0.0603398293187913, "span": 0.10986671024789392, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050501107660089]}, {"top_radius": 0.06272406734874449, "bottom_radius": 0.04461142865368785, "length": 0.059541486580985216, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995696456239254, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162372776581928, "upper_button_position": 0.08333236796573262}], "rail_length": 5, "inclination": 84.22963104853476, "heading": 54.99133376983474} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349573971162265, "mass": 15.130817462440666, "I_11_without_motor": 6.321, "I_22_without_motor": 6.346117276312765, "I_33_without_motor": 0.025897569637814248, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.187177295174477, "trigger": 800, "sampling_rate": 105, "lag": 1.5731922260691817, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.05953133520053, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5401543534765918, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4759.618705615394, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032688647061369515, "grain_number": 5, "grain_density": 1797.8298183873148, "grain_outer_radius": 0.03330594745503565, "grain_initial_inner_radius": 0.015132046582929501, "grain_initial_height": 0.1197972380993127, "grain_separation": 0.006577347151466123, "grains_center_of_mass_position": 0.3965332645953393, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012722100774038074, "throat_radius": 0.011551681140378717, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254290844355561}], "aerodynamic_surfaces": [{"length": 0.5588158984021017, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335787263928754]}, {"n": 4, "root_chord": 0.1199143128488356, "tip_chord": 0.060101974419307265, "span": 0.10926139321001735, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500423645961718]}, {"top_radius": 0.06400228981954732, "bottom_radius": 0.04550904980373989, "length": 0.05960962897230184, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698148685919818, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618197778042996, "upper_button_position": 0.07995090787682202}], "rail_length": 5, "inclination": 83.59624999334781, "heading": 53.45499747595901} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.0635040583297097, "mass": 15.195240591646286, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30904597805764, "I_33_without_motor": 0.03722051891852548, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095490300252363, "trigger": 800, "sampling_rate": 105, "lag": 1.508656962940603, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9785259964805705, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4975616814138082, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7387.526743683669, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0327911285762662, "grain_number": 5, "grain_density": 1800.6702038395401, "grain_outer_radius": 0.03283801243345051, "grain_initial_inner_radius": 0.015320092780559937, "grain_initial_height": 0.12004814348917651, "grain_separation": 0.00264620121319698, "grains_center_of_mass_position": 0.3975131672355198, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010501948690150838, "throat_radius": 0.010905233762267819, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542631153806467}], "aerodynamic_surfaces": [{"length": 0.557399011971398, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345796281227531]}, {"n": 4, "root_chord": 0.11970631357903616, "tip_chord": 0.060488189358916145, "span": 0.11025982263593564, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491169113227359]}, {"top_radius": 0.061885414147501844, "bottom_radius": 0.04327620507252048, "length": 0.05998115088231383, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986002919207333, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174829568368276, "upper_button_position": 0.08111733508390562}], "rail_length": 5, "inclination": 85.40910385536752, "heading": 52.6099625612378} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349526742993103, "mass": 14.927408723283332, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332623096803678, "I_33_without_motor": 0.023934281264331603, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.969889346457359, "trigger": 800, "sampling_rate": 105, "lag": 1.5280356773409653, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0421846896159723, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3700407507847767, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6819.737382608386, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03263678286165895, "grain_number": 5, "grain_density": 1820.3366924203185, "grain_outer_radius": 0.033253753958750326, "grain_initial_inner_radius": 0.015137412044656452, "grain_initial_height": 0.11948835578457206, "grain_separation": 0.006011193026566176, "grains_center_of_mass_position": 0.3976970943289927, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003995918538277301, "throat_radius": 0.011887363129452455, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560067370873267}], "aerodynamic_surfaces": [{"length": 0.5593747580731718, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135627938697966]}, {"n": 4, "root_chord": 0.11984034790235354, "tip_chord": 0.060822559362611266, "span": 0.11045724613797661, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049715355748778]}, {"top_radius": 0.062293435074381114, "bottom_radius": 0.04551135475303613, "length": 0.06021020923581916, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988217683329847, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618648146684666, "upper_button_position": 0.08017362164831876}], "rail_length": 5, "inclination": 84.52438799541478, "heading": 52.17490180104204} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349546900617638, "mass": 15.094759366610619, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333771655881637, "I_33_without_motor": 0.04074127580872457, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.937699657995212, "trigger": 800, "sampling_rate": 105, "lag": 1.3653474895226319, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0622907274984856, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6475974022670943, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7056.574134618424, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033433032071104936, "grain_number": 5, "grain_density": 1778.79368009824, "grain_outer_radius": 0.03279284446024269, "grain_initial_inner_radius": 0.015428881531009514, "grain_initial_height": 0.11940936179571965, "grain_separation": 0.005339891586979997, "grains_center_of_mass_position": 0.39757524685313195, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.243729455750276e-05, "throat_radius": 0.011711977397662651, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547276460005086}], "aerodynamic_surfaces": [{"length": 0.5561499344207979, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341125497187565]}, {"n": 4, "root_chord": 0.11931404118770969, "tip_chord": 0.060736095436547656, "span": 0.1098858941198049, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504154772605827]}, {"top_radius": 0.06491341823427892, "bottom_radius": 0.0437041688257749, "length": 0.06038375846736726, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701116915018999, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186738820713228, "upper_button_position": 0.08244303294767619}], "rail_length": 5, "inclination": 83.7548592284978, "heading": 50.60642208990093} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350131414376187, "mass": 14.21302274886864, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330682572117054, "I_33_without_motor": 0.02819388650132168, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.04964847349105, "trigger": 800, "sampling_rate": 105, "lag": 1.51969763239069, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9043718838512449, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4716486777479445, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7023.300474524623, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308690380066467, "grain_number": 5, "grain_density": 1853.27116007567, "grain_outer_radius": 0.03287009479127227, "grain_initial_inner_radius": 0.01442948602971361, "grain_initial_height": 0.1188223380513185, "grain_separation": 0.0039786573255435245, "grains_center_of_mass_position": 0.395055685068525, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010028900516421643, "throat_radius": 0.01066080202725607, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559640856288323}], "aerodynamic_surfaces": [{"length": 0.5572187807300144, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133529022054382]}, {"n": 4, "root_chord": 0.11938491502367383, "tip_chord": 0.06067812891161339, "span": 0.11045943134863546, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051426341353943]}, {"top_radius": 0.06322013035421238, "bottom_radius": 0.04429558483646728, "length": 0.06028820039546374, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7022223739362992, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166516882605726, "upper_button_position": 0.08557068567572657}], "rail_length": 5, "inclination": 83.37865310038339, "heading": 51.76744724277986} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0634956279743013, "mass": 15.299212514366754, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31169650166411, "I_33_without_motor": 0.02398574502884717, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037424593545055, "trigger": 800, "sampling_rate": 105, "lag": 1.2085805539306436, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0882789609023495, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8644669955537025, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7472.805578918853, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03172378487964101, "grain_number": 5, "grain_density": 1767.6630040741359, "grain_outer_radius": 0.03247805973562025, "grain_initial_inner_radius": 0.015493776077624448, "grain_initial_height": 0.11936373977825228, "grain_separation": 0.006340088471312147, "grains_center_of_mass_position": 0.3969323076305572, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00033969150218600387, "throat_radius": 0.011652377979734238, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544412410859809}], "aerodynamic_surfaces": [{"length": 0.5565039142531498, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342576985672446]}, {"n": 4, "root_chord": 0.12017093161030401, "tip_chord": 0.05964271415341025, "span": 0.11076592900199583, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485381212780158]}, {"top_radius": 0.06483697177818612, "bottom_radius": 0.04469168802064194, "length": 0.06023448323731081, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990719537684082, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618513549768846, "upper_button_position": 0.08055840399956227}], "rail_length": 5, "inclination": 86.10201637606518, "heading": 52.007874799395765} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350426417240379, "mass": 15.547149270509527, "I_11_without_motor": 6.321, "I_22_without_motor": 6.295898377140556, "I_33_without_motor": 0.02619177805358018, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.100832703140918, "trigger": 800, "sampling_rate": 105, "lag": 1.4724108170899055, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8875877725561878, "trigger": "apogee", "sampling_rate": 105, "lag": 1.543984935361416, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6010.300795295368, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03345412455963224, "grain_number": 5, "grain_density": 1826.818023005221, "grain_outer_radius": 0.03310184891853013, "grain_initial_inner_radius": 0.014858520814454141, "grain_initial_height": 0.12047696353287657, "grain_separation": 0.004551504168459215, "grains_center_of_mass_position": 0.39726206795187824, "center_of_dry_mass_position": 0.317, "nozzle_position": 9.467870397436893e-05, "throat_radius": 0.010123835703102812, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544966554317687}], "aerodynamic_surfaces": [{"length": 0.5590286595586802, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340996883250059]}, {"n": 4, "root_chord": 0.1193391795539468, "tip_chord": 0.06048899709044499, "span": 0.10971968819688332, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487769943700072]}, {"top_radius": 0.061087542032100164, "bottom_radius": 0.045591370623628766, "length": 0.059390754924564644, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991678022188769, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617570381595303, "upper_button_position": 0.08159742062357389}], "rail_length": 5, "inclination": 85.16273127735644, "heading": 54.78788244755175} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0635055591980656, "mass": 15.88140193354916, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331467177976484, "I_33_without_motor": 0.030191657852548282, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.939143208293405, "trigger": 800, "sampling_rate": 105, "lag": 1.4921010194220234, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9780941861466979, "trigger": "apogee", "sampling_rate": 105, "lag": 1.688275211882658, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7592.305415577879, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03304929025403456, "grain_number": 5, "grain_density": 1897.2937376020689, "grain_outer_radius": 0.03293066157399653, "grain_initial_inner_radius": 0.01502538022969637, "grain_initial_height": 0.118092530699193, "grain_separation": 0.00354464659328711, "grains_center_of_mass_position": 0.3981922261426397, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008823156644843667, "throat_radius": 0.010149095730006857, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256024887345519}], "aerodynamic_surfaces": [{"length": 0.5581775164514311, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324744561937365]}, {"n": 4, "root_chord": 0.12016208722057567, "tip_chord": 0.05970960375915154, "span": 0.11055990708463924, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499485542560303]}, {"top_radius": 0.06308075426493916, "bottom_radius": 0.04397925927443198, "length": 0.059513528063478226, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998397947885815, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164565714608682, "upper_button_position": 0.08338322332771331}], "rail_length": 5, "inclination": 83.781364540946, "heading": 54.73507745536271} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349733683513194, "mass": 14.786241517698905, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3405416564037616, "I_33_without_motor": 0.03452539065538823, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.768866419610687, "trigger": 800, "sampling_rate": 105, "lag": 1.500045897363281, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9975028006384831, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6198711252751046, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6738.381736500541, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032728606701882615, "grain_number": 5, "grain_density": 1809.51399744344, "grain_outer_radius": 0.03317229942969322, "grain_initial_inner_radius": 0.015140273537063148, "grain_initial_height": 0.11994400137566966, "grain_separation": 0.00441604988506226, "grains_center_of_mass_position": 0.3978687390125659, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007273554385210845, "throat_radius": 0.010970226751231604, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534546066928531}], "aerodynamic_surfaces": [{"length": 0.5570071415510959, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133207034722434]}, {"n": 4, "root_chord": 0.11998910979308881, "tip_chord": 0.05984557780015989, "span": 0.10935510476376782, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508813347110104]}, {"top_radius": 0.06230609197155659, "bottom_radius": 0.04501430445090268, "length": 0.05915023804578503, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997294629042197, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181436581653953, "upper_button_position": 0.08158580473882437}], "rail_length": 5, "inclination": 87.86554460581989, "heading": 51.0393129739121} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350848513122608, "mass": 15.971895416328628, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330856037407222, "I_33_without_motor": 0.02495674051054027, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.032508244079027, "trigger": 800, "sampling_rate": 105, "lag": 1.5076469836724788, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0289788410923963, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5959334227506112, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7057.128080770052, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032991204848721395, "grain_number": 5, "grain_density": 1709.2944609255917, "grain_outer_radius": 0.033152980913400375, "grain_initial_inner_radius": 0.015570513566192913, "grain_initial_height": 0.12211609075754472, "grain_separation": 0.004782341915336266, "grains_center_of_mass_position": 0.3962143472167914, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005455532098111103, "throat_radius": 0.011267981756115847, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2572266200683684}], "aerodynamic_surfaces": [{"length": 0.5581980507082928, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326023202185818]}, {"n": 4, "root_chord": 0.12029304635976373, "tip_chord": 0.05954693367866514, "span": 0.11020122292786763, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491001057777647]}, {"top_radius": 0.06275409381980156, "bottom_radius": 0.04486084707342345, "length": 0.059210723766684556, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003014431739742, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168844046278757, "upper_button_position": 0.0834170385460985}], "rail_length": 5, "inclination": 84.44631068216081, "heading": 58.54585253611263} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06350412913216205, "mass": 15.954773087734916, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32614770442541, "I_33_without_motor": 0.025161118309624766, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.912410694619592, "trigger": 800, "sampling_rate": 105, "lag": 1.4705507577982737, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8857534975576293, "trigger": "apogee", "sampling_rate": 105, "lag": 1.761599007096108, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6515.600856714901, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287628625391678, "grain_number": 5, "grain_density": 1861.4722265889227, "grain_outer_radius": 0.03349409833988091, "grain_initial_inner_radius": 0.015110022926626939, "grain_initial_height": 0.12013306732658269, "grain_separation": 0.004268578413995208, "grains_center_of_mass_position": 0.3980013109042054, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004798289306405335, "throat_radius": 0.01144289078361515, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541083588698023}], "aerodynamic_surfaces": [{"length": 0.5573510138716594, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345395380800651]}, {"n": 4, "root_chord": 0.12087172268905688, "tip_chord": 0.06000170421273942, "span": 0.1104090061480129, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503650482239597]}, {"top_radius": 0.06335209582139138, "bottom_radius": 0.04299698601835745, "length": 0.059410370134599835, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995638101705342, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6189053580869981, "upper_button_position": 0.08065845208353606}], "rail_length": 5, "inclination": 84.09922597846192, "heading": 50.89408015021114} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348825845184583, "mass": 16.657705554590567, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316624390531213, "I_33_without_motor": 0.030613828963034426, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070440603603029, "trigger": 800, "sampling_rate": 105, "lag": 1.6524016957009289, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8864109025544383, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5810303152876244, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6148.609080102332, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281697774783597, "grain_number": 5, "grain_density": 1816.2439941914013, "grain_outer_radius": 0.03285252862763056, "grain_initial_inner_radius": 0.01522574289631351, "grain_initial_height": 0.11947157336188119, "grain_separation": 0.0045639964525346546, "grains_center_of_mass_position": 0.39712122147446677, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.002167694828973153, "throat_radius": 0.011106676140431317, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551095030462966}], "aerodynamic_surfaces": [{"length": 0.5585113210269375, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330167627954013]}, {"n": 4, "root_chord": 0.11927151110912804, "tip_chord": 0.06019923858312544, "span": 0.109602908296778, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049669790819848]}, {"top_radius": 0.06350318547067255, "bottom_radius": 0.04554108790024557, "length": 0.05950972421135159, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012633572854922, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178423650016729, "upper_button_position": 0.08342099228381927}], "rail_length": 5, "inclination": 85.35484929487644, "heading": 49.747511029026725} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350746538457694, "mass": 14.960655002493974, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331338773565246, "I_33_without_motor": 0.033356031731383656, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.129362310281575, "trigger": 800, "sampling_rate": 105, "lag": 1.7885988896652005, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9245311512180704, "trigger": "apogee", "sampling_rate": 105, "lag": 1.74677765191353, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5344.314319720439, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032533943446323245, "grain_number": 5, "grain_density": 1871.4807805620542, "grain_outer_radius": 0.033797709540622986, "grain_initial_inner_radius": 0.01542382069037644, "grain_initial_height": 0.12085100633692783, "grain_separation": 0.005737726951023179, "grains_center_of_mass_position": 0.39749505767193255, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014361664544524384, "throat_radius": 0.010994995330936234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552588293428064}], "aerodynamic_surfaces": [{"length": 0.5584537715328611, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134409898948671]}, {"n": 4, "root_chord": 0.12026640695106076, "tip_chord": 0.060227740569503294, "span": 0.11015675183935197, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047672541007578]}, {"top_radius": 0.06314412751925945, "bottom_radius": 0.04461381211909547, "length": 0.05940560384727304, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005269343232167, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190105822626051, "upper_button_position": 0.08151635206061159}], "rail_length": 5, "inclination": 84.7179699849633, "heading": 52.04130872918727} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.063489270480023, "mass": 14.959655586776964, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318605128349764, "I_33_without_motor": 0.027268116975268698, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.006088335861149, "trigger": 800, "sampling_rate": 105, "lag": 1.5247219266490706, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9891915277527814, "trigger": "apogee", "sampling_rate": 105, "lag": 1.429167734134295, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5486.963381050781, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033251859960457715, "grain_number": 5, "grain_density": 1813.5441552873415, "grain_outer_radius": 0.03321303106434059, "grain_initial_inner_radius": 0.01471126813149075, "grain_initial_height": 0.1200871709303452, "grain_separation": 0.00244173392108137, "grains_center_of_mass_position": 0.396639072203626, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00019135010040487315, "throat_radius": 0.01054193674479802, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562698164899586}], "aerodynamic_surfaces": [{"length": 0.5599683634373019, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133861049961239]}, {"n": 4, "root_chord": 0.1205053664238097, "tip_chord": 0.059402294993905605, "span": 0.11018836742487657, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483272060821711]}, {"top_radius": 0.0630416701706847, "bottom_radius": 0.04428527562304489, "length": 0.05906582354304523, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985916559395259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178807985700897, "upper_button_position": 0.08071085736943617}], "rail_length": 5, "inclination": 83.7294975761296, "heading": 53.596691801660874} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349188659460231, "mass": 15.521721322795873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317693503227481, "I_33_without_motor": 0.03857859161701709, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954727937764758, "trigger": 800, "sampling_rate": 105, "lag": 1.4657831211511356, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.017161546543556, "trigger": "apogee", "sampling_rate": 105, "lag": 1.439926439604535, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7852.135266190333, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260336941521551, "grain_number": 5, "grain_density": 1800.4218233508007, "grain_outer_radius": 0.03314838983601318, "grain_initial_inner_radius": 0.014685221870154318, "grain_initial_height": 0.11919447910587916, "grain_separation": 0.003012833457134266, "grains_center_of_mass_position": 0.39852253521309766, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016626875932243563, "throat_radius": 0.01108909953909076, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534886456584393}], "aerodynamic_surfaces": [{"length": 0.5559809374374114, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338634364186588]}, {"n": 4, "root_chord": 0.11997309583611504, "tip_chord": 0.060453622532871565, "span": 0.109814971714778, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506433609739925]}, {"top_radius": 0.0636643481742183, "bottom_radius": 0.0450451022607142, "length": 0.06001599101459179, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700003448183456, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198836493016497, "upper_button_position": 0.0801197988818062}], "rail_length": 5, "inclination": 84.62043135563569, "heading": 53.68933230550099} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.0634937185994983, "mass": 15.489504382301961, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329931936432691, "I_33_without_motor": 0.0363726326673825, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1289572828755, "trigger": 800, "sampling_rate": 105, "lag": 1.6154773640484703, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9786929915088214, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5211588275760553, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7182.415454974229, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033406858660716375, "grain_number": 5, "grain_density": 1796.0609222819767, "grain_outer_radius": 0.03272359100511068, "grain_initial_inner_radius": 0.014637433241536286, "grain_initial_height": 0.11974529246366034, "grain_separation": 0.005253889507666603, "grains_center_of_mass_position": 0.3963630956496342, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005874798974619638, "throat_radius": 0.010280690864583322, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543138977128576}], "aerodynamic_surfaces": [{"length": 0.5582812301170456, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133044756194366]}, {"n": 4, "root_chord": 0.11978557588286219, "tip_chord": 0.0600910482211553, "span": 0.110064560633983, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486176365742916]}, {"top_radius": 0.06500399406775698, "bottom_radius": 0.044247139977004545, "length": 0.059741598003680944, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989424468859053, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168538340688768, "upper_button_position": 0.0820886128170285}], "rail_length": 5, "inclination": 85.43232178052054, "heading": 53.172216665356196} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350917555014073, "mass": 15.908132455257073, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322636100515872, "I_33_without_motor": 0.048112450794702374, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94320425632436, "trigger": 800, "sampling_rate": 105, "lag": 1.7695279465926212, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9629612509037239, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6884648616730449, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6020.208520476839, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033487066093731095, "grain_number": 5, "grain_density": 1902.6606944133962, "grain_outer_radius": 0.033095825388327026, "grain_initial_inner_radius": 0.01571596200432043, "grain_initial_height": 0.11955060284567018, "grain_separation": 0.005209818096037187, "grains_center_of_mass_position": 0.3983983438771606, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000737586548116594, "throat_radius": 0.010791856737435527, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541327544021033}], "aerodynamic_surfaces": [{"length": 0.558780795791786, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354534275458121]}, {"n": 4, "root_chord": 0.12030799402607723, "tip_chord": 0.06051342134663471, "span": 0.1109061075840211, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484841440958677]}, {"top_radius": 0.06479745430183566, "bottom_radius": 0.04365817246995909, "length": 0.0605324244799404, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700902268341872, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195025986646417, "upper_button_position": 0.08139966967723022}], "rail_length": 5, "inclination": 85.31331513154949, "heading": 52.661502979060785} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350822930751507, "mass": 16.103910699781473, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3254806688867635, "I_33_without_motor": 0.02839358398303239, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.997279567846945, "trigger": 800, "sampling_rate": 105, "lag": 1.4875220102786055, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.992793347617834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.536703423742271, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6448.295001601758, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262334236907497, "grain_number": 5, "grain_density": 1859.9840207880222, "grain_outer_radius": 0.03228260239369085, "grain_initial_inner_radius": 0.014925175655621842, "grain_initial_height": 0.1191136443365993, "grain_separation": 0.004150443104042284, "grains_center_of_mass_position": 0.39709718488805884, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009121469358857509, "throat_radius": 0.010968926509476555, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555132592810028}], "aerodynamic_surfaces": [{"length": 0.5575914291061764, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333328697604976]}, {"n": 4, "root_chord": 0.12004293878228942, "tip_chord": 0.06003841425914493, "span": 0.11045257213848007, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495755668262667]}, {"top_radius": 0.06227429332558109, "bottom_radius": 0.04372646604228737, "length": 0.06106678587177476, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997237712241722, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190446370215295, "upper_button_position": 0.08067913420264272}], "rail_length": 5, "inclination": 85.05399458358383, "heading": 50.962200976818046} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350471611471316, "mass": 14.960620464081963, "I_11_without_motor": 6.321, "I_22_without_motor": 6.34078927074527, "I_33_without_motor": 0.037294891690466625, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954342724574825, "trigger": 800, "sampling_rate": 105, "lag": 1.5176978041781637, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1292267981746567, "trigger": "apogee", "sampling_rate": 105, "lag": 1.465404925232429, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7130.880213496644, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03373889109881174, "grain_number": 5, "grain_density": 1773.9035026710767, "grain_outer_radius": 0.033154722209220396, "grain_initial_inner_radius": 0.015141459354789666, "grain_initial_height": 0.11883766337279231, "grain_separation": 0.004890238072183139, "grains_center_of_mass_position": 0.3973572589804825, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011859179883613616, "throat_radius": 0.011257249516872611, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254899238430153}], "aerodynamic_surfaces": [{"length": 0.5580336213325112, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344125601117816]}, {"n": 4, "root_chord": 0.1193596097285027, "tip_chord": 0.060681135727491294, "span": 0.11000988516669169, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485918066828532]}, {"top_radius": 0.06231660541713209, "bottom_radius": 0.045354039284881485, "length": 0.06032353543817165, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993241364685824, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617265142697163, "upper_button_position": 0.08205899377141934}], "rail_length": 5, "inclination": 83.58952098823826, "heading": 52.00747273932211} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634977522768966, "mass": 16.760900323105496, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342683472989522, "I_33_without_motor": 0.019947260242233412, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.938547566716133, "trigger": 800, "sampling_rate": 105, "lag": 1.472746037988708, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0100932637523259, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4350110150520838, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6728.118987220072, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308007621846512, "grain_number": 5, "grain_density": 1836.4618277067364, "grain_outer_radius": 0.03290057116513146, "grain_initial_inner_radius": 0.014845623994963093, "grain_initial_height": 0.11883782990568523, "grain_separation": 0.005671869837259835, "grains_center_of_mass_position": 0.39826370321724974, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0019260923650874263, "throat_radius": 0.011188489692713155, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254945004096183}], "aerodynamic_surfaces": [{"length": 0.5584862258010787, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340398386180932]}, {"n": 4, "root_chord": 0.120587488390024, "tip_chord": 0.059858268353802084, "span": 0.110326474024286, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049933155356916]}, {"top_radius": 0.06487788253804445, "bottom_radius": 0.043803253564038774, "length": 0.059836397683306605, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995201360336878, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618005564966501, "upper_button_position": 0.08151457106718674}], "rail_length": 5, "inclination": 85.41616873069626, "heading": 57.16829478849149} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350429420479953, "mass": 14.964438646810242, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323420672004902, "I_33_without_motor": 0.04717882104500074, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.909016694029015, "trigger": 800, "sampling_rate": 105, "lag": 1.5457455932360298, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.072547046330217, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4141994790531913, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6169.860653371126, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316132658888909, "grain_number": 5, "grain_density": 1757.8488084539995, "grain_outer_radius": 0.03305568517665092, "grain_initial_inner_radius": 0.015571628057001722, "grain_initial_height": 0.12013881991422733, "grain_separation": 0.004880854480521709, "grains_center_of_mass_position": 0.39776071511926003, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0022816207281926787, "throat_radius": 0.01081477825990845, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543727315602484}], "aerodynamic_surfaces": [{"length": 0.5583572238837358, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1317731892788754]}, {"n": 4, "root_chord": 0.11961510711308451, "tip_chord": 0.05945676154236506, "span": 0.10889240872957996, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504386078541805]}, {"top_radius": 0.0634598209451137, "bottom_radius": 0.04531713070931254, "length": 0.05906379248834065, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989868642131252, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183476692841243, "upper_button_position": 0.08063919492900085}], "rail_length": 5, "inclination": 84.74058353218092, "heading": 54.797580920206364} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349404391914432, "mass": 15.593111048483388, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302946926121821, "I_33_without_motor": 0.03129439435486619, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953490480114938, "trigger": 800, "sampling_rate": 105, "lag": 1.5637084601581668, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9268902357265001, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5710377094615273, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5966.136434267586, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03403490384534328, "grain_number": 5, "grain_density": 1827.3928169766184, "grain_outer_radius": 0.03259315892655532, "grain_initial_inner_radius": 0.014708289638132317, "grain_initial_height": 0.11942687981609502, "grain_separation": 0.006215847895249829, "grains_center_of_mass_position": 0.3977449032480748, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012706400011725486, "throat_radius": 0.011223248029444287, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540845196638613}], "aerodynamic_surfaces": [{"length": 0.5585709933294839, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134203660792825]}, {"n": 4, "root_chord": 0.12081666162104515, "tip_chord": 0.06045526362953807, "span": 0.11077817593980806, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497184892690272]}, {"top_radius": 0.06353988939999217, "bottom_radius": 0.04386930565653333, "length": 0.06149231035686102, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986752830255708, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177064820554701, "upper_button_position": 0.08096880097010073}], "rail_length": 5, "inclination": 84.62800973591551, "heading": 52.86141356263798} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349097990288044, "mass": 15.947832711161476, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319491431251676, "I_33_without_motor": 0.03443210953115326, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110837348456021, "trigger": 800, "sampling_rate": 105, "lag": 1.5297701518651972, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.027776630546657, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5487829111500973, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5817.755347926311, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03261515090582849, "grain_number": 5, "grain_density": 1736.3304223450727, "grain_outer_radius": 0.03256801488217194, "grain_initial_inner_radius": 0.014991087202565286, "grain_initial_height": 0.12134665504282058, "grain_separation": 0.005403896272917798, "grains_center_of_mass_position": 0.39451531280292795, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00025317375578542517, "throat_radius": 0.010493293686140876, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563545122737076}], "aerodynamic_surfaces": [{"length": 0.5570053627392233, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343732662699406]}, {"n": 4, "root_chord": 0.12037760401058244, "tip_chord": 0.060990627762890895, "span": 0.10953048458289126, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484404004733954]}, {"top_radius": 0.06317553858467685, "bottom_radius": 0.04459377492948317, "length": 0.057726121132106206, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002340076452804, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.615852403829617, "upper_button_position": 0.0843816038156634}], "rail_length": 5, "inclination": 85.83467540157994, "heading": 53.486815377481726} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350451640222722, "mass": 15.130275067318799, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309613355075536, "I_33_without_motor": 0.028374421550268085, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980778782468093, "trigger": 800, "sampling_rate": 105, "lag": 1.4030375997820883, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.95924863600745, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4871981260612512, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8287.842436828509, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03260235709128388, "grain_number": 5, "grain_density": 1837.622216618359, "grain_outer_radius": 0.03338365517650006, "grain_initial_inner_radius": 0.015554046226060086, "grain_initial_height": 0.11917265567959635, "grain_separation": 0.006879258765916485, "grains_center_of_mass_position": 0.39716298898820596, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001103169949047142, "throat_radius": 0.011448032746526917, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554616506776595}], "aerodynamic_surfaces": [{"length": 0.5584846974304718, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336684109160275]}, {"n": 4, "root_chord": 0.1202480847846562, "tip_chord": 0.05999737367930087, "span": 0.10988985961467856, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050096537669311]}, {"top_radius": 0.06364765707945401, "bottom_radius": 0.04287725591783203, "length": 0.059477818016053174, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998038721843903, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186936960459863, "upper_button_position": 0.08111017613840399}], "rail_length": 5, "inclination": 84.59708476546197, "heading": 51.22759487402142} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349879500178905, "mass": 14.931089108650639, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325351078857064, "I_33_without_motor": 0.05059500531949036, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.139574513848384, "trigger": 800, "sampling_rate": 105, "lag": 1.582226526821183, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9567480971455143, "trigger": "apogee", "sampling_rate": 105, "lag": 1.677913964519252, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5530.405727637864, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032999376117565114, "grain_number": 5, "grain_density": 1824.1732649232392, "grain_outer_radius": 0.032889326205916614, "grain_initial_inner_radius": 0.01501787228907626, "grain_initial_height": 0.11959927964282988, "grain_separation": 0.004415290791900081, "grains_center_of_mass_position": 0.39563374065380663, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000401410163244019, "throat_radius": 0.01033502833236108, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550320769915504}], "aerodynamic_surfaces": [{"length": 0.5599988464285253, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334236833172173]}, {"n": 4, "root_chord": 0.1199963676500186, "tip_chord": 0.05963080133383785, "span": 0.10975323840610089, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484260404724492]}, {"top_radius": 0.06291240063769019, "bottom_radius": 0.04319281236565479, "length": 0.05937708031132914, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007277075341102, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177088643490007, "upper_button_position": 0.08301884318510944}], "rail_length": 5, "inclination": 83.01978575516638, "heading": 51.621133157703355} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.0635043958930869, "mass": 14.605801140337253, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318722101247912, "I_33_without_motor": 0.03194220633720896, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1702282152116, "trigger": 800, "sampling_rate": 105, "lag": 1.7477159239570776, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1110721724081252, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3898322882917442, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7620.9871054739715, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033793155655006325, "grain_number": 5, "grain_density": 1817.1808052244705, "grain_outer_radius": 0.03328306773761686, "grain_initial_inner_radius": 0.015014995747608485, "grain_initial_height": 0.11853361443098946, "grain_separation": 0.004313497571118681, "grains_center_of_mass_position": 0.3968119638076499, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.838537269712734e-05, "throat_radius": 0.011186422533549317, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256234833869884}], "aerodynamic_surfaces": [{"length": 0.5567163067955864, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338913765067662]}, {"n": 4, "root_chord": 0.11949355134667682, "tip_chord": 0.06077948896083704, "span": 0.10986723737285865, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494433249763369]}, {"top_radius": 0.06306584905088637, "bottom_radius": 0.04377566578932348, "length": 0.05914981789883075, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994807981230788, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6202601455861607, "upper_button_position": 0.07922065253691812}], "rail_length": 5, "inclination": 83.96685835394959, "heading": 51.69411629277135} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349924709613014, "mass": 16.166082502508587, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322535743410907, "I_33_without_motor": 0.012174900794317378, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985162245337078, "trigger": 800, "sampling_rate": 105, "lag": 1.391696341036344, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8584520781451535, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2119080643494358, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6001.847780992749, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03235756662555911, "grain_number": 5, "grain_density": 1880.4011603839294, "grain_outer_radius": 0.03366528355927335, "grain_initial_inner_radius": 0.015072363836558526, "grain_initial_height": 0.11966855315556112, "grain_separation": 0.0048791739686805035, "grains_center_of_mass_position": 0.3968238083187776, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008926640019873257, "throat_radius": 0.011535162171732234, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552879321658583}], "aerodynamic_surfaces": [{"length": 0.558291827355792, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342446279615321]}, {"n": 4, "root_chord": 0.11926239247637448, "tip_chord": 0.05985312777403384, "span": 0.10979190913443795, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0473548560178776]}, {"top_radius": 0.06381126410745554, "bottom_radius": 0.04405465630378222, "length": 0.06076493088199206, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989115498048265, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168057034031731, "upper_button_position": 0.08210584640165342}], "rail_length": 5, "inclination": 83.74487450482862, "heading": 51.53205248274278} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349114260207628, "mass": 15.461423451701842, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319119391130648, "I_33_without_motor": 0.0213536589289844, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.956144498742622, "trigger": 800, "sampling_rate": 105, "lag": 1.4476440701671414, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.015262850370773, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5918529073513175, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8538.06408297395, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03270126718423071, "grain_number": 5, "grain_density": 1868.625336320063, "grain_outer_radius": 0.03311248245617928, "grain_initial_inner_radius": 0.014972431842842788, "grain_initial_height": 0.12167850937209783, "grain_separation": 0.005755660901061212, "grains_center_of_mass_position": 0.3971449790756075, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007286758293074838, "throat_radius": 0.011251709334674263, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558221110372092}], "aerodynamic_surfaces": [{"length": 0.5575373542194626, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328334497904484]}, {"n": 4, "root_chord": 0.12006419768749121, "tip_chord": 0.0606952470590542, "span": 0.110237655839482, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048386892486117]}, {"top_radius": 0.06346194591154505, "bottom_radius": 0.04536093257055309, "length": 0.060871687334026724, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995104488986551, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182895285419723, "upper_button_position": 0.08122092035668282}], "rail_length": 5, "inclination": 82.93843563525785, "heading": 51.52090050245942} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349092348379244, "mass": 15.436944944582422, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334240564129914, "I_33_without_motor": 0.030296290062889704, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03475663870778, "trigger": 800, "sampling_rate": 105, "lag": 1.565164606138469, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0122280687932281, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8415261370925076, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6947.872341226854, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297134811198683, "grain_number": 5, "grain_density": 1848.2951185073143, "grain_outer_radius": 0.03315242108588197, "grain_initial_inner_radius": 0.015241837319646933, "grain_initial_height": 0.1195685244692772, "grain_separation": 0.004546798351704268, "grains_center_of_mass_position": 0.39603132455980106, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0002874927685010074, "throat_radius": 0.011458628290627623, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552435319086839}], "aerodynamic_surfaces": [{"length": 0.5579010024179842, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341861684573797]}, {"n": 4, "root_chord": 0.12113956057793548, "tip_chord": 0.0598403183750124, "span": 0.11079196704503193, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0471743338787325]}, {"top_radius": 0.06450135234087072, "bottom_radius": 0.0440028632552449, "length": 0.06125288079481298, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004160306579005, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173899594939748, "upper_button_position": 0.08302607116392569}], "rail_length": 5, "inclination": 83.5874452541641, "heading": 49.97297953196939} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350698170496441, "mass": 16.45038096383635, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333607747596476, "I_33_without_motor": 0.025313105183599312, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.172188442720321, "trigger": 800, "sampling_rate": 105, "lag": 1.4912427430236828, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9810426957131404, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5996037710407804, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6751.600033293456, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320397980187051, "grain_number": 5, "grain_density": 1863.9929368751586, "grain_outer_radius": 0.03330867686464863, "grain_initial_inner_radius": 0.015262436146118045, "grain_initial_height": 0.11837183573532983, "grain_separation": 0.0052188669701866575, "grains_center_of_mass_position": 0.39825244896352996, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006074733784915818, "throat_radius": 0.011132409899224557, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25320944971915}], "aerodynamic_surfaces": [{"length": 0.5570898290182327, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13285920077991]}, {"n": 4, "root_chord": 0.11984819871267445, "tip_chord": 0.05988109093257739, "span": 0.10996874401272774, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051768237651434]}, {"top_radius": 0.06474375704036121, "bottom_radius": 0.04322061635255319, "length": 0.05907064474014785, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001295434473479, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183325987408886, "upper_button_position": 0.08179694470645926}], "rail_length": 5, "inclination": 85.53452835194169, "heading": 52.527191125315376} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.0635084787783413, "mass": 15.83095225839077, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330327431724043, "I_33_without_motor": 0.03976017065260419, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.950660729948112, "trigger": 800, "sampling_rate": 105, "lag": 1.4285520638597549, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0267731740595172, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2034123787133497, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8270.737874767548, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03274207621139146, "grain_number": 5, "grain_density": 1785.7593033890764, "grain_outer_radius": 0.0328294827305009, "grain_initial_inner_radius": 0.014892724168809306, "grain_initial_height": 0.11901262127361828, "grain_separation": 0.004301638874923499, "grains_center_of_mass_position": 0.39535530574656647, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00022426800263120598, "throat_radius": 0.011143041795359155, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543986205382074}], "aerodynamic_surfaces": [{"length": 0.5584385515804368, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134326451551784]}, {"n": 4, "root_chord": 0.12039516898445213, "tip_chord": 0.05937096147013281, "span": 0.11074553575006303, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487556432569332]}, {"top_radius": 0.06460952625474126, "bottom_radius": 0.04434827202323964, "length": 0.05933520496797756, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982121324914388, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174017889506929, "upper_button_position": 0.0808103435407459}], "rail_length": 5, "inclination": 86.36754108019196, "heading": 52.23162748929508} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350333246417672, "mass": 15.193301387258419, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325900395833751, "I_33_without_motor": 0.03256621952135962, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.047922871669567, "trigger": 800, "sampling_rate": 105, "lag": 1.3886738542790076, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8779229799593233, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3313125443972214, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7201.861589592205, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359416400141995, "grain_number": 5, "grain_density": 1821.3808855160528, "grain_outer_radius": 0.03328106301313449, "grain_initial_inner_radius": 0.015382984169432835, "grain_initial_height": 0.12108784005283053, "grain_separation": 0.005170104747930414, "grains_center_of_mass_position": 0.39766167915607176, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0023976192014468424, "throat_radius": 0.010440065302612503, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550836549998818}], "aerodynamic_surfaces": [{"length": 0.5584636391443699, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320293309763574]}, {"n": 4, "root_chord": 0.1201883214593016, "tip_chord": 0.05983674565382026, "span": 0.11004844042400828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488476312220436]}, {"top_radius": 0.06374700134411303, "bottom_radius": 0.04490992590679983, "length": 0.05920290633264893, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699612033178967, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173730650488837, "upper_button_position": 0.08223896813008336}], "rail_length": 5, "inclination": 81.68086747415839, "heading": 50.09297953470309} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350061636497446, "mass": 15.511958498815057, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327828430368996, "I_33_without_motor": 0.03780907309977064, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.904308077807894, "trigger": 800, "sampling_rate": 105, "lag": 1.393670754270815, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0146846027256013, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0772869968123437, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7935.909509095988, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033324493173173535, "grain_number": 5, "grain_density": 1859.7539806270456, "grain_outer_radius": 0.03265473729157854, "grain_initial_inner_radius": 0.015168919660806772, "grain_initial_height": 0.11971787712642702, "grain_separation": 0.006227272770465364, "grains_center_of_mass_position": 0.3987498942899269, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008831985449469061, "throat_radius": 0.009578622668762868, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543406581633223}], "aerodynamic_surfaces": [{"length": 0.5582882575163369, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346037022721438]}, {"n": 4, "root_chord": 0.11932813924259246, "tip_chord": 0.05962705875944442, "span": 0.11051309426239891, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487888472226925]}, {"top_radius": 0.06409210177137702, "bottom_radius": 0.04459478586262518, "length": 0.05911085164936648, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016011554096172, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181719538340987, "upper_button_position": 0.08342920157551847}], "rail_length": 5, "inclination": 84.58490057562742, "heading": 55.66867724978181} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349679112704781, "mass": 15.556452294341408, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306673252040878, "I_33_without_motor": 0.03022083352825468, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.87015908611463, "trigger": 800, "sampling_rate": 105, "lag": 1.4568137759810489, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.977938820469666, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4337963561466047, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7682.0385465857935, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262080476321862, "grain_number": 5, "grain_density": 1913.3280650428906, "grain_outer_radius": 0.032566273269325534, "grain_initial_inner_radius": 0.015236608270031357, "grain_initial_height": 0.12030867592384133, "grain_separation": 0.005018910919905063, "grains_center_of_mass_position": 0.39723820078908106, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009908208522063945, "throat_radius": 0.010316396823340016, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254578962887056}], "aerodynamic_surfaces": [{"length": 0.5586418406169786, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134485512110246]}, {"n": 4, "root_chord": 0.11946724314918962, "tip_chord": 0.06010082951641365, "span": 0.11009416017006017, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496642452318479]}, {"top_radius": 0.06435407490165801, "bottom_radius": 0.04497796323395589, "length": 0.05870942231778845, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993144750963213, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174243864689907, "upper_button_position": 0.0818900886273306}], "rail_length": 5, "inclination": 83.2047612536133, "heading": 53.06819245136722} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349126480201886, "mass": 15.070478747265778, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32204977194332, "I_33_without_motor": 0.03679493708388908, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.092795155285723, "trigger": 800, "sampling_rate": 105, "lag": 1.2984595308939713, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.015039447238621, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4867626120095654, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5744.224820335912, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03327927129696052, "grain_number": 5, "grain_density": 1772.245062117196, "grain_outer_radius": 0.03286710725924852, "grain_initial_inner_radius": 0.014691467550121145, "grain_initial_height": 0.12056587312482166, "grain_separation": 0.0058514096763180755, "grains_center_of_mass_position": 0.39739399073082227, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000711187631871885, "throat_radius": 0.0105858980498034, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542870050365833}], "aerodynamic_surfaces": [{"length": 0.5582244760571179, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344857118051428]}, {"n": 4, "root_chord": 0.11931340015526443, "tip_chord": 0.06025931984249325, "span": 0.10907346830175368, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049864206313312]}, {"top_radius": 0.06372344187254841, "bottom_radius": 0.04216980570758427, "length": 0.05908137197972142, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993394726223942, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187002078217733, "upper_button_position": 0.08063926480062089}], "rail_length": 5, "inclination": 85.49471964956136, "heading": 55.142121171104066} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349772688549121, "mass": 15.16331960009348, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309933725584103, "I_33_without_motor": 0.03344319340370223, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913359199898652, "trigger": 800, "sampling_rate": 105, "lag": 1.5555029315142275, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9854258163109546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7922043013303641, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4381.623184859784, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033564073456748035, "grain_number": 5, "grain_density": 1857.24359012231, "grain_outer_radius": 0.0320230515150813, "grain_initial_inner_radius": 0.014883257499286, "grain_initial_height": 0.12033874829972002, "grain_separation": 0.005429391005253389, "grains_center_of_mass_position": 0.39688479179477976, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015276111607762555, "throat_radius": 0.011733620236003283, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549655925114556}], "aerodynamic_surfaces": [{"length": 0.5572272920787964, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1357628308766234]}, {"n": 4, "root_chord": 0.12079866938797514, "tip_chord": 0.05832178563993304, "span": 0.10948703790615386, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494761491796434]}, {"top_radius": 0.06260649135283045, "bottom_radius": 0.043553563042564324, "length": 0.05851782719027815, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998111864182976, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165985792747274, "upper_button_position": 0.08321260714357026}], "rail_length": 5, "inclination": 85.95917912869962, "heading": 55.30836181175139} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349860426794247, "mass": 15.431124279853423, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310141819522328, "I_33_without_motor": 0.030747141926943892, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10810414084958, "trigger": 800, "sampling_rate": 105, "lag": 1.5194583586089458, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0031893088736348, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8488998887632777, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6992.555190979112, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03351873239630243, "grain_number": 5, "grain_density": 1817.0225499991766, "grain_outer_radius": 0.032575039522520687, "grain_initial_inner_radius": 0.015047655921109699, "grain_initial_height": 0.12171691073081098, "grain_separation": 0.0028871196755166214, "grains_center_of_mass_position": 0.3970974919359706, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00034191168153944866, "throat_radius": 0.011309005337026877, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567888029223024}], "aerodynamic_surfaces": [{"length": 0.5579725061103987, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324345775065685]}, {"n": 4, "root_chord": 0.12000236176152888, "tip_chord": 0.06079974994155693, "span": 0.11118211475061276, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049834111419166]}, {"top_radius": 0.06406271435646035, "bottom_radius": 0.04197143555212991, "length": 0.059670497917989375, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007002065987259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6162577755107025, "upper_button_position": 0.0844424310880234}], "rail_length": 5, "inclination": 83.65297614119451, "heading": 56.86560338507061} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06348823934077368, "mass": 15.459491180929938, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3194129486711885, "I_33_without_motor": 0.018997082688783782, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.065894168039653, "trigger": 800, "sampling_rate": 105, "lag": 1.7241478955502976, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1528246637766495, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4478130348696068, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4021.8914212320374, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03277025936106386, "grain_number": 5, "grain_density": 1830.8755638158782, "grain_outer_radius": 0.033098365200321105, "grain_initial_inner_radius": 0.014738529365884868, "grain_initial_height": 0.11846115839137517, "grain_separation": 0.005022723646826129, "grains_center_of_mass_position": 0.3970383760277133, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010325217410801794, "throat_radius": 0.011057179069952251, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553794931463065}], "aerodynamic_surfaces": [{"length": 0.5581106430908419, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134027496742262]}, {"n": 4, "root_chord": 0.11892369197656182, "tip_chord": 0.06045678139232399, "span": 0.11040463001296295, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486889696033657]}, {"top_radius": 0.0633323100909412, "bottom_radius": 0.041736759863730245, "length": 0.060296488257011144, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011205594829258, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186581762848725, "upper_button_position": 0.08246238319805332}], "rail_length": 5, "inclination": 84.51059880420594, "heading": 53.701123113764076} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.063487562391971, "mass": 15.1506660860071, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331531705825326, "I_33_without_motor": 0.033559605224170806, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00158404799665, "trigger": 800, "sampling_rate": 105, "lag": 1.5189668230266269, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9058132449824419, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5827136748171093, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6451.399215801971, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032723674190180525, "grain_number": 5, "grain_density": 1812.1878815546427, "grain_outer_radius": 0.033645324589652935, "grain_initial_inner_radius": 0.015360794167970353, "grain_initial_height": 0.11823082362580828, "grain_separation": 0.003665120888159225, "grains_center_of_mass_position": 0.39708891443622507, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005675247787138602, "throat_radius": 0.011146330665866674, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563646434256}], "aerodynamic_surfaces": [{"length": 0.5583591410317805, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352419641146734]}, {"n": 4, "root_chord": 0.1192732205426261, "tip_chord": 0.0600679474684371, "span": 0.11012464880982203, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492374577790387]}, {"top_radius": 0.06332066398035963, "bottom_radius": 0.04335330553671144, "length": 0.0602467151877899, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006854045501407, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183139225101141, "upper_button_position": 0.08237148204002664}], "rail_length": 5, "inclination": 84.89633404588528, "heading": 52.73321119879395} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.0634929740604391, "mass": 15.97608515280539, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322977924391126, "I_33_without_motor": 0.039972312168113006, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.102754088780815, "trigger": 800, "sampling_rate": 105, "lag": 1.5419332191264679, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.930605939449034, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4254536338169312, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5967.619703371662, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03222825796311747, "grain_number": 5, "grain_density": 1752.294894222581, "grain_outer_radius": 0.032642961871738825, "grain_initial_inner_radius": 0.01461873072862871, "grain_initial_height": 0.12096263875215144, "grain_separation": 0.005551676202699329, "grains_center_of_mass_position": 0.3954249991023409, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0013852737147576522, "throat_radius": 0.010964204209068957, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256648510282095}], "aerodynamic_surfaces": [{"length": 0.5578557267216476, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342035972138373]}, {"n": 4, "root_chord": 0.11963219636171865, "tip_chord": 0.05937671797742195, "span": 0.11048326936528403, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494582886491073]}, {"top_radius": 0.06487425853731794, "bottom_radius": 0.044120422694653584, "length": 0.061204221995001765, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996583645695379, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184012320948026, "upper_button_position": 0.08125713247473532}], "rail_length": 5, "inclination": 82.72669628889685, "heading": 51.22417939146981} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0634991919149147, "mass": 15.26195890898403, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302707067472034, "I_33_without_motor": 0.04324286179886052, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.901467520690739, "trigger": 800, "sampling_rate": 105, "lag": 1.5295744130792002, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0109743268424076, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6929278136432795, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7278.012330347668, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03309268092262016, "grain_number": 5, "grain_density": 1896.6505368957999, "grain_outer_radius": 0.032482804243547596, "grain_initial_inner_radius": 0.014978240031734081, "grain_initial_height": 0.11999461334450603, "grain_separation": 0.005791488598540561, "grains_center_of_mass_position": 0.3983785716667529, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001198211161684953, "throat_radius": 0.010619229486266469, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563561725100063}], "aerodynamic_surfaces": [{"length": 0.5589442101618624, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320617209806119]}, {"n": 4, "root_chord": 0.11904532172733895, "tip_chord": 0.06002062036852144, "span": 0.10979513962375952, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490052065333797]}, {"top_radius": 0.06417036180159388, "bottom_radius": 0.043516152879443, "length": 0.05872666337291918, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015445362710933, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619734447790367, "upper_button_position": 0.08181008848072624}], "rail_length": 5, "inclination": 84.44307573857337, "heading": 51.36367087163099} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349816778694001, "mass": 14.370920073533764, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305032745692531, "I_33_without_motor": 0.02997859637525419, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890392143851638, "trigger": 800, "sampling_rate": 105, "lag": 1.4085063926799155, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.950185987566351, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4268485774546267, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7416.274026482347, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03317855451815093, "grain_number": 5, "grain_density": 1778.3254010616856, "grain_outer_radius": 0.03323915259262074, "grain_initial_inner_radius": 0.015803901039398483, "grain_initial_height": 0.12047455365988533, "grain_separation": 0.0051076105752850594, "grains_center_of_mass_position": 0.3978072186027434, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00028169585749220473, "throat_radius": 0.011040182240098357, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561916115518994}], "aerodynamic_surfaces": [{"length": 0.5572433398811537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134810252856956]}, {"n": 4, "root_chord": 0.12095470671819232, "tip_chord": 0.05984431612942194, "span": 0.10989399010105488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496312001634187]}, {"top_radius": 0.06358138862462463, "bottom_radius": 0.04323028677971711, "length": 0.060328080829779286, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996802323069506, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169937636122662, "upper_button_position": 0.08268646869468443}], "rail_length": 5, "inclination": 85.832966211111, "heading": 57.02808192137813} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.0635114490700643, "mass": 15.995775183158244, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311984464251271, "I_33_without_motor": 0.029192273101283757, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015026081861793, "trigger": 800, "sampling_rate": 105, "lag": 1.4108725955194275, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0507010189675146, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4657910328912764, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7572.207765529438, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03398250347424719, "grain_number": 5, "grain_density": 1812.8615880908262, "grain_outer_radius": 0.03260190508282356, "grain_initial_inner_radius": 0.01458109620562187, "grain_initial_height": 0.12176436445387151, "grain_separation": 0.004913314316809002, "grains_center_of_mass_position": 0.39763366646257214, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006493286137011282, "throat_radius": 0.011500409769579027, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532487628059725}], "aerodynamic_surfaces": [{"length": 0.5573519492084263, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338356978566757]}, {"n": 4, "root_chord": 0.11999567059670295, "tip_chord": 0.06064524806531706, "span": 0.110513141686689, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492812478191353]}, {"top_radius": 0.06481559174245305, "bottom_radius": 0.04413245490122448, "length": 0.060682185367543044, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003191149511271, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173708051002433, "upper_button_position": 0.08294830985088375}], "rail_length": 5, "inclination": 84.7289526176593, "heading": 50.499078956857474} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349683073143103, "mass": 15.317360700640672, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31680432283123, "I_33_without_motor": 0.02846936153070949, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036642905930535, "trigger": 800, "sampling_rate": 105, "lag": 1.3168043227529571, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9988090696115832, "trigger": "apogee", "sampling_rate": 105, "lag": 1.73247785932871, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7363.666829536454, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256322967845639, "grain_number": 5, "grain_density": 1770.470655197304, "grain_outer_radius": 0.03325462093874791, "grain_initial_inner_radius": 0.01483060089514395, "grain_initial_height": 0.12096721853294713, "grain_separation": 0.0041870747720404305, "grains_center_of_mass_position": 0.3977050699923648, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.271997581778658e-05, "throat_radius": 0.011373617810427967, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254095950542017}], "aerodynamic_surfaces": [{"length": 0.5592394649761872, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337607670780014]}, {"n": 4, "root_chord": 0.11979201100677705, "tip_chord": 0.06033258053285334, "span": 0.10959057893825842, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504616658484818]}, {"top_radius": 0.06317736783263242, "bottom_radius": 0.04268719793739212, "length": 0.05871531347673694, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015210282045818, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616551733360842, "upper_button_position": 0.08496929484373983}], "rail_length": 5, "inclination": 84.12678950743604, "heading": 54.06346603681346} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349738109761713, "mass": 16.162119172931295, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322413533048239, "I_33_without_motor": 0.023783307479260225, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1514834927161, "trigger": 800, "sampling_rate": 105, "lag": 1.3233990082954328, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.967743956954725, "trigger": "apogee", "sampling_rate": 105, "lag": 1.30349109250551, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6026.804725507975, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032789971515650954, "grain_number": 5, "grain_density": 1764.441179468358, "grain_outer_radius": 0.033302873765070004, "grain_initial_inner_radius": 0.01482118270865024, "grain_initial_height": 0.12006795892126247, "grain_separation": 0.00487308726675761, "grains_center_of_mass_position": 0.3961059224310209, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0015097602608984727, "throat_radius": 0.011810984089251051, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536400910416832}], "aerodynamic_surfaces": [{"length": 0.5584493162753156, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133503586258732]}, {"n": 4, "root_chord": 0.12006163162099015, "tip_chord": 0.060212745999713, "span": 0.10975855107616665, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493780093166465]}, {"top_radius": 0.06266468849416999, "bottom_radius": 0.04412488827941848, "length": 0.06252333223191088, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001600423985516, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164817173523381, "upper_button_position": 0.08367832504621342}], "rail_length": 5, "inclination": 85.87051490957639, "heading": 53.46767182915249} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0634914545993582, "mass": 15.451802257517222, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331399272989316, "I_33_without_motor": 0.03499194792451228, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.112898582732292, "trigger": 800, "sampling_rate": 105, "lag": 1.63829427373682, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.84964180982057, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3499077059810038, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6514.143588240369, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336256643016534, "grain_number": 5, "grain_density": 1801.5647235910333, "grain_outer_radius": 0.03352058161352706, "grain_initial_inner_radius": 0.014469827813506978, "grain_initial_height": 0.11993856804663833, "grain_separation": 0.00412748218065596, "grains_center_of_mass_position": 0.3973118963930251, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.360950022961405e-05, "throat_radius": 0.01119982377506394, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543986468710921}], "aerodynamic_surfaces": [{"length": 0.5575762395129937, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335196174503352]}, {"n": 4, "root_chord": 0.12065284471849348, "tip_chord": 0.06001864033037713, "span": 0.10964066166776444, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04705606926865]}, {"top_radius": 0.06301846510782022, "bottom_radius": 0.04420268915042823, "length": 0.06007814399381908, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010038334057559, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617297450453035, "upper_button_position": 0.08370638295272093}], "rail_length": 5, "inclination": 84.48331555943886, "heading": 50.394970093042225} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349168447931869, "mass": 14.808067786166362, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333740976972316, "I_33_without_motor": 0.027395253897690798, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.125581563596908, "trigger": 800, "sampling_rate": 105, "lag": 1.3189877999908004, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0370204674351102, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1405655687688159, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6710.605781958005, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03335237437711611, "grain_number": 5, "grain_density": 1832.7281163496043, "grain_outer_radius": 0.03339604302927207, "grain_initial_inner_radius": 0.0157136883391711, "grain_initial_height": 0.1195779123527442, "grain_separation": 0.004244650915573496, "grains_center_of_mass_position": 0.3992054724167183, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011477076489393554, "throat_radius": 0.010409437259964828, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550273113622077}], "aerodynamic_surfaces": [{"length": 0.5583026416966915, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338586225582]}, {"n": 4, "root_chord": 0.11893621742778722, "tip_chord": 0.05984528085408609, "span": 0.11019051543432806, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0519642488701777]}, {"top_radius": 0.0626025291347634, "bottom_radius": 0.04308624879582109, "length": 0.059759171902351534, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003604665680532, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177904373912242, "upper_button_position": 0.08257002917682899}], "rail_length": 5, "inclination": 85.36103488565351, "heading": 53.69810919624239} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350299354245052, "mass": 15.52364072654685, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319672171972469, "I_33_without_motor": 0.0325795920443924, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.851283916336824, "trigger": 800, "sampling_rate": 105, "lag": 1.3258155989138303, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.974049177305332, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2924415928721458, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6837.370717403839, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032280866256716716, "grain_number": 5, "grain_density": 1710.286554207346, "grain_outer_radius": 0.032778134176864614, "grain_initial_inner_radius": 0.014950245364185624, "grain_initial_height": 0.12071189495445815, "grain_separation": 0.0068826229177298155, "grains_center_of_mass_position": 0.3972287586422355, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003865140011082514, "throat_radius": 0.012143829368217951, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566118733049492}], "aerodynamic_surfaces": [{"length": 0.5575822015280275, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133755608876064]}, {"n": 4, "root_chord": 0.1201086604525475, "tip_chord": 0.060336885707868965, "span": 0.11103171287236378, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049509410611031]}, {"top_radius": 0.06085061399600246, "bottom_radius": 0.04334679299213657, "length": 0.05816300454423258, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980779944906528, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183829689337612, "upper_button_position": 0.07969502555689156}], "rail_length": 5, "inclination": 83.23691593212979, "heading": 56.349751095016096} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348841653346747, "mass": 14.86339959564035, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305331507519096, "I_33_without_motor": 0.04407691702381609, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.071938049975481, "trigger": 800, "sampling_rate": 105, "lag": 1.4264518135862185, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.082359083078593, "trigger": "apogee", "sampling_rate": 105, "lag": 1.353482015245003, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5009.253908564523, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03212831966276154, "grain_number": 5, "grain_density": 1823.5856019509622, "grain_outer_radius": 0.03298361305677917, "grain_initial_inner_radius": 0.014666143871672513, "grain_initial_height": 0.12112091506694622, "grain_separation": 0.00584992142825039, "grains_center_of_mass_position": 0.3975666048797128, "center_of_dry_mass_position": 0.317, "nozzle_position": -4.697232444268407e-05, "throat_radius": 0.010807770435502136, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254048669654656}], "aerodynamic_surfaces": [{"length": 0.5579538464260831, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342799975295623]}, {"n": 4, "root_chord": 0.11952217300373999, "tip_chord": 0.05964620888174157, "span": 0.10988199636342026, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492152818693203]}, {"top_radius": 0.06304613314831554, "bottom_radius": 0.04326283673880225, "length": 0.06033593273077802, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999362103412827, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193429384961939, "upper_button_position": 0.0805932718450888}], "rail_length": 5, "inclination": 84.8330809863189, "heading": 50.80646937938114} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349352053987523, "mass": 16.113824735900213, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3103934912102355, "I_33_without_motor": 0.03884619259273811, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.774406824557285, "trigger": 800, "sampling_rate": 105, "lag": 1.4988901944088213, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0356863044797442, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3789760101998265, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5618.096465973358, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032963996952760456, "grain_number": 5, "grain_density": 1785.4349991407162, "grain_outer_radius": 0.033285924021366306, "grain_initial_inner_radius": 0.015094925406835456, "grain_initial_height": 0.12090106175489805, "grain_separation": 0.005810576317142487, "grains_center_of_mass_position": 0.398800561258528, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000188901976528732, "throat_radius": 0.01081980037672483, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544663411874082}], "aerodynamic_surfaces": [{"length": 0.5582709115734288, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133333334542043]}, {"n": 4, "root_chord": 0.11961794000830593, "tip_chord": 0.05988209612293094, "span": 0.1102662591221655, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048035376082811]}, {"top_radius": 0.06291267590311875, "bottom_radius": 0.04335080182931631, "length": 0.059144637412825794, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977063581306767, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175553528277117, "upper_button_position": 0.08015100530296504}], "rail_length": 5, "inclination": 84.92407841853871, "heading": 50.60897336789787} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349733275883343, "mass": 15.95930424666956, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32738335971274, "I_33_without_motor": 0.01924577931963492, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.890733426664434, "trigger": 800, "sampling_rate": 105, "lag": 1.6314699436694062, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0465876026769945, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5959680594847347, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7901.0376450615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03222970380107289, "grain_number": 5, "grain_density": 1876.3771667699145, "grain_outer_radius": 0.03284836908935492, "grain_initial_inner_radius": 0.015182945884629392, "grain_initial_height": 0.11843397884131465, "grain_separation": 0.0054169656621762385, "grains_center_of_mass_position": 0.39754831983246963, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00010148587894251292, "throat_radius": 0.011452133924954273, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2521188914832229}], "aerodynamic_surfaces": [{"length": 0.5578829713546086, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341875973120201]}, {"n": 4, "root_chord": 0.12015026943975957, "tip_chord": 0.059402104974290645, "span": 0.11053624293003095, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049978888754431]}, {"top_radius": 0.06275952157003617, "bottom_radius": 0.04234500017799009, "length": 0.06039861811472254, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994541948871775, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619707273158905, "upper_button_position": 0.07974692172827258}], "rail_length": 5, "inclination": 83.5830053326741, "heading": 48.05972601621327} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350289059233576, "mass": 15.188700542209514, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315257314430562, "I_33_without_motor": 0.02715020444407856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.335456790749621, "trigger": 800, "sampling_rate": 105, "lag": 1.5539816490936045, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9620390206366604, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2915562713782511, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6200.997455272963, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03284058206613861, "grain_number": 5, "grain_density": 1824.963717596705, "grain_outer_radius": 0.03335119603912249, "grain_initial_inner_radius": 0.014949118659774571, "grain_initial_height": 0.11986310627002296, "grain_separation": 0.005017125976600652, "grains_center_of_mass_position": 0.39733537757503695, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025315282423346336, "throat_radius": 0.010212376959401291, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2572289317765106}], "aerodynamic_surfaces": [{"length": 0.5587810274762113, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340090754499421]}, {"n": 4, "root_chord": 0.11925149260123011, "tip_chord": 0.05999597141463302, "span": 0.10965614706500403, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050418419553496]}, {"top_radius": 0.06325829947303596, "bottom_radius": 0.04357502976731054, "length": 0.06015840116139719, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006411464183862, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178737089753247, "upper_button_position": 0.08276743744306148}], "rail_length": 5, "inclination": 84.1975817227629, "heading": 51.426449041135534} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349520135018695, "mass": 14.609519423678963, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318988595692038, "I_33_without_motor": 0.041850054567815015, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.79959672524495, "trigger": 800, "sampling_rate": 105, "lag": 1.496803894674643, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9566449584895806, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5573612851314818, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8057.449818225826, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033221703205149104, "grain_number": 5, "grain_density": 1884.5844122603419, "grain_outer_radius": 0.03263041286329504, "grain_initial_inner_radius": 0.015016058330931583, "grain_initial_height": 0.11962218454991287, "grain_separation": 0.0035982009625428173, "grains_center_of_mass_position": 0.3965485888756585, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00028958233130183973, "throat_radius": 0.010868693415337508, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544434875802775}], "aerodynamic_surfaces": [{"length": 0.5583208391937183, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356078791985924]}, {"n": 4, "root_chord": 0.11969262790879484, "tip_chord": 0.06065938270420458, "span": 0.11055296857617988, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502115161432315]}, {"top_radius": 0.06348118952874728, "bottom_radius": 0.042754302028484466, "length": 0.058585152912801225, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004174224851863, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176620320766883, "upper_button_position": 0.082755390408498}], "rail_length": 5, "inclination": 83.6308951130792, "heading": 52.989765235378634} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.0634970954821049, "mass": 15.064212931073998, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329380776220409, "I_33_without_motor": 0.03172868396545919, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.282956551187544, "trigger": 800, "sampling_rate": 105, "lag": 1.6722821654104163, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9579057145126328, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5344718327222364, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7405.4390978763595, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03248055406593306, "grain_number": 5, "grain_density": 1884.5920279909326, "grain_outer_radius": 0.03320630073096813, "grain_initial_inner_radius": 0.015653535186935186, "grain_initial_height": 0.12084819074727776, "grain_separation": 0.005887406425447161, "grains_center_of_mass_position": 0.39714638548383224, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008726167941008587, "throat_radius": 0.010037545813244586, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550236626199318}], "aerodynamic_surfaces": [{"length": 0.55988290502931, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1326628194690231]}, {"n": 4, "root_chord": 0.12013019589244225, "tip_chord": 0.06067022358287184, "span": 0.11002502384042737, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495230515232734]}, {"top_radius": 0.06482200492714703, "bottom_radius": 0.04150922966878775, "length": 0.059712823790566874, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991419960366413, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177970383776121, "upper_button_position": 0.08134495765902916}], "rail_length": 5, "inclination": 85.30121880949933, "heading": 53.60817314010387} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350187389489889, "mass": 14.849748574530729, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321503141229472, "I_33_without_motor": 0.022428237536311946, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063104387452015, "trigger": 800, "sampling_rate": 105, "lag": 1.5747974094584112, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0879413834433622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.387257351677322, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6832.795045529434, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032818278283032694, "grain_number": 5, "grain_density": 1777.3511915813983, "grain_outer_radius": 0.03231411654009424, "grain_initial_inner_radius": 0.015345017761948397, "grain_initial_height": 0.11954339895676973, "grain_separation": 0.006641710225355452, "grains_center_of_mass_position": 0.3964971997382725, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005252663278359272, "throat_radius": 0.010964736831149775, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558684640325872}], "aerodynamic_surfaces": [{"length": 0.5582801406308224, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13289192517232]}, {"n": 4, "root_chord": 0.11978226682243603, "tip_chord": 0.060397949045740196, "span": 0.10989906392005165, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049895209518535]}, {"top_radius": 0.061938727567467336, "bottom_radius": 0.044136068003990114, "length": 0.05913775290515237, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6979124505784654, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176779429644802, "upper_button_position": 0.0802345076139852}], "rail_length": 5, "inclination": 83.90040567573287, "heading": 51.24533357844459} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349530429943734, "mass": 15.468257445484719, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311666610765574, "I_33_without_motor": 0.0359875346543, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.09151053525594, "trigger": 800, "sampling_rate": 105, "lag": 1.5998602556940598, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9695131653797029, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1436805566558002, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6112.64961010124, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032249714418027875, "grain_number": 5, "grain_density": 1872.1760075948462, "grain_outer_radius": 0.03375583642468938, "grain_initial_inner_radius": 0.015208880190454056, "grain_initial_height": 0.12006056971072866, "grain_separation": 0.004613522126214578, "grains_center_of_mass_position": 0.3961945427050815, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006750369759133585, "throat_radius": 0.010798423721420845, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559599664326222}], "aerodynamic_surfaces": [{"length": 0.5576346752134809, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134869060841294]}, {"n": 4, "root_chord": 0.11997853271580236, "tip_chord": 0.059374692832613894, "span": 0.11030577738970869, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491496170682697]}, {"top_radius": 0.06281645640005284, "bottom_radius": 0.0423553660317495, "length": 0.059694777004926446, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987413059238374, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176663430908537, "upper_button_position": 0.08107496283298377}], "rail_length": 5, "inclination": 86.02828452638921, "heading": 53.85825316894027} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350180207611393, "mass": 15.530552751908317, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321171266571288, "I_33_without_motor": 0.03263313815289433, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.82709253272845, "trigger": 800, "sampling_rate": 105, "lag": 1.4460894199759167, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1276508628064201, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6580031608520915, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6762.55019601913, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032790312704414105, "grain_number": 5, "grain_density": 1839.267010945994, "grain_outer_radius": 0.033364846036240736, "grain_initial_inner_radius": 0.015563440420074598, "grain_initial_height": 0.11886421832889728, "grain_separation": 0.004463054848005374, "grains_center_of_mass_position": 0.396036985310051, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005129000011235239, "throat_radius": 0.010170627368003922, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552076121108242}], "aerodynamic_surfaces": [{"length": 0.5571653013317168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334882804168882]}, {"n": 4, "root_chord": 0.12080323827761612, "tip_chord": 0.059721443536125046, "span": 0.11023627652453187, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502189279178151]}, {"top_radius": 0.0629723462207481, "bottom_radius": 0.04390961750605105, "length": 0.060202305208477754, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007896507114233, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183696940657073, "upper_button_position": 0.082419956645716}], "rail_length": 5, "inclination": 87.06156938443664, "heading": 53.67761111408961} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349832274191662, "mass": 15.45965142082948, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311897499120439, "I_33_without_motor": 0.010420038512015856, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110361728124193, "trigger": 800, "sampling_rate": 105, "lag": 1.56636086116919, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8777054947467846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.73623991165283, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6494.408205345775, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033656228746909815, "grain_number": 5, "grain_density": 1795.8377878641659, "grain_outer_radius": 0.03282669667232462, "grain_initial_inner_radius": 0.015125018068294107, "grain_initial_height": 0.11918795234866955, "grain_separation": 0.004781712517945347, "grains_center_of_mass_position": 0.39869981197401716, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00043597358499424736, "throat_radius": 0.011280644262386412, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536029819824335}], "aerodynamic_surfaces": [{"length": 0.5604042291669588, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345965131600377]}, {"n": 4, "root_chord": 0.11977979091748446, "tip_chord": 0.06050361024124992, "span": 0.11081398497782477, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500423185876844]}, {"top_radius": 0.06387422105326103, "bottom_radius": 0.044453920181230594, "length": 0.05895276076901426, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000775163791236, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190026227373577, "upper_button_position": 0.0810748936417659}], "rail_length": 5, "inclination": 84.5508889227752, "heading": 53.60044856198817} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0634973640028294, "mass": 15.494333595165504, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314844345776324, "I_33_without_motor": 0.027084184359549637, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000783895534891, "trigger": 800, "sampling_rate": 105, "lag": 1.646533393861079, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0407666179066641, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4385500028266867, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5907.036523560767, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03318609766751693, "grain_number": 5, "grain_density": 1816.875070130754, "grain_outer_radius": 0.03230329776769529, "grain_initial_inner_radius": 0.014757168153734509, "grain_initial_height": 0.12041668157127842, "grain_separation": 0.005577499048046604, "grains_center_of_mass_position": 0.39795868494686243, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00032776891527990746, "throat_radius": 0.011455579547819006, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560941106398604}], "aerodynamic_surfaces": [{"length": 0.5581662483176694, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346392473959237]}, {"n": 4, "root_chord": 0.12004293785560126, "tip_chord": 0.06090080080876056, "span": 0.10986392422799766, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495400279862088]}, {"top_radius": 0.06466217119243113, "bottom_radius": 0.04303760523762766, "length": 0.062271937635346074, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001299753910949, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198010021398939, "upper_button_position": 0.08032897325120103}], "rail_length": 5, "inclination": 85.01925553290558, "heading": 52.918148728367846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350566578219023, "mass": 15.933524095957761, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319131309197181, "I_33_without_motor": 0.033833763682231, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.079967532469372, "trigger": 800, "sampling_rate": 105, "lag": 1.554535811165606, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1754767760752955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.655187415814757, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7160.078711454553, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033145619165549665, "grain_number": 5, "grain_density": 1853.1806916002995, "grain_outer_radius": 0.0327861825839161, "grain_initial_inner_radius": 0.014768186086921832, "grain_initial_height": 0.11858531083405958, "grain_separation": 0.005113670903198859, "grains_center_of_mass_position": 0.39610242651260513, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003030864567478595, "throat_radius": 0.01172257607394574, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25545804194333}], "aerodynamic_surfaces": [{"length": 0.5578574022569341, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355678259284223]}, {"n": 4, "root_chord": 0.1204783204769909, "tip_chord": 0.060586549670290916, "span": 0.10973947048098572, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489181521050606]}, {"top_radius": 0.06314608845084908, "bottom_radius": 0.043226453598439636, "length": 0.05906927227459451, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993517649380704, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191860017578766, "upper_button_position": 0.08016576318019375}], "rail_length": 5, "inclination": 85.80696814538243, "heading": 50.981518853141665} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635025634633529, "mass": 15.787720669802608, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321045340970065, "I_33_without_motor": 0.031014798225323183, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.816968710517324, "trigger": 800, "sampling_rate": 105, "lag": 1.2555873608321637, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9330613980580489, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6885102422257645, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4705.890088044123, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03295602782414889, "grain_number": 5, "grain_density": 1788.1363592440719, "grain_outer_radius": 0.033346001400410046, "grain_initial_inner_radius": 0.01577447050289427, "grain_initial_height": 0.12053017654770394, "grain_separation": 0.0043031548274495264, "grains_center_of_mass_position": 0.39614156448482324, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001726654158671166, "throat_radius": 0.011609256318438135, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561824974820746}], "aerodynamic_surfaces": [{"length": 0.5555735219427824, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348152078879592]}, {"n": 4, "root_chord": 0.12068281285521405, "tip_chord": 0.05966697445943849, "span": 0.10965252555116105, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487081155012317]}, {"top_radius": 0.06310405698233994, "bottom_radius": 0.042235221116431715, "length": 0.06030186664530712, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007415207154918, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186341017637891, "upper_button_position": 0.0821074189517027}], "rail_length": 5, "inclination": 84.92888143045622, "heading": 54.399257430360336} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350557265651084, "mass": 16.301312554405325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299195849099503, "I_33_without_motor": 0.04598346022987952, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0387833910091, "trigger": 800, "sampling_rate": 105, "lag": 1.482557963542523, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1763880891768854, "trigger": "apogee", "sampling_rate": 105, "lag": 1.059543730318227, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7539.172985738644, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033263856428074966, "grain_number": 5, "grain_density": 1763.36164501506, "grain_outer_radius": 0.03308309603476455, "grain_initial_inner_radius": 0.015091671917994449, "grain_initial_height": 0.12177731695057521, "grain_separation": 0.005338709739559409, "grains_center_of_mass_position": 0.3950012558186153, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015549320643599557, "throat_radius": 0.010807172438531886, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25508938277042}], "aerodynamic_surfaces": [{"length": 0.5574367786760004, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1320573960024434]}, {"n": 4, "root_chord": 0.11993099204084377, "tip_chord": 0.05952543157787795, "span": 0.11042904856758429, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502989571608388]}, {"top_radius": 0.06470403934792326, "bottom_radius": 0.04501329728843376, "length": 0.059928205944605996, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996760531156955, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171647708969712, "upper_button_position": 0.08251128221872428}], "rail_length": 5, "inclination": 85.00516230912284, "heading": 51.712017576352245} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349901106464402, "mass": 15.484454394092396, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307649908635486, "I_33_without_motor": 0.036321670040737115, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054001546894861, "trigger": 800, "sampling_rate": 105, "lag": 1.4185837911759913, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9795399325082544, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6554475321493625, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7857.869626091223, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333431883986969, "grain_number": 5, "grain_density": 1766.1795478203755, "grain_outer_radius": 0.03300713208972881, "grain_initial_inner_radius": 0.01534996530368441, "grain_initial_height": 0.11966996738728025, "grain_separation": 0.0042299766460798275, "grains_center_of_mass_position": 0.39646183234629057, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008224070311677629, "throat_radius": 0.011529415896444921, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568832184436738}], "aerodynamic_surfaces": [{"length": 0.5587279372621269, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13425677394581]}, {"n": 4, "root_chord": 0.11998961499261604, "tip_chord": 0.06001530124035282, "span": 0.11037180790767909, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500069220911707]}, {"top_radius": 0.06309723468089604, "bottom_radius": 0.044697046852617155, "length": 0.06083414011901049, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700776504236941, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199355786821188, "upper_button_position": 0.08084092555482225}], "rail_length": 5, "inclination": 82.57069517886136, "heading": 49.821275094612936} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350070767195998, "mass": 15.008555387577065, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322933331881294, "I_33_without_motor": 0.03559797691810361, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.084814443158034, "trigger": 800, "sampling_rate": 105, "lag": 1.636003508316062, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0689538950730157, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4302742483305555, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5450.810302180472, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302938758928437, "grain_number": 5, "grain_density": 1780.648179812005, "grain_outer_radius": 0.03277160762031096, "grain_initial_inner_radius": 0.014891568958641513, "grain_initial_height": 0.11859988518309413, "grain_separation": 0.004674209700352891, "grains_center_of_mass_position": 0.3980476927353842, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00019562762176246245, "throat_radius": 0.0107745476645456, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547835443910889}], "aerodynamic_surfaces": [{"length": 0.559753225527747, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344481696615525]}, {"n": 4, "root_chord": 0.11982688054110449, "tip_chord": 0.06019500670927598, "span": 0.1096611931102996, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499649120112364]}, {"top_radius": 0.06551478253577428, "bottom_radius": 0.04383508119811511, "length": 0.06044517176258656, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012767546862922, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190798092719364, "upper_button_position": 0.08219694541435585}], "rail_length": 5, "inclination": 85.27766315616536, "heading": 51.883663697870844} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349175766732593, "mass": 14.704123011284317, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309697140648643, "I_33_without_motor": 0.03282616268161997, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03255795394788, "trigger": 800, "sampling_rate": 105, "lag": 1.4610921354584137, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0046797360980109, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4066149291527896, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6501.0851374909425, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303032227580958, "grain_number": 5, "grain_density": 1742.7889945051852, "grain_outer_radius": 0.032950608986131454, "grain_initial_inner_radius": 0.015166488637190752, "grain_initial_height": 0.12011900522557789, "grain_separation": 0.0029126123155883495, "grains_center_of_mass_position": 0.39646659374804766, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00026474289266256723, "throat_radius": 0.010403996890963182, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555424221131524}], "aerodynamic_surfaces": [{"length": 0.5585589316808055, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340646230777625]}, {"n": 4, "root_chord": 0.11952852818603482, "tip_chord": 0.05995896672864988, "span": 0.11002901166023125, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507229469537667]}, {"top_radius": 0.06513036267374148, "bottom_radius": 0.04505188653172118, "length": 0.05953233023232812, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016634288949819, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165013092227979, "upper_button_position": 0.08516211967218401}], "rail_length": 5, "inclination": 85.54324059299317, "heading": 50.853317902955915} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0634896733779488, "mass": 15.48243339868772, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314358269923617, "I_33_without_motor": 0.02547853071617147, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.001500550794594, "trigger": 800, "sampling_rate": 105, "lag": 1.4693308414255455, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8872589859137986, "trigger": "apogee", "sampling_rate": 105, "lag": 1.571103565720423, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6416.2664538997, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03182523850669455, "grain_number": 5, "grain_density": 1857.6469887413139, "grain_outer_radius": 0.03302123636725578, "grain_initial_inner_radius": 0.014744305692293886, "grain_initial_height": 0.11970952149405382, "grain_separation": 0.004531784028546182, "grains_center_of_mass_position": 0.39610887004904866, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012782911084841815, "throat_radius": 0.010780149432777974, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551864553444765}], "aerodynamic_surfaces": [{"length": 0.559342852357987, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344381255470988]}, {"n": 4, "root_chord": 0.11892938752987195, "tip_chord": 0.06043664092160432, "span": 0.10939661716956373, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509932393817665]}, {"top_radius": 0.0635884882182809, "bottom_radius": 0.0432899120761076, "length": 0.06071216950411378, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994272668206915, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618028617686114, "upper_button_position": 0.0813986491345775}], "rail_length": 5, "inclination": 84.25924165740818, "heading": 52.67220255174566} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349539994911312, "mass": 14.847874330632493, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30371664124391, "I_33_without_motor": 0.032470262061247375, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.057154787209452, "trigger": 800, "sampling_rate": 105, "lag": 1.562216472393268, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0412335104925396, "trigger": "apogee", "sampling_rate": 105, "lag": 1.271049605203767, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8745.456329717183, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032994825272056556, "grain_number": 5, "grain_density": 1831.8850363458118, "grain_outer_radius": 0.03296444211194755, "grain_initial_inner_radius": 0.014338188286321074, "grain_initial_height": 0.1216122982247132, "grain_separation": 0.006018910113983175, "grains_center_of_mass_position": 0.3990933478646318, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00030722884764219357, "throat_radius": 0.011651144061474298, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544233930210578}], "aerodynamic_surfaces": [{"length": 0.5589467718417414, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134410437494004]}, {"n": 4, "root_chord": 0.1204929492623154, "tip_chord": 0.05973868566012429, "span": 0.1105768615240951, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500389108385397]}, {"top_radius": 0.06266444902222505, "bottom_radius": 0.04361359745777662, "length": 0.05912254291560117, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993439512745184, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173785469529818, "upper_button_position": 0.08196540432153665}], "rail_length": 5, "inclination": 83.75631149274787, "heading": 51.38638248192778} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350839185300156, "mass": 16.90498706416353, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323408244461932, "I_33_without_motor": 0.03836291326173261, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.171078383790139, "trigger": 800, "sampling_rate": 105, "lag": 1.5302660235362748, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0414007619799335, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7149591765823895, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4764.066661069961, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03255701319452268, "grain_number": 5, "grain_density": 1854.112328284416, "grain_outer_radius": 0.032596400054191975, "grain_initial_inner_radius": 0.0151957959212907, "grain_initial_height": 0.12029306350663652, "grain_separation": 0.004690016865419, "grains_center_of_mass_position": 0.3962818316343022, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012514067885334213, "throat_radius": 0.012028104642406284, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542743957024907}], "aerodynamic_surfaces": [{"length": 0.5572842104746727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327572936827273]}, {"n": 4, "root_chord": 0.12084623957690335, "tip_chord": 0.05940974929702437, "span": 0.10994552021651548, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496235246060406]}, {"top_radius": 0.06487797926314648, "bottom_radius": 0.04260284268439867, "length": 0.06014699770262207, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700484800033104, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180402595958381, "upper_button_position": 0.0824445404372659}], "rail_length": 5, "inclination": 85.25413869010353, "heading": 54.00763348949008} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350497099562943, "mass": 15.62390674210838, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3250323731992655, "I_33_without_motor": 0.02556155077819361, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.975223127470292, "trigger": 800, "sampling_rate": 105, "lag": 1.4688651259015804, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9044526701742347, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5672502924315164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6237.138961773894, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033483641505328524, "grain_number": 5, "grain_density": 1826.4432996920661, "grain_outer_radius": 0.03243973802759042, "grain_initial_inner_radius": 0.015138567628316543, "grain_initial_height": 0.1191130075194877, "grain_separation": 0.005934843248468177, "grains_center_of_mass_position": 0.39780104817423456, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008469925818809348, "throat_radius": 0.010539942154070819, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563740784557533}], "aerodynamic_surfaces": [{"length": 0.5583009923025525, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348745274889636]}, {"n": 4, "root_chord": 0.12014980407466942, "tip_chord": 0.059805800554681515, "span": 0.1095090812086172, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481935790254013]}, {"top_radius": 0.06203922825696384, "bottom_radius": 0.043233917817737624, "length": 0.06076246195180016, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996059095460745, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191865304822558, "upper_button_position": 0.08041937906381869}], "rail_length": 5, "inclination": 83.76517828075079, "heading": 51.01326532637404} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349607033488312, "mass": 16.101762789059293, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3136438342914, "I_33_without_motor": 0.02347121869418054, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031590266110072, "trigger": 800, "sampling_rate": 105, "lag": 1.4427084467013134, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8868313571563309, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3312440178842462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6824.547037259754, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032871269988861945, "grain_number": 5, "grain_density": 1757.4656280482136, "grain_outer_radius": 0.03282290193547877, "grain_initial_inner_radius": 0.015247052752744997, "grain_initial_height": 0.1190934960395255, "grain_separation": 0.0020260542922970444, "grains_center_of_mass_position": 0.3976271625830658, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008102132769823752, "throat_radius": 0.011929152028700709, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255241331836996}], "aerodynamic_surfaces": [{"length": 0.5578021230213469, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133955217492717]}, {"n": 4, "root_chord": 0.11973047993365084, "tip_chord": 0.06037488103408592, "span": 0.1102632402537964, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496747629087984]}, {"top_radius": 0.06430629290088626, "bottom_radius": 0.04133698221137686, "length": 0.0611823043164045, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996676061035736, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617424730317703, "upper_button_position": 0.08224287578587064}], "rail_length": 5, "inclination": 84.67670722245317, "heading": 55.65669365915508} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349837571075646, "mass": 15.23465267734663, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320287868880566, "I_33_without_motor": 0.04336712514845489, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.174035099084874, "trigger": 800, "sampling_rate": 105, "lag": 1.3847432161842947, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0431951923844995, "trigger": "apogee", "sampling_rate": 105, "lag": 1.71579976261258, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4744.661870310892, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03349851847491783, "grain_number": 5, "grain_density": 1855.641567175379, "grain_outer_radius": 0.032459751899298325, "grain_initial_inner_radius": 0.014978522193765666, "grain_initial_height": 0.11907229427497307, "grain_separation": 0.006156845837309141, "grains_center_of_mass_position": 0.3974077988201855, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016896006155010004, "throat_radius": 0.010872501023380826, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551934172515258}], "aerodynamic_surfaces": [{"length": 0.5600775101695806, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1318296265029701]}, {"n": 4, "root_chord": 0.1199139301024067, "tip_chord": 0.05976694430483221, "span": 0.10942573676393355, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482257381852025]}, {"top_radius": 0.06311139045864352, "bottom_radius": 0.041364796758062636, "length": 0.06012363187053928, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004132410982165, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182169687911582, "upper_button_position": 0.08219627230705828}], "rail_length": 5, "inclination": 82.80087553218506, "heading": 52.33198827588608} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350073075202504, "mass": 15.726444572320698, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3108071872791776, "I_33_without_motor": 0.012525891443918694, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.90209961611946, "trigger": 800, "sampling_rate": 105, "lag": 1.3807300258787705, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9491313505873475, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3199191672033268, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6232.433390270646, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03278474294269585, "grain_number": 5, "grain_density": 1724.9670224583156, "grain_outer_radius": 0.0333162691526506, "grain_initial_inner_radius": 0.015382277957096319, "grain_initial_height": 0.11859704664939875, "grain_separation": 0.0047312879241595196, "grains_center_of_mass_position": 0.3960404185730805, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006753967761023786, "throat_radius": 0.011379640305705872, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255301576084682}], "aerodynamic_surfaces": [{"length": 0.56008257940341, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344454220919755]}, {"n": 4, "root_chord": 0.11943860756494679, "tip_chord": 0.060494666680620174, "span": 0.11001245654127029, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497062997215405]}, {"top_radius": 0.06225422004157058, "bottom_radius": 0.044198009051803, "length": 0.061425572681129, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7014595963754442, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172166080815777, "upper_button_position": 0.08424298829386645}], "rail_length": 5, "inclination": 83.69300122230864, "heading": 55.63834288632403} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349249622351973, "mass": 15.262238364108383, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340402734282212, "I_33_without_motor": 0.05120039732578751, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998313108733209, "trigger": 800, "sampling_rate": 105, "lag": 1.547040562333636, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0095355283766962, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8196557997020513, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6566.078144639982, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275499519671343, "grain_number": 5, "grain_density": 1785.7453508388721, "grain_outer_radius": 0.03287013883977305, "grain_initial_inner_radius": 0.015249333158511943, "grain_initial_height": 0.12013467142580198, "grain_separation": 0.00582345181826514, "grains_center_of_mass_position": 0.39675695283239276, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005244681711264692, "throat_radius": 0.011525906551643993, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255349528378724}], "aerodynamic_surfaces": [{"length": 0.5592596492779575, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351057753561362]}, {"n": 4, "root_chord": 0.11983544056211362, "tip_chord": 0.059234049920972226, "span": 0.10932352177229672, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050264261670837]}, {"top_radius": 0.06355257760278853, "bottom_radius": 0.04513608770072221, "length": 0.05919091172434923, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006403463678164, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617535700890768, "upper_button_position": 0.08310464547704832}], "rail_length": 5, "inclination": 83.70733337952274, "heading": 52.225342833601125} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349991439367766, "mass": 14.900084302940515, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31204989979443, "I_33_without_motor": 0.04223939752196609, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919752701107194, "trigger": 800, "sampling_rate": 105, "lag": 1.2407799122549277, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9492334467657868, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4316029597872284, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5449.903090260783, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033536812419836054, "grain_number": 5, "grain_density": 1876.1512400452486, "grain_outer_radius": 0.03260888715986996, "grain_initial_inner_radius": 0.0151219771486853, "grain_initial_height": 0.11970346940988509, "grain_separation": 0.003907064064928138, "grains_center_of_mass_position": 0.39772741678174545, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001450051008098806, "throat_radius": 0.010532406449920855, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560940860329743}], "aerodynamic_surfaces": [{"length": 0.5582428999776243, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333000519353695]}, {"n": 4, "root_chord": 0.12038952170911403, "tip_chord": 0.05968761399322248, "span": 0.11052421274482362, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488353258648375]}, {"top_radius": 0.0625587839708309, "bottom_radius": 0.043544117143446824, "length": 0.06115315814096158, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003575525325937, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165659752091359, "upper_button_position": 0.08379157732345777}], "rail_length": 5, "inclination": 85.11354152261218, "heading": 51.27163633662515} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349873614504525, "mass": 14.994143732897989, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3172935281241545, "I_33_without_motor": 0.03845109095153167, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06767309157143, "trigger": 800, "sampling_rate": 105, "lag": 1.4615297037418928, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9842338251965845, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5800516580197146, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6006.559854355303, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032793704597141954, "grain_number": 5, "grain_density": 1856.7550683229108, "grain_outer_radius": 0.033224098010095446, "grain_initial_inner_radius": 0.0144900774507504, "grain_initial_height": 0.11955643777596817, "grain_separation": 0.003995748221539284, "grains_center_of_mass_position": 0.3962144013156079, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017418044190067546, "throat_radius": 0.009585856714012348, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255473316698571}], "aerodynamic_surfaces": [{"length": 0.5591731946288108, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331841211657323]}, {"n": 4, "root_chord": 0.12027775284025538, "tip_chord": 0.05951655618818772, "span": 0.11029804398410348, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502369033131589]}, {"top_radius": 0.06392640693423685, "bottom_radius": 0.042875907829988, "length": 0.059907503173364636, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004012847538162, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176466310516884, "upper_button_position": 0.08275465370212787}], "rail_length": 5, "inclination": 83.49209449614794, "heading": 52.76116088845407} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350008447516194, "mass": 15.4279815613206, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328763879065765, "I_33_without_motor": 0.045159628781255456, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.016305142571955, "trigger": 800, "sampling_rate": 105, "lag": 1.5128512889302081, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.002801756284283, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2665403908549024, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8091.568719455925, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250743522144645, "grain_number": 5, "grain_density": 1867.8708885336919, "grain_outer_radius": 0.03324902607094083, "grain_initial_inner_radius": 0.015201064506854881, "grain_initial_height": 0.1194260307518588, "grain_separation": 0.005002727032944903, "grains_center_of_mass_position": 0.3976058701944633, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003188217885320956, "throat_radius": 0.010846953596488606, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255422675642723}], "aerodynamic_surfaces": [{"length": 0.5599262291582437, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.131855924505582]}, {"n": 4, "root_chord": 0.12100782066755471, "tip_chord": 0.06038815009607554, "span": 0.10991806823301485, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484504570973856]}, {"top_radius": 0.06266983166253007, "bottom_radius": 0.04528870412340113, "length": 0.057457006966023065, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989280060992998, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180564055119617, "upper_button_position": 0.08087160058733811}], "rail_length": 5, "inclination": 83.91495598284511, "heading": 53.078439367210095} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349491286608037, "mass": 16.14583417483131, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328850436069639, "I_33_without_motor": 0.03203048109601306, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990682827331353, "trigger": 800, "sampling_rate": 105, "lag": 1.6034925408706735, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.136306061660025, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5063826498514343, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5550.913285243898, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03225388826591433, "grain_number": 5, "grain_density": 1792.062624414019, "grain_outer_radius": 0.03260989548982672, "grain_initial_inner_radius": 0.014226542834348644, "grain_initial_height": 0.11917174932951241, "grain_separation": 0.003397087700002684, "grains_center_of_mass_position": 0.39605906079000835, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000662952952460185, "throat_radius": 0.010511912620456837, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538647234673197}], "aerodynamic_surfaces": [{"length": 0.5580845247840054, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347007370706184]}, {"n": 4, "root_chord": 0.12044030127843638, "tip_chord": 0.059563109515499583, "span": 0.11047458418652738, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485747625599298]}, {"top_radius": 0.06434002013033735, "bottom_radius": 0.044003692613419694, "length": 0.06100446305397222, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009532833905945, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168647171381741, "upper_button_position": 0.08408856625242034}], "rail_length": 5, "inclination": 85.75674796621344, "heading": 51.763888571418995} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.063512388210535, "mass": 15.094881733074025, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3336119958049535, "I_33_without_motor": 0.030335682297331905, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.876931652111715, "trigger": 800, "sampling_rate": 105, "lag": 1.6307002747903925, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0124916710294944, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6552129655890495, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5508.239889510555, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0337763481147744, "grain_number": 5, "grain_density": 1801.1051102520992, "grain_outer_radius": 0.033700664796838795, "grain_initial_inner_radius": 0.015198150974164142, "grain_initial_height": 0.12162942919566959, "grain_separation": 0.00465841372868356, "grains_center_of_mass_position": 0.3984893241614359, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00023218245896931383, "throat_radius": 0.011761836767843908, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2575175872722284}], "aerodynamic_surfaces": [{"length": 0.5576537298041714, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348491383588744]}, {"n": 4, "root_chord": 0.11887439369420048, "tip_chord": 0.05904784692692394, "span": 0.10966263858109318, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479636952945566]}, {"top_radius": 0.0625689586364548, "bottom_radius": 0.04380859689006328, "length": 0.059777611539720166, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004638385053366, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180926917946745, "upper_button_position": 0.08237114671066204}], "rail_length": 5, "inclination": 84.4827343159059, "heading": 52.69320844971627} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350819873144116, "mass": 15.851502537762883, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313502410501334, "I_33_without_motor": 0.029611592850851562, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.946168362399527, "trigger": 800, "sampling_rate": 105, "lag": 1.427795776856907, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9292315260066842, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2363073380425016, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7812.060665374128, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0334993719262605, "grain_number": 5, "grain_density": 1875.8284699878373, "grain_outer_radius": 0.03318842867243124, "grain_initial_inner_radius": 0.0152477483018895, "grain_initial_height": 0.12060702440074997, "grain_separation": 0.005418096489716122, "grains_center_of_mass_position": 0.3970996001695879, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007981442755377105, "throat_radius": 0.011239288967314564, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549193440580904}], "aerodynamic_surfaces": [{"length": 0.5572692846985371, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330218813863504]}, {"n": 4, "root_chord": 0.12004616327361409, "tip_chord": 0.05962198023404954, "span": 0.11013106439327783, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500572663963816]}, {"top_radius": 0.06255711657332055, "bottom_radius": 0.04318803246629262, "length": 0.05920463537080235, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7018141571239834, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188327467244816, "upper_button_position": 0.0829814103995018}], "rail_length": 5, "inclination": 85.71346994612396, "heading": 53.37222051004364} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350472506462422, "mass": 15.426128900058139, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329173907342837, "I_33_without_motor": 0.054453917691886955, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.832971778126023, "trigger": 800, "sampling_rate": 105, "lag": 1.625306902208172, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0253059510829086, "trigger": "apogee", "sampling_rate": 105, "lag": 1.333537925365219, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6808.076634085226, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032997904560176566, "grain_number": 5, "grain_density": 1778.6292644342352, "grain_outer_radius": 0.03297475287617086, "grain_initial_inner_radius": 0.01473741727453689, "grain_initial_height": 0.11960607048121537, "grain_separation": 0.005622342700418094, "grains_center_of_mass_position": 0.396698401950015, "center_of_dry_mass_position": 0.317, "nozzle_position": -2.3117297707031654e-05, "throat_radius": 0.011197330380616065, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551934035079657}], "aerodynamic_surfaces": [{"length": 0.557192236855337, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134114009570352]}, {"n": 4, "root_chord": 0.1198168215705764, "tip_chord": 0.059574421152431736, "span": 0.11033775102312517, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488931106882744]}, {"top_radius": 0.06326749181705095, "bottom_radius": 0.04450521023626973, "length": 0.05961795980380395, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989834888016382, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185753153986288, "upper_button_position": 0.08040817340300943}], "rail_length": 5, "inclination": 83.17816356605631, "heading": 51.309232795707494} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349553964312486, "mass": 15.562292164049731, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334306508630867, "I_33_without_motor": 0.03371905180055026, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.93377324481287, "trigger": 800, "sampling_rate": 105, "lag": 1.570593417381538, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9836334679255114, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6114658301443743, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 3979.375642797146, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034141959337063855, "grain_number": 5, "grain_density": 1724.0360239554705, "grain_outer_radius": 0.033432628778316355, "grain_initial_inner_radius": 0.014994158130578254, "grain_initial_height": 0.11905125327762484, "grain_separation": 0.005027252194032466, "grains_center_of_mass_position": 0.39711735866230785, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00035534715089037474, "throat_radius": 0.011310255379003327, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543165882904936}], "aerodynamic_surfaces": [{"length": 0.5573922204580215, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328781810823436]}, {"n": 4, "root_chord": 0.11976181942443942, "tip_chord": 0.059988079254222934, "span": 0.11077198929921123, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050209516942435]}, {"top_radius": 0.061650598234621844, "bottom_radius": 0.04489072562589658, "length": 0.058055565878562455, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993097348407711, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172692756684256, "upper_button_position": 0.08204045917234548}], "rail_length": 5, "inclination": 83.29564064489396, "heading": 52.213740336282285} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349133066082882, "mass": 15.954550956592064, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315917134977582, "I_33_without_motor": 0.04041345430777405, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.017560928015476, "trigger": 800, "sampling_rate": 105, "lag": 1.4205567037744702, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0029446251491514, "trigger": "apogee", "sampling_rate": 105, "lag": 1.018043183884263, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5062.107105093869, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249427734668195, "grain_number": 5, "grain_density": 1876.6617208168245, "grain_outer_radius": 0.032997667306293034, "grain_initial_inner_radius": 0.01510180393994685, "grain_initial_height": 0.11998857106440348, "grain_separation": 0.005051389371264848, "grains_center_of_mass_position": 0.39804727362759446, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003052900743578522, "throat_radius": 0.010525241027978994, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548418565388313}], "aerodynamic_surfaces": [{"length": 0.5572486468350798, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1358329290691012]}, {"n": 4, "root_chord": 0.12050869775094261, "tip_chord": 0.06008127405889822, "span": 0.10979610151637419, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050055415589233]}, {"top_radius": 0.06337458676813662, "bottom_radius": 0.04249641981448245, "length": 0.061162677075415596, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700101970503933, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185433039194429, "upper_button_position": 0.08155866658449007}], "rail_length": 5, "inclination": 84.86385792735975, "heading": 52.70349620623076} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349926138598071, "mass": 14.940024964799223, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321833586780836, "I_33_without_motor": 0.036688391415082205, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.027849514288238, "trigger": 800, "sampling_rate": 105, "lag": 1.4415313383121484, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9275917838031512, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4200173198528534, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6779.294549939727, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03207134233614547, "grain_number": 5, "grain_density": 1840.553703244978, "grain_outer_radius": 0.03300858858457888, "grain_initial_inner_radius": 0.014599661090597679, "grain_initial_height": 0.11794503963148863, "grain_separation": 0.004070676025089253, "grains_center_of_mass_position": 0.3978349419182374, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014732992149050577, "throat_radius": 0.010840837384235254, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255865874715703}], "aerodynamic_surfaces": [{"length": 0.558179627200623, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342714948694081]}, {"n": 4, "root_chord": 0.12020073681594778, "tip_chord": 0.06072758695219564, "span": 0.110899214601923, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501278476536924]}, {"top_radius": 0.06426394524672033, "bottom_radius": 0.044185355490687625, "length": 0.059148556125104786, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989605549275234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171804775497538, "upper_button_position": 0.0817800773777696}], "rail_length": 5, "inclination": 84.7544399877389, "heading": 50.107566273775134} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349778099844972, "mass": 15.048155869964468, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312902636039277, "I_33_without_motor": 0.019886636638808478, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14939109027505, "trigger": 800, "sampling_rate": 105, "lag": 1.7017737878278905, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.00769941614542, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4783632045099855, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7291.5603368281745, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282642060268471, "grain_number": 5, "grain_density": 1786.2039480912156, "grain_outer_radius": 0.032676982980086144, "grain_initial_inner_radius": 0.015410076236771927, "grain_initial_height": 0.12016547125641867, "grain_separation": 0.003643343343043899, "grains_center_of_mass_position": 0.3961199688923356, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00037158889883299665, "throat_radius": 0.010516398741134041, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546978357987246}], "aerodynamic_surfaces": [{"length": 0.5588830863966829, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339349438247739]}, {"n": 4, "root_chord": 0.12001666663589099, "tip_chord": 0.05929755314864058, "span": 0.10919851951297871, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488703658052427]}, {"top_radius": 0.06239943737926016, "bottom_radius": 0.04380395789244292, "length": 0.05934569697918781, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698728985489526, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617741071835813, "upper_button_position": 0.08098791365371305}], "rail_length": 5, "inclination": 84.10772314228576, "heading": 52.29013466885863} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634955214463195, "mass": 15.60724784496301, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311320205804424, "I_33_without_motor": 0.03551131317625278, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952177466834938, "trigger": 800, "sampling_rate": 105, "lag": 1.3626611549847272, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0786942039986038, "trigger": "apogee", "sampling_rate": 105, "lag": 1.380378882763295, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6664.080240814418, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032498556186873494, "grain_number": 5, "grain_density": 1856.4490758846246, "grain_outer_radius": 0.03325625817557876, "grain_initial_inner_radius": 0.014673121017434006, "grain_initial_height": 0.11985531255866078, "grain_separation": 0.004956770369584539, "grains_center_of_mass_position": 0.39627593052901794, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00034682196296926014, "throat_radius": 0.012058079095660958, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547509415394953}], "aerodynamic_surfaces": [{"length": 0.5575403079274868, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337167728174868]}, {"n": 4, "root_chord": 0.11970872941058558, "tip_chord": 0.06005004529219042, "span": 0.11017367555960604, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049654987696]}, {"top_radius": 0.06335728063193093, "bottom_radius": 0.04420300069726439, "length": 0.0608362207376119, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991956064156485, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173781821764297, "upper_button_position": 0.08181742423921878}], "rail_length": 5, "inclination": 84.75611339824188, "heading": 49.322597428962546} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349110941852984, "mass": 15.363800643815784, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320901019638868, "I_33_without_motor": 0.03682578485156381, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.067991471713055, "trigger": 800, "sampling_rate": 105, "lag": 1.6202210475135645, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0495641981119324, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6428959377243113, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5102.47112459028, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03284176435954306, "grain_number": 5, "grain_density": 1834.7500807036706, "grain_outer_radius": 0.03286110270144541, "grain_initial_inner_radius": 0.014960880237862913, "grain_initial_height": 0.11912385492280295, "grain_separation": 0.0038428109806623685, "grains_center_of_mass_position": 0.3974047403964047, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001032538577541627, "throat_radius": 0.011183093687071367, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550004930682732}], "aerodynamic_surfaces": [{"length": 0.5557065251429973, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324105661029402]}, {"n": 4, "root_chord": 0.12021332997128127, "tip_chord": 0.06016456159324409, "span": 0.10968969657917671, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503454844809494]}, {"top_radius": 0.06358523450705122, "bottom_radius": 0.04341426656951645, "length": 0.0592172332523894, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012598738154129, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180722724531387, "upper_button_position": 0.08318760136227421}], "rail_length": 5, "inclination": 84.64450957392616, "heading": 54.45901572867087} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349885684932025, "mass": 15.466548516595566, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320246902818316, "I_33_without_motor": 0.03917494199398555, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.981273263523793, "trigger": 800, "sampling_rate": 105, "lag": 1.495044967161156, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.988821437508524, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5669083573695872, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5394.085944253158, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320850816035222, "grain_number": 5, "grain_density": 1824.4658986651382, "grain_outer_radius": 0.03291507471812741, "grain_initial_inner_radius": 0.014917748214483164, "grain_initial_height": 0.11934078335659117, "grain_separation": 0.00558974732751468, "grains_center_of_mass_position": 0.3978956776784711, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006913680506375606, "throat_radius": 0.011576061926003665, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551693995042452}], "aerodynamic_surfaces": [{"length": 0.5575053291111851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343192651057177]}, {"n": 4, "root_chord": 0.1208300623119844, "tip_chord": 0.05948167166488193, "span": 0.10963947472367339, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049197622339754]}, {"top_radius": 0.06505051272365482, "bottom_radius": 0.04462587738555518, "length": 0.059482503341550565, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008472781654618, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61838524404005, "upper_button_position": 0.08246203412541175}], "rail_length": 5, "inclination": 84.24390427174274, "heading": 51.48400154784595} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06349926941356783, "mass": 16.160033563120585, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321417606041182, "I_33_without_motor": 0.013819818294582915, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980395630631687, "trigger": 800, "sampling_rate": 105, "lag": 1.4179288400100205, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0506657096091263, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5619111227385574, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7180.4456437352, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03353342825187555, "grain_number": 5, "grain_density": 1775.8680879265105, "grain_outer_radius": 0.03270905004614693, "grain_initial_inner_radius": 0.01538697671653151, "grain_initial_height": 0.12163013261684419, "grain_separation": 0.004629782066731227, "grains_center_of_mass_position": 0.39630653966616775, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007063535189082506, "throat_radius": 0.010098335479824994, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541740043748335}], "aerodynamic_surfaces": [{"length": 0.5577636663168978, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349236076529152]}, {"n": 4, "root_chord": 0.11994972252731634, "tip_chord": 0.05988974361184314, "span": 0.10963220314312545, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504443437982234]}, {"top_radius": 0.06212253793688887, "bottom_radius": 0.04493986321743011, "length": 0.06164799908062976, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7017298118061086, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160723453442788, "upper_button_position": 0.08565746646182981}], "rail_length": 5, "inclination": 83.76642517020643, "heading": 53.390277868746054} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350852207409002, "mass": 14.967434252317856, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3237703986101765, "I_33_without_motor": 0.032358923896098714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.848126165413321, "trigger": 800, "sampling_rate": 105, "lag": 1.5771723840066847, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9307130385173376, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6160830373236001, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7189.113012978653, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03276431697505007, "grain_number": 5, "grain_density": 1802.8045931118063, "grain_outer_radius": 0.033544086436741144, "grain_initial_inner_radius": 0.01484777666990186, "grain_initial_height": 0.12071641160843624, "grain_separation": 0.004513219286076213, "grains_center_of_mass_position": 0.39788916805893254, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.775628609985028e-05, "throat_radius": 0.011377736598491043, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553970969563253}], "aerodynamic_surfaces": [{"length": 0.557123971334272, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341345162057999]}, {"n": 4, "root_chord": 0.1199993470433708, "tip_chord": 0.060698615376092925, "span": 0.10907212280525717, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503021046057]}, {"top_radius": 0.06344553052068272, "bottom_radius": 0.042325573229877914, "length": 0.06012312991404017, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996290685053255, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182869632371486, "upper_button_position": 0.08134210526817687}], "rail_length": 5, "inclination": 84.1157473415384, "heading": 55.902485382964855} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349427248650337, "mass": 15.133390926158198, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306766427146946, "I_33_without_motor": 0.042755642714908206, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.03959914730117, "trigger": 800, "sampling_rate": 105, "lag": 1.452694269102831, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0577361504065481, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3852999601813547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7576.108156556662, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0331437165845481, "grain_number": 5, "grain_density": 1851.194682481999, "grain_outer_radius": 0.0327134794474126, "grain_initial_inner_radius": 0.01495926784663412, "grain_initial_height": 0.11986357504825738, "grain_separation": 0.0041478610018943944, "grains_center_of_mass_position": 0.3961972409730486, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004997710368216626, "throat_radius": 0.010157572788210015, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556812177108658}], "aerodynamic_surfaces": [{"length": 0.5586171922382271, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135160758925937]}, {"n": 4, "root_chord": 0.1205527585067404, "tip_chord": 0.06009770466868093, "span": 0.11063885318152201, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496096141615148]}, {"top_radius": 0.06353927917726321, "bottom_radius": 0.04227269134812305, "length": 0.05765128481665115, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983158846309144, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172113143443352, "upper_button_position": 0.08110457028657925}], "rail_length": 5, "inclination": 83.64587219356622, "heading": 52.06351971803359} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.0635099671247768, "mass": 15.83749692155579, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311638899995164, "I_33_without_motor": 0.04560340125783813, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.168204701620864, "trigger": 800, "sampling_rate": 105, "lag": 1.347019727713279, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0281604508365922, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6543202004775883, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6560.484927798325, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033442026313882156, "grain_number": 5, "grain_density": 1842.887314216671, "grain_outer_radius": 0.03272826511881581, "grain_initial_inner_radius": 0.015173126413493564, "grain_initial_height": 0.12020059756235947, "grain_separation": 0.005516754675627198, "grains_center_of_mass_position": 0.39797460340773555, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015624419141296588, "throat_radius": 0.011209159379989153, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255877694353836}], "aerodynamic_surfaces": [{"length": 0.5575469857248537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342358769404053]}, {"n": 4, "root_chord": 0.12002283183811542, "tip_chord": 0.06067343440857333, "span": 0.11014339205074611, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500551096384545]}, {"top_radius": 0.06328067276341394, "bottom_radius": 0.04471132438418235, "length": 0.06013416570067934, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994448483017426, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618376212327162, "upper_button_position": 0.08106863597458058}], "rail_length": 5, "inclination": 84.81106311314653, "heading": 54.81048919293666} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06349507256222688, "mass": 14.373719528982939, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326759828583143, "I_33_without_motor": 0.024432151800751204, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.942859925776784, "trigger": 800, "sampling_rate": 105, "lag": 1.2747687237847967, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0534660613396454, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2704240157883526, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6562.559349986497, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0328059963871456, "grain_number": 5, "grain_density": 1885.6968752717885, "grain_outer_radius": 0.032859598139622734, "grain_initial_inner_radius": 0.014593768405619947, "grain_initial_height": 0.11962339344380439, "grain_separation": 0.004536010817723634, "grains_center_of_mass_position": 0.3965363683284858, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.756144856317188e-05, "throat_radius": 0.011135630662276378, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255897867801759}], "aerodynamic_surfaces": [{"length": 0.5592281620490578, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133288248884569]}, {"n": 4, "root_chord": 0.11947650915449665, "tip_chord": 0.0597117611929134, "span": 0.10935102164382343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501559692398255]}, {"top_radius": 0.06526721789944949, "bottom_radius": 0.044366095593475596, "length": 0.05950042100536659, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000634954578224, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180034631539003, "upper_button_position": 0.08206003230392211}], "rail_length": 5, "inclination": 84.0513890484073, "heading": 53.827253247036815} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349710399626973, "mass": 15.452284440607004, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299976078589138, "I_33_without_motor": 0.023611023798542994, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958906979169958, "trigger": 800, "sampling_rate": 105, "lag": 1.4758593598139078, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1117414792276834, "trigger": "apogee", "sampling_rate": 105, "lag": 1.546062193936824, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6979.642265167689, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03256479180749136, "grain_number": 5, "grain_density": 1773.333138601786, "grain_outer_radius": 0.03285414724281983, "grain_initial_inner_radius": 0.014753630134234863, "grain_initial_height": 0.11959091901233296, "grain_separation": 0.0037422233395075877, "grains_center_of_mass_position": 0.39631698515277547, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016646023628941026, "throat_radius": 0.010723330503136362, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254327314892132}], "aerodynamic_surfaces": [{"length": 0.5583677558080304, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334434315179287]}, {"n": 4, "root_chord": 0.1191556377202598, "tip_chord": 0.05959573727904547, "span": 0.11024258717177336, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490036661590207]}, {"top_radius": 0.06408478845084382, "bottom_radius": 0.04505038730968923, "length": 0.061192133037429416, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016534998620484, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6213008721052069, "upper_button_position": 0.08035262775684149}], "rail_length": 5, "inclination": 83.30620519227017, "heading": 47.49193262084111} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349718845551106, "mass": 15.28668470093914, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310153895145861, "I_33_without_motor": 0.03912955493247343, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.915581419893641, "trigger": 800, "sampling_rate": 105, "lag": 1.2670361823726488, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9979973972562992, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9080966746673371, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6181.624273796157, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032608224712801614, "grain_number": 5, "grain_density": 1751.4284514087014, "grain_outer_radius": 0.033047870009860404, "grain_initial_inner_radius": 0.014439516054880332, "grain_initial_height": 0.12009742354591232, "grain_separation": 0.0048277237512387335, "grains_center_of_mass_position": 0.3947031226267282, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006137991430252071, "throat_radius": 0.011415696704618918, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554715868239223}], "aerodynamic_surfaces": [{"length": 0.5604094709480281, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345309728430948]}, {"n": 4, "root_chord": 0.12060149488972081, "tip_chord": 0.059650560459058304, "span": 0.11058982357685568, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0484596725567916]}, {"top_radius": 0.06163366319111106, "bottom_radius": 0.04377475272006331, "length": 0.05974016382452402, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987013117799917, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177655897498225, "upper_button_position": 0.08093572203016919}], "rail_length": 5, "inclination": 84.73493399265378, "heading": 54.07341893727356} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350073285170704, "mass": 15.493968236840155, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338002449937513, "I_33_without_motor": 0.044842252108430396, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.958561479520714, "trigger": 800, "sampling_rate": 105, "lag": 1.483964971209632, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9123170220890542, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8560965643500984, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6658.380001359126, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032570067257105643, "grain_number": 5, "grain_density": 1743.624143646895, "grain_outer_radius": 0.03359971315536478, "grain_initial_inner_radius": 0.015286117025750539, "grain_initial_height": 0.12037350157973367, "grain_separation": 0.006360667861279633, "grains_center_of_mass_position": 0.3974016750667461, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007198335970228587, "throat_radius": 0.011049224283960038, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541394301797435}], "aerodynamic_surfaces": [{"length": 0.5593176452138268, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347642996785345]}, {"n": 4, "root_chord": 0.12044705665013641, "tip_chord": 0.06005521268276076, "span": 0.10948693524170611, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490059935233216]}, {"top_radius": 0.06282947423785612, "bottom_radius": 0.04324275925664239, "length": 0.05936071576928615, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699453672689441, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196400558657623, "upper_button_position": 0.07981361682367871}], "rail_length": 5, "inclination": 83.23504075152194, "heading": 52.276410558569424} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350114141803052, "mass": 15.936093418326175, "I_11_without_motor": 6.321, "I_22_without_motor": 6.299472011397104, "I_33_without_motor": 0.03760334298217152, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.918786501973974, "trigger": 800, "sampling_rate": 105, "lag": 1.607914883364297, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0910571332803327, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8090567383814342, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6170.13947923986, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324886190701534, "grain_number": 5, "grain_density": 1791.071873621719, "grain_outer_radius": 0.03294052467358037, "grain_initial_inner_radius": 0.014991400918628293, "grain_initial_height": 0.12039111480592334, "grain_separation": 0.0045841743200965655, "grains_center_of_mass_position": 0.39642499552702515, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00010627524530525015, "throat_radius": 0.011273329987172944, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.252649116168273}], "aerodynamic_surfaces": [{"length": 0.5557861977098093, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344595283706538]}, {"n": 4, "root_chord": 0.1207092264770049, "tip_chord": 0.05946196025075756, "span": 0.11032972214430639, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0508356361625564]}, {"top_radius": 0.06320821946651448, "bottom_radius": 0.04368023691541734, "length": 0.058468822199936446, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6981866173716647, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165139528099695, "upper_button_position": 0.0816726645616952}], "rail_length": 5, "inclination": 86.10602831669156, "heading": 52.44406967016354} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06348823925475168, "mass": 15.419131053911718, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315239858658638, "I_33_without_motor": 0.04600992817769571, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.774576412095513, "trigger": 800, "sampling_rate": 105, "lag": 1.4717214465517803, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9621565876691418, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7039366042196886, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6411.789548362152, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032452567016721154, "grain_number": 5, "grain_density": 1800.0002652119995, "grain_outer_radius": 0.033046347989557905, "grain_initial_inner_radius": 0.01491166691377148, "grain_initial_height": 0.1203130004809994, "grain_separation": 0.004133092182769407, "grains_center_of_mass_position": 0.39742835591036924, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008301847136716146, "throat_radius": 0.010832867716797865, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254215762728133}], "aerodynamic_surfaces": [{"length": 0.5579207990826109, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333494075904649]}, {"n": 4, "root_chord": 0.11992087512113175, "tip_chord": 0.059511157518220566, "span": 0.11025827514868039, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489842732281167]}, {"top_radius": 0.06291503933498063, "bottom_radius": 0.04462374172055707, "length": 0.05905990657324436, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699521514427291, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61860958157694, "upper_button_position": 0.08091193285035103}], "rail_length": 5, "inclination": 84.25115498855395, "heading": 49.721028292487986} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350799097849567, "mass": 15.374419477244219, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313003234808008, "I_33_without_motor": 0.038785026311043934, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.944459205112329, "trigger": 800, "sampling_rate": 105, "lag": 1.437743394375395, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9954914515630293, "trigger": "apogee", "sampling_rate": 105, "lag": 1.353970677330758, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6902.245103300758, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03258566605512597, "grain_number": 5, "grain_density": 1821.9929023695597, "grain_outer_radius": 0.032708815018804994, "grain_initial_inner_radius": 0.01593629747361562, "grain_initial_height": 0.11976510105809228, "grain_separation": 0.005999058029595198, "grains_center_of_mass_position": 0.398269260384193, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010369086563721337, "throat_radius": 0.01111523457382893, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550278725101724}], "aerodynamic_surfaces": [{"length": 0.5583727307176182, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331122333993355]}, {"n": 4, "root_chord": 0.11958617142295792, "tip_chord": 0.05952704750560305, "span": 0.11007105252843022, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506407159671076]}, {"top_radius": 0.06383143189453803, "bottom_radius": 0.04626635944212255, "length": 0.05981529093382941, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992622841611231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182557709089027, "upper_button_position": 0.08100651325222041}], "rail_length": 5, "inclination": 84.28378531054021, "heading": 54.628675665446956} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350564567414123, "mass": 15.351169617687336, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316339609293202, "I_33_without_motor": 0.024628460524742636, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.260368128948798, "trigger": 800, "sampling_rate": 105, "lag": 1.436211638596607, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0596257521439474, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9606300082679282, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6737.334409370661, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032451045129767674, "grain_number": 5, "grain_density": 1772.3797475977608, "grain_outer_radius": 0.03292859054920341, "grain_initial_inner_radius": 0.01531605001245516, "grain_initial_height": 0.12120284575994275, "grain_separation": 0.0047789962869855965, "grains_center_of_mass_position": 0.3957664740550499, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009780875235138216, "throat_radius": 0.011220764829127684, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256450134060107}], "aerodynamic_surfaces": [{"length": 0.5573749854507328, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342107213929822]}, {"n": 4, "root_chord": 0.11937926769418589, "tip_chord": 0.05938769840239194, "span": 0.10965227921733091, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051091744443173]}, {"top_radius": 0.06378002564995139, "bottom_radius": 0.04247628650509774, "length": 0.05933466266438238, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986029806010788, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170346412042721, "upper_button_position": 0.08156833939680674}], "rail_length": 5, "inclination": 82.63207432007752, "heading": 55.61749385795793} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350272742811702, "mass": 15.014234124858417, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31975190852114, "I_33_without_motor": 0.02056266718720034, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.967500350682938, "trigger": 800, "sampling_rate": 105, "lag": 1.4475415253776576, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0200507297202923, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5096961474659556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6231.860619908108, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03294088543878825, "grain_number": 5, "grain_density": 1848.5135448852773, "grain_outer_radius": 0.03298074459146069, "grain_initial_inner_radius": 0.014906435171715927, "grain_initial_height": 0.12039171103546388, "grain_separation": 0.006130184851526939, "grains_center_of_mass_position": 0.3974630479313464, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004168446249926317, "throat_radius": 0.011569985087506089, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254755012115526}], "aerodynamic_surfaces": [{"length": 0.559483239348092, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338444451046041]}, {"n": 4, "root_chord": 0.12019071976847248, "tip_chord": 0.06022157446620013, "span": 0.11058258665345384, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050106183888557]}, {"top_radius": 0.06309812586072786, "bottom_radius": 0.04351464769890285, "length": 0.059098039991812616, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996572885538778, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184631340307644, "upper_button_position": 0.0811941545231134}], "rail_length": 5, "inclination": 85.60513385122898, "heading": 53.656737154724574} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350517838802437, "mass": 15.633442724709845, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33136162717125, "I_33_without_motor": 0.0479005600785725, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.110132542606605, "trigger": 800, "sampling_rate": 105, "lag": 1.4167016520837035, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.973051875173768, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4322145064067373, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7281.845689470164, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273819835175239, "grain_number": 5, "grain_density": 1723.1799856018586, "grain_outer_radius": 0.03301633828634463, "grain_initial_inner_radius": 0.014556869802633134, "grain_initial_height": 0.11964773445915468, "grain_separation": 0.004517478191671409, "grains_center_of_mass_position": 0.39887494385543854, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001769760298013452, "throat_radius": 0.011776057789287232, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557292818391699}], "aerodynamic_surfaces": [{"length": 0.5578505399213964, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325363595861053]}, {"n": 4, "root_chord": 0.12066749452204649, "tip_chord": 0.060429187745415856, "span": 0.10977357383784915, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482852805763154]}, {"top_radius": 0.0633573043766344, "bottom_radius": 0.043358260430756065, "length": 0.06107556557179991, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012704584940225, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183355553555109, "upper_button_position": 0.0829349031385116}], "rail_length": 5, "inclination": 83.6800974312687, "heading": 52.89405416323286} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349085657478923, "mass": 15.003248485107708, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330812017025029, "I_33_without_motor": 0.03157810325289402, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.085776761136934, "trigger": 800, "sampling_rate": 105, "lag": 1.490420020720459, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9984888154509867, "trigger": "apogee", "sampling_rate": 105, "lag": 1.572490818729966, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4987.498129609397, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03271770219459674, "grain_number": 5, "grain_density": 1814.3520939627513, "grain_outer_radius": 0.03278376858376143, "grain_initial_inner_radius": 0.015410929217065342, "grain_initial_height": 0.12022790976339287, "grain_separation": 0.004810348348248099, "grains_center_of_mass_position": 0.3957763290333216, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.180914175318086e-06, "throat_radius": 0.010242901409996992, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553587521452152}], "aerodynamic_surfaces": [{"length": 0.5586764932371537, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352699618195545]}, {"n": 4, "root_chord": 0.12024181657236062, "tip_chord": 0.0599463692072668, "span": 0.1105359452142326, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049011161923796]}, {"top_radius": 0.06315029508738233, "bottom_radius": 0.044024281023735526, "length": 0.06031925962770452, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701534658177049, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168656325839371, "upper_button_position": 0.08466902559311185}], "rail_length": 5, "inclination": 85.11702338350179, "heading": 53.09991552007715} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349660990321353, "mass": 15.125289068426826, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304792268822031, "I_33_without_motor": 0.05241394987811225, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.673912060966934, "trigger": 800, "sampling_rate": 105, "lag": 1.5420593291772204, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0182981618844071, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4648512915791647, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7206.427449394574, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03244627254826901, "grain_number": 5, "grain_density": 1708.006163433201, "grain_outer_radius": 0.032689357742297774, "grain_initial_inner_radius": 0.015182175257812786, "grain_initial_height": 0.12100142834789676, "grain_separation": 0.004000301636116258, "grains_center_of_mass_position": 0.39868419404292305, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013341307767769724, "throat_radius": 0.010283423701930782, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556757427205207}], "aerodynamic_surfaces": [{"length": 0.5582450314976478, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133217250150912]}, {"n": 4, "root_chord": 0.11923323097840392, "tip_chord": 0.061012796513693415, "span": 0.10965550848920491, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490410352699997]}, {"top_radius": 0.0630859302550805, "bottom_radius": 0.04338669719690068, "length": 0.06127936209437734, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994122508456854, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169022123864001, "upper_button_position": 0.08251003845928528}], "rail_length": 5, "inclination": 85.68711433947745, "heading": 52.925754455671424} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349286232975856, "mass": 15.317069493436282, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325359609141536, "I_33_without_motor": 0.0313256284790802, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.14094639325204, "trigger": 800, "sampling_rate": 105, "lag": 1.6086396885280365, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.006823931189022, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9487095048574865, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6903.760151887185, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03275002312148995, "grain_number": 5, "grain_density": 1829.5679512360716, "grain_outer_radius": 0.033059462891199105, "grain_initial_inner_radius": 0.015425441406188697, "grain_initial_height": 0.12076272498116931, "grain_separation": 0.0034816962084674215, "grains_center_of_mass_position": 0.39633875549476727, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039219080236436337, "throat_radius": 0.012290768932142558, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557418879309474}], "aerodynamic_surfaces": [{"length": 0.5584719672895713, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333810622593374]}, {"n": 4, "root_chord": 0.11872523421578067, "tip_chord": 0.06056409955035506, "span": 0.11003532005000648, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049880298889996]}, {"top_radius": 0.062201779571998045, "bottom_radius": 0.04364086664908922, "length": 0.06077475535216194, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988644760259287, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171786349050848, "upper_button_position": 0.08168584112084387}], "rail_length": 5, "inclination": 84.3554647861854, "heading": 54.012640481691285} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349619220793212, "mass": 14.803175408717776, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32168324853388, "I_33_without_motor": 0.03910268279850164, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.909557231866481, "trigger": 800, "sampling_rate": 105, "lag": 1.5800728731515823, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9841179279112139, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4021507046358572, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5661.602962945527, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285822163527865, "grain_number": 5, "grain_density": 1781.7988872177043, "grain_outer_radius": 0.033008086141213894, "grain_initial_inner_radius": 0.015271293606936945, "grain_initial_height": 0.12055876231400947, "grain_separation": 0.004067657520245581, "grains_center_of_mass_position": 0.39573064882214243, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002125286401233784, "throat_radius": 0.011081799301234044, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563733319577484}], "aerodynamic_surfaces": [{"length": 0.5578712745491092, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347008461649077]}, {"n": 4, "root_chord": 0.11987858860544404, "tip_chord": 0.060091905521388204, "span": 0.10955202478707882, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495989320880623]}, {"top_radius": 0.06365812821456526, "bottom_radius": 0.0443740299109866, "length": 0.06108712093041266, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995743787490472, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6157357356210038, "upper_button_position": 0.08383864312804334}], "rail_length": 5, "inclination": 85.5596633691007, "heading": 52.95832413021578} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349982979910598, "mass": 14.874293152596016, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3068019142737315, "I_33_without_motor": 0.06257414663907557, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.878805481357269, "trigger": 800, "sampling_rate": 105, "lag": 1.5232848652804603, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0658274589076269, "trigger": "apogee", "sampling_rate": 105, "lag": 1.352067521188081, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5866.932116107702, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032345729756006275, "grain_number": 5, "grain_density": 1809.629287364248, "grain_outer_radius": 0.032869683696884804, "grain_initial_inner_radius": 0.015203885282251564, "grain_initial_height": 0.11938964359474319, "grain_separation": 0.004375882748704963, "grains_center_of_mass_position": 0.3960513801057899, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003878267724344472, "throat_radius": 0.010475088043355561, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541914595298076}], "aerodynamic_surfaces": [{"length": 0.5574971199328612, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339333509690133]}, {"n": 4, "root_chord": 0.12005792304976344, "tip_chord": 0.059267912413855636, "span": 0.109941787992951, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485256159654452]}, {"top_radius": 0.0633565548908857, "bottom_radius": 0.04374692504267368, "length": 0.05984770830377764, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993985063397279, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183925228848767, "upper_button_position": 0.08100598345485122}], "rail_length": 5, "inclination": 84.45879938792218, "heading": 54.626026088640295} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350284420313118, "mass": 15.398773129497012, "I_11_without_motor": 6.321, "I_22_without_motor": 6.305028238466079, "I_33_without_motor": 0.032094377294876415, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037888833498515, "trigger": 800, "sampling_rate": 105, "lag": 1.595627864218742, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0132823955780246, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3087134278532588, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6335.294546936032, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03273363153243153, "grain_number": 5, "grain_density": 1795.0860579606465, "grain_outer_radius": 0.03363139175679919, "grain_initial_inner_radius": 0.014958655593571901, "grain_initial_height": 0.12037431800263633, "grain_separation": 0.0036663265564384736, "grains_center_of_mass_position": 0.39771681024866556, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0001500464490773716, "throat_radius": 0.010697136675603836, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567528839309243}], "aerodynamic_surfaces": [{"length": 0.5590479809782727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333135753205688]}, {"n": 4, "root_chord": 0.12044210958188378, "tip_chord": 0.060190199783796736, "span": 0.11004693637073155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497792316603043]}, {"top_radius": 0.06300252187019335, "bottom_radius": 0.04525718599278847, "length": 0.0607661822858739, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992822660958414, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172620105767812, "upper_button_position": 0.08202025551906023}], "rail_length": 5, "inclination": 84.93356131283146, "heading": 54.43249635193225} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350104857019816, "mass": 15.746016510656947, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328696678965539, "I_33_without_motor": 0.03600318233094747, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.055625390879875, "trigger": 800, "sampling_rate": 105, "lag": 1.5192950413652697, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0212623297550094, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3676556800055824, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7029.548670424097, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034049735407562974, "grain_number": 5, "grain_density": 1806.8401317116532, "grain_outer_radius": 0.03336228718917065, "grain_initial_inner_radius": 0.014679148517280373, "grain_initial_height": 0.11971645065990319, "grain_separation": 0.00391363290204022, "grains_center_of_mass_position": 0.39861899161055764, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007493382366475324, "throat_radius": 0.011298807884875313, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537956569317348}], "aerodynamic_surfaces": [{"length": 0.5613332460143345, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325842870942207]}, {"n": 4, "root_chord": 0.11976139307618976, "tip_chord": 0.060442221619431774, "span": 0.11019278167656492, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04911467880623]}, {"top_radius": 0.06369677441813522, "bottom_radius": 0.04339272846349734, "length": 0.06024741718815323, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008775313628007, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187071656612181, "upper_button_position": 0.08217036570158265}], "rail_length": 5, "inclination": 86.6495856499338, "heading": 51.785388871515714} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350124731748275, "mass": 15.291439463636609, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314316250098944, "I_33_without_motor": 0.024120536371567806, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.984093709555536, "trigger": 800, "sampling_rate": 105, "lag": 1.3442532368104096, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9688951719738199, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3421617116972104, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7253.621476708822, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032893051243302045, "grain_number": 5, "grain_density": 1847.4840571223099, "grain_outer_radius": 0.03321540667583712, "grain_initial_inner_radius": 0.01521686246223154, "grain_initial_height": 0.11972759419272527, "grain_separation": 0.006145750287822773, "grains_center_of_mass_position": 0.39734444078867315, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00037202109733285726, "throat_radius": 0.010671762624004131, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545917197508132}], "aerodynamic_surfaces": [{"length": 0.5575402355303559, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345638551114339]}, {"n": 4, "root_chord": 0.12130646134944581, "tip_chord": 0.05949156802585539, "span": 0.11002959508203028, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499986271053992]}, {"top_radius": 0.06390830462838754, "bottom_radius": 0.044879758886043675, "length": 0.05888108206546392, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003393165222976, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171067961169029, "upper_button_position": 0.08323252040539475}], "rail_length": 5, "inclination": 83.62252597116802, "heading": 53.76694044544488} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350456654956559, "mass": 15.379260796941137, "I_11_without_motor": 6.321, "I_22_without_motor": 6.304910048154271, "I_33_without_motor": 0.05206412225185338, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.829621119964592, "trigger": 800, "sampling_rate": 105, "lag": 1.6400855368622338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0605661250231955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.394399495844748, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6832.190531666542, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03328084379093966, "grain_number": 5, "grain_density": 1926.7829563900755, "grain_outer_radius": 0.03340478676907978, "grain_initial_inner_radius": 0.01535428876988626, "grain_initial_height": 0.1206794492712142, "grain_separation": 0.004897215932074206, "grains_center_of_mass_position": 0.3986309438022562, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006495726403905241, "throat_radius": 0.010643034107926103, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534176960599206}], "aerodynamic_surfaces": [{"length": 0.5580118678176385, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351136792164762]}, {"n": 4, "root_chord": 0.11953932190752956, "tip_chord": 0.05955866786276007, "span": 0.10988474158380898, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504264826007044]}, {"top_radius": 0.06343775680039337, "bottom_radius": 0.04228508292107349, "length": 0.05848683294402258, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991437284376391, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169830256309964, "upper_button_position": 0.08216070280664267}], "rail_length": 5, "inclination": 84.45939760083222, "heading": 54.137312057120724} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350031619922766, "mass": 15.812548133133753, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330915051877704, "I_33_without_motor": 0.045252613529619914, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.963145276633377, "trigger": 800, "sampling_rate": 105, "lag": 1.4066393748881119, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9298803379216237, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5867692044369062, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6627.82436249395, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034017924447153326, "grain_number": 5, "grain_density": 1824.2986490319508, "grain_outer_radius": 0.03358748234025349, "grain_initial_inner_radius": 0.014773885401437906, "grain_initial_height": 0.12129447415357006, "grain_separation": 0.00539808572411692, "grains_center_of_mass_position": 0.3969018028787237, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.650448246266584e-05, "throat_radius": 0.010382317879586742, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558216938260285}], "aerodynamic_surfaces": [{"length": 0.5571047079775322, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337875496751337]}, {"n": 4, "root_chord": 0.12011162822563884, "tip_chord": 0.06014478239450545, "span": 0.11065496958094398, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500074807635273]}, {"top_radius": 0.06504049491699784, "bottom_radius": 0.043019323877263906, "length": 0.06230529852067467, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983428873610693, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179252692788335, "upper_button_position": 0.0804176180822358}], "rail_length": 5, "inclination": 85.91598874225868, "heading": 53.45757079541625} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349030513884868, "mass": 14.95562698289797, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320849815533336, "I_33_without_motor": 0.0390970620769607, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.807377566485808, "trigger": 800, "sampling_rate": 105, "lag": 1.638155502370749, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0568710167353794, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2830079059648152, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7834.0919878237755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03365714693766436, "grain_number": 5, "grain_density": 1903.2647336351863, "grain_outer_radius": 0.03302511280601558, "grain_initial_inner_radius": 0.015174899552962218, "grain_initial_height": 0.11996998397540368, "grain_separation": 0.00531326481073932, "grains_center_of_mass_position": 0.39704212742398304, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008886316462248319, "throat_radius": 0.011545007893950677, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542608011853897}], "aerodynamic_surfaces": [{"length": 0.5583645631993337, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346857799499592]}, {"n": 4, "root_chord": 0.12086424012685457, "tip_chord": 0.06039345397431427, "span": 0.10965577334664653, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501666516975985]}, {"top_radius": 0.06280539773061485, "bottom_radius": 0.04311563613003262, "length": 0.05843235812443048, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011520014101155, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188134688334709, "upper_button_position": 0.08233853257664459}], "rail_length": 5, "inclination": 83.42172762687386, "heading": 52.14768323287825} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06349129833923998, "mass": 15.673468625420837, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317841471484162, "I_33_without_motor": 0.03770689749926168, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89053450252765, "trigger": 800, "sampling_rate": 105, "lag": 1.4579231406253594, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.010835877408311, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7257798751957352, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6749.0055588068, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03332133755943991, "grain_number": 5, "grain_density": 1826.3587920113587, "grain_outer_radius": 0.03282893430638958, "grain_initial_inner_radius": 0.014801964138402497, "grain_initial_height": 0.11946478422669127, "grain_separation": 0.003421916469313634, "grains_center_of_mass_position": 0.397441331820063, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00017949248063585087, "throat_radius": 0.011386299264519794, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25513140263065}], "aerodynamic_surfaces": [{"length": 0.5587684241349915, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13196941595158]}, {"n": 4, "root_chord": 0.12047424736928887, "tip_chord": 0.06042199362164906, "span": 0.10984371514154666, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492885207745684]}, {"top_radius": 0.06286243924416289, "bottom_radius": 0.044274353225307185, "length": 0.06091290488350853, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009026549900608, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618830241217146, "upper_button_position": 0.08207241377291474}], "rail_length": 5, "inclination": 85.42781230959476, "heading": 51.097767043505854} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349858147708919, "mass": 14.930028087705256, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331630814074807, "I_33_without_motor": 0.02762127881889047, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021072459643502, "trigger": 800, "sampling_rate": 105, "lag": 1.4098523685603574, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.7857370726858002, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8127434687996138, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5292.0313522397055, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262630293733081, "grain_number": 5, "grain_density": 1758.3948688475793, "grain_outer_radius": 0.0330981932041348, "grain_initial_inner_radius": 0.014437392493336788, "grain_initial_height": 0.1210373656638214, "grain_separation": 0.003951595556597365, "grains_center_of_mass_position": 0.3970919259263993, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.8386038789731555e-05, "throat_radius": 0.011138577384502068, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559151658645855}], "aerodynamic_surfaces": [{"length": 0.5579017102171169, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325223603521601]}, {"n": 4, "root_chord": 0.12045597932437141, "tip_chord": 0.05990253308631165, "span": 0.11041360767065803, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.047687559504994]}, {"top_radius": 0.06414914543540028, "bottom_radius": 0.04357844613297624, "length": 0.05886283323178218, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003317023124832, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.619474376013911, "upper_button_position": 0.08085732629857223}], "rail_length": 5, "inclination": 85.41931664008823, "heading": 54.56830309099624} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06349779134880712, "mass": 15.338984252854473, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317886829684818, "I_33_without_motor": 0.041485738897462744, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.91786979837456, "trigger": 800, "sampling_rate": 105, "lag": 1.5290782491416701, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9504095997535112, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4885381137292102, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6808.195559755801, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032157889380508335, "grain_number": 5, "grain_density": 1878.5446058778728, "grain_outer_radius": 0.03308543178484442, "grain_initial_inner_radius": 0.01532682154726538, "grain_initial_height": 0.12066321490472971, "grain_separation": 0.0030268770884781266, "grains_center_of_mass_position": 0.39709825624644135, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.983310935828881e-05, "throat_radius": 0.01111840064464955, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562019228690748}], "aerodynamic_surfaces": [{"length": 0.5576273128409507, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349889979471515]}, {"n": 4, "root_chord": 0.12065324830555374, "tip_chord": 0.06033323243671002, "span": 0.10984045537077002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049322165031425]}, {"top_radius": 0.06337045028173015, "bottom_radius": 0.04390553963340821, "length": 0.05871980221853869, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.698832737623244, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190812719383644, "upper_button_position": 0.07975146568487967}], "rail_length": 5, "inclination": 86.3265094679229, "heading": 50.81538861631338} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350763409434046, "mass": 16.40703353817045, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342369620237034, "I_33_without_motor": 0.02425261214548457, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.026858371296253, "trigger": 800, "sampling_rate": 105, "lag": 1.5840832983997355, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9476222155672729, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6563850181453725, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8137.105604101081, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032681665244323255, "grain_number": 5, "grain_density": 1774.4446086098817, "grain_outer_radius": 0.03304812921265918, "grain_initial_inner_radius": 0.015062531682180918, "grain_initial_height": 0.12071154041666678, "grain_separation": 0.0032164438874203337, "grains_center_of_mass_position": 0.39569704141151657, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029769432839080976, "throat_radius": 0.011428195944754594, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531802991683727}], "aerodynamic_surfaces": [{"length": 0.5577137608399457, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345638448763427]}, {"n": 4, "root_chord": 0.11973423444113779, "tip_chord": 0.05923498340564126, "span": 0.11065765114920162, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501213517138817]}, {"top_radius": 0.06331259340552736, "bottom_radius": 0.0442073229074513, "length": 0.05776888035277311, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982451420309183, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180210514511942, "upper_button_position": 0.08022409057972402}], "rail_length": 5, "inclination": 84.86945115550931, "heading": 50.190456556646836} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350996795596506, "mass": 15.654068258855403, "I_11_without_motor": 6.321, "I_22_without_motor": 6.293918424289492, "I_33_without_motor": 0.04378652060623531, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978640388608534, "trigger": 800, "sampling_rate": 105, "lag": 1.5331037741638023, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9208876561435269, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6473468234904658, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7320.851568452755, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033290450888680954, "grain_number": 5, "grain_density": 1794.6214731695802, "grain_outer_radius": 0.033008965580399396, "grain_initial_inner_radius": 0.014809305648407147, "grain_initial_height": 0.11957085045186451, "grain_separation": 0.002048276130171532, "grains_center_of_mass_position": 0.3983593507087167, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0018319186623897126, "throat_radius": 0.010849382822703375, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555566390252877}], "aerodynamic_surfaces": [{"length": 0.5596220684019293, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1364998116421778]}, {"n": 4, "root_chord": 0.12017219681224815, "tip_chord": 0.06043298637763014, "span": 0.11078095886577191, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04956154297857]}, {"top_radius": 0.06376041277874772, "bottom_radius": 0.04459569556314418, "length": 0.061561315030375104, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000519760900311, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198195205089309, "upper_button_position": 0.08023245558110026}], "rail_length": 5, "inclination": 84.17207758475378, "heading": 56.86653912853608} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.0634966950012517, "mass": 15.645369592190425, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32745597859784, "I_33_without_motor": 0.042649949291913965, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.976467371603674, "trigger": 800, "sampling_rate": 105, "lag": 1.6486884050082402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0500264014546064, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2546895506508036, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6565.0545370027085, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03370183184152852, "grain_number": 5, "grain_density": 1789.9029377940396, "grain_outer_radius": 0.03351678828269731, "grain_initial_inner_radius": 0.01485295595193573, "grain_initial_height": 0.11810734851205838, "grain_separation": 0.004919594477072777, "grains_center_of_mass_position": 0.39622940952874014, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0019382025411347728, "throat_radius": 0.010880699085188489, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547707108027992}], "aerodynamic_surfaces": [{"length": 0.5582631831687805, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348443953694825]}, {"n": 4, "root_chord": 0.11950209479925163, "tip_chord": 0.06026471343470239, "span": 0.10972670086190307, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488030698131239]}, {"top_radius": 0.06487457915812823, "bottom_radius": 0.04381229489636306, "length": 0.05966727432757449, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701789787642685, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6194617593714925, "upper_button_position": 0.08232802827119245}], "rail_length": 5, "inclination": 84.10948963743026, "heading": 54.674880453309946} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350697320808142, "mass": 14.031349286833326, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303069358263804, "I_33_without_motor": 0.03357677448398252, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.083506029929044, "trigger": 800, "sampling_rate": 105, "lag": 1.3912694061643067, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.021286112929839, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6373795999017506, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5247.132713335652, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032931380754930094, "grain_number": 5, "grain_density": 1777.3820684552834, "grain_outer_radius": 0.033001590214142104, "grain_initial_inner_radius": 0.015526252930195737, "grain_initial_height": 0.12154295190015353, "grain_separation": 0.005462553991543667, "grains_center_of_mass_position": 0.39630772529349245, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010928917083528656, "throat_radius": 0.011181038746874657, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545788708915648}], "aerodynamic_surfaces": [{"length": 0.5572497338084648, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132556844391806]}, {"n": 4, "root_chord": 0.12008020981954462, "tip_chord": 0.06053820799832921, "span": 0.1093882958155217, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495523277248784]}, {"top_radius": 0.06627234503111519, "bottom_radius": 0.04382574083850106, "length": 0.061792079511489406, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991025507314863, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181065970212193, "upper_button_position": 0.08099595371026702}], "rail_length": 5, "inclination": 85.86492232262272, "heading": 52.490169655090554} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0634939815355175, "mass": 15.329875290323132, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3307045271093685, "I_33_without_motor": 0.022327686401332567, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.1237439977447, "trigger": 800, "sampling_rate": 105, "lag": 1.4347696058641892, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9504026068124831, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2772778718330542, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7080.587066248335, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033143912031817616, "grain_number": 5, "grain_density": 1802.8830342083227, "grain_outer_radius": 0.03286397094577301, "grain_initial_inner_radius": 0.01459513803457116, "grain_initial_height": 0.12149933269879773, "grain_separation": 0.0060083429833623645, "grains_center_of_mass_position": 0.39626802136741046, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005345433611924197, "throat_radius": 0.010571658607083168, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541084353149832}], "aerodynamic_surfaces": [{"length": 0.5571218777646483, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353038594954947]}, {"n": 4, "root_chord": 0.12013437093060081, "tip_chord": 0.060216745300799214, "span": 0.11030855587794755, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507965957064127]}, {"top_radius": 0.06115095118457271, "bottom_radius": 0.042607036473312085, "length": 0.06047517364384806, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998054679540163, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177859474728717, "upper_button_position": 0.08201952048114458}], "rail_length": 5, "inclination": 83.38992673572281, "heading": 57.368519070760584} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06350498676150015, "mass": 15.252724296795435, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326982011295545, "I_33_without_motor": 0.03192006992802345, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.829754613792518, "trigger": 800, "sampling_rate": 105, "lag": 1.425097663808463, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9908255437460632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5924134393610974, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6920.14183928246, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032874140868571766, "grain_number": 5, "grain_density": 1839.8017533201273, "grain_outer_radius": 0.03300206423011459, "grain_initial_inner_radius": 0.015001025490595881, "grain_initial_height": 0.11952065041981544, "grain_separation": 0.00470401136743949, "grains_center_of_mass_position": 0.3980918460532584, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000265300901733157, "throat_radius": 0.011437813516791427, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553476679563809}], "aerodynamic_surfaces": [{"length": 0.558955186264099, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133371941946218]}, {"n": 4, "root_chord": 0.12032328396896387, "tip_chord": 0.059254947860573004, "span": 0.10937701141937076, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488861561927585]}, {"top_radius": 0.06375682875167882, "bottom_radius": 0.043369908232038096, "length": 0.06196181962999482, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6984175009504835, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618933093153899, "upper_button_position": 0.0794844077965845}], "rail_length": 5, "inclination": 85.05481642268751, "heading": 52.57051335700377} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350654691260442, "mass": 14.274072333429258, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322853558215824, "I_33_without_motor": 0.04326359806733187, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.965513084371123, "trigger": 800, "sampling_rate": 105, "lag": 1.5611728806373075, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0055960989671586, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5569021431254133, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7544.929245051597, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03320967710109399, "grain_number": 5, "grain_density": 1794.4606565028873, "grain_outer_radius": 0.03335440791619713, "grain_initial_inner_radius": 0.015026606229068581, "grain_initial_height": 0.1203828848519899, "grain_separation": 0.0039004937605432587, "grains_center_of_mass_position": 0.3960161087611935, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006853927378163195, "throat_radius": 0.010999288956930578, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552602015468879}], "aerodynamic_surfaces": [{"length": 0.5586811410233152, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343282375785495]}, {"n": 4, "root_chord": 0.12013814737419574, "tip_chord": 0.06111102280783545, "span": 0.11109912913431072, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494281621515278]}, {"top_radius": 0.06238800298673263, "bottom_radius": 0.043345579272526795, "length": 0.06165236117690342, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991287762072756, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190897582317629, "upper_button_position": 0.08003901797551272}], "rail_length": 5, "inclination": 83.36097832817975, "heading": 50.764934160165126} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350060063325656, "mass": 15.024907270229622, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3250424708446635, "I_33_without_motor": 0.034164968366050576, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.987319308232495, "trigger": 800, "sampling_rate": 105, "lag": 1.5979144304866133, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9991013727768943, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7372354279599707, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8574.79158107899, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03369806939217771, "grain_number": 5, "grain_density": 1809.343097072442, "grain_outer_radius": 0.033598758276012414, "grain_initial_inner_radius": 0.015131965485573577, "grain_initial_height": 0.11973471656281982, "grain_separation": 0.007093400304202855, "grains_center_of_mass_position": 0.39724502864815386, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016099073865525905, "throat_radius": 0.010047581028731207, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539733565348599}], "aerodynamic_surfaces": [{"length": 0.557706176072713, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1359830561818518]}, {"n": 4, "root_chord": 0.12001561442860179, "tip_chord": 0.06068860519870161, "span": 0.11027706405357666, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05008335206389]}, {"top_radius": 0.06168147533121061, "bottom_radius": 0.04477985104691849, "length": 0.059591040462179834, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700445107137892, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188464141040615, "upper_button_position": 0.0815986930338305}], "rail_length": 5, "inclination": 82.96024395138907, "heading": 50.86603855670547} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350814843861219, "mass": 15.01623689470428, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327412533609545, "I_33_without_motor": 0.03805127602871696, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.12415851139736, "trigger": 800, "sampling_rate": 105, "lag": 1.484431550248838, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9232930417549374, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6574778564337316, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7592.105947465932, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288539570374778, "grain_number": 5, "grain_density": 1888.8446223885444, "grain_outer_radius": 0.03342896053037331, "grain_initial_inner_radius": 0.015337658445250786, "grain_initial_height": 0.12042125777429749, "grain_separation": 0.0052358817803733505, "grains_center_of_mass_position": 0.39630506393287096, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001331525527758988, "throat_radius": 0.01140634699781425, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254439502418412}], "aerodynamic_surfaces": [{"length": 0.5584613573652054, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355674520926353]}, {"n": 4, "root_chord": 0.11979706479210994, "tip_chord": 0.05945909784020512, "span": 0.1100407845668622, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506621671765415]}, {"top_radius": 0.06386870128974473, "bottom_radius": 0.04258737945216101, "length": 0.060595124030140335, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6977700496761323, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176385480196559, "upper_button_position": 0.08013150165647642}], "rail_length": 5, "inclination": 84.07082768116214, "heading": 55.60510505763449} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349681454561956, "mass": 15.657008986850087, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317599278812524, "I_33_without_motor": 0.013043487625352505, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.978950062129996, "trigger": 800, "sampling_rate": 105, "lag": 1.649364106461425, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9922363123471362, "trigger": "apogee", "sampling_rate": 105, "lag": 1.71214279702766, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7588.790264836532, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032405758325625936, "grain_number": 5, "grain_density": 1799.2941153926593, "grain_outer_radius": 0.032479434859067034, "grain_initial_inner_radius": 0.014176389810615583, "grain_initial_height": 0.12148644890060797, "grain_separation": 0.005965790980462173, "grains_center_of_mass_position": 0.3958993257203721, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006573596852705734, "throat_radius": 0.011178142896523023, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568717304123214}], "aerodynamic_surfaces": [{"length": 0.5577386351694666, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338452112060513]}, {"n": 4, "root_chord": 0.12003764220707996, "tip_chord": 0.0596489055434666, "span": 0.11081013639379646, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501045597222607]}, {"top_radius": 0.06344602119249476, "bottom_radius": 0.041420550648155564, "length": 0.06141565977045582, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003247972590657, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168002348278276, "upper_button_position": 0.08352456243123807}], "rail_length": 5, "inclination": 85.25613522897403, "heading": 53.92238957102799} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349255118148733, "mass": 15.952080567162133, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331614199500396, "I_33_without_motor": 0.038159128509150965, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02781945904981, "trigger": 800, "sampling_rate": 105, "lag": 1.2478364663874457, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9404717019768074, "trigger": "apogee", "sampling_rate": 105, "lag": 1.393678550592716, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6083.402509768985, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324001520700924, "grain_number": 5, "grain_density": 1800.9804983206377, "grain_outer_radius": 0.03310401099552012, "grain_initial_inner_radius": 0.014810182938658501, "grain_initial_height": 0.12000484030423092, "grain_separation": 0.006602029655695622, "grains_center_of_mass_position": 0.3962269740966182, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00046794661235728815, "throat_radius": 0.01153287611089921, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2532520903619908}], "aerodynamic_surfaces": [{"length": 0.5598567349787918, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330218638940073]}, {"n": 4, "root_chord": 0.11965069639715936, "tip_chord": 0.059913176478604425, "span": 0.10958546180341325, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0474915140003858]}, {"top_radius": 0.06201277517137339, "bottom_radius": 0.043571645936166935, "length": 0.057157170552366576, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990096803468071, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168596862313143, "upper_button_position": 0.08214999411549284}], "rail_length": 5, "inclination": 85.32656968553178, "heading": 52.29639051116641} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348963599754859, "mass": 15.833633255480917, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32684092200393, "I_33_without_motor": 0.04517143218921579, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.040091156994853, "trigger": 800, "sampling_rate": 105, "lag": 1.4398566878700634, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0119264243780015, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6662429307652906, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6694.155946200096, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033592709497458906, "grain_number": 5, "grain_density": 1816.212944747175, "grain_outer_radius": 0.033355158513835595, "grain_initial_inner_radius": 0.014857602429738865, "grain_initial_height": 0.12074261351928582, "grain_separation": 0.005928084898527838, "grains_center_of_mass_position": 0.3967151074546896, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029084433295544865, "throat_radius": 0.0124113143722962, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565059816975497}], "aerodynamic_surfaces": [{"length": 0.5590640695947825, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334680199947134]}, {"n": 4, "root_chord": 0.1193717940083471, "tip_chord": 0.060198916266791615, "span": 0.10978278451243763, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499999122354762]}, {"top_radius": 0.06416024726461424, "bottom_radius": 0.04285942933612479, "length": 0.05821186991068735, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985779075488208, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.615341865160676, "upper_button_position": 0.08323604238814475}], "rail_length": 5, "inclination": 85.2415832419164, "heading": 52.55376611938792} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349982726504964, "mass": 14.850692676261767, "I_11_without_motor": 6.321, "I_22_without_motor": 6.340421057378651, "I_33_without_motor": 0.030518330635920753, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.7139318764395, "trigger": 800, "sampling_rate": 105, "lag": 1.5071587556854227, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9429034858334557, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6480422092371556, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6183.259517971767, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269204632740705, "grain_number": 5, "grain_density": 1822.3647004230552, "grain_outer_radius": 0.0329177073712216, "grain_initial_inner_radius": 0.014868818657378385, "grain_initial_height": 0.11972119440043649, "grain_separation": 0.005481554556168601, "grains_center_of_mass_position": 0.39685073088488365, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018277572502043242, "throat_radius": 0.010965397636258123, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545671746977871}], "aerodynamic_surfaces": [{"length": 0.5589275077424738, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337361088362183]}, {"n": 4, "root_chord": 0.12014298834942572, "tip_chord": 0.06033632970052384, "span": 0.1097679475402059, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482884150025935]}, {"top_radius": 0.06164631187473027, "bottom_radius": 0.04245320561948261, "length": 0.05971599843789648, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991617303045304, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168479445993612, "upper_button_position": 0.08231378570516923}], "rail_length": 5, "inclination": 84.26328101710718, "heading": 52.847317729421746} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06348961696074257, "mass": 14.762502643296504, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323899630408878, "I_33_without_motor": 0.01716825882524037, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96324282405784, "trigger": 800, "sampling_rate": 105, "lag": 1.307990845474822, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.035629207931493, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5884305468132787, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6404.045967867098, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297734096444751, "grain_number": 5, "grain_density": 1772.4414829820603, "grain_outer_radius": 0.03244530628290334, "grain_initial_inner_radius": 0.014944489441981425, "grain_initial_height": 0.11891175461928455, "grain_separation": 0.005492414715564952, "grains_center_of_mass_position": 0.3987160389798371, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016200157594488842, "throat_radius": 0.011024779332645906, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553427198573264}], "aerodynamic_surfaces": [{"length": 0.5595737632683186, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1363407227624391]}, {"n": 4, "root_chord": 0.11961895880845279, "tip_chord": 0.060015631837771616, "span": 0.10974008528435433, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.05000316271606]}, {"top_radius": 0.06339008743536641, "bottom_radius": 0.04232301973570938, "length": 0.06095196840912867, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008712751541119, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183457624011329, "upper_button_position": 0.08252551275297892}], "rail_length": 5, "inclination": 85.04242683961897, "heading": 51.3118982024674} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06350693393025973, "mass": 15.653793168968564, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338787906447294, "I_33_without_motor": 0.03317215227187442, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.926149532257432, "trigger": 800, "sampling_rate": 105, "lag": 1.368338372365203, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0581665428047653, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6855816089917823, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7579.077131703077, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326459970497018, "grain_number": 5, "grain_density": 1753.4895895366653, "grain_outer_radius": 0.032645983732726355, "grain_initial_inner_radius": 0.015053788696174594, "grain_initial_height": 0.12071411502660939, "grain_separation": 0.002836491889920005, "grains_center_of_mass_position": 0.39624698250186485, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0004367023247698575, "throat_radius": 0.011091881260176862, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544053600616187}], "aerodynamic_surfaces": [{"length": 0.5572865082505858, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344628804353747]}, {"n": 4, "root_chord": 0.12052644060881815, "tip_chord": 0.05972677349819634, "span": 0.11000710097005355, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04897813335901]}, {"top_radius": 0.06240617305997305, "bottom_radius": 0.043178253938735804, "length": 0.058684597174831994, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997737235337215, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617601448288918, "upper_button_position": 0.08217227524480342}], "rail_length": 5, "inclination": 83.41447628569738, "heading": 50.56234117134712} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350219525930936, "mass": 16.345764588017737, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3017773998120346, "I_33_without_motor": 0.03861301404154587, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034442234061197, "trigger": 800, "sampling_rate": 105, "lag": 1.4621360538300565, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9735641854679897, "trigger": "apogee", "sampling_rate": 105, "lag": 1.794096740771696, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7225.938582444589, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03221864678909922, "grain_number": 5, "grain_density": 1798.6395130444532, "grain_outer_radius": 0.03271493100527838, "grain_initial_inner_radius": 0.014890920863867176, "grain_initial_height": 0.12008119198124798, "grain_separation": 0.006134330500048318, "grains_center_of_mass_position": 0.3965521534194721, "center_of_dry_mass_position": 0.317, "nozzle_position": 4.126590654644889e-05, "throat_radius": 0.011614538749104824, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538558746964796}], "aerodynamic_surfaces": [{"length": 0.5600059666832065, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1334648001733272]}, {"n": 4, "root_chord": 0.12057982946875817, "tip_chord": 0.06010142177196212, "span": 0.10946251962390337, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491318996180696]}, {"top_radius": 0.06247710736108209, "bottom_radius": 0.04513984437470749, "length": 0.0597060923026252, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992507529427259, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171932000582441, "upper_button_position": 0.0820575528844818}], "rail_length": 5, "inclination": 83.12088335626277, "heading": 53.58158154086769} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349753853568295, "mass": 15.361320047859783, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31439283073498, "I_33_without_motor": 0.023974560179053063, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.952360213843088, "trigger": 800, "sampling_rate": 105, "lag": 1.6440535616274876, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0272043606890533, "trigger": "apogee", "sampling_rate": 105, "lag": 1.653876313428423, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5043.135512240812, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316807963120401, "grain_number": 5, "grain_density": 1780.4167541220659, "grain_outer_radius": 0.03280066943414726, "grain_initial_inner_radius": 0.014793136189493598, "grain_initial_height": 0.1198708573780387, "grain_separation": 0.003118782331295109, "grains_center_of_mass_position": 0.3964959977074485, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00014559297233984704, "throat_radius": 0.01067426664194274, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255368568857086}], "aerodynamic_surfaces": [{"length": 0.5564692510824859, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329907322542208]}, {"n": 4, "root_chord": 0.11995938670853666, "tip_chord": 0.06050833113981689, "span": 0.11093169768893611, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496494936584753]}, {"top_radius": 0.06413957814267199, "bottom_radius": 0.04331974940696474, "length": 0.060527523331030945, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7034414384562859, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180084569799343, "upper_button_position": 0.08543298147635159}], "rail_length": 5, "inclination": 84.16090135260424, "heading": 52.495263844328306} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349170701447476, "mass": 15.269276265823631, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311616583951422, "I_33_without_motor": 0.032649837134475265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96338954171749, "trigger": 800, "sampling_rate": 105, "lag": 1.490351174476692, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8162224667726153, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7274187764190956, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7418.682718021365, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03185258992833788, "grain_number": 5, "grain_density": 1857.1634464209556, "grain_outer_radius": 0.03361688219758054, "grain_initial_inner_radius": 0.014460429273004262, "grain_initial_height": 0.12041466610643413, "grain_separation": 0.006115850359775977, "grains_center_of_mass_position": 0.3962833178054923, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010681541095757716, "throat_radius": 0.010796672082031604, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552775971444574}], "aerodynamic_surfaces": [{"length": 0.5597088491813161, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337791309555472]}, {"n": 4, "root_chord": 0.11945172688427091, "tip_chord": 0.05936056479702222, "span": 0.11000358628373601, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501039309160527]}, {"top_radius": 0.061924615554506846, "bottom_radius": 0.0425425044234355, "length": 0.060724237611224384, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011089086571693, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6158369300156876, "upper_button_position": 0.08527197864148173}], "rail_length": 5, "inclination": 83.15590468402675, "heading": 53.871365823703606} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349007940634213, "mass": 14.852596603322437, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319704008933647, "I_33_without_motor": 0.03998404704789626, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.0524300597014, "trigger": 800, "sampling_rate": 105, "lag": 1.4878486865006244, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0558842213938457, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4509026635938902, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7114.9234309273, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0338608913049029, "grain_number": 5, "grain_density": 1825.9404697037291, "grain_outer_radius": 0.03311888456958063, "grain_initial_inner_radius": 0.014933724336906642, "grain_initial_height": 0.12024446255847544, "grain_separation": 0.004507476746225945, "grains_center_of_mass_position": 0.3970828536131364, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0016247799944199553, "throat_radius": 0.010827068083552311, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546813565000705}], "aerodynamic_surfaces": [{"length": 0.5576785548145522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347192754659077]}, {"n": 4, "root_chord": 0.12023873398708239, "tip_chord": 0.059029397232852256, "span": 0.11024150219477845, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505791098679012]}, {"top_radius": 0.06375463174425351, "bottom_radius": 0.04273245366961173, "length": 0.06050442101821287, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700336842414776, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176359913992298, "upper_button_position": 0.08270085101554625}], "rail_length": 5, "inclination": 84.52638775334538, "heading": 51.91826404045812} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349948456781171, "mass": 15.969592707410502, "I_11_without_motor": 6.321, "I_22_without_motor": 6.311966774972092, "I_33_without_motor": 0.04055961857731207, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.925959530644839, "trigger": 800, "sampling_rate": 105, "lag": 1.4346356310322728, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0726659625128128, "trigger": "apogee", "sampling_rate": 105, "lag": 1.539395445164566, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6163.038079030317, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286187178632795, "grain_number": 5, "grain_density": 1819.3231677315368, "grain_outer_radius": 0.03333558121217986, "grain_initial_inner_radius": 0.014646429409323126, "grain_initial_height": 0.12120410502167196, "grain_separation": 0.005422185996920705, "grains_center_of_mass_position": 0.3963311661971493, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.3883088130130534e-05, "throat_radius": 0.010562199728360127, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255394009800614}], "aerodynamic_surfaces": [{"length": 0.5576142737385192, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352516878904262]}, {"n": 4, "root_chord": 0.11969486691635217, "tip_chord": 0.06028238779371673, "span": 0.10991801445428175, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492552922709086]}, {"top_radius": 0.06425213215534084, "bottom_radius": 0.04458282040624673, "length": 0.06078776641660419, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994078697348463, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171917445361231, "upper_button_position": 0.08221612519872312}], "rail_length": 5, "inclination": 84.44465373385242, "heading": 54.074203464693525} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350143811241475, "mass": 15.646624561618955, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329627152220285, "I_33_without_motor": 0.04343286824236965, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.095055719573338, "trigger": 800, "sampling_rate": 105, "lag": 1.5028120183954978, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0527983453312597, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5545575911553198, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6064.143575878848, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03219889079712718, "grain_number": 5, "grain_density": 1795.477633804851, "grain_outer_radius": 0.032878451264549025, "grain_initial_inner_radius": 0.014718633096158522, "grain_initial_height": 0.11911131279707235, "grain_separation": 0.004344759067100065, "grains_center_of_mass_position": 0.3970459835125613, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00010241361712967982, "throat_radius": 0.011083817158634221, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557768300284127}], "aerodynamic_surfaces": [{"length": 0.5574317492085702, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354425217535329]}, {"n": 4, "root_chord": 0.12012178583675755, "tip_chord": 0.060098596831507964, "span": 0.11034332009184132, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487262200178193]}, {"top_radius": 0.062022537193254325, "bottom_radius": 0.04478997489984398, "length": 0.058851757511830846, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986108277416231, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184010250481559, "upper_button_position": 0.08020980269346722}], "rail_length": 5, "inclination": 83.26707322086293, "heading": 54.65064225977739} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06350341926459467, "mass": 15.514816332542367, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3203245628210345, "I_33_without_motor": 0.03378367428067653, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.892190012693451, "trigger": 800, "sampling_rate": 105, "lag": 1.485909099155713, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0955238863518235, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3452131825488043, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7725.22331869333, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033239066395353234, "grain_number": 5, "grain_density": 1800.6397808001143, "grain_outer_radius": 0.03318673129383161, "grain_initial_inner_radius": 0.014832902927686792, "grain_initial_height": 0.1196445162152898, "grain_separation": 0.0061884029251012855, "grains_center_of_mass_position": 0.3962214257123697, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005392835915746008, "throat_radius": 0.012191246559152146, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2571962140285386}], "aerodynamic_surfaces": [{"length": 0.5574969436270555, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134446111223119]}, {"n": 4, "root_chord": 0.11898947363973067, "tip_chord": 0.05953404643318213, "span": 0.10974788962272496, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499654814837698]}, {"top_radius": 0.06366288957514385, "bottom_radius": 0.04310286319632491, "length": 0.05959430610142761, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007482674223571, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168700062408585, "upper_button_position": 0.08387826118149855}], "rail_length": 5, "inclination": 84.9036206790689, "heading": 56.494590339143826} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350094476945155, "mass": 16.076077674986028, "I_11_without_motor": 6.321, "I_22_without_motor": 6.302233899440365, "I_33_without_motor": 0.03132447335517504, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.841220893203534, "trigger": 800, "sampling_rate": 105, "lag": 1.5636538582288617, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8766531825247905, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6500264188950406, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5123.963005979607, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03285138839306838, "grain_number": 5, "grain_density": 1761.2055268773072, "grain_outer_radius": 0.03305097864688271, "grain_initial_inner_radius": 0.014699191696304336, "grain_initial_height": 0.12000206492193734, "grain_separation": 0.003908309335141494, "grains_center_of_mass_position": 0.3978549630414909, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00030841834748300995, "throat_radius": 0.01092107240486935, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256045125406628}], "aerodynamic_surfaces": [{"length": 0.5573576548882113, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134127403972539]}, {"n": 4, "root_chord": 0.1204653497793899, "tip_chord": 0.05988230202407009, "span": 0.11090214011880939, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497357573067077]}, {"top_radius": 0.06546275634497588, "bottom_radius": 0.04421703140529115, "length": 0.05917888311031648, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002169743667717, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187551617991888, "upper_button_position": 0.08146181256758289}], "rail_length": 5, "inclination": 84.93371384478274, "heading": 51.54515749691248} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06350022686947634, "mass": 15.219446281212782, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315857704183064, "I_33_without_motor": 0.023027278328394903, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.140687061179491, "trigger": 800, "sampling_rate": 105, "lag": 1.4126863480497065, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0346084777703117, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4262047378644889, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5298.07328953655, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033925211335158564, "grain_number": 5, "grain_density": 1812.0622431591544, "grain_outer_radius": 0.03264020177723622, "grain_initial_inner_radius": 0.015570158260556709, "grain_initial_height": 0.11892509103094723, "grain_separation": 0.005987195153121736, "grains_center_of_mass_position": 0.3983692244099332, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00021933668990550554, "throat_radius": 0.012018128434416105, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569262486266704}], "aerodynamic_surfaces": [{"length": 0.5593898371670356, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350112097995748]}, {"n": 4, "root_chord": 0.12011223747075644, "tip_chord": 0.05942146396776225, "span": 0.10929913347266089, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487300602984668]}, {"top_radius": 0.06400784171019958, "bottom_radius": 0.04293092311255249, "length": 0.05996953409163521, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005475549597595, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171372770006576, "upper_button_position": 0.08341027795910194}], "rail_length": 5, "inclination": 83.44087010144703, "heading": 53.116268332814435} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06348255036854455, "mass": 14.89564221466444, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3386269056686935, "I_33_without_motor": 0.020197600145860202, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.009017396554318, "trigger": 800, "sampling_rate": 105, "lag": 1.5390326415195543, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0251610613432005, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1789052389807284, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4391.165116599692, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311606110232566, "grain_number": 5, "grain_density": 1828.9384279170604, "grain_outer_radius": 0.032420246441152864, "grain_initial_inner_radius": 0.01536412283123792, "grain_initial_height": 0.12121974811396331, "grain_separation": 0.005555589229462452, "grains_center_of_mass_position": 0.39688337148053565, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0022899586112593052, "throat_radius": 0.011777559828471628, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551047562563566}], "aerodynamic_surfaces": [{"length": 0.5568054787045632, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339382653826962]}, {"n": 4, "root_chord": 0.11930595814865289, "tip_chord": 0.05971902762549324, "span": 0.10981983062088087, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503690748245056]}, {"top_radius": 0.06229057410775477, "bottom_radius": 0.044333427463297596, "length": 0.060233319799250576, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999179055904055, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616841954008743, "upper_button_position": 0.08307595158166248}], "rail_length": 5, "inclination": 85.5659110989493, "heading": 55.383569721441226} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350522035017904, "mass": 16.072143400334223, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320197941966351, "I_33_without_motor": 0.03338678321651833, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10772889829035, "trigger": 800, "sampling_rate": 105, "lag": 1.6236507999663121, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1091320113307177, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4239203847085717, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5971.870282528415, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288999732680017, "grain_number": 5, "grain_density": 1791.3340709380486, "grain_outer_radius": 0.03308146028791858, "grain_initial_inner_radius": 0.015046208016487806, "grain_initial_height": 0.1208512611234587, "grain_separation": 0.005405543954362592, "grains_center_of_mass_position": 0.3972203768397721, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007980152628301942, "throat_radius": 0.010621009873400408, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536018173016106}], "aerodynamic_surfaces": [{"length": 0.556524318003486, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344229319020127]}, {"n": 4, "root_chord": 0.11952358339528411, "tip_chord": 0.06002975962290066, "span": 0.10878708972380656, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499432339894763]}, {"top_radius": 0.06404411509768358, "bottom_radius": 0.04396160589259769, "length": 0.06186276949195763, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003470850138712, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200086432111281, "upper_button_position": 0.08033844180274308}], "rail_length": 5, "inclination": 84.90568141787544, "heading": 54.20283794286391} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349585646715342, "mass": 15.383547643783388, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33652463678772, "I_33_without_motor": 0.027884809144014172, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.284150005130899, "trigger": 800, "sampling_rate": 105, "lag": 1.503416601005016, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.004157401328798, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5262102746470814, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6869.8636473316155, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032600783117128024, "grain_number": 5, "grain_density": 1788.7813381516341, "grain_outer_radius": 0.03265703245187211, "grain_initial_inner_radius": 0.014781576899592924, "grain_initial_height": 0.11853004877844903, "grain_separation": 0.006312284429201256, "grains_center_of_mass_position": 0.3963041702884801, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011266360247319705, "throat_radius": 0.011281038037347204, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568936470728147}], "aerodynamic_surfaces": [{"length": 0.558024221094414, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332265557517782]}, {"n": 4, "root_chord": 0.11988660872098263, "tip_chord": 0.06010645502806775, "span": 0.11023395847622273, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0478185607020436]}, {"top_radius": 0.06299021950951618, "bottom_radius": 0.04169110224962128, "length": 0.05973023892409095, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001794209409233, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172344772701003, "upper_button_position": 0.08294494367082306}], "rail_length": 5, "inclination": 85.23547380616614, "heading": 56.065506164469504} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0635021838014969, "mass": 14.509114406482713, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314380366840704, "I_33_without_motor": 0.02859143417763071, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.929610280996304, "trigger": 800, "sampling_rate": 105, "lag": 1.6104622120099263, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9148041863718875, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6040058448580614, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6893.929741726154, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03352832060047448, "grain_number": 5, "grain_density": 1900.7564451992869, "grain_outer_radius": 0.032623528899285006, "grain_initial_inner_radius": 0.014912910997678977, "grain_initial_height": 0.12068081105198303, "grain_separation": 0.004829977951423869, "grains_center_of_mass_position": 0.39598170423817347, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00039285715784000434, "throat_radius": 0.011467406128533237, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559180725038077}], "aerodynamic_surfaces": [{"length": 0.5597870517345551, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338711496729794]}, {"n": 4, "root_chord": 0.12044750974267188, "tip_chord": 0.059959393416186016, "span": 0.10904340579546419, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506682022225677]}, {"top_radius": 0.06399245476839452, "bottom_radius": 0.044079832967730756, "length": 0.06033655930808894, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991572283682476, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164227904727404, "upper_button_position": 0.08273443789550716}], "rail_length": 5, "inclination": 82.54824748175704, "heading": 51.88809454892665} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350056023617563, "mass": 15.586985552795625, "I_11_without_motor": 6.321, "I_22_without_motor": 6.334697034747512, "I_33_without_motor": 0.03872618524443987, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.830950961681982, "trigger": 800, "sampling_rate": 105, "lag": 1.4990670571758533, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0789307632405547, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2988760124001968, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7305.8697156475555, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03255861877334209, "grain_number": 5, "grain_density": 1813.5502790587982, "grain_outer_radius": 0.0327822205865378, "grain_initial_inner_radius": 0.014944271363481598, "grain_initial_height": 0.11987679191246527, "grain_separation": 0.003814888276549456, "grains_center_of_mass_position": 0.3965730965040341, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007189646005297115, "throat_radius": 0.01157043894877108, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563021230805744}], "aerodynamic_surfaces": [{"length": 0.5581554282234408, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354439172967907]}, {"n": 4, "root_chord": 0.11969398618747722, "tip_chord": 0.05882220045034296, "span": 0.1101500284096732, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504341004775823]}, {"top_radius": 0.0635341857599956, "bottom_radius": 0.043626799581807686, "length": 0.058983013901412855, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989755229236322, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61994762669867, "upper_button_position": 0.0790278962249622}], "rail_length": 5, "inclination": 85.62632256854442, "heading": 54.306546309028164} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350623866543986, "mass": 15.586072073346807, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3236947784498385, "I_33_without_motor": 0.022946748848085313, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.907728670266899, "trigger": 800, "sampling_rate": 105, "lag": 1.6430237362436586, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0219026720488864, "trigger": "apogee", "sampling_rate": 105, "lag": 1.431648440464049, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5850.638906508589, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033466873321103326, "grain_number": 5, "grain_density": 1776.73210392521, "grain_outer_radius": 0.03219580487970277, "grain_initial_inner_radius": 0.01481481491240747, "grain_initial_height": 0.11968671250672794, "grain_separation": 0.006666351861652281, "grains_center_of_mass_position": 0.3952721295285676, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001116526968171517, "throat_radius": 0.011457900325698142, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256198857096103}], "aerodynamic_surfaces": [{"length": 0.5572003195938648, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134233839016577]}, {"n": 4, "root_chord": 0.11974486880485247, "tip_chord": 0.058936967072073215, "span": 0.10974916924503135, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050251484690901]}, {"top_radius": 0.06308525064357288, "bottom_radius": 0.04261673208620656, "length": 0.06018949541582139, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003374279152815, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177508192191602, "upper_button_position": 0.08258660869612133}], "rail_length": 5, "inclination": 86.03622667080964, "heading": 54.755223419029846} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350805313235827, "mass": 16.308207793856248, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335971334951153, "I_33_without_motor": 0.03208127962862695, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.077347365226576, "trigger": 800, "sampling_rate": 105, "lag": 1.561721294177862, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0701632044421165, "trigger": "apogee", "sampling_rate": 105, "lag": 1.492601584806737, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5920.650124879704, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03258023943864975, "grain_number": 5, "grain_density": 1890.6504823062298, "grain_outer_radius": 0.03365144865876393, "grain_initial_inner_radius": 0.015393408590632058, "grain_initial_height": 0.12065443142891179, "grain_separation": 0.004555206573805639, "grains_center_of_mass_position": 0.39725246407397224, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015597717327514693, "throat_radius": 0.011118899852199094, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548163787553972}], "aerodynamic_surfaces": [{"length": 0.5589456576533399, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332288129027575]}, {"n": 4, "root_chord": 0.11939086334233504, "tip_chord": 0.05963069864335956, "span": 0.1109113165047654, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0520634612280935]}, {"top_radius": 0.06443723209683516, "bottom_radius": 0.043343973297771766, "length": 0.06052865670642029, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995535402467014, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193123655331909, "upper_button_position": 0.08024117471351044}], "rail_length": 5, "inclination": 84.77749524809398, "heading": 57.38818061833284} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0634902255560756, "mass": 15.401004017063652, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315749170252936, "I_33_without_motor": 0.03196166504261216, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96766037625718, "trigger": 800, "sampling_rate": 105, "lag": 1.5942873356339657, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0334815086633395, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2819149503953413, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5006.532021191199, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0330661841982227, "grain_number": 5, "grain_density": 1804.968513278712, "grain_outer_radius": 0.03334977477065756, "grain_initial_inner_radius": 0.015107601539588294, "grain_initial_height": 0.12043758916937405, "grain_separation": 0.004373399892060262, "grains_center_of_mass_position": 0.3973666533803587, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008642161154340232, "throat_radius": 0.011777825017720006, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554413868002547}], "aerodynamic_surfaces": [{"length": 0.5563957728957125, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351343094430904]}, {"n": 4, "root_chord": 0.12005872062881522, "tip_chord": 0.05916333616586082, "span": 0.11029041902579598, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0477139137796618]}, {"top_radius": 0.06366778389918928, "bottom_radius": 0.042580661320780616, "length": 0.06104639556659164, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993998646855394, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181757130518652, "upper_button_position": 0.08122415163367414}], "rail_length": 5, "inclination": 85.65546404586054, "heading": 51.74253613409866} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349107913516226, "mass": 15.036762109235966, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316897321911492, "I_33_without_motor": 0.018965941171203066, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031713057600765, "trigger": 800, "sampling_rate": 105, "lag": 1.501622139307083, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0384132699213322, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1773640752840089, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8198.016420015381, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03292608508173995, "grain_number": 5, "grain_density": 1781.156390711191, "grain_outer_radius": 0.03269223526817916, "grain_initial_inner_radius": 0.014347447357883831, "grain_initial_height": 0.12057843492284052, "grain_separation": 0.0043636642593452395, "grains_center_of_mass_position": 0.397654093767374, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00025122241158988056, "throat_radius": 0.012125884697834316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529298010934795}], "aerodynamic_surfaces": [{"length": 0.5574945874757115, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344476936549972]}, {"n": 4, "root_chord": 0.12003779590850745, "tip_chord": 0.06058754736495653, "span": 0.10945149191433876, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489721819393265]}, {"top_radius": 0.06445929003052181, "bottom_radius": 0.04443913246473346, "length": 0.05948363601433128, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994305411383963, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177671766909055, "upper_button_position": 0.08166336444749078}], "rail_length": 5, "inclination": 84.92205358305412, "heading": 54.320278559601014} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349822850278489, "mass": 15.384141675212897, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3196798127763945, "I_33_without_motor": 0.031407800372637205, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.852805117076507, "trigger": 800, "sampling_rate": 105, "lag": 1.5747038707033205, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9511396226412068, "trigger": "apogee", "sampling_rate": 105, "lag": 1.492433284486923, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6162.099802734803, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03286278996959193, "grain_number": 5, "grain_density": 1777.7955145902547, "grain_outer_radius": 0.033086435577230205, "grain_initial_inner_radius": 0.014444765448929659, "grain_initial_height": 0.12091683955385277, "grain_separation": 0.00472163486132725, "grains_center_of_mass_position": 0.39763295152101424, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010688976802369452, "throat_radius": 0.011092515151595874, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549900919919998}], "aerodynamic_surfaces": [{"length": 0.5610502023008601, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350422674917713]}, {"n": 4, "root_chord": 0.1202471067092063, "tip_chord": 0.06027657773766662, "span": 0.1105522751785877, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481848366606783]}, {"top_radius": 0.0627241719174301, "bottom_radius": 0.04291521920563745, "length": 0.059901869502398813, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700164316336282, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176744068566521, "upper_button_position": 0.08248990947962986}], "rail_length": 5, "inclination": 86.14527040294311, "heading": 51.587133800406576} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.06349655273957587, "mass": 15.122738155992993, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322581088854303, "I_33_without_motor": 0.03269192718524908, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.054283429995483, "trigger": 800, "sampling_rate": 105, "lag": 1.5123285666938229, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9017465207035057, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6075676692470766, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7009.598161249018, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03370956461389238, "grain_number": 5, "grain_density": 1867.5233184761455, "grain_outer_radius": 0.033475418234491655, "grain_initial_inner_radius": 0.015167043179585693, "grain_initial_height": 0.12011938201700802, "grain_separation": 0.003868971220577935, "grains_center_of_mass_position": 0.3976480254472514, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016970748165672468, "throat_radius": 0.011577467964980891, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537490854562128}], "aerodynamic_surfaces": [{"length": 0.5590101951864903, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322835136025131]}, {"n": 4, "root_chord": 0.11859403755923996, "tip_chord": 0.059975466472066176, "span": 0.10974502090077161, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494411910623942]}, {"top_radius": 0.06218083744815424, "bottom_radius": 0.04484131343127295, "length": 0.059894487099604564, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980707985671561, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184148577592103, "upper_button_position": 0.0796559408079458}], "rail_length": 5, "inclination": 82.77760684222423, "heading": 54.59857653590561} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06349218224371535, "mass": 15.930265278927934, "I_11_without_motor": 6.321, "I_22_without_motor": 6.343840391532211, "I_33_without_motor": 0.03271717654352371, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000010291324665, "trigger": 800, "sampling_rate": 105, "lag": 1.4562614526152746, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9570306034287076, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2652333088673466, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4924.148424153027, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032750622503771906, "grain_number": 5, "grain_density": 1896.1329473634514, "grain_outer_radius": 0.03313327582539743, "grain_initial_inner_radius": 0.014597847282911818, "grain_initial_height": 0.11942918189358756, "grain_separation": 0.0041979901376880445, "grains_center_of_mass_position": 0.39728043402742336, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005311105487375871, "throat_radius": 0.010707507504630889, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254915742318949}], "aerodynamic_surfaces": [{"length": 0.5587808396096327, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344315312251125]}, {"n": 4, "root_chord": 0.11959378503981431, "tip_chord": 0.06078515820753071, "span": 0.11018640476800844, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503396920683499]}, {"top_radius": 0.06518905999835767, "bottom_radius": 0.04331650379916713, "length": 0.05972973938034302, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003690047596121, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196555037005586, "upper_button_position": 0.0807135010590535}], "rail_length": 5, "inclination": 84.17424602007759, "heading": 52.19734097572102} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349637073991747, "mass": 15.047171954782925, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342341740819018, "I_33_without_motor": 0.02573042185537932, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.114133271186779, "trigger": 800, "sampling_rate": 105, "lag": 1.4543289896323617, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0881736251637908, "trigger": "apogee", "sampling_rate": 105, "lag": 1.457892386273052, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6321.718611482829, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03262713582841202, "grain_number": 5, "grain_density": 1852.8690585387071, "grain_outer_radius": 0.03241657700642659, "grain_initial_inner_radius": 0.015504466679762569, "grain_initial_height": 0.12003302313663672, "grain_separation": 0.005598672997532568, "grains_center_of_mass_position": 0.3974067115917463, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00042153320122287916, "throat_radius": 0.010284410037428995, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536501113554415}], "aerodynamic_surfaces": [{"length": 0.5554927212782835, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344632506510166]}, {"n": 4, "root_chord": 0.11956924059173012, "tip_chord": 0.06040863615467017, "span": 0.11105092680053388, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0511494548734883]}, {"top_radius": 0.06277568629450402, "bottom_radius": 0.04369479259097959, "length": 0.06102531456188, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.701363271901832, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196163905649048, "upper_button_position": 0.0817468813369272}], "rail_length": 5, "inclination": 84.58952147142861, "heading": 54.60645604834158} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350279208798737, "mass": 16.35528049825752, "I_11_without_motor": 6.321, "I_22_without_motor": 6.32252400935188, "I_33_without_motor": 0.03651262178187957, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.914278904760303, "trigger": 800, "sampling_rate": 105, "lag": 1.4851260332350953, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0186814025433781, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4954610703562827, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6665.370233407475, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296211199678323, "grain_number": 5, "grain_density": 1791.282028452308, "grain_outer_radius": 0.03295221397737961, "grain_initial_inner_radius": 0.014406774754429825, "grain_initial_height": 0.12077640359967422, "grain_separation": 0.004613723889113465, "grains_center_of_mass_position": 0.3958486250746948, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016633112871552095, "throat_radius": 0.01142234808812357, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553893532107498}], "aerodynamic_surfaces": [{"length": 0.5580293445494583, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332001281329573]}, {"n": 4, "root_chord": 0.11986405705840421, "tip_chord": 0.06033428412724063, "span": 0.10965758243521227, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499200195465621]}, {"top_radius": 0.06461546497300343, "bottom_radius": 0.04388490511913572, "length": 0.06100331830977261, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010904967863142, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176032857961573, "upper_button_position": 0.08348721099015688}], "rail_length": 5, "inclination": 85.23039101790685, "heading": 54.34621161767942} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349682536522064, "mass": 16.134996597171718, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31929869481978, "I_33_without_motor": 0.051665518703847946, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.035948137982873, "trigger": 800, "sampling_rate": 105, "lag": 1.376670158721212, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9715542924762954, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6874406361819072, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7322.469244676233, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324793616752096, "grain_number": 5, "grain_density": 1792.132393442979, "grain_outer_radius": 0.03259528560387068, "grain_initial_inner_radius": 0.015187471827516353, "grain_initial_height": 0.12009250982113848, "grain_separation": 0.005633874338396852, "grains_center_of_mass_position": 0.3965201711017425, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00017694446860596846, "throat_radius": 0.011731524024648242, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2560212827538213}], "aerodynamic_surfaces": [{"length": 0.5589677445337029, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337245747076155]}, {"n": 4, "root_chord": 0.11945013903281211, "tip_chord": 0.06014498183617193, "span": 0.10947759545295442, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049924598896971]}, {"top_radius": 0.06395092032285885, "bottom_radius": 0.04313002932515078, "length": 0.060767648752043504, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996498567972074, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169058635346414, "upper_button_position": 0.08274399326256598}], "rail_length": 5, "inclination": 82.06374338548792, "heading": 51.48649356407317} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349903075690752, "mass": 15.49171943849766, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316486320906441, "I_33_without_motor": 0.01923210571719792, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.82689070944992, "trigger": 800, "sampling_rate": 105, "lag": 1.54425797778648, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0341071096108625, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9834193701638078, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7544.5547907677355, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.034068839291490585, "grain_number": 5, "grain_density": 1803.6574084154925, "grain_outer_radius": 0.0329077753527908, "grain_initial_inner_radius": 0.01506998391091927, "grain_initial_height": 0.11910080153754737, "grain_separation": 0.005259186178943398, "grains_center_of_mass_position": 0.3980874026282038, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000716055841036266, "throat_radius": 0.011410119656136452, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549888936173375}], "aerodynamic_surfaces": [{"length": 0.5573546633333667, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351573512067137]}, {"n": 4, "root_chord": 0.12040562966129353, "tip_chord": 0.05934356363393194, "span": 0.11058003920320916, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491513529268246]}, {"top_radius": 0.06210851303262532, "bottom_radius": 0.04496561642392039, "length": 0.06080651010815288, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005331450520332, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163979732348278, "upper_button_position": 0.08413517181720542}], "rail_length": 5, "inclination": 83.63395980341512, "heading": 54.44180112179608} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.0635031262361717, "mass": 16.047468760991187, "I_11_without_motor": 6.321, "I_22_without_motor": 6.345879434895491, "I_33_without_motor": 0.011053067170135777, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.971612574222394, "trigger": 800, "sampling_rate": 105, "lag": 1.3625153023788137, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.112721563431331, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7074197023083744, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 9207.99471558275, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032885001434231335, "grain_number": 5, "grain_density": 1723.5792260940211, "grain_outer_radius": 0.033502654257490015, "grain_initial_inner_radius": 0.014889166953667115, "grain_initial_height": 0.12156074957799104, "grain_separation": 0.005156264868702743, "grains_center_of_mass_position": 0.39920325630521136, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001295784989700822, "throat_radius": 0.011319893201276876, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554529808778474}], "aerodynamic_surfaces": [{"length": 0.5592476359539431, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133766563374034]}, {"n": 4, "root_chord": 0.12031510897893402, "tip_chord": 0.05990632211681258, "span": 0.10938994053078259, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486641754001165]}, {"top_radius": 0.06608139777791915, "bottom_radius": 0.041993795447005135, "length": 0.06101825174030781, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013666345415582, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170136475374621, "upper_button_position": 0.0843529870040961}], "rail_length": 5, "inclination": 84.9890084201183, "heading": 53.69777104404781} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349041926879147, "mass": 15.215166431616272, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314586821142686, "I_33_without_motor": 0.019573938794276248, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.834219736342966, "trigger": 800, "sampling_rate": 105, "lag": 1.6130875201288228, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1582802919050712, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6252210793832353, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5471.063560603339, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032094022580427824, "grain_number": 5, "grain_density": 1818.149118912906, "grain_outer_radius": 0.033097201862479324, "grain_initial_inner_radius": 0.015128829888748044, "grain_initial_height": 0.1186584940108303, "grain_separation": 0.005743974414761073, "grains_center_of_mass_position": 0.3969404338278629, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0022389924227918605, "throat_radius": 0.01148233715992147, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541128057610686}], "aerodynamic_surfaces": [{"length": 0.5588928870890718, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134708432529406]}, {"n": 4, "root_chord": 0.11941571122694215, "tip_chord": 0.060817208701921255, "span": 0.10971803039322314, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485047978159747]}, {"top_radius": 0.06429503393983606, "bottom_radius": 0.04333153767399474, "length": 0.06022227323683074, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988131911743299, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181841751360335, "upper_button_position": 0.08062901603829642}], "rail_length": 5, "inclination": 85.57070626685427, "heading": 51.72857179072207} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06350002741953943, "mass": 14.393196336949662, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323281393488683, "I_33_without_motor": 0.04138354474812605, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.01790955642248, "trigger": 800, "sampling_rate": 105, "lag": 1.5270100385525087, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.969127949318289, "trigger": "apogee", "sampling_rate": 105, "lag": 0.9356488415437564, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7032.784856732545, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03336494598888432, "grain_number": 5, "grain_density": 1802.639683747887, "grain_outer_radius": 0.03314035294711714, "grain_initial_inner_radius": 0.01480905153868889, "grain_initial_height": 0.12033194119744764, "grain_separation": 0.0053001178586642855, "grains_center_of_mass_position": 0.3968600941205465, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00038610335667140443, "throat_radius": 0.011374291664149333, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2530782417661508}], "aerodynamic_surfaces": [{"length": 0.557786903958555, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1335529862225928]}, {"n": 4, "root_chord": 0.1191874391564594, "tip_chord": 0.060157022796145945, "span": 0.10937469995397915, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501263431687706]}, {"top_radius": 0.06535522620466416, "bottom_radius": 0.04435331465106673, "length": 0.05974233607806447, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700694541075215, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176416114505863, "upper_button_position": 0.08305292962462874}], "rail_length": 5, "inclination": 86.10609504338798, "heading": 52.220823688617244} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349616798103858, "mass": 14.99774279275389, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3162099011043855, "I_33_without_motor": 0.04336465067296501, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.903902626225431, "trigger": 800, "sampling_rate": 105, "lag": 1.4327264832763142, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0960822833459172, "trigger": "apogee", "sampling_rate": 105, "lag": 1.685777899719973, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6177.237670546686, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281230900341281, "grain_number": 5, "grain_density": 1713.2669112558947, "grain_outer_radius": 0.03290323629058031, "grain_initial_inner_radius": 0.014757717255012235, "grain_initial_height": 0.11921201409873332, "grain_separation": 0.0034882200757970095, "grains_center_of_mass_position": 0.3953964001011106, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009939568334998224, "throat_radius": 0.010691203093928002, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542932343895792}], "aerodynamic_surfaces": [{"length": 0.5570493305981077, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339112321000846]}, {"n": 4, "root_chord": 0.12026530962828504, "tip_chord": 0.05990804590057315, "span": 0.1092185380704277, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496760338447593]}, {"top_radius": 0.06363503623842855, "bottom_radius": 0.04387375544091686, "length": 0.06010375732478427, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991797957923287, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190875463615356, "upper_button_position": 0.08009224943079307}], "rail_length": 5, "inclination": 84.3637184086743, "heading": 52.40924440748731} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350215576261904, "mass": 15.245402912293196, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312316641630023, "I_33_without_motor": 0.04064236585248391, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.96779716146748, "trigger": 800, "sampling_rate": 105, "lag": 1.6669163624029237, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0343364786186644, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3475049635363867, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7136.695479540459, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033696030148866185, "grain_number": 5, "grain_density": 1872.8988670766305, "grain_outer_radius": 0.03284672083784759, "grain_initial_inner_radius": 0.015145260133845467, "grain_initial_height": 0.11994299878484305, "grain_separation": 0.005195291255132967, "grains_center_of_mass_position": 0.39614792116194725, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00014874782508465082, "throat_radius": 0.011089707393816513, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559010592180868}], "aerodynamic_surfaces": [{"length": 0.5585602698063168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134137637500166]}, {"n": 4, "root_chord": 0.12056931115565407, "tip_chord": 0.0605721039569775, "span": 0.11002882530112573, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049687131222904]}, {"top_radius": 0.06396477411373017, "bottom_radius": 0.044104252012072444, "length": 0.058476382113345854, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989791614491876, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168724958048627, "upper_button_position": 0.0821066656443249}], "rail_length": 5, "inclination": 85.24729849523317, "heading": 51.252516332447954} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350186846927545, "mass": 14.868070383382134, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3140219831654525, "I_33_without_motor": 0.03662132039727978, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.835373468624299, "trigger": 800, "sampling_rate": 105, "lag": 1.3960712720974393, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0858182599224595, "trigger": "apogee", "sampling_rate": 105, "lag": 1.396888755146761, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8074.960975063832, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03297006725872313, "grain_number": 5, "grain_density": 1925.5190954301238, "grain_outer_radius": 0.032670581499578126, "grain_initial_inner_radius": 0.015465169823752142, "grain_initial_height": 0.11902214353320886, "grain_separation": 0.004006423139380556, "grains_center_of_mass_position": 0.39782952270120425, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007669037628465428, "throat_radius": 0.010517662586152717, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255736499310412}], "aerodynamic_surfaces": [{"length": 0.5596881524037773, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346275225344131]}, {"n": 4, "root_chord": 0.12029414388998326, "tip_chord": 0.05934203637643642, "span": 0.10960417259179488, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485036005158674]}, {"top_radius": 0.06384161938559275, "bottom_radius": 0.04419757275206144, "length": 0.06047269331132665, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983817243185145, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165647336309783, "upper_button_position": 0.08181699068753623}], "rail_length": 5, "inclination": 86.71052027241281, "heading": 55.89338664825568} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350904272407926, "mass": 15.181150480427629, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308414757714207, "I_33_without_motor": 0.05245819110860318, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02012141279867, "trigger": 800, "sampling_rate": 105, "lag": 1.4257660565877188, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.004266270830883, "trigger": "apogee", "sampling_rate": 105, "lag": 1.649562370286267, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5612.869085302207, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03223201749366139, "grain_number": 5, "grain_density": 1886.125151212638, "grain_outer_radius": 0.03358671883305951, "grain_initial_inner_radius": 0.015693020291520938, "grain_initial_height": 0.12020072364842528, "grain_separation": 0.002999064654413721, "grains_center_of_mass_position": 0.39722475907396027, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00021733867324931703, "throat_radius": 0.009910144308404673, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553789949428213}], "aerodynamic_surfaces": [{"length": 0.5562880004779062, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345052373073354]}, {"n": 4, "root_chord": 0.1197493548924454, "tip_chord": 0.06003616360549581, "span": 0.11060203399972841, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049429794173275]}, {"top_radius": 0.06436396632172525, "bottom_radius": 0.04368517202628455, "length": 0.06059409636258515, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999565546095416, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185256509643272, "upper_button_position": 0.08143090364521444}], "rail_length": 5, "inclination": 83.7888036983237, "heading": 54.95662654870604} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349185297238609, "mass": 15.06797644913909, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320685529181232, "I_33_without_motor": 0.02212421324896243, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.08056844493822, "trigger": 800, "sampling_rate": 105, "lag": 1.3917788695481876, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0212139954561588, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3124574573607615, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6374.05286441683, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03323083942642772, "grain_number": 5, "grain_density": 1763.9924090170193, "grain_outer_radius": 0.032562095196976434, "grain_initial_inner_radius": 0.014912482500181122, "grain_initial_height": 0.12046442334568616, "grain_separation": 0.004626983535661905, "grains_center_of_mass_position": 0.39763544378130516, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013945985349976433, "throat_radius": 0.010718037613702498, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557536211213478}], "aerodynamic_surfaces": [{"length": 0.5591103097846798, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330170794027665]}, {"n": 4, "root_chord": 0.12022169494581855, "tip_chord": 0.060723816614065035, "span": 0.1098657160320376, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496722046990392]}, {"top_radius": 0.06322120717391876, "bottom_radius": 0.04334588447189438, "length": 0.06012008261075397, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992827411707924, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183585253906854, "upper_button_position": 0.080924215780107}], "rail_length": 5, "inclination": 82.73266035785124, "heading": 52.70958766454047} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.0635120030353699, "mass": 15.749121496548524, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336089199941068, "I_33_without_motor": 0.03462899966970154, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.191304997454212, "trigger": 800, "sampling_rate": 105, "lag": 1.4906482500242308, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1201969476524078, "trigger": "apogee", "sampling_rate": 105, "lag": 0.8667318859428942, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5779.117869778644, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03331778279738006, "grain_number": 5, "grain_density": 1775.4049999518193, "grain_outer_radius": 0.033603333804368085, "grain_initial_inner_radius": 0.014657298412121012, "grain_initial_height": 0.1203863119649656, "grain_separation": 0.003750277497022844, "grains_center_of_mass_position": 0.39694257649695935, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011481571698173478, "throat_radius": 0.010723984466343185, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2536959277266506}], "aerodynamic_surfaces": [{"length": 0.5585233884112201, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333686311292164]}, {"n": 4, "root_chord": 0.12002685045302482, "tip_chord": 0.060179318077985856, "span": 0.10940772881098258, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050721086588414]}, {"top_radius": 0.06296439027150279, "bottom_radius": 0.044732737403972565, "length": 0.05790599569459755, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699772976864949, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193560100649466, "upper_button_position": 0.08041696680000243}], "rail_length": 5, "inclination": 85.45894020838365, "heading": 56.10936852881742} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349971273470208, "mass": 15.29745555539444, "I_11_without_motor": 6.321, "I_22_without_motor": 6.332488965924626, "I_33_without_motor": 0.022439616248591226, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.10767248726333, "trigger": 800, "sampling_rate": 105, "lag": 1.3318336621007842, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9654667045797534, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2792162299707996, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4695.500259576183, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033214804487555226, "grain_number": 5, "grain_density": 1774.2786443149328, "grain_outer_radius": 0.0323306288075399, "grain_initial_inner_radius": 0.014431451864378676, "grain_initial_height": 0.12037605678189546, "grain_separation": 0.004993326765559623, "grains_center_of_mass_position": 0.39761480979722197, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00211443542705143, "throat_radius": 0.010172166667567508, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552618178042558}], "aerodynamic_surfaces": [{"length": 0.5588877617259796, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135882789471414]}, {"n": 4, "root_chord": 0.12046465992183256, "tip_chord": 0.060430721672960847, "span": 0.11005293618224209, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507119076425933]}, {"top_radius": 0.0640385219308051, "bottom_radius": 0.04416038326901543, "length": 0.06026316243945473, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699822670944963, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198019044177274, "upper_button_position": 0.08002076652723555}], "rail_length": 5, "inclination": 85.26465869566559, "heading": 55.83548641376891} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350223342372846, "mass": 15.498878856334072, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317353303663511, "I_33_without_motor": 0.036837874369028065, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.082018477027741, "trigger": 800, "sampling_rate": 105, "lag": 1.661331780554708, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9940846944003099, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5659575949673132, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6075.889088294865, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03305920320521325, "grain_number": 5, "grain_density": 1726.603572822777, "grain_outer_radius": 0.03278505384635808, "grain_initial_inner_radius": 0.014870165056554988, "grain_initial_height": 0.11912388540031635, "grain_separation": 0.005157532358793799, "grains_center_of_mass_position": 0.396207713404898, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0012052964911367326, "throat_radius": 0.010325615711408836, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558519981925234}], "aerodynamic_surfaces": [{"length": 0.5579823468024954, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344122034495034]}, {"n": 4, "root_chord": 0.11972202701156762, "tip_chord": 0.061297434127762354, "span": 0.10974782951549794, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049039207363457]}, {"top_radius": 0.06463026836514797, "bottom_radius": 0.04504686210623386, "length": 0.05962153433195238, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985796313745639, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182435140907395, "upper_button_position": 0.0803361172838244}], "rail_length": 5, "inclination": 84.18430791074952, "heading": 53.8670053650937} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349581963471108, "mass": 15.807189814663936, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323637665437765, "I_33_without_motor": 0.03458693820230748, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.895572550994446, "trigger": 800, "sampling_rate": 105, "lag": 1.462666577251057, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.951347051776731, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5589837315645725, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6433.708657644878, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03310687309469147, "grain_number": 5, "grain_density": 1922.2292191374968, "grain_outer_radius": 0.0337985961661717, "grain_initial_inner_radius": 0.015104948057317873, "grain_initial_height": 0.12041690494269239, "grain_separation": 0.005277333468699889, "grains_center_of_mass_position": 0.39547770886435424, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0018132252322884364, "throat_radius": 0.011104904001655999, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2562155471956866}], "aerodynamic_surfaces": [{"length": 0.558703993208318, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1319932132419337]}, {"n": 4, "root_chord": 0.1195878292590582, "tip_chord": 0.060292109186720844, "span": 0.11050596026491089, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0483984190853157]}, {"top_radius": 0.06193500060059122, "bottom_radius": 0.04274182651068283, "length": 0.061115817231091836, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990284877106148, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61783665619519, "upper_button_position": 0.08119183151542475}], "rail_length": 5, "inclination": 87.26592606255336, "heading": 53.264457801646806} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06348643744516932, "mass": 15.840727208011767, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312514686557292, "I_33_without_motor": 0.03686907817056506, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.901934402550996, "trigger": 800, "sampling_rate": 105, "lag": 1.4354277418331836, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0025408936450013, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5977637492377175, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6482.500655212018, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03252148194552112, "grain_number": 5, "grain_density": 1840.6197219337628, "grain_outer_radius": 0.03295953395857446, "grain_initial_inner_radius": 0.014825022247712198, "grain_initial_height": 0.12060429956910036, "grain_separation": 0.005915405007624243, "grains_center_of_mass_position": 0.39740995085682396, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011967196481336901, "throat_radius": 0.011471559364735848, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555502121007598}], "aerodynamic_surfaces": [{"length": 0.5590666097985465, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329712693039178]}, {"n": 4, "root_chord": 0.11998209805565323, "tip_chord": 0.06034825511089856, "span": 0.11027475353822155, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487473528630606]}, {"top_radius": 0.06500624543054831, "bottom_radius": 0.04180794801654878, "length": 0.059408009763875905, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009750869996542, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177217232214564, "upper_button_position": 0.08325336377819781}], "rail_length": 5, "inclination": 83.85366984813535, "heading": 53.6429050887685} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349124425440818, "mass": 15.112083026769614, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323351332803507, "I_33_without_motor": 0.04893583843862318, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063032831514189, "trigger": 800, "sampling_rate": 105, "lag": 1.7182923443407616, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.118713908081716, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5246024591613652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5908.451193273962, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033524939054122356, "grain_number": 5, "grain_density": 1783.7354395670452, "grain_outer_radius": 0.03251018007018762, "grain_initial_inner_radius": 0.015616854388982216, "grain_initial_height": 0.12011767758012637, "grain_separation": 0.0036677067411866274, "grains_center_of_mass_position": 0.3972349281675209, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00045246408135949566, "throat_radius": 0.011286731923994008, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256841303672538}], "aerodynamic_surfaces": [{"length": 0.5577354271646128, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336241534249543]}, {"n": 4, "root_chord": 0.11907281341557063, "tip_chord": 0.05963528512023738, "span": 0.10957090800016946, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497482054651763]}, {"top_radius": 0.062034661737699295, "bottom_radius": 0.04368733867971124, "length": 0.06017554197653492, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002244079525168, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170665818281842, "upper_button_position": 0.08315782612433265}], "rail_length": 5, "inclination": 84.15800809011083, "heading": 55.56978199198964} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350138746570784, "mass": 15.543721199550243, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3246480699691, "I_33_without_motor": 0.029436792014123754, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.203106245454531, "trigger": 800, "sampling_rate": 105, "lag": 1.5016614552034848, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9240111057686125, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3804299830441282, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7720.797958424533, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032746796884125025, "grain_number": 5, "grain_density": 1843.5332657624788, "grain_outer_radius": 0.03244438153660775, "grain_initial_inner_radius": 0.01548612453330219, "grain_initial_height": 0.12089157574602989, "grain_separation": 0.006329421077398622, "grains_center_of_mass_position": 0.39686995475375597, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008663859211053944, "throat_radius": 0.010475104678407544, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542009388956594}], "aerodynamic_surfaces": [{"length": 0.5572294698941683, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1355741089022444]}, {"n": 4, "root_chord": 0.12041275565234415, "tip_chord": 0.06039019478302888, "span": 0.11008632025066391, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507758788699337]}, {"top_radius": 0.06361161174019722, "bottom_radius": 0.042911668070208894, "length": 0.0616434627045465, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993402153305868, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167738627686284, "upper_button_position": 0.08256635256195832}], "rail_length": 5, "inclination": 84.92663811186898, "heading": 54.39482517192161} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349429285022636, "mass": 15.384860806631416, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318805501256163, "I_33_without_motor": 0.0373974648464246, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919955117746925, "trigger": 800, "sampling_rate": 105, "lag": 1.6402734155961525, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.078128863663739, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9625092867981884, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6329.705840946106, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03350489532092327, "grain_number": 5, "grain_density": 1827.6840348530645, "grain_outer_radius": 0.033732171823543884, "grain_initial_inner_radius": 0.015457307466871873, "grain_initial_height": 0.1186038965313239, "grain_separation": 0.00550169238317506, "grains_center_of_mass_position": 0.39711597589901465, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016805134581521352, "throat_radius": 0.01071568579818186, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2563640132100637}], "aerodynamic_surfaces": [{"length": 0.5578356280735524, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1349978452480438]}, {"n": 4, "root_chord": 0.11974032651573241, "tip_chord": 0.060319241899165106, "span": 0.10996560792695002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497583990629222]}, {"top_radius": 0.0638955148809407, "bottom_radius": 0.04482185777487687, "length": 0.058921804829465116, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003611786976257, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6157180208668106, "upper_button_position": 0.08464315783081511}], "rail_length": 5, "inclination": 83.94373367333857, "heading": 53.92214649413956} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349772670272846, "mass": 15.482582612943759, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316411475260869, "I_33_without_motor": 0.046688730986972855, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.990419789667035, "trigger": 800, "sampling_rate": 105, "lag": 1.3611648575439965, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0380342677413925, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5938337369038875, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6853.27372174384, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03280600581699356, "grain_number": 5, "grain_density": 1868.379526562975, "grain_outer_radius": 0.033305950575321173, "grain_initial_inner_radius": 0.014797837258916147, "grain_initial_height": 0.11838564239413842, "grain_separation": 0.0046480675700118655, "grains_center_of_mass_position": 0.3965775528158459, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001034305934712942, "throat_radius": 0.011363764944298756, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540366112602466}], "aerodynamic_surfaces": [{"length": 0.5574392443685265, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1321460033854238]}, {"n": 4, "root_chord": 0.11990882481035564, "tip_chord": 0.05935987400052463, "span": 0.11009597596949741, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498123882596666]}, {"top_radius": 0.06274600282742518, "bottom_radius": 0.04212555376768388, "length": 0.05922561278093319, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002455737491704, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176753374208753, "upper_button_position": 0.08257023632829508}], "rail_length": 5, "inclination": 84.14061910258619, "heading": 53.21838327376017} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.0634960649061126, "mass": 15.675144212748652, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323248457300553, "I_33_without_motor": 0.02029794485274672, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.919976660299172, "trigger": 800, "sampling_rate": 105, "lag": 1.5132388261109868, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0415445706262727, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5635019213320913, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5278.9091508522015, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032946297322499936, "grain_number": 5, "grain_density": 1861.2531983620188, "grain_outer_radius": 0.03351390820886444, "grain_initial_inner_radius": 0.015215460460398204, "grain_initial_height": 0.12060382637507575, "grain_separation": 0.0046085614651043254, "grains_center_of_mass_position": 0.3980363226370909, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001168157720815216, "throat_radius": 0.011098764814670611, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551277547423505}], "aerodynamic_surfaces": [{"length": 0.5572868094067054, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1362865587589321]}, {"n": 4, "root_chord": 0.12049834466704791, "tip_chord": 0.05987659731840707, "span": 0.10960309363094019, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494164176237235]}, {"top_radius": 0.06306668995049922, "bottom_radius": 0.04194107457333908, "length": 0.06180990698171799, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994105075665839, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6160038705027849, "upper_button_position": 0.08340663706379892}], "rail_length": 5, "inclination": 85.66267406311431, "heading": 51.45787819813564} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 1, "radius": 0.06350845489362339, "mass": 15.424611606720537, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322292022910234, "I_33_without_motor": 0.042545253476439324, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.046482392995973, "trigger": 800, "sampling_rate": 105, "lag": 1.4477098460913636, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.155540634919288, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5433412709338077, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5302.131310139569, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03206701799006204, "grain_number": 5, "grain_density": 1826.9748530932754, "grain_outer_radius": 0.03277294828158283, "grain_initial_inner_radius": 0.015293876743817249, "grain_initial_height": 0.12155101616708525, "grain_separation": 0.006021210911065103, "grains_center_of_mass_position": 0.39688568976332533, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00023271955593228167, "throat_radius": 0.011126354639008202, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550859444378737}], "aerodynamic_surfaces": [{"length": 0.5588883691789411, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1366278030408252]}, {"n": 4, "root_chord": 0.12015917366970988, "tip_chord": 0.06015235754136332, "span": 0.11024610079405181, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495562402893255]}, {"top_radius": 0.06448593592945724, "bottom_radius": 0.04163671925319328, "length": 0.06173374274636257, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999103340451915, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181375823712159, "upper_button_position": 0.08177275167397569}], "rail_length": 5, "inclination": 83.92731754656515, "heading": 56.75248737897729} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349833039038684, "mass": 15.089658511546455, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331962966788306, "I_33_without_motor": 0.021187341557062346, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92670224886878, "trigger": 800, "sampling_rate": 105, "lag": 1.4826763674527674, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9522182978487527, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2639615113854124, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8467.015651937174, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03290618473441168, "grain_number": 5, "grain_density": 1869.9748196479286, "grain_outer_radius": 0.033214288472407504, "grain_initial_inner_radius": 0.014735689176284783, "grain_initial_height": 0.11947252921659761, "grain_separation": 0.006054042371646541, "grains_center_of_mass_position": 0.39689305222453564, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00016315605611117703, "throat_radius": 0.010774963531305888, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535425480475162}], "aerodynamic_surfaces": [{"length": 0.5577746558415401, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347390150170307]}, {"n": 4, "root_chord": 0.12012159349492359, "tip_chord": 0.059611485730192065, "span": 0.1101886661405589, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049040107447584]}, {"top_radius": 0.06430950471711268, "bottom_radius": 0.042969440344415945, "length": 0.060054292932126115, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990582124569752, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192275446390639, "upper_button_position": 0.07983066781791126}], "rail_length": 5, "inclination": 83.11390198507259, "heading": 55.859964229067984} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06349031731440613, "mass": 15.811846393173754, "I_11_without_motor": 6.321, "I_22_without_motor": 6.342830563572961, "I_33_without_motor": 0.021593986750626227, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034187102716498, "trigger": 800, "sampling_rate": 105, "lag": 1.5211561051291382, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1135164609482338, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7798862855113275, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5992.945621290006, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032047234910175575, "grain_number": 5, "grain_density": 1728.5732015311812, "grain_outer_radius": 0.03316101250418838, "grain_initial_inner_radius": 0.014833247176105445, "grain_initial_height": 0.11698486047951998, "grain_separation": 0.006110691728916127, "grains_center_of_mass_position": 0.3957237205248697, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005568638846256337, "throat_radius": 0.010982623645101566, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541059050409604}], "aerodynamic_surfaces": [{"length": 0.558387266432785, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340092887604434]}, {"n": 4, "root_chord": 0.1209585063058534, "tip_chord": 0.05935091611116045, "span": 0.11042624817849651, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04917485325537]}, {"top_radius": 0.06475096266208012, "bottom_radius": 0.04418957755620912, "length": 0.05824481015212547, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7004493841211821, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164917544568687, "upper_button_position": 0.08395762966431342}], "rail_length": 5, "inclination": 85.12784370382337, "heading": 50.42036887196142} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06349961816005055, "mass": 16.0699786508719, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321689900935526, "I_33_without_motor": 0.027049770144846986, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.927528465199082, "trigger": 800, "sampling_rate": 105, "lag": 1.3518174894779649, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9975539665005316, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4105607651006549, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6999.715971923776, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033217830045392555, "grain_number": 5, "grain_density": 1851.0251771777184, "grain_outer_radius": 0.033530198495921336, "grain_initial_inner_radius": 0.014580881304462187, "grain_initial_height": 0.12171795955212315, "grain_separation": 0.006253323196898294, "grains_center_of_mass_position": 0.3947947426417019, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005317752914511957, "throat_radius": 0.011080841129846562, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542603296895287}], "aerodynamic_surfaces": [{"length": 0.5591562821136066, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345907509474507]}, {"n": 4, "root_chord": 0.11981755962252295, "tip_chord": 0.05965066489081177, "span": 0.11023989277001063, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507216946860127]}, {"top_radius": 0.06275977470064481, "bottom_radius": 0.04263043470895941, "length": 0.06023105051357444, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002723489004223, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6192580550332913, "upper_button_position": 0.081014293867131}], "rail_length": 5, "inclination": 84.55035417423139, "heading": 57.59686620456833} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06349294649380777, "mass": 15.386317426529583, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336514946390335, "I_33_without_motor": 0.035620287187402865, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.119143673166066, "trigger": 800, "sampling_rate": 105, "lag": 1.580795693588513, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0055618478564947, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5438114515636936, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6622.5878642690695, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033412295832225394, "grain_number": 5, "grain_density": 1749.659600277832, "grain_outer_radius": 0.03229539521330648, "grain_initial_inner_radius": 0.015081709971157995, "grain_initial_height": 0.11983723736410354, "grain_separation": 0.0067357274391576984, "grains_center_of_mass_position": 0.3955697158156067, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004606415398355789, "throat_radius": 0.010640235624258183, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254945603554164}], "aerodynamic_surfaces": [{"length": 0.5589802914644769, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1317087780805948]}, {"n": 4, "root_chord": 0.12046682209420684, "tip_chord": 0.059909182810640886, "span": 0.10972149875000502, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488627525135752]}, {"top_radius": 0.06329337944545792, "bottom_radius": 0.04200300399469799, "length": 0.06142464634678417, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7005846768433983, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61838579074958, "upper_button_position": 0.08219888609381831}], "rail_length": 5, "inclination": 85.5287887751757, "heading": 51.347197436955646} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350255005894888, "mass": 15.365488066090402, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320692778380735, "I_33_without_motor": 0.026487617596726097, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.000613306072673, "trigger": 800, "sampling_rate": 105, "lag": 1.34563668177314, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9709773348601776, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4446405724078513, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5838.76324469535, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325779600905088, "grain_number": 5, "grain_density": 1788.7118090310544, "grain_outer_radius": 0.03298324625873065, "grain_initial_inner_radius": 0.015208414417939338, "grain_initial_height": 0.12032060765419894, "grain_separation": 0.006877329254415665, "grains_center_of_mass_position": 0.3972723081767239, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006681733609655864, "throat_radius": 0.010717782105034948, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554153624975535}], "aerodynamic_surfaces": [{"length": 0.5576381020313103, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1351528284970462]}, {"n": 4, "root_chord": 0.12036750243073477, "tip_chord": 0.059634604688554055, "span": 0.11011647575569325, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485728823505809]}, {"top_radius": 0.06348286760406245, "bottom_radius": 0.04422509268856217, "length": 0.059164409571634734, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994781320884103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167686376418863, "upper_button_position": 0.08270949444652398}], "rail_length": 5, "inclination": 86.8900127001214, "heading": 54.43511061873553} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349715084831967, "mass": 16.3190168487895, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3115437892742, "I_33_without_motor": 0.04119818642200575, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038732401464678, "trigger": 800, "sampling_rate": 105, "lag": 1.512034884347989, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8990450499760959, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4263621475397845, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6944.502288101259, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03399591753859936, "grain_number": 5, "grain_density": 1817.7515885635287, "grain_outer_radius": 0.03311454268520687, "grain_initial_inner_radius": 0.014986802914362276, "grain_initial_height": 0.12079682743006469, "grain_separation": 0.003930241427339578, "grains_center_of_mass_position": 0.39810244274543505, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009144269744954333, "throat_radius": 0.011352253254717408, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254045543063113}], "aerodynamic_surfaces": [{"length": 0.5582808703693694, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1353647529682538]}, {"n": 4, "root_chord": 0.12002299646886082, "tip_chord": 0.059698385209016505, "span": 0.10956415293080958, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495482016398348]}, {"top_radius": 0.06528684793621795, "bottom_radius": 0.046167342247900874, "length": 0.06042367906155809, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7007252955895605, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6196756541491275, "upper_button_position": 0.08104964144043303}], "rail_length": 5, "inclination": 83.89325756258953, "heading": 50.78276483494088} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349424313157832, "mass": 14.759615100708904, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317440226914618, "I_33_without_motor": 0.03695943791649508, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.020905423031035, "trigger": 800, "sampling_rate": 105, "lag": 1.6406558542642666, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0061570029193951, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6095580849738726, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7758.109922011602, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03389657392721234, "grain_number": 5, "grain_density": 1781.0015176363897, "grain_outer_radius": 0.033530771069976574, "grain_initial_inner_radius": 0.014323902053281282, "grain_initial_height": 0.11961780909428874, "grain_separation": 0.004442660768067207, "grains_center_of_mass_position": 0.39706426986883747, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005296749115384193, "throat_radius": 0.010998106305825109, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255415163371057}], "aerodynamic_surfaces": [{"length": 0.5578926769863952, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341320988270394]}, {"n": 4, "root_chord": 0.11980643868535372, "tip_chord": 0.060007041008556736, "span": 0.1094589822196726, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493156034962317]}, {"top_radius": 0.06142576496742409, "bottom_radius": 0.04390839929597728, "length": 0.059365070259863824, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992603536244801, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186551153701358, "upper_button_position": 0.08060523825434429}], "rail_length": 5, "inclination": 85.44720279389918, "heading": 50.856796601984904} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.0635060254084927, "mass": 15.52319632816166, "I_11_without_motor": 6.321, "I_22_without_motor": 6.321277976626309, "I_33_without_motor": 0.031399558186257386, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.190763170617034, "trigger": 800, "sampling_rate": 105, "lag": 1.5142892646648873, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.986283838298462, "trigger": "apogee", "sampling_rate": 105, "lag": 1.535158883956547, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6785.929836392737, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03208214536383763, "grain_number": 5, "grain_density": 1804.885533706443, "grain_outer_radius": 0.03326717612696747, "grain_initial_inner_radius": 0.015140134825246525, "grain_initial_height": 0.11902154573973676, "grain_separation": 0.005289532851665438, "grains_center_of_mass_position": 0.39704547241100907, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006938649806671265, "throat_radius": 0.010580999256727452, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544175641684725}], "aerodynamic_surfaces": [{"length": 0.5601082737147355, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333492881141793]}, {"n": 4, "root_chord": 0.12091641432757956, "tip_chord": 0.059747868162726626, "span": 0.10979497888986478, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506316046167508]}, {"top_radius": 0.06201145698881316, "bottom_radius": 0.043201996674802304, "length": 0.058314833849878886, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998157109473193, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180969976688301, "upper_button_position": 0.08171871327848923}], "rail_length": 5, "inclination": 83.31790754447525, "heading": 54.68471729517739} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349341403662698, "mass": 14.402702266202672, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317283816579284, "I_33_without_motor": 0.026989087451785593, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059605676264827, "trigger": 800, "sampling_rate": 105, "lag": 1.4441027665721473, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9818705023569507, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7651146132471034, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6059.167368454698, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03291810560954716, "grain_number": 5, "grain_density": 1787.4021442797844, "grain_outer_radius": 0.033559146912716796, "grain_initial_inner_radius": 0.014890416273094327, "grain_initial_height": 0.11945437621223312, "grain_separation": 0.004852907649614736, "grains_center_of_mass_position": 0.3963495087780106, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0003149706591148659, "throat_radius": 0.010233444867276892, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254542586588044}], "aerodynamic_surfaces": [{"length": 0.557114311822512, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333446917850145]}, {"n": 4, "root_chord": 0.11920574147344773, "tip_chord": 0.060808932763907336, "span": 0.10889977852292815, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500152690168825]}, {"top_radius": 0.0637560385656686, "bottom_radius": 0.04267478086201389, "length": 0.059433345885323195, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996985474868103, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171993972526655, "upper_button_position": 0.08249915023414478}], "rail_length": 5, "inclination": 84.78248055438101, "heading": 53.07838080825858} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06348921402611571, "mass": 15.228927067318168, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313149606895072, "I_33_without_motor": 0.037286556275675044, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.032854038897346, "trigger": 800, "sampling_rate": 105, "lag": 1.581544435423023, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0628687889134738, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6010639185911835, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6128.748323049479, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03214118174823193, "grain_number": 5, "grain_density": 1881.5036192444768, "grain_outer_radius": 0.033325526972933256, "grain_initial_inner_radius": 0.014722760227300189, "grain_initial_height": 0.12022538808200633, "grain_separation": 0.004823838244678976, "grains_center_of_mass_position": 0.3969466986850654, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005396904874767233, "throat_radius": 0.009973921435348082, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255212175739398}], "aerodynamic_surfaces": [{"length": 0.5595286193491755, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324393173729093]}, {"n": 4, "root_chord": 0.12047044713063058, "tip_chord": 0.06019245240377465, "span": 0.1099035800607902, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504522833974625]}, {"top_radius": 0.063498957347396, "bottom_radius": 0.044226261047765315, "length": 0.06120292183757212, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700268338420262, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190412297269589, "upper_button_position": 0.08122710869330318}], "rail_length": 5, "inclination": 84.09495333151706, "heading": 53.58984158822517} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.0634989354260119, "mass": 15.617278694631365, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312066325028178, "I_33_without_motor": 0.026219069423486122, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.098413212313316, "trigger": 800, "sampling_rate": 105, "lag": 1.2671905924830742, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0335265866467127, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5916072198477855, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7172.3419003397485, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334947347782049, "grain_number": 5, "grain_density": 1792.2370278066119, "grain_outer_radius": 0.033400450823233105, "grain_initial_inner_radius": 0.01454094824205647, "grain_initial_height": 0.11940385973146513, "grain_separation": 0.002545682995331615, "grains_center_of_mass_position": 0.39664811532781896, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006279755073829648, "throat_radius": 0.010533555944336295, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555988117170456}], "aerodynamic_surfaces": [{"length": 0.5582040910423652, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134942756311149]}, {"n": 4, "root_chord": 0.11907659593627037, "tip_chord": 0.05936607268203956, "span": 0.11114450155300769, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505058371908462]}, {"top_radius": 0.06350917663157586, "bottom_radius": 0.04533536769672692, "length": 0.06089505637094913, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992636919752573, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178784764328411, "upper_button_position": 0.08138521554241618}], "rail_length": 5, "inclination": 83.55904586240904, "heading": 54.339301659362874} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06350491293560938, "mass": 15.247266867222189, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31894590310954, "I_33_without_motor": 0.024397279844740848, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.044429427504545, "trigger": 800, "sampling_rate": 105, "lag": 1.3847655328847461, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9428136850813015, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3914722864321558, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6568.873429798369, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03279467717226577, "grain_number": 5, "grain_density": 1836.1987379429872, "grain_outer_radius": 0.032727551153701274, "grain_initial_inner_radius": 0.01501615634613995, "grain_initial_height": 0.11906953168889806, "grain_separation": 0.00444994417270587, "grains_center_of_mass_position": 0.39731738398847893, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0009453582853691369, "throat_radius": 0.010453593960195523, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550221295297066}], "aerodynamic_surfaces": [{"length": 0.5600738963671933, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1360920906934389]}, {"n": 4, "root_chord": 0.1196775218445105, "tip_chord": 0.06009293270545027, "span": 0.11000148894463711, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506840015094143]}, {"top_radius": 0.06241298182005906, "bottom_radius": 0.04403574413731244, "length": 0.06014616903584407, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003433146267173, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180280465637571, "upper_button_position": 0.08231526806296019}], "rail_length": 5, "inclination": 86.72722117161025, "heading": 53.50434384155572} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 27, "radius": 0.06349461051063886, "mass": 14.962454985351904, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325768710314526, "I_33_without_motor": 0.03195975852918391, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.992858423852702, "trigger": 800, "sampling_rate": 105, "lag": 1.5900540264249696, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9862810787518744, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6811234412751346, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7788.891447556169, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03306689124658322, "grain_number": 5, "grain_density": 1892.329758650503, "grain_outer_radius": 0.03276421584547335, "grain_initial_inner_radius": 0.01463925990788712, "grain_initial_height": 0.11870939418570912, "grain_separation": 0.00465758872587759, "grains_center_of_mass_position": 0.3975443123389816, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00011311364680600578, "throat_radius": 0.01081517441410938, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2529620202381215}], "aerodynamic_surfaces": [{"length": 0.5594946555837429, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337054951927055]}, {"n": 4, "root_chord": 0.12037559022617653, "tip_chord": 0.05934713974937955, "span": 0.11075430781218483, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485622034047863]}, {"top_radius": 0.06615153483162207, "bottom_radius": 0.04290397392376515, "length": 0.06229941482409637, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996188928299506, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6190680168270213, "upper_button_position": 0.08055087600292932}], "rail_length": 5, "inclination": 82.82925562428193, "heading": 53.523868422576776} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350474486663168, "mass": 15.540858743513487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314782686638757, "I_33_without_motor": 0.04428160696116484, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05454490889958, "trigger": 800, "sampling_rate": 105, "lag": 1.6281122421557201, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9929614992400428, "trigger": "apogee", "sampling_rate": 105, "lag": 1.708063337539107, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6965.6367371227, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316514366130531, "grain_number": 5, "grain_density": 1731.919669111621, "grain_outer_radius": 0.03290087422645478, "grain_initial_inner_radius": 0.014763243825473558, "grain_initial_height": 0.11853165812638258, "grain_separation": 0.005568228908185969, "grains_center_of_mass_position": 0.3952354658550615, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012792258222029537, "throat_radius": 0.011430265041199168, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555005618966315}], "aerodynamic_surfaces": [{"length": 0.5586257806899332, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132950377942438]}, {"n": 4, "root_chord": 0.1200374058542849, "tip_chord": 0.06020574238194117, "span": 0.10936555367154938, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0492387194139607]}, {"top_radius": 0.063391664646167, "bottom_radius": 0.04191950561522894, "length": 0.05969373117081625, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999530504791462, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6188097718776918, "upper_button_position": 0.08114327860145443}], "rail_length": 5, "inclination": 83.05427942275705, "heading": 52.386748858075435} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635050553997081, "mass": 15.887419405385325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312549950636127, "I_33_without_motor": 0.03702087052141054, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.022957095402127, "trigger": 800, "sampling_rate": 105, "lag": 1.7075535114290015, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1458836872695644, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4082502030643775, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7227.162638582464, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03302167768587333, "grain_number": 5, "grain_density": 1804.2241019265828, "grain_outer_radius": 0.03292440485313831, "grain_initial_inner_radius": 0.015128982866732943, "grain_initial_height": 0.120125892443375, "grain_separation": 0.004670216126922139, "grains_center_of_mass_position": 0.399079107329608, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00034563263229823576, "throat_radius": 0.011260003397084384, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548867965342836}], "aerodynamic_surfaces": [{"length": 0.5589821560612075, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347890173456288]}, {"n": 4, "root_chord": 0.11912676727059766, "tip_chord": 0.05985533134222033, "span": 0.11001462383076062, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497181454302609]}, {"top_radius": 0.062235202167166215, "bottom_radius": 0.04396234540072837, "length": 0.060095829431558785, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992484350038376, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618288259633471, "upper_button_position": 0.0809601753703666}], "rail_length": 5, "inclination": 85.13899125606258, "heading": 55.65845098905253} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.06350332531994533, "mass": 15.858311372577457, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322309846598252, "I_33_without_motor": 0.04246087753571734, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.930335148549723, "trigger": 800, "sampling_rate": 105, "lag": 1.5244591263419625, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9887735198817952, "trigger": "apogee", "sampling_rate": 105, "lag": 1.8188117371357737, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8573.323178871593, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03359008837803065, "grain_number": 5, "grain_density": 1839.338334726118, "grain_outer_radius": 0.03304821341084911, "grain_initial_inner_radius": 0.015209773457851909, "grain_initial_height": 0.11949342131229575, "grain_separation": 0.004299633524297114, "grains_center_of_mass_position": 0.3982449212757334, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0003008089642755749, "throat_radius": 0.010774655443605714, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557733884147118}], "aerodynamic_surfaces": [{"length": 0.559005192826191, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1325454844197511]}, {"n": 4, "root_chord": 0.12093777851387337, "tip_chord": 0.06061717604120735, "span": 0.10923734635732703, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510293363665346]}, {"top_radius": 0.06330014224573563, "bottom_radius": 0.04234089166930086, "length": 0.0596652491809662, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987859646634969, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183700228599371, "upper_button_position": 0.08041594180355971}], "rail_length": 5, "inclination": 85.44151279131079, "heading": 54.340019925669374} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349884733902644, "mass": 15.28853259632741, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3372097319739495, "I_33_without_motor": 0.014804653274557128, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.25644125546246, "trigger": 800, "sampling_rate": 105, "lag": 1.39973337511493, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9449813107126755, "trigger": "apogee", "sampling_rate": 105, "lag": 1.9874263429133725, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7379.486043114984, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0324588013615383, "grain_number": 5, "grain_density": 1756.4078429845858, "grain_outer_radius": 0.03321296865821709, "grain_initial_inner_radius": 0.014420807094745774, "grain_initial_height": 0.12009926508658719, "grain_separation": 0.005795859635745365, "grains_center_of_mass_position": 0.3975454397665219, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0016919630567037638, "throat_radius": 0.011356715125856062, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255924450665643}], "aerodynamic_surfaces": [{"length": 0.5579794287097103, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342305539028248]}, {"n": 4, "root_chord": 0.11948017783428541, "tip_chord": 0.060952671651736005, "span": 0.1094964364268691, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495393792860843]}, {"top_radius": 0.06291718284423824, "bottom_radius": 0.042815974685503994, "length": 0.06126957415885102, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000628036919999, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195352992362271, "upper_button_position": 0.08052750445577284}], "rail_length": 5, "inclination": 85.10316137607518, "heading": 53.90708492878123} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349333801211711, "mass": 14.371085472438084, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307808170904682, "I_33_without_motor": 0.03940484586290022, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.046655060330274, "trigger": 800, "sampling_rate": 105, "lag": 1.267851854066831, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.956651441742791, "trigger": "apogee", "sampling_rate": 105, "lag": 1.449596961767557, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6751.7790963070565, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03224198080394071, "grain_number": 5, "grain_density": 1782.334032472187, "grain_outer_radius": 0.033104151095109016, "grain_initial_inner_radius": 0.014059701116831809, "grain_initial_height": 0.11986427384664333, "grain_separation": 0.006104920309266076, "grains_center_of_mass_position": 0.39890379341306964, "center_of_dry_mass_position": 0.317, "nozzle_position": 6.858253803117166e-05, "throat_radius": 0.01150469114611703, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546867455143842}], "aerodynamic_surfaces": [{"length": 0.5579082741990532, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356036296634302]}, {"n": 4, "root_chord": 0.11936762323934293, "tip_chord": 0.0602816157305539, "span": 0.10998827547935122, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049734443481012]}, {"top_radius": 0.06304011178368142, "bottom_radius": 0.04279978076778474, "length": 0.06071083518868289, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990528751570081, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6168090799724839, "upper_button_position": 0.08224379518452418}], "rail_length": 5, "inclination": 86.16079625054803, "heading": 50.71049178110319} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06350447931511011, "mass": 15.284606064588328, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328951453744855, "I_33_without_motor": 0.039378931184866434, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.877631098914666, "trigger": 800, "sampling_rate": 105, "lag": 1.3124760499678951, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1128778471134126, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6403851062315085, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5873.623872081833, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033055970873781294, "grain_number": 5, "grain_density": 1840.765802110352, "grain_outer_radius": 0.03302593313495226, "grain_initial_inner_radius": 0.015305992171317223, "grain_initial_height": 0.1216730770487138, "grain_separation": 0.005708177295220271, "grains_center_of_mass_position": 0.3961455389921154, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006091965237994834, "throat_radius": 0.011361329471782379, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558137315668951}], "aerodynamic_surfaces": [{"length": 0.5576439428493114, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1348068870985801]}, {"n": 4, "root_chord": 0.1195524312921596, "tip_chord": 0.06054496691426641, "span": 0.11024479084807731, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482077602330726]}, {"top_radius": 0.06381778270652601, "bottom_radius": 0.0427653301885051, "length": 0.058619758461919566, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989028322054791, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187555804123742, "upper_button_position": 0.08014725179310489}], "rail_length": 5, "inclination": 86.19080295030565, "heading": 53.73913807415649} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350831782387095, "mass": 15.48173509964244, "I_11_without_motor": 6.321, "I_22_without_motor": 6.30184049846294, "I_33_without_motor": 0.028525298507405372, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.884744562063757, "trigger": 800, "sampling_rate": 105, "lag": 1.410369082072247, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9474754713955933, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2958188375812068, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6742.033798199101, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249986782230316, "grain_number": 5, "grain_density": 1834.026676821522, "grain_outer_radius": 0.03303674529565214, "grain_initial_inner_radius": 0.014950919505380935, "grain_initial_height": 0.12231574213911645, "grain_separation": 0.005981307583874528, "grains_center_of_mass_position": 0.3982015061245299, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011853092298492194, "throat_radius": 0.010850462350928083, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531255543487805}], "aerodynamic_surfaces": [{"length": 0.5573905249603851, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1319479570764248]}, {"n": 4, "root_chord": 0.11998364899134259, "tip_chord": 0.05956004826294778, "span": 0.10916171814689972, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049704118800824]}, {"top_radius": 0.062335828468598406, "bottom_radius": 0.04550110711703311, "length": 0.06106274970429908, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990567487467195, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617136354655352, "upper_button_position": 0.08192039409136753}], "rail_length": 5, "inclination": 83.7291290606304, "heading": 51.23772737989244} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 6, "radius": 0.0635015370427645, "mass": 15.790482657212253, "I_11_without_motor": 6.321, "I_22_without_motor": 6.314906063622063, "I_33_without_motor": 0.03500570126705253, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.086936991798776, "trigger": 800, "sampling_rate": 105, "lag": 1.3899830178073083, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8891798178761469, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6741592577447462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6980.213993094151, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033001232675634325, "grain_number": 5, "grain_density": 1852.72591358575, "grain_outer_radius": 0.032101310321099925, "grain_initial_inner_radius": 0.014666711141234183, "grain_initial_height": 0.11920556939456635, "grain_separation": 0.006102907893859046, "grains_center_of_mass_position": 0.3969605063098291, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0023448970922006367, "throat_radius": 0.012096145684163184, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2527184193962173}], "aerodynamic_surfaces": [{"length": 0.5581962302157674, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1316564402976992]}, {"n": 4, "root_chord": 0.12123114737187687, "tip_chord": 0.06008285481867126, "span": 0.1091919521011231, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505765541403822]}, {"top_radius": 0.06336100366186814, "bottom_radius": 0.043937093380521285, "length": 0.05978962880839133, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986240933497078, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183467700279855, "upper_button_position": 0.08027732332172222}], "rail_length": 5, "inclination": 85.34657908026432, "heading": 55.433159354180816} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349776013662169, "mass": 16.13292733262695, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326073676438418, "I_33_without_motor": 0.046702918978725354, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.92923964005457, "trigger": 800, "sampling_rate": 105, "lag": 1.220836955121615, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9977597820332372, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4557241464994515, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6012.672988577444, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03330891353264584, "grain_number": 5, "grain_density": 1806.3250124557808, "grain_outer_radius": 0.032641810879813896, "grain_initial_inner_radius": 0.014916307667443502, "grain_initial_height": 0.12046604719248484, "grain_separation": 0.0042984067115175145, "grains_center_of_mass_position": 0.3956796225426003, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00029358199873233827, "throat_radius": 0.010517588165056907, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2566068368898597}], "aerodynamic_surfaces": [{"length": 0.5583900326154044, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.131621439849181]}, {"n": 4, "root_chord": 0.12034790587517949, "tip_chord": 0.06001350705101895, "span": 0.11004364958293002, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.046331648922532]}, {"top_radius": 0.06315060492932822, "bottom_radius": 0.043697127025534695, "length": 0.06152329689667531, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6992501370415125, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180345776664751, "upper_button_position": 0.08121555937503744}], "rail_length": 5, "inclination": 84.82676374117273, "heading": 54.9962798374293} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.0634962794046531, "mass": 15.49315788956431, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325729927818253, "I_33_without_motor": 0.04009455092984972, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.89835210555655, "trigger": 800, "sampling_rate": 105, "lag": 1.4343815271608282, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0717770020566109, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7081396320531046, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7985.937197036136, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03357078807383462, "grain_number": 5, "grain_density": 1813.3403746969486, "grain_outer_radius": 0.03334793238943533, "grain_initial_inner_radius": 0.015774914320630957, "grain_initial_height": 0.11937852188332437, "grain_separation": 0.0051391594440305865, "grains_center_of_mass_position": 0.3978440180314981, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0007230009208440329, "throat_radius": 0.010665098382291634, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554391566903798}], "aerodynamic_surfaces": [{"length": 0.557806690628112, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342992111279233]}, {"n": 4, "root_chord": 0.11952351038795686, "tip_chord": 0.060353335190001196, "span": 0.11016517390388472, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498593560443115]}, {"top_radius": 0.06281987253958338, "bottom_radius": 0.04383156604649216, "length": 0.06075223750185014, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700031703391227, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617300093446647, "upper_button_position": 0.08273160994457995}], "rail_length": 5, "inclination": 85.01175875642342, "heading": 54.61924870696413} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350218445622838, "mass": 15.987407565496998, "I_11_without_motor": 6.321, "I_22_without_motor": 6.317921127521844, "I_33_without_motor": 0.037904742529250565, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.835883124900596, "trigger": 800, "sampling_rate": 105, "lag": 1.5265481512566619, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9798645644568426, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2558762314177954, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7057.694651276009, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03341558872522743, "grain_number": 5, "grain_density": 1770.6612983064458, "grain_outer_radius": 0.03311029181549402, "grain_initial_inner_radius": 0.014815445037288748, "grain_initial_height": 0.11988620434012322, "grain_separation": 0.005017999114581035, "grains_center_of_mass_position": 0.39524288567174476, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008157921134103814, "throat_radius": 0.010792779485953457, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2533043847598697}], "aerodynamic_surfaces": [{"length": 0.55823973521882, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1354602823367137]}, {"n": 4, "root_chord": 0.11996846245178458, "tip_chord": 0.06074493507528071, "span": 0.11088134037674949, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489201127860128]}, {"top_radius": 0.06402126190935849, "bottom_radius": 0.04404363326226138, "length": 0.06135784026065467, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987834238740518, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6193809096368168, "upper_button_position": 0.07940251423723499}], "rail_length": 5, "inclination": 85.8787294262944, "heading": 53.990872442174854} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350193241163644, "mass": 15.264788971282417, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330354021546608, "I_33_without_motor": 0.032200573649115875, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.913843843082986, "trigger": 800, "sampling_rate": 105, "lag": 1.5633620238324215, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9189918974217179, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3947887847178309, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6457.719213584727, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032701398182731684, "grain_number": 5, "grain_density": 1803.725938912612, "grain_outer_radius": 0.03284573493982113, "grain_initial_inner_radius": 0.014351777063854517, "grain_initial_height": 0.12000465206495563, "grain_separation": 0.0038712684940330243, "grains_center_of_mass_position": 0.3974777913140415, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00018207954448504324, "throat_radius": 0.01081095042226187, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255842655567172}], "aerodynamic_surfaces": [{"length": 0.5579167168295563, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342709949246998]}, {"n": 4, "root_chord": 0.12032382251640021, "tip_chord": 0.060323850438419695, "span": 0.10951215338198424, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04809920177789]}, {"top_radius": 0.06478710779785735, "bottom_radius": 0.043937219228798285, "length": 0.06020402385454761, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700514315387872, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.61694166570557, "upper_button_position": 0.08357264968230205}], "rail_length": 5, "inclination": 85.2909643167713, "heading": 53.113551885642956} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06350628657146798, "mass": 15.593602027450409, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3051905777237085, "I_33_without_motor": 0.022351151446380214, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.021647279345311, "trigger": 800, "sampling_rate": 105, "lag": 1.3905607326990013, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.015807086546349, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3737837130320834, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5162.249740231274, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032133684138852606, "grain_number": 5, "grain_density": 1786.8526944702876, "grain_outer_radius": 0.03343378918256838, "grain_initial_inner_radius": 0.015007614746589461, "grain_initial_height": 0.11943245318024076, "grain_separation": 0.0038865766894528465, "grains_center_of_mass_position": 0.3958058810681968, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002866713501599272, "throat_radius": 0.010723312929513852, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558761977681827}], "aerodynamic_surfaces": [{"length": 0.5580466175959646, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338532765005003]}, {"n": 4, "root_chord": 0.11899001983283952, "tip_chord": 0.06032956562745857, "span": 0.11037914237334287, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490190847584882]}, {"top_radius": 0.064220963104849, "bottom_radius": 0.04314164170602649, "length": 0.05954722746181661, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995262416480447, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181452201700077, "upper_button_position": 0.08138102147803694}], "rail_length": 5, "inclination": 84.78396986974077, "heading": 50.69744375278135} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350216953229124, "mass": 15.357537421565562, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331400929500565, "I_33_without_motor": 0.03653582734981806, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038553790390184, "trigger": 800, "sampling_rate": 105, "lag": 1.307100320327444, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0651629427605085, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3817954371906476, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6065.984154352065, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03303530266986184, "grain_number": 5, "grain_density": 1785.9176249567304, "grain_outer_radius": 0.033198093205753315, "grain_initial_inner_radius": 0.014532159523948488, "grain_initial_height": 0.1201513300555432, "grain_separation": 0.004722930530960147, "grains_center_of_mass_position": 0.39638853417258646, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000969939280343903, "throat_radius": 0.01055238203444302, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539410964401696}], "aerodynamic_surfaces": [{"length": 0.5586346511968785, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1352273713437955]}, {"n": 4, "root_chord": 0.11998507778221314, "tip_chord": 0.06047250911925844, "span": 0.11008701276188594, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514424268724822]}, {"top_radius": 0.06322372847536306, "bottom_radius": 0.04478720289670732, "length": 0.059822033321377574, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6971635610792464, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165343172335281, "upper_button_position": 0.08062924384571823}], "rail_length": 5, "inclination": 85.50627153167788, "heading": 51.66163062345711} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349098885066436, "mass": 14.644391096984727, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325855572528673, "I_33_without_motor": 0.05120555527549442, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.902814592125456, "trigger": 800, "sampling_rate": 105, "lag": 1.4694381914022132, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9683687238134047, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1188737115499652, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6236.044189448362, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03308707572440625, "grain_number": 5, "grain_density": 1735.3852025770088, "grain_outer_radius": 0.03234077278715065, "grain_initial_inner_radius": 0.015119664750018417, "grain_initial_height": 0.11902259659743986, "grain_separation": 0.00407208505459093, "grains_center_of_mass_position": 0.3968220372999722, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009061517475398118, "throat_radius": 0.010848825106581646, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551010295787397}], "aerodynamic_surfaces": [{"length": 0.5590244533532984, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.134886654217062]}, {"n": 4, "root_chord": 0.12047173164189383, "tip_chord": 0.05991374900227756, "span": 0.109953639689369, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.04981014468213]}, {"top_radius": 0.06456089402004875, "bottom_radius": 0.0445524505268386, "length": 0.060433415511313086, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7002962477702128, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176917673724657, "upper_button_position": 0.08260448039774715}], "rail_length": 5, "inclination": 85.05713943696021, "heading": 53.63515688162888} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.0635069218407545, "mass": 15.227913584931276, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3297997444152125, "I_33_without_motor": 0.042758707253950146, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.908193073072875, "trigger": 800, "sampling_rate": 105, "lag": 1.3892470069492386, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9869690572824643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2708652945946748, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5250.8490673405595, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033301873135206134, "grain_number": 5, "grain_density": 1770.2623657616844, "grain_outer_radius": 0.032927873454666357, "grain_initial_inner_radius": 0.015288208742515953, "grain_initial_height": 0.12060716366037721, "grain_separation": 0.006104463218853228, "grains_center_of_mass_position": 0.3968527252749884, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005232773676899636, "throat_radius": 0.010884198128888587, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543115929044166}], "aerodynamic_surfaces": [{"length": 0.5594278897540852, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336591486003202]}, {"n": 4, "root_chord": 0.12071998971034607, "tip_chord": 0.05987524728786864, "span": 0.1106289801478439, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496294053302573]}, {"top_radius": 0.063610331750769, "bottom_radius": 0.044146825015164114, "length": 0.06311437360656429, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7000676222887176, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176437548608565, "upper_button_position": 0.08242386742786101}], "rail_length": 5, "inclination": 82.63068867354191, "heading": 51.57334927454433} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06349942917733523, "mass": 15.664893695631187, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320780517592063, "I_33_without_motor": 0.03378859183821554, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.032722735490328, "trigger": 800, "sampling_rate": 105, "lag": 1.4095502535136855, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0878359535290676, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2558289172128188, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7568.0644646029405, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268973442842734, "grain_number": 5, "grain_density": 1761.141866208325, "grain_outer_radius": 0.03276504683887198, "grain_initial_inner_radius": 0.014759025773548854, "grain_initial_height": 0.11928307898612338, "grain_separation": 0.004096361644836983, "grains_center_of_mass_position": 0.395728201843002, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011102251985638013, "throat_radius": 0.010631152554857436, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2545782955157072}], "aerodynamic_surfaces": [{"length": 0.5572259623004246, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1343630469877206]}, {"n": 4, "root_chord": 0.11950690284890897, "tip_chord": 0.06068424853958771, "span": 0.11012427034928958, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485050199951165]}, {"top_radius": 0.06441400743072766, "bottom_radius": 0.0430021833276965, "length": 0.060963520684172226, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6997376919253763, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176775925867789, "upper_button_position": 0.08206009933859737}], "rail_length": 5, "inclination": 85.01288300530226, "heading": 51.362285476942965} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349597681776765, "mass": 15.63824154875121, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3262129456683525, "I_33_without_motor": 0.03252562181953758, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.014464440895708, "trigger": 800, "sampling_rate": 105, "lag": 1.6544315072320088, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1036608783041133, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7649115592126345, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8703.086150476129, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03364253976485774, "grain_number": 5, "grain_density": 1813.1848903895966, "grain_outer_radius": 0.032988632147984955, "grain_initial_inner_radius": 0.014677145381777673, "grain_initial_height": 0.11984509294122107, "grain_separation": 0.005223545709707415, "grains_center_of_mass_position": 0.396093332052701, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000445659297874446, "throat_radius": 0.010747776161277381, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2559273334911512}], "aerodynamic_surfaces": [{"length": 0.5591121897005504, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345435869770502]}, {"n": 4, "root_chord": 0.11994775307955717, "tip_chord": 0.05996783560477347, "span": 0.10898993800216453, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498564755026567]}, {"top_radius": 0.0658689619067946, "bottom_radius": 0.04352146112581988, "length": 0.06027690997282572, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7024114658351304, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618118298881709, "upper_button_position": 0.08429316695342137}], "rail_length": 5, "inclination": 83.43887825998375, "heading": 51.8155386165193} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06349694518485594, "mass": 15.497067897425987, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329240666489076, "I_33_without_motor": 0.04236158063134354, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.024123519291999, "trigger": 800, "sampling_rate": 105, "lag": 1.2154755942123678, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0476863972556538, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4695109789384242, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8403.269062230316, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03229768390939567, "grain_number": 5, "grain_density": 1817.651507266901, "grain_outer_radius": 0.03254840711579409, "grain_initial_inner_radius": 0.01464868070209701, "grain_initial_height": 0.12026474236416554, "grain_separation": 0.005727495616429366, "grains_center_of_mass_position": 0.39762020941871473, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0027514282366812638, "throat_radius": 0.010643228583688916, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2565566668754724}], "aerodynamic_surfaces": [{"length": 0.5596772776544312, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135200847126596]}, {"n": 4, "root_chord": 0.11953255619745708, "tip_chord": 0.0602053943992858, "span": 0.10909597740767643, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0515546190492129]}, {"top_radius": 0.06323880219663246, "bottom_radius": 0.043823464745149074, "length": 0.059714599215010405, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989812060113064, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6163699416510215, "upper_button_position": 0.08261126436028488}], "rail_length": 5, "inclination": 84.15260547988503, "heading": 52.134321582562784} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350133106655033, "mass": 14.970020973649769, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309866978419175, "I_33_without_motor": 0.03718747515660318, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.15321022149754, "trigger": 800, "sampling_rate": 105, "lag": 1.5518313077272785, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0007603660778468, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4735498319511164, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6225.419155057072, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293435691817365, "grain_number": 5, "grain_density": 1888.3329078040956, "grain_outer_radius": 0.03366493318276763, "grain_initial_inner_radius": 0.015161357413107639, "grain_initial_height": 0.12020629303592041, "grain_separation": 0.006163884582356103, "grains_center_of_mass_position": 0.3995777056641799, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011366565406659471, "throat_radius": 0.01061837791627414, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255941348845631}], "aerodynamic_surfaces": [{"length": 0.5573643514972436, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1322140619106336]}, {"n": 4, "root_chord": 0.11958168991680854, "tip_chord": 0.05971951992214012, "span": 0.10983200734551564, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509795901160093]}, {"top_radius": 0.06389395015300472, "bottom_radius": 0.041983260872360796, "length": 0.05955860572052552, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990428075184899, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176829866402044, "upper_button_position": 0.08135982087828553}], "rail_length": 5, "inclination": 83.94908752943476, "heading": 52.699566438420874} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349748119234609, "mass": 16.09555558358003, "I_11_without_motor": 6.321, "I_22_without_motor": 6.331283819267411, "I_33_without_motor": 0.04529959719085265, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.931016677534807, "trigger": 800, "sampling_rate": 105, "lag": 1.518334362662659, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0115729740728558, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2343358482916744, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7525.540277180913, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03288361268927654, "grain_number": 5, "grain_density": 1822.9799042978048, "grain_outer_radius": 0.033048468814203036, "grain_initial_inner_radius": 0.015177196565505915, "grain_initial_height": 0.12003299214754781, "grain_separation": 0.004203511474286287, "grains_center_of_mass_position": 0.3964692851088399, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001044283241319205, "throat_radius": 0.01021180460532296, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551151869533146}], "aerodynamic_surfaces": [{"length": 0.5579197458489661, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329841571273027]}, {"n": 4, "root_chord": 0.12032171392147008, "tip_chord": 0.059811565812737305, "span": 0.10944828675187208, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481606379194834]}, {"top_radius": 0.06292477465811035, "bottom_radius": 0.044053936141334286, "length": 0.05872809922797324, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990744692283261, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183497038862837, "upper_button_position": 0.08072476534204232}], "rail_length": 5, "inclination": 84.8891486506258, "heading": 56.16307030179804} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06350015788720065, "mass": 15.008222990683345, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3281337812486615, "I_33_without_motor": 0.03504526129763676, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.036311377653911, "trigger": 800, "sampling_rate": 105, "lag": 1.536857587883496, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9950394940997345, "trigger": "apogee", "sampling_rate": 105, "lag": 2.002407675634478, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5896.856321120198, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033435777661217435, "grain_number": 5, "grain_density": 1768.7734250579629, "grain_outer_radius": 0.03317289861655789, "grain_initial_inner_radius": 0.01536040062972926, "grain_initial_height": 0.1195288878925939, "grain_separation": 0.00417365157263559, "grains_center_of_mass_position": 0.39745016680868117, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006314883034883426, "throat_radius": 0.011495930904384123, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2568531437614952}], "aerodynamic_surfaces": [{"length": 0.5585591631045738, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336962253229745]}, {"n": 4, "root_chord": 0.12052615971065485, "tip_chord": 0.0599550628332522, "span": 0.10990057503642343, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049486952795741]}, {"top_radius": 0.06404861643421897, "bottom_radius": 0.04379781190587432, "length": 0.057786052499510854, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6987672472356937, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617904171640835, "upper_button_position": 0.08086307559485872}], "rail_length": 5, "inclination": 84.50249522568497, "heading": 52.27453287236805} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06349702528409407, "mass": 15.592651238738613, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322741649142568, "I_33_without_motor": 0.03790841683309079, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.94154598070836, "trigger": 800, "sampling_rate": 105, "lag": 1.4970657651859114, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.986543305929436, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3906456657581998, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7006.942832081034, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03368605348047243, "grain_number": 5, "grain_density": 1779.542868643782, "grain_outer_radius": 0.03331763040241643, "grain_initial_inner_radius": 0.014797998823928524, "grain_initial_height": 0.12073351784066648, "grain_separation": 0.00396275639066909, "grains_center_of_mass_position": 0.3978881202983984, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015839836127258295, "throat_radius": 0.010239962213498034, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558739186149483}], "aerodynamic_surfaces": [{"length": 0.5573930556235491, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1324059610989177]}, {"n": 4, "root_chord": 0.12060813854148847, "tip_chord": 0.060049287535716825, "span": 0.109575602072305, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0521556073480312]}, {"top_radius": 0.0644405230942487, "bottom_radius": 0.044824886138675316, "length": 0.061298384602455784, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7010260191698385, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182578007592914, "upper_button_position": 0.08276821841054716}], "rail_length": 5, "inclination": 86.14630343595157, "heading": 52.97414233496016} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350261793661156, "mass": 15.299818991783948, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326536103486011, "I_33_without_motor": 0.028903821037461853, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.213821114104274, "trigger": 800, "sampling_rate": 105, "lag": 1.4751049362756028, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9304054184704571, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2453635261327367, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6233.213081854377, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03282199832480088, "grain_number": 5, "grain_density": 1846.0027168552579, "grain_outer_radius": 0.032932332791830304, "grain_initial_inner_radius": 0.015492384330394907, "grain_initial_height": 0.12155806815395152, "grain_separation": 0.00458207351368291, "grains_center_of_mass_position": 0.39646000583033536, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001193403191506023, "throat_radius": 0.01063094996939546, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.257133928236202}], "aerodynamic_surfaces": [{"length": 0.5573361980342403, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340062721514947]}, {"n": 4, "root_chord": 0.11970180491967267, "tip_chord": 0.060007742020270226, "span": 0.11015444639824633, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0490064666475372]}, {"top_radius": 0.06257923417506953, "bottom_radius": 0.04285322960748667, "length": 0.06041232058621535, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6986776800952366, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184077614682744, "upper_button_position": 0.0802699186269622}], "rail_length": 5, "inclination": 83.58261124166273, "heading": 53.818006092524186} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350242096611114, "mass": 14.948028272007042, "I_11_without_motor": 6.321, "I_22_without_motor": 6.329941493939476, "I_33_without_motor": 0.024430349102988323, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985459158583085, "trigger": 800, "sampling_rate": 105, "lag": 1.5812728405445429, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0260644961799827, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4419163067237422, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7421.682029562147, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03313649760730234, "grain_number": 5, "grain_density": 1812.8947913769227, "grain_outer_radius": 0.03246792984859254, "grain_initial_inner_radius": 0.014530765819745663, "grain_initial_height": 0.11776976662145675, "grain_separation": 0.0040151297634227565, "grains_center_of_mass_position": 0.3975220391225373, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0005244321689256035, "throat_radius": 0.011427187904996524, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546984963430574}], "aerodynamic_surfaces": [{"length": 0.5600164591706466, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338609446116092]}, {"n": 4, "root_chord": 0.12055320117177358, "tip_chord": 0.05976734502439996, "span": 0.11081347725777242, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0495637640105109]}, {"top_radius": 0.062440221576123285, "bottom_radius": 0.044069923912692245, "length": 0.06085524352907856, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6998226264418073, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177916690354173, "upper_button_position": 0.08203095740638999}], "rail_length": 5, "inclination": 84.35426826893764, "heading": 51.60790972789264} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.06350312556492547, "mass": 16.124511856959966, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315061017133608, "I_33_without_motor": 0.032707906384576095, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.115653559625663, "trigger": 800, "sampling_rate": 105, "lag": 1.2699552766988935, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9679886611615228, "trigger": "apogee", "sampling_rate": 105, "lag": 1.311263014807831, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6680.780141208014, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03325640226711274, "grain_number": 5, "grain_density": 1917.3048071804194, "grain_outer_radius": 0.03269175489589434, "grain_initial_inner_radius": 0.015317774419553195, "grain_initial_height": 0.11803528473617228, "grain_separation": 0.005276849525819986, "grains_center_of_mass_position": 0.39605655558393316, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004569515692718496, "throat_radius": 0.011348674234121276, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2538929710740832}], "aerodynamic_surfaces": [{"length": 0.5593889478726409, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347117854868174]}, {"n": 4, "root_chord": 0.11985323312616644, "tip_chord": 0.05940549063029622, "span": 0.10975605640353059, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0487816658913822]}, {"top_radius": 0.06511924044662472, "bottom_radius": 0.04276169896843653, "length": 0.058840481424308415, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6976719718350862, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184090849395523, "upper_button_position": 0.07926288689553396}], "rail_length": 5, "inclination": 83.70829049892177, "heading": 52.63409600798556} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 9, "radius": 0.06350177703147122, "mass": 15.051159440885115, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3145118816033845, "I_33_without_motor": 0.03137946278725863, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.039656633528315, "trigger": 800, "sampling_rate": 105, "lag": 1.4456312830133968, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9043036515350134, "trigger": "apogee", "sampling_rate": 105, "lag": 1.248402167825532, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5957.480149899266, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03236979598490495, "grain_number": 5, "grain_density": 1758.8345776315764, "grain_outer_radius": 0.0330510624866709, "grain_initial_inner_radius": 0.015177028938518255, "grain_initial_height": 0.12014016942152346, "grain_separation": 0.004819941076866451, "grains_center_of_mass_position": 0.3970770714354875, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014918135918803631, "throat_radius": 0.011251379593276248, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.256789114928077}], "aerodynamic_surfaces": [{"length": 0.5590068389759972, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336375270184997]}, {"n": 4, "root_chord": 0.11931120537403285, "tip_chord": 0.05882261531759392, "span": 0.11091142259571828, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509535303823718]}, {"top_radius": 0.06236358910038516, "bottom_radius": 0.04311637384996791, "length": 0.0611218210791334, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003253788882423, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180427539585812, "upper_button_position": 0.0822826249296611}], "rail_length": 5, "inclination": 84.86221871240508, "heading": 52.44306546696496} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350263005077426, "mass": 15.73405312753956, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318417866549179, "I_33_without_motor": 0.030769196435159657, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.88454880405449, "trigger": 800, "sampling_rate": 105, "lag": 1.6261458057689402, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9360140525484016, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4204245801346917, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6151.185811718962, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.0326937172731662, "grain_number": 5, "grain_density": 1745.5962321162363, "grain_outer_radius": 0.032709555105205707, "grain_initial_inner_radius": 0.0152575700446312, "grain_initial_height": 0.12029390516023777, "grain_separation": 0.00504141879622805, "grains_center_of_mass_position": 0.3952579248301626, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0015055803833390756, "throat_radius": 0.011691924985626495, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541773839895152}], "aerodynamic_surfaces": [{"length": 0.5588638522757413, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13368928304159]}, {"n": 4, "root_chord": 0.11966654915715498, "tip_chord": 0.06019252766270601, "span": 0.10965306137381617, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504390027137565]}, {"top_radius": 0.06295758295446884, "bottom_radius": 0.044201060798782194, "length": 0.05997331673611855, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001721196852678, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172793210052, "upper_button_position": 0.08289279868006783}], "rail_length": 5, "inclination": 83.67863401743558, "heading": 56.95444628368235} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350591195302407, "mass": 15.773185094553794, "I_11_without_motor": 6.321, "I_22_without_motor": 6.326863705967678, "I_33_without_motor": 0.01089425306497771, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.969755233685376, "trigger": 800, "sampling_rate": 105, "lag": 1.531085974021957, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0327817637500851, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5273217602705393, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4269.501500611772, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032699672995679746, "grain_number": 5, "grain_density": 1825.2209228802933, "grain_outer_radius": 0.033062351889595075, "grain_initial_inner_radius": 0.014832207060342053, "grain_initial_height": 0.11959687886674662, "grain_separation": 0.005918316324258682, "grains_center_of_mass_position": 0.3962360537261605, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006990133755055278, "throat_radius": 0.011575123683555961, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547377652118032}], "aerodynamic_surfaces": [{"length": 0.5575881689662442, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1323271054541821]}, {"n": 4, "root_chord": 0.12073491603587107, "tip_chord": 0.060799361140653554, "span": 0.11024230534039405, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509434102043562]}, {"top_radius": 0.06433312174152502, "bottom_radius": 0.04418375115717514, "length": 0.06115007387135968, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7019181174445951, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6155943374660545, "upper_button_position": 0.08632377997854057}], "rail_length": 5, "inclination": 84.5394601600382, "heading": 54.578626759639064} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06351111510894533, "mass": 15.459296905576563, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316968181919168, "I_33_without_motor": 0.02586842080421662, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.998623071505097, "trigger": 800, "sampling_rate": 105, "lag": 1.356982482519687, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.02562048047914, "trigger": "apogee", "sampling_rate": 105, "lag": 1.379087934182648, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6772.104343156998, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03374709946612746, "grain_number": 5, "grain_density": 1888.5445110828352, "grain_outer_radius": 0.033033194501706935, "grain_initial_inner_radius": 0.01490024755815879, "grain_initial_height": 0.1218801080237034, "grain_separation": 0.005134039202158573, "grains_center_of_mass_position": 0.395879037199492, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008081347497876271, "throat_radius": 0.010915280938061682, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2557024577597082}], "aerodynamic_surfaces": [{"length": 0.5564445661186508, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133455886224018]}, {"n": 4, "root_chord": 0.12022172201580304, "tip_chord": 0.060651101168229006, "span": 0.11043904217756839, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485299960808716]}, {"top_radius": 0.06284428116101745, "bottom_radius": 0.04430649937540239, "length": 0.060277104016863946, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700754896351649, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6199100695036839, "upper_button_position": 0.08084482684796512}], "rail_length": 5, "inclination": 82.76948351967671, "heading": 55.1006448332285} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 25, "radius": 0.06351111030965213, "mass": 15.313725815149036, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3102986445117475, "I_33_without_motor": 0.030345774493067787, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.005102800835923, "trigger": 800, "sampling_rate": 105, "lag": 1.616694064144941, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0488134696359634, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3305727821134437, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7254.499944621131, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324400070908359, "grain_number": 5, "grain_density": 1784.339453759986, "grain_outer_radius": 0.03313152595361724, "grain_initial_inner_radius": 0.015117631594528093, "grain_initial_height": 0.12081983371556827, "grain_separation": 0.00579817678281843, "grains_center_of_mass_position": 0.39624699631202304, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010249776641020128, "throat_radius": 0.009850188245452415, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2558940379587609}], "aerodynamic_surfaces": [{"length": 0.5567484649408821, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1330339451450044]}, {"n": 4, "root_chord": 0.12028980054693193, "tip_chord": 0.05968170777100153, "span": 0.10978488833881787, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496107559061296]}, {"top_radius": 0.06369283881303836, "bottom_radius": 0.04368652845119461, "length": 0.06046854730508414, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011823668428082, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6179682675867931, "upper_button_position": 0.08321409925601508}], "rail_length": 5, "inclination": 86.2893607953098, "heading": 55.82733666450613} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349262380803737, "mass": 15.199681667330832, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328859327665765, "I_33_without_motor": 0.035051550936257794, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.846806385236448, "trigger": 800, "sampling_rate": 105, "lag": 1.588485211166721, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0958371887244183, "trigger": "apogee", "sampling_rate": 105, "lag": 1.641474764535947, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6105.60344257791, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03287995177605589, "grain_number": 5, "grain_density": 1884.1084522844, "grain_outer_radius": 0.03231670144639771, "grain_initial_inner_radius": 0.014614114025201286, "grain_initial_height": 0.11896515569735606, "grain_separation": 0.005065501105238396, "grains_center_of_mass_position": 0.39645364457080734, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0017533181449427531, "throat_radius": 0.011422749134905444, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546400541446419}], "aerodynamic_surfaces": [{"length": 0.5572760094655881, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341008893618483]}, {"n": 4, "root_chord": 0.12004033798577243, "tip_chord": 0.06036565622605942, "span": 0.11098893108600001, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505507979074877]}, {"top_radius": 0.06323355047475686, "bottom_radius": 0.04228496284449878, "length": 0.06098265461851895, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999961468970056, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177147078363202, "upper_button_position": 0.08228143906068541}], "rail_length": 5, "inclination": 83.34829459229587, "heading": 52.1469255182177} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06350600780812314, "mass": 15.866379890259562, "I_11_without_motor": 6.321, "I_22_without_motor": 6.318669924781805, "I_33_without_motor": 0.022980927441254607, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.075906512439154, "trigger": 800, "sampling_rate": 105, "lag": 1.448686008977802, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8318752329342263, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5326517787466167, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6499.1783977435125, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033368542251706844, "grain_number": 5, "grain_density": 1801.4140417671001, "grain_outer_radius": 0.03276165358754341, "grain_initial_inner_radius": 0.015076697830426719, "grain_initial_height": 0.1203809572500727, "grain_separation": 0.00393220314369234, "grains_center_of_mass_position": 0.39839068658204146, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008372843172576893, "throat_radius": 0.011513981005748773, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2541727972596173}], "aerodynamic_surfaces": [{"length": 0.5567574571329146, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345407356415689]}, {"n": 4, "root_chord": 0.1206046445483792, "tip_chord": 0.05894090817442671, "span": 0.10973389775132904, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498044387239378]}, {"top_radius": 0.0622198694177926, "bottom_radius": 0.044241228158151645, "length": 0.06000821461906757, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993572842917364, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187557551932784, "upper_button_position": 0.08060152909845797}], "rail_length": 5, "inclination": 85.44297508193395, "heading": 56.64784835290681} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349685694696316, "mass": 14.939681417036963, "I_11_without_motor": 6.321, "I_22_without_motor": 6.313606575831858, "I_33_without_motor": 0.041958928959716556, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.034244511455215, "trigger": 800, "sampling_rate": 105, "lag": 1.4088942644808267, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.978471941264691, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4572221451117287, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5276.502986660198, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03249097163856011, "grain_number": 5, "grain_density": 1853.0531836261143, "grain_outer_radius": 0.033598391364047984, "grain_initial_inner_radius": 0.015609754492860648, "grain_initial_height": 0.11904819104570077, "grain_separation": 0.0041000903781115245, "grains_center_of_mass_position": 0.39794143859724973, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.001061894437327014, "throat_radius": 0.010332993532208156, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2531146949811824}], "aerodynamic_surfaces": [{"length": 0.5591689116718218, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337401872562134]}, {"n": 4, "root_chord": 0.11955838370777302, "tip_chord": 0.058751954248510915, "span": 0.10946756851288203, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486586696973856]}, {"top_radius": 0.06177408328632319, "bottom_radius": 0.04207203784459267, "length": 0.06120381674975461, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699296412371942, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6170562312715584, "upper_button_position": 0.08224018110038356}], "rail_length": 5, "inclination": 84.27438027236268, "heading": 53.98834088269159} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.0634994775251712, "mass": 14.789743000342519, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327804053558022, "I_33_without_motor": 0.020331276305301765, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.063907882502594, "trigger": 800, "sampling_rate": 105, "lag": 1.4282437718097654, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.026343564635809, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4858903295082029, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5781.874031398711, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033638900730783815, "grain_number": 5, "grain_density": 1841.7262105125023, "grain_outer_radius": 0.032686449276452846, "grain_initial_inner_radius": 0.01520341107378659, "grain_initial_height": 0.11840118159525288, "grain_separation": 0.004202102819025115, "grains_center_of_mass_position": 0.3969202316618853, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0010842467630953426, "throat_radius": 0.011194572176214241, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.253792481963463}], "aerodynamic_surfaces": [{"length": 0.5573046176982572, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1347244551629996]}, {"n": 4, "root_chord": 0.11965941481177532, "tip_chord": 0.06030892280609246, "span": 0.11089839027013146, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049091265447256]}, {"top_radius": 0.06369248392472622, "bottom_radius": 0.043129233673117745, "length": 0.060642928860304375, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6996909032045434, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176363098226232, "upper_button_position": 0.08205459338192023}], "rail_length": 5, "inclination": 86.24367057533341, "heading": 54.057342005627724} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 7, "radius": 0.06349961298348719, "mass": 16.07175081992957, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319875387618277, "I_33_without_motor": 0.02756535534628056, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.852549403212754, "trigger": 800, "sampling_rate": 105, "lag": 1.6434884394581486, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9958566570059277, "trigger": "apogee", "sampling_rate": 105, "lag": 1.71637130481953, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7645.0207994576485, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03316564835761058, "grain_number": 5, "grain_density": 1720.7627825997079, "grain_outer_radius": 0.0332295374051678, "grain_initial_inner_radius": 0.014704745544131669, "grain_initial_height": 0.11946963389357033, "grain_separation": 0.003904457267805624, "grains_center_of_mass_position": 0.3973374611099371, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0005349091828771433, "throat_radius": 0.01130614630532406, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539383389990955}], "aerodynamic_surfaces": [{"length": 0.5581450100689791, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339628146387155]}, {"n": 4, "root_chord": 0.11916414827721365, "tip_chord": 0.060435087090517564, "span": 0.11043473959766141, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050836115125486]}, {"top_radius": 0.06166916625502263, "bottom_radius": 0.044027505092620614, "length": 0.05955596612707182, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999613058386704, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6175267393046492, "upper_button_position": 0.08243456653402126}], "rail_length": 5, "inclination": 83.06259858073382, "heading": 51.94596653880045} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349954833740623, "mass": 15.465274460566985, "I_11_without_motor": 6.321, "I_22_without_motor": 6.330880806830475, "I_33_without_motor": 0.03595770900204073, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.940620975766814, "trigger": 800, "sampling_rate": 105, "lag": 1.523715660005439, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8796819439023565, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7416895406701685, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5273.820161075635, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032275643398285, "grain_number": 5, "grain_density": 1797.5710217763697, "grain_outer_radius": 0.03306682771065332, "grain_initial_inner_radius": 0.014648195128951722, "grain_initial_height": 0.12050589001541664, "grain_separation": 0.006062211397890455, "grains_center_of_mass_position": 0.3955725277405986, "center_of_dry_mass_position": 0.317, "nozzle_position": 7.755898136069451e-05, "throat_radius": 0.010638304725235222, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2539721661964103}], "aerodynamic_surfaces": [{"length": 0.5601328316607626, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1346697078897272]}, {"n": 4, "root_chord": 0.12004334427018747, "tip_chord": 0.060252216952466325, "span": 0.10993659177337944, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0497493464788568]}, {"top_radius": 0.06342984998803261, "bottom_radius": 0.04297615039631056, "length": 0.061750194006823134, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003178586738501, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176358171468088, "upper_button_position": 0.08268204152704128}], "rail_length": 5, "inclination": 86.15106571858033, "heading": 56.58635538278056} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349111022861069, "mass": 15.487579226695804, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3175308895212465, "I_33_without_motor": 0.03355348550902306, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.928346935472856, "trigger": 800, "sampling_rate": 105, "lag": 1.5381367484283852, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0550712071436004, "trigger": "apogee", "sampling_rate": 105, "lag": 1.761105637060934, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7240.082384321235, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03358349444320451, "grain_number": 5, "grain_density": 1915.032809526455, "grain_outer_radius": 0.03319995966736539, "grain_initial_inner_radius": 0.01562864105651747, "grain_initial_height": 0.11980729774664259, "grain_separation": 0.003293191660948858, "grains_center_of_mass_position": 0.39672857016244956, "center_of_dry_mass_position": 0.317, "nozzle_position": -6.032854034318439e-05, "throat_radius": 0.010860726456167855, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2542908221979676}], "aerodynamic_surfaces": [{"length": 0.5580954097235425, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331339392627735]}, {"n": 4, "root_chord": 0.11987843610193782, "tip_chord": 0.05983928314067827, "span": 0.10990601021315244, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048815385645393]}, {"top_radius": 0.06356962030074416, "bottom_radius": 0.04471192829512622, "length": 0.06030998763422915, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985957118196923, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617082819023407, "upper_button_position": 0.08151289279628526}], "rail_length": 5, "inclination": 85.74963885467906, "heading": 54.85701037397774} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 12, "radius": 0.06349071401401025, "mass": 15.581078430462487, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333026329445397, "I_33_without_motor": 0.030216534408396584, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.13947162214566, "trigger": 800, "sampling_rate": 105, "lag": 1.45326128902731, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1126795028586023, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0898229282465348, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5998.541017740012, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03324083373776927, "grain_number": 5, "grain_density": 1817.5731357058758, "grain_outer_radius": 0.0326419568967401, "grain_initial_inner_radius": 0.01468790792853234, "grain_initial_height": 0.12178662308146013, "grain_separation": 0.004731284083728006, "grains_center_of_mass_position": 0.39485986603302653, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00041186748421948293, "throat_radius": 0.010821325772616304, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2553020782151718}], "aerodynamic_surfaces": [{"length": 0.558225371865453, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336488585603557]}, {"n": 4, "root_chord": 0.11945150157467783, "tip_chord": 0.060415627031685994, "span": 0.11026449310373265, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049475297195899]}, {"top_radius": 0.06435206025832149, "bottom_radius": 0.04291615657957798, "length": 0.060319241237337916, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993790155710838, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6183503152250203, "upper_button_position": 0.08102870034606358}], "rail_length": 5, "inclination": 86.65977788966984, "heading": 53.3685121273574} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 13, "radius": 0.06349505983093963, "mass": 15.977801720077593, "I_11_without_motor": 6.321, "I_22_without_motor": 6.308823458281409, "I_33_without_motor": 0.04286459691771469, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06906094583683, "trigger": 800, "sampling_rate": 105, "lag": 1.4694597491475654, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9062964022420553, "trigger": "apogee", "sampling_rate": 105, "lag": 1.62130892180474, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7527.6799862704665, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03250010196683767, "grain_number": 5, "grain_density": 1805.7837595177164, "grain_outer_radius": 0.033278359050785376, "grain_initial_inner_radius": 0.015041511170294473, "grain_initial_height": 0.1204932132634353, "grain_separation": 0.0057254361128318, "grains_center_of_mass_position": 0.3969339263813001, "center_of_dry_mass_position": 0.317, "nozzle_position": -9.741302044828801e-05, "throat_radius": 0.010638070061815887, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551845933232615}], "aerodynamic_surfaces": [{"length": 0.5588962563106538, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1361520928099154]}, {"n": 4, "root_chord": 0.11952355330845932, "tip_chord": 0.05945313807924565, "span": 0.11043315341233037, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048777985961603]}, {"top_radius": 0.0636070369254136, "bottom_radius": 0.04429186677134245, "length": 0.059715203324100935, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983586808560291, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6165525170020413, "upper_button_position": 0.08180616385398787}], "rail_length": 5, "inclination": 85.62582264581172, "heading": 54.482535191299725} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350010617907942, "mass": 15.616384052720537, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336198594959821, "I_33_without_motor": 0.032151932632864366, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.863052605620547, "trigger": 800, "sampling_rate": 105, "lag": 1.5714099423064176, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0260901198701546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.628423602424982, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5991.19479568763, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032594667130579895, "grain_number": 5, "grain_density": 1835.4459209141314, "grain_outer_radius": 0.032852448008981516, "grain_initial_inner_radius": 0.014873231192560817, "grain_initial_height": 0.12024852659946446, "grain_separation": 0.0038826618216640987, "grains_center_of_mass_position": 0.3985520099215809, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0001017658985227532, "throat_radius": 0.011439960938596713, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554560176004106}], "aerodynamic_surfaces": [{"length": 0.5590038905608953, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1319099448896464]}, {"n": 4, "root_chord": 0.11969982124910535, "tip_chord": 0.06071073745581544, "span": 0.11013573108061361, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0506379679069446]}, {"top_radius": 0.06393784509562898, "bottom_radius": 0.044451517052417004, "length": 0.06042877158984089, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999998687456951, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6173130261620537, "upper_button_position": 0.08268684258364134}], "rail_length": 5, "inclination": 84.45969704081863, "heading": 53.32547690335799} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350020679260096, "mass": 16.07925997577798, "I_11_without_motor": 6.321, "I_22_without_motor": 6.328842298103068, "I_33_without_motor": 0.034624025347514825, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.933284053504405, "trigger": 800, "sampling_rate": 105, "lag": 1.4567290801649746, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0362619668060635, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3598841050139518, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6027.851075593204, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269769791837645, "grain_number": 5, "grain_density": 1858.9397312919712, "grain_outer_radius": 0.03322118173692394, "grain_initial_inner_radius": 0.014694708688367447, "grain_initial_height": 0.11995477452717847, "grain_separation": 0.004979112051397437, "grains_center_of_mass_position": 0.3977350488385687, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011191912860125735, "throat_radius": 0.011182064621518576, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537700569898373}], "aerodynamic_surfaces": [{"length": 0.5566014256540491, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332863900034267]}, {"n": 4, "root_chord": 0.12025029755552738, "tip_chord": 0.059891947730344314, "span": 0.110620783113616, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504528194037865]}, {"top_radius": 0.06341702628216785, "bottom_radius": 0.04413446170594816, "length": 0.06235391221367138, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006024013387095, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6181493845338223, "upper_button_position": 0.08245301680488726}], "rail_length": 5, "inclination": 83.2033167698971, "heading": 56.89194600995475} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06350166251629631, "mass": 15.978379058854998, "I_11_without_motor": 6.321, "I_22_without_motor": 6.312865268520777, "I_33_without_motor": 0.028972432977841835, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.878085481262259, "trigger": 800, "sampling_rate": 105, "lag": 1.5971137144507392, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9382922095548921, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6834894567597485, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5758.290796508323, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03321119044081249, "grain_number": 5, "grain_density": 1872.6287660997307, "grain_outer_radius": 0.0323721355913929, "grain_initial_inner_radius": 0.015466936172123033, "grain_initial_height": 0.11816996812142043, "grain_separation": 0.0044755224850256126, "grains_center_of_mass_position": 0.39651516094904854, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00022705826943958407, "throat_radius": 0.010628815311393723, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551833610044223}], "aerodynamic_surfaces": [{"length": 0.557497158738888, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13400902518828]}, {"n": 4, "root_chord": 0.1196234351536341, "tip_chord": 0.060029042087162476, "span": 0.11027501924361742, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486613526192283]}, {"top_radius": 0.06261222498764403, "bottom_radius": 0.04479876378154483, "length": 0.060302021586590066, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7006614239634689, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6184374056888549, "upper_button_position": 0.08222401827461401}], "rail_length": 5, "inclination": 85.67727536841758, "heading": 57.505022523011526} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 29, "radius": 0.06350361030160827, "mass": 14.768244716623176, "I_11_without_motor": 6.321, "I_22_without_motor": 6.297669906541966, "I_33_without_motor": 0.04146309182506471, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.973519050009717, "trigger": 800, "sampling_rate": 105, "lag": 1.530094460279085, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0214510706695452, "trigger": "apogee", "sampling_rate": 105, "lag": 1.359780721814299, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5202.564115392717, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032479812305833654, "grain_number": 5, "grain_density": 1822.328742585212, "grain_outer_radius": 0.033601510125230126, "grain_initial_inner_radius": 0.01551425833649435, "grain_initial_height": 0.1196927533448275, "grain_separation": 0.005676823240230434, "grains_center_of_mass_position": 0.3965382860750915, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00020701116015053148, "throat_radius": 0.011112149273431172, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2537627653673682}], "aerodynamic_surfaces": [{"length": 0.5583070867879562, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.135269454890332]}, {"n": 4, "root_chord": 0.1201954515814579, "tip_chord": 0.05960068257076972, "span": 0.11006597586143457, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0498055269553994]}, {"top_radius": 0.06149231110439465, "bottom_radius": 0.04307466522455437, "length": 0.058681678723526684, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008257668647009, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185708702687337, "upper_button_position": 0.08225489659596719}], "rail_length": 5, "inclination": 84.13505987315904, "heading": 54.425321304724} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06349826910145003, "mass": 15.811268701963789, "I_11_without_motor": 6.321, "I_22_without_motor": 6.297535996741028, "I_33_without_motor": 0.03770309754886242, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015131271686245, "trigger": 800, "sampling_rate": 105, "lag": 1.5803457009610016, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9658280160051751, "trigger": "apogee", "sampling_rate": 105, "lag": 1.438435366671585, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6725.859326238849, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03268516673140312, "grain_number": 5, "grain_density": 1793.4819047298733, "grain_outer_radius": 0.032961236775661144, "grain_initial_inner_radius": 0.014783168882375462, "grain_initial_height": 0.11929194085325402, "grain_separation": 0.004711745837416611, "grains_center_of_mass_position": 0.3969399163338511, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.216544967295517e-05, "throat_radius": 0.010851864577430419, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2543039135058602}], "aerodynamic_surfaces": [{"length": 0.5570808827884812, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336959993404112]}, {"n": 4, "root_chord": 0.12131872367951838, "tip_chord": 0.06069547567110912, "span": 0.1106487056941167, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0507875752995297]}, {"top_radius": 0.06396353956563779, "bottom_radius": 0.04420019830150791, "length": 0.060067770756782435, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7021770367990167, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6198340693303656, "upper_button_position": 0.08234296746865111}], "rail_length": 5, "inclination": 83.64090946817885, "heading": 55.526650400940206} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349808191610433, "mass": 15.448066189513751, "I_11_without_motor": 6.321, "I_22_without_motor": 6.335476402085277, "I_33_without_motor": 0.04854358533509482, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.859509663398551, "trigger": 800, "sampling_rate": 105, "lag": 1.4685067872839004, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.09541889343484, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3047488204998685, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6201.686565465897, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03352303561819316, "grain_number": 5, "grain_density": 1857.808179765967, "grain_outer_radius": 0.0324718120507968, "grain_initial_inner_radius": 0.015000054616394911, "grain_initial_height": 0.12013422660398333, "grain_separation": 0.0061190201128130525, "grains_center_of_mass_position": 0.39689036913857245, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0007451309285336884, "throat_radius": 0.010196907915964847, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546069140865619}], "aerodynamic_surfaces": [{"length": 0.5574611626150132, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1356546751431937]}, {"n": 4, "root_chord": 0.12019749817539103, "tip_chord": 0.060382751531329305, "span": 0.10942169416793117, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0503457519589394]}, {"top_radius": 0.06229981340702479, "bottom_radius": 0.0428948532173903, "length": 0.05873416566578169, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989772451366628, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195397568792571, "upper_button_position": 0.07943748825740571}], "rail_length": 5, "inclination": 85.18033979392028, "heading": 53.68225748982355} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 21, "radius": 0.06349830077367503, "mass": 15.276580288858378, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333293806391523, "I_33_without_motor": 0.0312723286664786, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.114484756394644, "trigger": 800, "sampling_rate": 105, "lag": 1.5581098802094564, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0744036932746546, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6624741723124115, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4554.687619421615, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033253479992140164, "grain_number": 5, "grain_density": 1761.58995365578, "grain_outer_radius": 0.032970292977127745, "grain_initial_inner_radius": 0.015300572455108597, "grain_initial_height": 0.12070381437427775, "grain_separation": 0.004898198313965763, "grains_center_of_mass_position": 0.3974397501300556, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00012056735458663338, "throat_radius": 0.011154136810512938, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2534504480018436}], "aerodynamic_surfaces": [{"length": 0.5568013164175575, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1333334446299042]}, {"n": 4, "root_chord": 0.11981771775058117, "tip_chord": 0.06004584147176229, "span": 0.11092336444212328, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0501217052631528]}, {"top_radius": 0.06485379341745227, "bottom_radius": 0.04264250972188873, "length": 0.059492109481252047, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6980728506682594, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6185075678537694, "upper_button_position": 0.07956528281449005}], "rail_length": 5, "inclination": 86.78888367302646, "heading": 53.008818613878} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06349847634741185, "mass": 15.439467019152055, "I_11_without_motor": 6.321, "I_22_without_motor": 6.309412613861963, "I_33_without_motor": 0.052716651045570266, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.015142351463762, "trigger": 800, "sampling_rate": 105, "lag": 1.3919516030320789, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9736944174852978, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5398720223856377, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8371.361362656922, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03255586022128902, "grain_number": 5, "grain_density": 1797.6425653749861, "grain_outer_radius": 0.03313693276551655, "grain_initial_inner_radius": 0.014831736242548778, "grain_initial_height": 0.11934008699564969, "grain_separation": 0.004476066894669005, "grains_center_of_mass_position": 0.39696709371711114, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.002009236659616579, "throat_radius": 0.01141955651152787, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.254450731117011}], "aerodynamic_surfaces": [{"length": 0.5575626307789633, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342900144435635]}, {"n": 4, "root_chord": 0.1199607766160391, "tip_chord": 0.060078738100559526, "span": 0.11003813204526529, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0479329420879089]}, {"top_radius": 0.06541135496234633, "bottom_radius": 0.04154981010619985, "length": 0.05952430679176677, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982556379392587, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6204189837068999, "upper_button_position": 0.07783665423235886}], "rail_length": 5, "inclination": 84.35935683371255, "heading": 54.83197813857583} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0635078239846286, "mass": 15.76775809799216, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316967452674181, "I_33_without_motor": 0.008047796942976956, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.031852692235947, "trigger": 800, "sampling_rate": 105, "lag": 1.4833763773792468, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0095241332990559, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1354070921888137, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5504.637366991714, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03269734717679326, "grain_number": 5, "grain_density": 1785.0666414365726, "grain_outer_radius": 0.03335266586208521, "grain_initial_inner_radius": 0.015662094986241427, "grain_initial_height": 0.12125049763833852, "grain_separation": 0.004978420257344126, "grains_center_of_mass_position": 0.39585267754196246, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009615831142019394, "throat_radius": 0.011281211537809303, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2528647482285322}], "aerodynamic_surfaces": [{"length": 0.5573476507254641, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1345958798505504]}, {"n": 4, "root_chord": 0.12065897038238559, "tip_chord": 0.06087353687812731, "span": 0.1102398132560383, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491854703713097]}, {"top_radius": 0.06382549712913821, "bottom_radius": 0.04368616348349997, "length": 0.05941155508614411, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700207748378319, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166769923051159, "upper_button_position": 0.08353075607320315}], "rail_length": 5, "inclination": 85.48209975745503, "heading": 53.28794351204385} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 5, "radius": 0.06350010186231124, "mass": 15.350953505819197, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323461703875181, "I_33_without_motor": 0.04396968570260938, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.089711123740774, "trigger": 800, "sampling_rate": 105, "lag": 1.5445261115215456, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9759674407582517, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1315651609424182, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 8373.52509211411, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281674299545231, "grain_number": 5, "grain_density": 1837.6439381538876, "grain_outer_radius": 0.03307026146822016, "grain_initial_inner_radius": 0.015094392757579135, "grain_initial_height": 0.11987794183446772, "grain_separation": 0.004393608782220245, "grains_center_of_mass_position": 0.39569363681378855, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0011500486238827524, "throat_radius": 0.01125255618411808, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552695793066755}], "aerodynamic_surfaces": [{"length": 0.5573375199964087, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132908608797661]}, {"n": 4, "root_chord": 0.1204900328418507, "tip_chord": 0.05987640344058311, "span": 0.11038705473722354, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0496748459025225]}, {"top_radius": 0.062194269357022214, "bottom_radius": 0.04175064182576406, "length": 0.06035803249886158, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7012115418052464, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6177161629591176, "upper_button_position": 0.08349537884612879}], "rail_length": 5, "inclination": 86.50838164184233, "heading": 52.28493981617516} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 23, "radius": 0.06349523772740522, "mass": 16.583029900828663, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33409139222668, "I_33_without_motor": 0.03404371741720848, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.049961898535333, "trigger": 800, "sampling_rate": 105, "lag": 1.5747526248669723, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0101010957530643, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3757199362361758, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7438.237932456511, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281049549727436, "grain_number": 5, "grain_density": 1771.8927817848435, "grain_outer_radius": 0.03255098587925015, "grain_initial_inner_radius": 0.015126341608305402, "grain_initial_height": 0.1197103438049102, "grain_separation": 0.00624549415241411, "grains_center_of_mass_position": 0.39687445619296746, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.001196380026044618, "throat_radius": 0.010027692891796496, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255154424795232}], "aerodynamic_surfaces": [{"length": 0.5586610579714852, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332299890639823]}, {"n": 4, "root_chord": 0.12024956665297333, "tip_chord": 0.06048229494148549, "span": 0.11039526076885649, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0494691104320228]}, {"top_radius": 0.06315402533819432, "bottom_radius": 0.044167654251376136, "length": 0.05967163743157933, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003253171710709, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172300415958302, "upper_button_position": 0.08309527557524077}], "rail_length": 5, "inclination": 83.2104735259453, "heading": 55.85388616904401} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 30, "radius": 0.06350521663729228, "mass": 15.616276988745629, "I_11_without_motor": 6.321, "I_22_without_motor": 6.325170584024044, "I_33_without_motor": 0.029485825264602153, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.178184918998717, "trigger": 800, "sampling_rate": 105, "lag": 1.4902416617934338, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.020556571383273, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1493557732828052, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5137.473717436207, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03267603693701868, "grain_number": 5, "grain_density": 1705.5275467708796, "grain_outer_radius": 0.033041158384736764, "grain_initial_inner_radius": 0.014517659438377142, "grain_initial_height": 0.12101699048677766, "grain_separation": 0.004414751673409745, "grains_center_of_mass_position": 0.3958546724659575, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0002926259613194238, "throat_radius": 0.011481111674050899, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544602517107308}], "aerodynamic_surfaces": [{"length": 0.5576911410157682, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.132508399421888]}, {"n": 4, "root_chord": 0.1199034974915296, "tip_chord": 0.060177814345057645, "span": 0.1095559055879197, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485622673264714]}, {"top_radius": 0.06284707523974443, "bottom_radius": 0.04313058091767091, "length": 0.05895264794941439, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995204944602449, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191333302891207, "upper_button_position": 0.08038716417112424}], "rail_length": 5, "inclination": 85.20474611363365, "heading": 49.84976726049942} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350031508876715, "mass": 15.502487965378075, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336228216574152, "I_33_without_motor": 0.03380117793848641, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.070115259615616, "trigger": 800, "sampling_rate": 105, "lag": 1.5826944347846295, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0157216217445955, "trigger": "apogee", "sampling_rate": 105, "lag": 1.856261013391633, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7280.554218952003, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03296404791344403, "grain_number": 5, "grain_density": 1776.5965902533358, "grain_outer_radius": 0.033334614505719146, "grain_initial_inner_radius": 0.014911717753445427, "grain_initial_height": 0.12031122881503721, "grain_separation": 0.0025841409182775035, "grains_center_of_mass_position": 0.3984094929990612, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013885629503958827, "throat_radius": 0.01133541962805027, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2516400413605502}], "aerodynamic_surfaces": [{"length": 0.5587601883431061, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328318665237826]}, {"n": 4, "root_chord": 0.12040146411256542, "tip_chord": 0.059258000904951376, "span": 0.11033511650211542, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500604078996512]}, {"top_radius": 0.0613850332927506, "bottom_radius": 0.04333553925462833, "length": 0.0599111349799334, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991235434915805, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6200498639174193, "upper_button_position": 0.07907367957416112}], "rail_length": 5, "inclination": 83.60053519286518, "heading": 51.526746860961204} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06349871801463913, "mass": 16.429274092970058, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306302055789925, "I_33_without_motor": 0.05373402254073249, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.979908184078718, "trigger": 800, "sampling_rate": 105, "lag": 1.4180931066221476, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0113643431020474, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6967956446932162, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5860.742415201332, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03293948671996106, "grain_number": 5, "grain_density": 1845.2889141490343, "grain_outer_radius": 0.032912433958915584, "grain_initial_inner_radius": 0.015129359729970312, "grain_initial_height": 0.11954061168601643, "grain_separation": 0.005050401664969707, "grains_center_of_mass_position": 0.3987369134768092, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0008672545122943267, "throat_radius": 0.010762980206794497, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548148260327863}], "aerodynamic_surfaces": [{"length": 0.5576995321257853, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338437666909176]}, {"n": 4, "root_chord": 0.11998124882822038, "tip_chord": 0.059595342799942996, "span": 0.10975688950939277, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051235755046075]}, {"top_radius": 0.06364322386142972, "bottom_radius": 0.043580512928089565, "length": 0.0604002715558805, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989352786282838, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166495891431479, "upper_button_position": 0.08228568948513582}], "rail_length": 5, "inclination": 83.72324842917801, "heading": 59.46859146510969} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349640538088025, "mass": 15.560163724823637, "I_11_without_motor": 6.321, "I_22_without_motor": 6.315367501008682, "I_33_without_motor": 0.03364343161324252, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.068190141164497, "trigger": 800, "sampling_rate": 105, "lag": 1.4111874910354332, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8856883412472702, "trigger": "apogee", "sampling_rate": 105, "lag": 1.378270912649637, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6939.051888022992, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033663744189228795, "grain_number": 5, "grain_density": 1805.7855799439342, "grain_outer_radius": 0.033011890278016515, "grain_initial_inner_radius": 0.015137298350087234, "grain_initial_height": 0.12177903726485104, "grain_separation": 0.004924722317277254, "grains_center_of_mass_position": 0.39577160738720335, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004699758125844839, "throat_radius": 0.011753119183936045, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554621520224865}], "aerodynamic_surfaces": [{"length": 0.5574166602513334, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1360603713226578]}, {"n": 4, "root_chord": 0.12105021685293663, "tip_chord": 0.06138849424335449, "span": 0.11002369923614432, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493734170500928]}, {"top_radius": 0.06549763187275595, "bottom_radius": 0.04397064247435551, "length": 0.05954076937907801, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6993801684548815, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.617899207675627, "upper_button_position": 0.08148096077925449}], "rail_length": 5, "inclination": 85.7617556333625, "heading": 50.45386788361246} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06349727885464675, "mass": 15.026031953774375, "I_11_without_motor": 6.321, "I_22_without_motor": 6.307781528900048, "I_33_without_motor": 0.03540590581599509, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.119782504336532, "trigger": 800, "sampling_rate": 105, "lag": 1.6105929209274763, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9794255014086165, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1912071790744558, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6754.518524001381, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032279168252048025, "grain_number": 5, "grain_density": 1895.8324039473205, "grain_outer_radius": 0.0329084111986529, "grain_initial_inner_radius": 0.015080281238645054, "grain_initial_height": 0.12070307139422418, "grain_separation": 0.005069371041813665, "grains_center_of_mass_position": 0.3962771256119801, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0021519034975892013, "throat_radius": 0.011483664771627388, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.25488291822293}], "aerodynamic_surfaces": [{"length": 0.5584440997261627, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332387024111283]}, {"n": 4, "root_chord": 0.11950802577772086, "tip_chord": 0.060233269215185195, "span": 0.11111287119634268, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0482902266494887]}, {"top_radius": 0.06272958947512781, "bottom_radius": 0.04314178495483985, "length": 0.060383391150548096, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6985968693643306, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6172262139974832, "upper_button_position": 0.0813706553668474}], "rail_length": 5, "inclination": 84.7287625190006, "heading": 56.20598212872918} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 10, "radius": 0.06349099341994102, "mass": 14.911989668312525, "I_11_without_motor": 6.321, "I_22_without_motor": 6.338738149296281, "I_33_without_motor": 0.03048904948393912, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.07237808795293, "trigger": 800, "sampling_rate": 105, "lag": 1.4914533870508448, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9798923197202689, "trigger": "apogee", "sampling_rate": 105, "lag": 1.0780473505266819, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4668.961916264563, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254275767782588, "grain_number": 5, "grain_density": 1796.5891759401404, "grain_outer_radius": 0.03269848769504863, "grain_initial_inner_radius": 0.014669883483270314, "grain_initial_height": 0.12229139576770098, "grain_separation": 0.0048689806525500385, "grains_center_of_mass_position": 0.3966419498619066, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0008025652858881102, "throat_radius": 0.011496558991607845, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535239058733174}], "aerodynamic_surfaces": [{"length": 0.5587334552602179, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1336800036423766]}, {"n": 4, "root_chord": 0.12082757110639676, "tip_chord": 0.05892629170775391, "span": 0.11019363470555152, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491061187749262]}, {"top_radius": 0.06332909267550832, "bottom_radius": 0.04336017185742887, "length": 0.05951798465579419, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6991744995826922, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6166183155228169, "upper_button_position": 0.0825561840598753}], "rail_length": 5, "inclination": 83.87717586019004, "heading": 53.30259937557272} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 18, "radius": 0.06350692016519821, "mass": 15.586845576023839, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322857175295064, "I_33_without_motor": 0.03489550962726033, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.038656425329199, "trigger": 800, "sampling_rate": 105, "lag": 1.61387246728419, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.990673048618093, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7597603019637897, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6684.61351755582, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033530612793064477, "grain_number": 5, "grain_density": 1782.2222870698783, "grain_outer_radius": 0.03276753771976324, "grain_initial_inner_radius": 0.014617408053607488, "grain_initial_height": 0.12059347136093418, "grain_separation": 0.0032776007932963976, "grains_center_of_mass_position": 0.3966098964185181, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0014265224745061565, "throat_radius": 0.01064048815331782, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547955734429466}], "aerodynamic_surfaces": [{"length": 0.5584630292428007, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341332308415786]}, {"n": 4, "root_chord": 0.12027510438941048, "tip_chord": 0.059882644687741134, "span": 0.11049666707450283, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050372615798987]}, {"top_radius": 0.0645352731106726, "bottom_radius": 0.0427954343906046, "length": 0.06079826539400083, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.699632998092617, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178970333404196, "upper_button_position": 0.08173596475219747}], "rail_length": 5, "inclination": 85.71945507408714, "heading": 50.87897292251587} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350641416386599, "mass": 15.75771988515479, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319618243881424, "I_33_without_motor": 0.03444338113574351, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.792821018405109, "trigger": 800, "sampling_rate": 105, "lag": 1.2464139933129519, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9360428745335496, "trigger": "apogee", "sampling_rate": 105, "lag": 1.622399965479242, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6081.551673111597, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032859754186489676, "grain_number": 5, "grain_density": 1756.9141480765845, "grain_outer_radius": 0.03347426540732239, "grain_initial_inner_radius": 0.015165748858107193, "grain_initial_height": 0.12031541233851512, "grain_separation": 0.007043187211321465, "grains_center_of_mass_position": 0.39626952950729605, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010531728698486619, "throat_radius": 0.010949359166345832, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2550303788268098}], "aerodynamic_surfaces": [{"length": 0.5575033199590776, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1340522176838748]}, {"n": 4, "root_chord": 0.119788478234887, "tip_chord": 0.05926068763143584, "span": 0.1107861308838946, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049188570817504]}, {"top_radius": 0.06336532105334035, "bottom_radius": 0.045188619407010196, "length": 0.05851410268467456, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6982491171043685, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174256548598326, "upper_button_position": 0.08082346224453596}], "rail_length": 5, "inclination": 83.03445739483779, "heading": 55.78206943777441} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06349415740893828, "mass": 14.575149104648734, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320335661796292, "I_33_without_motor": 0.029895212351001177, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06297429728531, "trigger": 800, "sampling_rate": 105, "lag": 1.4035722584041006, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0023845730055074, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6960651422981594, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7070.189133774567, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03229076462673231, "grain_number": 5, "grain_density": 1800.1594770744744, "grain_outer_radius": 0.03311900743846264, "grain_initial_inner_radius": 0.014989390301054955, "grain_initial_height": 0.12005568207477367, "grain_separation": 0.0051738982893977685, "grains_center_of_mass_position": 0.3978137188507247, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00063860878082648, "throat_radius": 0.011324511711397995, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2567914067431651}], "aerodynamic_surfaces": [{"length": 0.5574169412883168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1329844095869972]}, {"n": 4, "root_chord": 0.11880532318337236, "tip_chord": 0.059873445263876515, "span": 0.10968742241070367, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489519060914272]}, {"top_radius": 0.06347898840301089, "bottom_radius": 0.04276881276366049, "length": 0.06042591996732101, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7001396824800027, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178275872056291, "upper_button_position": 0.08231209527437355}], "rail_length": 5, "inclination": 85.78134946483927, "heading": 53.71268386900425} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06350133874817875, "mass": 15.739087065951749, "I_11_without_motor": 6.321, "I_22_without_motor": 6.320261092550887, "I_33_without_motor": 0.04391314313364002, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.954225194323369, "trigger": 800, "sampling_rate": 105, "lag": 1.7612658746737735, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.030211776915088, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4170731100873255, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5813.484500199294, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03234292540848862, "grain_number": 5, "grain_density": 1870.9938043448326, "grain_outer_radius": 0.033188612323438046, "grain_initial_inner_radius": 0.014483463851458397, "grain_initial_height": 0.12005052220693163, "grain_separation": 0.006525039047922767, "grains_center_of_mass_position": 0.39690311281274065, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0010304459035110492, "throat_radius": 0.011894562221605199, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2548006816296127}], "aerodynamic_surfaces": [{"length": 0.5562108587047924, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331080699062337]}, {"n": 4, "root_chord": 0.11998508183453047, "tip_chord": 0.06022703711133854, "span": 0.11012660260276289, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0504492514130308]}, {"top_radius": 0.06395429447547535, "bottom_radius": 0.04357813136140024, "length": 0.05976939629241907, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7014521317803234, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618143944541089, "upper_button_position": 0.08330818723923439}], "rail_length": 5, "inclination": 83.86371297453245, "heading": 51.14945696256018} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 19, "radius": 0.06350287196362328, "mass": 15.477603298198542, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3287875845029635, "I_33_without_motor": 0.03890738947446751, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.06740775543221, "trigger": 800, "sampling_rate": 105, "lag": 1.3512900533551035, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9762982437219632, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4832294048212213, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7502.754683509952, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032964989037832626, "grain_number": 5, "grain_density": 1788.8104541430516, "grain_outer_radius": 0.033149039823729354, "grain_initial_inner_radius": 0.014956060538835513, "grain_initial_height": 0.11985558220188895, "grain_separation": 0.0055312140573539285, "grains_center_of_mass_position": 0.3985091875412424, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.00014048646321747644, "throat_radius": 0.011128858349284046, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2540836656052254}], "aerodynamic_surfaces": [{"length": 0.557799771210168, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133829828717082]}, {"n": 4, "root_chord": 0.12003081806477738, "tip_chord": 0.059693628438470474, "span": 0.10977723436558857, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0485810827282636]}, {"top_radius": 0.064166954110244, "bottom_radius": 0.043324600750430924, "length": 0.06095595403144316, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7003010734307419, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618369615187615, "upper_button_position": 0.08193145824312686}], "rail_length": 5, "inclination": 85.40747065351523, "heading": 53.879342946189766} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06349424495999313, "mass": 15.289384776235984, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306154503963323, "I_33_without_motor": 0.02839491806991835, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.135498152832222, "trigger": 800, "sampling_rate": 105, "lag": 1.3285308269746687, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0017636493554252, "trigger": "apogee", "sampling_rate": 105, "lag": 1.1984230118502608, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6392.269114487668, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03272252281347832, "grain_number": 5, "grain_density": 1833.0608674290308, "grain_outer_radius": 0.032895435601816236, "grain_initial_inner_radius": 0.014882207978624738, "grain_initial_height": 0.11969987835568444, "grain_separation": 0.004697613866971064, "grains_center_of_mass_position": 0.396212877573689, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0006478727665870445, "throat_radius": 0.010898984417347293, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255126526385538}], "aerodynamic_surfaces": [{"length": 0.5610432700851076, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344214028903659]}, {"n": 4, "root_chord": 0.11983259940224547, "tip_chord": 0.059857503191360836, "span": 0.10908688167587541, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0493598205374375]}, {"top_radius": 0.06616312122168984, "bottom_radius": 0.0420567814510498, "length": 0.06068179822068203, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995641410542333, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6171261119754449, "upper_button_position": 0.08243802907878839}], "rail_length": 5, "inclination": 86.4211284460049, "heading": 54.78651357457752} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 24, "radius": 0.06348889335981099, "mass": 15.583848902217873, "I_11_without_motor": 6.321, "I_22_without_motor": 6.333022232111264, "I_33_without_motor": 0.03187528560023689, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.759519074991376, "trigger": 800, "sampling_rate": 105, "lag": 1.4854251201039803, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9821168912859215, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7290661835780257, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7633.343387753738, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03254845923513283, "grain_number": 5, "grain_density": 1893.1579616067543, "grain_outer_radius": 0.032188305187344654, "grain_initial_inner_radius": 0.014780245484368565, "grain_initial_height": 0.12047673604847618, "grain_separation": 0.00723636179281006, "grains_center_of_mass_position": 0.39840717735319126, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.000867322706933042, "throat_radius": 0.011791008615649088, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2554746347187538}], "aerodynamic_surfaces": [{"length": 0.559014155327065, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1337337682814994]}, {"n": 4, "root_chord": 0.11898231179812074, "tip_chord": 0.059532622215424866, "span": 0.10993465209656599, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0489986851644022]}, {"top_radius": 0.06476205109150436, "bottom_radius": 0.043743478942257726, "length": 0.06072839338720589, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994098260745485, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180105016068104, "upper_button_position": 0.08139932446773812}], "rail_length": 5, "inclination": 84.90657696281315, "heading": 53.939355604952496} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 8, "radius": 0.06349659168099728, "mass": 16.305702682515836, "I_11_without_motor": 6.321, "I_22_without_motor": 6.344783712062247, "I_33_without_motor": 0.016003019794159308, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.960190106868861, "trigger": 800, "sampling_rate": 105, "lag": 1.5994834448724884, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9939899314726334, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6170918880739802, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7278.800591342484, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03362139792512351, "grain_number": 5, "grain_density": 1822.674329247716, "grain_outer_radius": 0.03312243461117374, "grain_initial_inner_radius": 0.015445196392900602, "grain_initial_height": 0.11869627671464453, "grain_separation": 0.006991241661116351, "grains_center_of_mass_position": 0.39701080002097466, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0006848998577705483, "throat_radius": 0.011136928209709508, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255572324945484}], "aerodynamic_surfaces": [{"length": 0.5590362503363565, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1332476243490608]}, {"n": 4, "root_chord": 0.1194884932453031, "tip_chord": 0.059766577581455635, "span": 0.11012758717137579, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0491352610246414]}, {"top_radius": 0.06455826404605547, "bottom_radius": 0.042818746936302735, "length": 0.06070191888242757, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6990842003606527, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167684769133972, "upper_button_position": 0.08231572344725546}], "rail_length": 5, "inclination": 84.51493874542118, "heading": 53.313613644223054} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350665082686073, "mass": 15.394521007921265, "I_11_without_motor": 6.321, "I_22_without_motor": 6.316030751808541, "I_33_without_motor": 0.029840723982932527, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.059026889445699, "trigger": 800, "sampling_rate": 105, "lag": 1.545497995704636, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.102653522232934, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6357492455467773, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 4381.530512163209, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281109591917161, "grain_number": 5, "grain_density": 1792.883223326701, "grain_outer_radius": 0.032900919541199454, "grain_initial_inner_radius": 0.01503795124527453, "grain_initial_height": 0.11796680458247052, "grain_separation": 0.0038014321265453354, "grains_center_of_mass_position": 0.3977098939593338, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009343615702067943, "throat_radius": 0.011126163302300316, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544371369766765}], "aerodynamic_surfaces": [{"length": 0.5573099908342036, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339256475111477]}, {"n": 4, "root_chord": 0.11938112567603347, "tip_chord": 0.06037133951581942, "span": 0.11001208782502767, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0481480800135496]}, {"top_radius": 0.06453766480069267, "bottom_radius": 0.04307647015222459, "length": 0.06014717155368795, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994199575417094, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6164073184726181, "upper_button_position": 0.08301263906909129}], "rail_length": 5, "inclination": 86.18568828453444, "heading": 49.86401803845645} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 26, "radius": 0.06350132457850181, "mass": 15.68365857689882, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306014989043058, "I_33_without_motor": 0.02315763347133886, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.172082401809432, "trigger": 800, "sampling_rate": 105, "lag": 1.6084643661257156, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9723450038424492, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2257982287297073, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7816.786608686991, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03343504355204511, "grain_number": 5, "grain_density": 1859.1745881192835, "grain_outer_radius": 0.03309885895833671, "grain_initial_inner_radius": 0.014825611792017423, "grain_initial_height": 0.11877119104451778, "grain_separation": 0.006176373126630874, "grains_center_of_mass_position": 0.39687821008780455, "center_of_dry_mass_position": 0.317, "nozzle_position": 5.762887028860078e-05, "throat_radius": 0.01164291378769199, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255459424242044}], "aerodynamic_surfaces": [{"length": 0.5573477904131796, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1328748878493342]}, {"n": 4, "root_chord": 0.12047283872522034, "tip_chord": 0.06009929137583036, "span": 0.10995971616453344, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.050534770469552]}, {"top_radius": 0.06282744095265881, "bottom_radius": 0.04308629676182886, "length": 0.05983066024337866, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995198122525503, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174630762635047, "upper_button_position": 0.08205673598904561}], "rail_length": 5, "inclination": 83.15042337716687, "heading": 52.368657505816884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 11, "radius": 0.0634988914388425, "mass": 15.500453314491036, "I_11_without_motor": 6.321, "I_22_without_motor": 6.33111445800834, "I_33_without_motor": 0.04081828306342736, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.00983527598312, "trigger": 800, "sampling_rate": 105, "lag": 1.5771254776211017, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.8944026314203186, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3873026439000729, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7805.853886134828, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03334499102205528, "grain_number": 5, "grain_density": 1818.4698240312914, "grain_outer_radius": 0.033270288839900145, "grain_initial_inner_radius": 0.015103256047114726, "grain_initial_height": 0.12010796520285734, "grain_separation": 0.005289875527181925, "grains_center_of_mass_position": 0.39769061639993397, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00028889513499944663, "throat_radius": 0.010863983150485772, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2544131992453944}], "aerodynamic_surfaces": [{"length": 0.5573969707158252, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341695962397151]}, {"n": 4, "root_chord": 0.12058207526701414, "tip_chord": 0.060395203224190515, "span": 0.1099400038442717, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0488988019726535]}, {"top_radius": 0.06273660171942261, "bottom_radius": 0.04521550028746464, "length": 0.058675417100621956, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994815218038952, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6186617395536832, "upper_button_position": 0.08081978225021202}], "rail_length": 5, "inclination": 84.55631906241199, "heading": 50.062161793357674} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 22, "radius": 0.06348860683175496, "mass": 15.332090713266908, "I_11_without_motor": 6.321, "I_22_without_motor": 6.31137510285499, "I_33_without_motor": 0.04968072396530719, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.950597252709091, "trigger": 800, "sampling_rate": 105, "lag": 1.3914589578564711, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0003691119211022, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5261980738440066, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5247.280233466419, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03333182258536613, "grain_number": 5, "grain_density": 1824.519234234145, "grain_outer_radius": 0.032409479174356534, "grain_initial_inner_radius": 0.015166933735086551, "grain_initial_height": 0.11962338701470705, "grain_separation": 0.0056297776884297775, "grains_center_of_mass_position": 0.39675856848669744, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0012519253542183258, "throat_radius": 0.011648483221692056, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2535206799369802}], "aerodynamic_surfaces": [{"length": 0.5594186166826102, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1338398162058645]}, {"n": 4, "root_chord": 0.11963929614638992, "tip_chord": 0.05978291133552557, "span": 0.10960215086071187, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.051078176536055]}, {"top_radius": 0.06399528403703109, "bottom_radius": 0.04315667936468571, "length": 0.0613471246440165, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6995867070316781, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6187777685907037, "upper_button_position": 0.08080893844097448}], "rail_length": 5, "inclination": 85.71761831162155, "heading": 57.32737907425884} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 28, "radius": 0.06350110120785728, "mass": 15.161870035929123, "I_11_without_motor": 6.321, "I_22_without_motor": 6.336298430658763, "I_33_without_motor": 0.0405564942041516, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.887834967892513, "trigger": 800, "sampling_rate": 105, "lag": 1.220971085067267, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0239011473593622, "trigger": "apogee", "sampling_rate": 105, "lag": 1.222790922930057, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6090.308434630208, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03377052174437239, "grain_number": 5, "grain_density": 1821.293638955576, "grain_outer_radius": 0.03226949101305786, "grain_initial_inner_radius": 0.015068923042657318, "grain_initial_height": 0.12102081906437903, "grain_separation": 0.005591017258877125, "grains_center_of_mass_position": 0.39789357845704837, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.000490621150630148, "throat_radius": 0.010342399056545206, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551797653085388}], "aerodynamic_surfaces": [{"length": 0.5569775966476402, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1339661139484296]}, {"n": 4, "root_chord": 0.11904900620930967, "tip_chord": 0.059049752949889935, "span": 0.110216176177132, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0476228696381629]}, {"top_radius": 0.06274206745962163, "bottom_radius": 0.04533237035014399, "length": 0.059501895890257055, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6989945262489914, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6180232245632079, "upper_button_position": 0.08097130168578348}], "rail_length": 5, "inclination": 84.6762305448953, "heading": 52.97456354830086} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06350192797687994, "mass": 16.17262205728888, "I_11_without_motor": 6.321, "I_22_without_motor": 6.327667954027547, "I_33_without_motor": 0.036308986562723064, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.037180579189762, "trigger": 800, "sampling_rate": 105, "lag": 1.4997092325421586, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0359545980582145, "trigger": "apogee", "sampling_rate": 105, "lag": 1.928950805519923, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6524.002109443024, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03267037264535588, "grain_number": 5, "grain_density": 1797.4340150653632, "grain_outer_radius": 0.0334150949823596, "grain_initial_inner_radius": 0.015297736095486935, "grain_initial_height": 0.1201980313699353, "grain_separation": 0.004682306014082076, "grains_center_of_mass_position": 0.39740421815323007, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011963807118029269, "throat_radius": 0.010988493220418104, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2555937770743442}], "aerodynamic_surfaces": [{"length": 0.558219238111295, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342919457576501]}, {"n": 4, "root_chord": 0.1202352475521408, "tip_chord": 0.05998860392062386, "span": 0.10912097900302357, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499347125252119]}, {"top_radius": 0.06251418400702392, "bottom_radius": 0.04331869672484142, "length": 0.06124588594254757, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6999987643143161, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.616851682316276, "upper_button_position": 0.0831470819980401}], "rail_length": 5, "inclination": 86.10820901976402, "heading": 53.81357026915429} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 14, "radius": 0.06349770019753427, "mass": 15.530447097498511, "I_11_without_motor": 6.321, "I_22_without_motor": 6.306322859653315, "I_33_without_motor": 0.04586618947490302, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.05802047241652, "trigger": 800, "sampling_rate": 105, "lag": 1.6740063972338504, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9449637476353796, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2300638842636737, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6444.672943140022, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03337714316143486, "grain_number": 5, "grain_density": 1832.183153671963, "grain_outer_radius": 0.03295066381727077, "grain_initial_inner_radius": 0.015021847576148047, "grain_initial_height": 0.11882815220959837, "grain_separation": 0.005412773058788479, "grains_center_of_mass_position": 0.3969737612324287, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00012688090433786217, "throat_radius": 0.011664285990103584, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2569022506210887}], "aerodynamic_surfaces": [{"length": 0.559479190445437, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1341185545191454]}, {"n": 4, "root_chord": 0.11969712909707503, "tip_chord": 0.059598633826500755, "span": 0.10987401117221636, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048878346683671]}, {"top_radius": 0.06298106957359884, "bottom_radius": 0.04537424182868034, "length": 0.061239609160679706, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.700623737751196, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6178998672547152, "upper_button_position": 0.08272387049648078}], "rail_length": 5, "inclination": 85.02752904837111, "heading": 51.578827121243556} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06349323905799562, "mass": 16.627685336131588, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323937850775509, "I_33_without_motor": 0.032369953132150714, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.773944181049696, "trigger": 800, "sampling_rate": 105, "lag": 1.6307092384470574, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.0779057997683252, "trigger": "apogee", "sampling_rate": 105, "lag": 1.2692421950396948, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5839.587979863849, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03356517498725159, "grain_number": 5, "grain_density": 1842.4487442486363, "grain_outer_radius": 0.03331040507510262, "grain_initial_inner_radius": 0.01498218704346694, "grain_initial_height": 0.12114843844308489, "grain_separation": 0.005100253849989575, "grains_center_of_mass_position": 0.39756977418513056, "center_of_dry_mass_position": 0.317, "nozzle_position": -1.4853755117197633e-06, "throat_radius": 0.010170482653079214, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2556860478544185}], "aerodynamic_surfaces": [{"length": 0.560280476596522, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1350281209374289]}, {"n": 4, "root_chord": 0.12054187682342127, "tip_chord": 0.060121713282723505, "span": 0.11019334811769428, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0514888324603278]}, {"top_radius": 0.06388926012468447, "bottom_radius": 0.04633391831294208, "length": 0.06110430370881605, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7013485068043257, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6191575305357903, "upper_button_position": 0.08219097626853544}], "rail_length": 5, "inclination": 84.77672692525299, "heading": 53.92211228463538} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06349827759272345, "mass": 15.164874020032325, "I_11_without_motor": 6.321, "I_22_without_motor": 6.323935921182587, "I_33_without_motor": 0.03553000419099673, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.823766648357422, "trigger": 800, "sampling_rate": 105, "lag": 1.5944707608096385, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.058037767720339, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5634917944307938, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7064.04541132276, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03372835846575442, "grain_number": 5, "grain_density": 1833.558150060981, "grain_outer_radius": 0.03316891561929234, "grain_initial_inner_radius": 0.0152716239784877, "grain_initial_height": 0.12133159404922463, "grain_separation": 0.005228543337819893, "grains_center_of_mass_position": 0.39627818952198485, "center_of_dry_mass_position": 0.317, "nozzle_position": 8.801834316907411e-05, "throat_radius": 0.01048993416887413, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2552377669467096}], "aerodynamic_surfaces": [{"length": 0.5596953384427664, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.133914147190626]}, {"n": 4, "root_chord": 0.11981693843126427, "tip_chord": 0.05902074376960583, "span": 0.11059468649117751, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0509989183526642]}, {"top_radius": 0.06459128945333673, "bottom_radius": 0.045089640199977986, "length": 0.059234087215105424, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6994056500119569, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6167167194567699, "upper_button_position": 0.082688930555187}], "rail_length": 5, "inclination": 84.98943966598328, "heading": 51.14609336986633} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 17, "radius": 0.06350848927011384, "mass": 15.34504821533885, "I_11_without_motor": 6.321, "I_22_without_motor": 6.310341179752239, "I_33_without_motor": 0.0429501915128806, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.068411719909205, "trigger": 800, "sampling_rate": 105, "lag": 1.5062326632728502, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.009710295288037, "trigger": "apogee", "sampling_rate": 105, "lag": 1.4657914217169175, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6254.753880551348, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033782202864748166, "grain_number": 5, "grain_density": 1732.8448226999346, "grain_outer_radius": 0.032697373548117185, "grain_initial_inner_radius": 0.014491823692619607, "grain_initial_height": 0.12208762022965085, "grain_separation": 0.006294147234708657, "grains_center_of_mass_position": 0.39797271157361347, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00035047782650330246, "throat_radius": 0.0112360828319064, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2575348578555112}], "aerodynamic_surfaces": [{"length": 0.5556433194229548, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1327808230581147]}, {"n": 4, "root_chord": 0.11992272254871657, "tip_chord": 0.05969941005512644, "span": 0.10969807853918871, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0500277289355158]}, {"top_radius": 0.06287645393355366, "bottom_radius": 0.04317832228002048, "length": 0.06000476966793512, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7011634022382982, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6174454167799764, "upper_button_position": 0.08371798545832176}], "rail_length": 5, "inclination": 84.2200863153641, "heading": 53.4484649495901} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 15, "radius": 0.06350499755503204, "mass": 16.44935563209566, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322293229161383, "I_33_without_motor": 0.04950434736201284, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.980568710313978, "trigger": 800, "sampling_rate": 105, "lag": 1.3791656458953212, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.047618634109704, "trigger": "apogee", "sampling_rate": 105, "lag": 1.7079974481660758, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6139.375983688049, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03326315993165689, "grain_number": 5, "grain_density": 1818.3359570302127, "grain_outer_radius": 0.03245378272085564, "grain_initial_inner_radius": 0.014712973435688656, "grain_initial_height": 0.11980768160458034, "grain_separation": 0.005506611655744633, "grains_center_of_mass_position": 0.3962864223220296, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0019555851907904105, "throat_radius": 0.010920993116877834, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2561768047606032}], "aerodynamic_surfaces": [{"length": 0.5574511353327727, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342507993203135]}, {"n": 4, "root_chord": 0.11922611670578265, "tip_chord": 0.05995537807885256, "span": 0.11043665876364, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.048890851147488]}, {"top_radius": 0.06442065999851691, "bottom_radius": 0.04305889986141885, "length": 0.060050337748745124, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009436645125497, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6182196179511102, "upper_button_position": 0.0827240465614395}], "rail_length": 5, "inclination": 84.78177660842643, "heading": 58.070250946624164} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 0, "radius": 0.06351074574660671, "mass": 15.436609472625044, "I_11_without_motor": 6.321, "I_22_without_motor": 6.319587342097265, "I_33_without_motor": 0.03603919762373711, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.950979241675606, "trigger": 800, "sampling_rate": 105, "lag": 1.440515680254718, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9925938455174269, "trigger": "apogee", "sampling_rate": 105, "lag": 1.6394010233725658, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6615.86713272695, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.032766512309757745, "grain_number": 5, "grain_density": 1787.552748228492, "grain_outer_radius": 0.033412828792561154, "grain_initial_inner_radius": 0.01478722196965662, "grain_initial_height": 0.1199540660496051, "grain_separation": 0.0052186971609946425, "grains_center_of_mass_position": 0.3965532219236043, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0014961570413828988, "throat_radius": 0.010190117852357728, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.255125183157194}], "aerodynamic_surfaces": [{"length": 0.5583824843251655, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344049835431926]}, {"n": 4, "root_chord": 0.12054269395042369, "tip_chord": 0.05923106940564506, "span": 0.10930062935148364, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0499353924787593]}, {"top_radius": 0.06477006445159386, "bottom_radius": 0.04316492945150625, "length": 0.05994269122603078, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7016138313305098, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618013176141382, "upper_button_position": 0.08360065518912785}], "rail_length": 5, "inclination": 85.4620872088876, "heading": 54.43561350826723} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 20, "radius": 0.06349390596482883, "mass": 14.670673155735065, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303760152314821, "I_33_without_motor": 0.02447355013630808, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.089175593421743, "trigger": 800, "sampling_rate": 105, "lag": 1.5100321270110555, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9840766020171401, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3967951875967943, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6014.727161575336, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03265381751535817, "grain_number": 5, "grain_density": 1867.1743327621116, "grain_outer_radius": 0.032469851642205116, "grain_initial_inner_radius": 0.015660505599526017, "grain_initial_height": 0.11953273075906098, "grain_separation": 0.0031475494697874996, "grains_center_of_mass_position": 0.39878690232281394, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0009678488664406294, "throat_radius": 0.011288720074719412, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2546333624811787}], "aerodynamic_surfaces": [{"length": 0.5581433945608838, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1331329182239438]}, {"n": 4, "root_chord": 0.11915783326264708, "tip_chord": 0.05964850510180848, "span": 0.10953835255020526, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0510850679469552]}, {"top_radius": 0.06272281617481082, "bottom_radius": 0.04255075800214709, "length": 0.06045992431475048, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6988662343262977, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6195553145079151, "upper_button_position": 0.07931091981838256}], "rail_length": 5, "inclination": 86.61378494577437, "heading": 53.45558273219504} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 16, "radius": 0.06350004994001872, "mass": 15.38717424025428, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303816270911521, "I_33_without_motor": 0.03658970351656957, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.045447224917833, "trigger": 800, "sampling_rate": 105, "lag": 1.7550720674719262, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.1039488904196846, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5850859364855852, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 7769.91012795603, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03311089675618136, "grain_number": 5, "grain_density": 1889.810963032721, "grain_outer_radius": 0.03326956648455109, "grain_initial_inner_radius": 0.014742481339342134, "grain_initial_height": 0.12082305142169152, "grain_separation": 0.0050428035032645995, "grains_center_of_mass_position": 0.39731956427549825, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0011144398536188486, "throat_radius": 0.011501938534874398, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2564970060413205}], "aerodynamic_surfaces": [{"length": 0.5579690605259391, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.131911766604429]}, {"n": 4, "root_chord": 0.12015517055972008, "tip_chord": 0.0598961238583944, "span": 0.11048355505433588, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0505111804176803]}, {"top_radius": 0.06419236912988466, "bottom_radius": 0.043071846778817036, "length": 0.06241207652488735, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7009282593500519, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6176428197703767, "upper_button_position": 0.08328543957967516}], "rail_length": 5, "inclination": 84.92407153508394, "heading": 49.674379732430815} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 4, "radius": 0.06348779740903038, "mass": 15.426343236704998, "I_11_without_motor": 6.321, "I_22_without_motor": 6.322371441663517, "I_33_without_motor": 0.02568435134716404, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.985738109121662, "trigger": 800, "sampling_rate": 105, "lag": 1.3915590275374994, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9990487129363786, "trigger": "apogee", "sampling_rate": 105, "lag": 1.503095700303462, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 6558.017214361791, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03255809317981041, "grain_number": 5, "grain_density": 1868.634492589719, "grain_outer_radius": 0.032664657379601045, "grain_initial_inner_radius": 0.014592696714926728, "grain_initial_height": 0.11980840645494568, "grain_separation": 0.004996288941479225, "grains_center_of_mass_position": 0.39571892593066743, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.00184748793610487, "throat_radius": 0.010392466382781127, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2551091925503846}], "aerodynamic_surfaces": [{"length": 0.5588934055411833, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.13568066835541]}, {"n": 4, "root_chord": 0.1198818537253888, "tip_chord": 0.060455372942246566, "span": 0.1093633492129875, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.049010531720595]}, {"top_radius": 0.06331137857816857, "bottom_radius": 0.04367503634891886, "length": 0.060417870895032866, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7015818461848926, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169365793658811, "upper_button_position": 0.08464526681901152}], "rail_length": 5, "inclination": 85.02767710902108, "heading": 51.502308703362125} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 3, "radius": 0.0634997235537327, "mass": 15.322796828350894, "I_11_without_motor": 6.321, "I_22_without_motor": 6.303828850864454, "I_33_without_motor": 0.03386603985705755, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 9.953763731185786, "trigger": 800, "sampling_rate": 105, "lag": 1.4029283431278918, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 1.013657359808726, "trigger": "apogee", "sampling_rate": 105, "lag": 1.3717123068055361, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5503.390919914698, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.03281435333619998, "grain_number": 5, "grain_density": 1760.5047392119104, "grain_outer_radius": 0.033316071705627205, "grain_initial_inner_radius": 0.014603535607151037, "grain_initial_height": 0.11908938495160593, "grain_separation": 0.005832975328334299, "grains_center_of_mass_position": 0.3988770312337408, "center_of_dry_mass_position": 0.317, "nozzle_position": -0.0013349824442955207, "throat_radius": 0.0115004389192595, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2547955589183997}], "aerodynamic_surfaces": [{"length": 0.5596529442487987, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1344951921071862]}, {"n": 4, "root_chord": 0.1195372309975778, "tip_chord": 0.05915348047554537, "span": 0.11055587207299544, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0502068384421472]}, {"top_radius": 0.06270877548139957, "bottom_radius": 0.04315483021862673, "length": 0.06098376069516976, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.6983729997292613, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.6169678149123232, "upper_button_position": 0.08140518481693804}], "rail_length": 5, "inclination": 84.87037673337504, "heading": 52.11521098092952} +{"elevation": 113, "gravity": "'Function from R1 to R1 : (height (m)) \u2192 (gravity (m/s\u00b2))'", "latitude": 39.3897, "longitude": -8.288964, "wind_velocity_x_factor": 1.0, "wind_velocity_y_factor": 1.0, "datum": "SIRGAS2000", "timezone": "UTC", "ensemble_member": 2, "radius": 0.06350508295475939, "mass": 14.624250053379768, "I_11_without_motor": 6.321, "I_22_without_motor": 6.3173555104602634, "I_33_without_motor": 0.027139445188800005, "I_12_without_motor": 0, "I_13_without_motor": 0, "I_23_without_motor": 0, "power_off_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power Off)'", "power_on_drag": "'Function from R1 to R1 : (Mach Number) \u2192 (Drag Coefficient with Power On)'", "power_off_drag_factor": 1.0, "power_on_drag_factor": 1.0, "center_of_mass_without_motor": 0.0, "coordinate_system_orientation": "tail_to_nose", "parachutes": [{"cd_s": 10.02607864396913, "trigger": 800, "sampling_rate": 105, "lag": 1.480983058422523, "noise": [0, 8.3, 0.5], "name": "Main"}, {"cd_s": 0.9728466649841975, "trigger": "apogee", "sampling_rate": 105, "lag": 1.5104225403891558, "noise": [0, 8.3, 0.5], "name": "Drogue"}], "motors": [{"thrust_source": [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]], "total_impulse": 5546.032703141385, "burn_start_time": 0, "burn_out_time": 3.9, "dry_mass": 1.815, "dry_I_11": 0.125, "dry_I_22": 0.125, "dry_I_33": 0.002, "dry_I_12": 0, "dry_I_13": 0, "dry_I_23": 0, "nozzle_radius": 0.033432054157388924, "grain_number": 5, "grain_density": 1811.3244042627816, "grain_outer_radius": 0.03331781330855185, "grain_initial_inner_radius": 0.014680101309356467, "grain_initial_height": 0.11981303450714083, "grain_separation": 0.005668474213785831, "grains_center_of_mass_position": 0.397587229934371, "center_of_dry_mass_position": 0.317, "nozzle_position": 0.0004425426514450639, "throat_radius": 0.010834927484984002, "interpolate": "linear", "coordinate_system_orientation": "nozzle_to_combustion_chamber", "position": -1.2549433471141285}], "aerodynamic_surfaces": [{"length": 0.5590938299002153, "kind": "vonKarman", "base_radius": 0.0635, "bluffness": 0, "rocket_radius": 0.0635, "name": "Nose Cone", "position": [0, 0, 1.1342959783047288]}, {"n": 4, "root_chord": 0.11925375385341765, "tip_chord": 0.05951680995356015, "span": 0.1102553721974719, "rocket_radius": 0.0635, "cant_angle": 0.5, "sweep_length": 0.06, "sweep_angle": null, "airfoil": ["../../../data/calisto/NACA0012-radians.csv", "radians"], "name": "Fins", "position": [0, 0, -1.0486321754816332]}, {"top_radius": 0.06257590378778695, "bottom_radius": 0.04423952161878164, "length": 0.061931616154310934, "rocket_radius": 0.0635, "name": "Tail", "position": [0, 0, [0, 0, -1.194656]]}], "rail_buttons": [{"buttons_distance": 0.7008765621339635, "angular_position": 45, "name": "Rail Buttons", "lower_button_position": -0.618738767082295, "upper_button_position": 0.08213779505166852}], "rail_length": 5, "inclination": 84.38134593354896, "heading": 54.781432885379125} diff --git a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.kml b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.kml index 2e3cf5fd4..2cdcebb47 100644 --- a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.kml +++ b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.kml @@ -1,86 +1,93 @@ - - - - - - Impact σ1 + + Impact Ellipse 1 1 - #8 - - + #748 + + - - 217.59836217559382,665.7600457740662,0.0 209.87518235647352,670.2045383312935,0.0 202.60706963942624,675.4683643807339,0.0 195.82270794486132,681.5307500057833,0.0 189.54887204890719,688.36776974002,0.0 183.81032191560217,695.9524409900904,0.0 178.62970498062828,704.2548305236771,0.0 174.0274667722291,713.2421726022922,0.0 170.02177022205055,722.8789982926771,0.0 166.62842398434745,733.1272754464791,0.0 163.86082004644766,743.9465587957641,0.0 161.7298808766961,755.2941495720135,0.0 160.24401631846217,767.1252640186539,0.0 159.40909040033034,779.3932101320869,0.0 159.22839819345813,792.0495719336942,0.0 159.7026528074357,805.0444005455863,0.0 160.82998257596793,818.3264113160049,0.0 162.60593844348637,831.8431862164123,0.0 165.023511523539,845.5413807115038,0.0 168.07316075966307,859.3669342857171,0.0 171.74285057957562,873.2652837953896,0.0 176.01809839407935,887.1815788045582,0.0 180.8820317532253,901.0608980545721,0.0 186.3154549341648,914.8484662132097,0.0 192.2969246978975,928.4898700478891,0.0 198.80283491593963,941.9312731698399,0.0 205.80750973292817,955.1196285017323,0.0 213.283304897492,968.0028876302582,0.0 221.20071686148253,980.530206217438,0.0 229.52849921699948,992.6521446599961,0.0 238.2337860116872,1004.3208632048861,0.0 247.28222145563456,1015.4903107509422,0.0 256.6380955079811,1026.116406591535,0.0 266.2644848081346,1036.1572143809835,0.0 276.1233983954061,1045.5731076381508,0.0 286.1759276419759,1054.3269261340638,0.0 296.38239980747164,1062.3841225463582,0.0 306.70253460914967,1069.712898801778,0.0 317.0956031897687,1076.2843315686416,0.0 327.52058885578265,1082.072486404021,0.0 337.9363489514906,1087.0545201051373,0.0 348.3017772303029,1091.2107708610465,0.0 358.5759660823169,1094.5248358488257,0.0 368.7183679779639,1096.98363596802,0.0 378.6889554905847,1098.5774674578784,0.0 388.44837926639497,1099.3000401936624,0.0 397.9581233184081,1099.1485025108962,0.0 407.18065703144003,1098.1234524595825,0.0 416.07958327829976,1096.228935443973,0.0 424.6197820626239,1093.472428257206,0.0 432.76754912145645,1089.864809573819,0.0 440.49072894057673,1085.4203170165915,0.0 447.75884165762403,1080.1564909671513,0.0 454.5432033521889,1074.094105342102,0.0 460.81703924814303,1067.2570856078653,0.0 466.55558938144804,1059.6724143577949,0.0 471.736206316422,1051.370024824208,0.0 476.3384445248211,1042.382682745593,0.0 480.34414107499975,1032.745857055208,0.0 483.7374873127028,1022.4975799014061,0.0 486.5050912506026,1011.6782965521211,0.0 488.6360304203542,1000.3307057758717,0.0 490.12189497858816,988.4995913292314,0.0 490.95682089671993,976.2316452157983,0.0 491.1375131035921,963.575283414191,0.0 490.6632584896146,950.5804548022988,0.0 489.53592872108237,937.2984440318803,0.0 487.7599728535639,923.7816691314729,0.0 485.3423997735112,910.0834746363812,0.0 482.29275053738723,896.257921062168,0.0 478.6230607174747,882.3595715524956,0.0 474.3478129029709,868.443276543327,0.0 469.48387954382497,854.563957293313,0.0 464.05045636288554,840.7763891346756,0.0 458.06898659915277,827.134985299996,0.0 451.56307638111065,813.6935821780453,0.0 444.55840156412216,800.5052268461529,0.0 437.08260639955824,787.621967717627,0.0 429.16519443556774,775.0946491304471,0.0 420.8374120800508,762.972710687889,0.0 412.13212528536303,751.3039921429989,0.0 403.0836898414158,740.134544596943,0.0 393.72781578906927,729.5084487563502,0.0 384.10142648891565,719.4676409669017,0.0 374.2425129016442,710.0517477097343,0.0 364.18998365507446,701.2979292138214,0.0 353.98351148957875,693.2407328015269,0.0 343.66337668790084,685.9119565461074,0.0 333.2703081072816,679.3405237792435,0.0 322.84532244126757,673.5523689438639,0.0 312.4295623455597,668.5703352427479,0.0 302.06413406674744,664.4140844868388,0.0 291.78994521473356,661.1000194990597,0.0 281.64754331908637,658.6412193798651,0.0 271.67695580646557,657.0473878900068,0.0 261.91753203065537,656.3248151542227,0.0 252.40778797864212,656.476352836989,0.0 243.18525426561027,657.5014028883028,0.0 234.2863280187505,659.3959199039122,0.0 -8.281267238932218,39.391727670207075,0.0 + + -8.269226607954439,39.416713858455026,0.0 -8.269353322111339,39.41676070695781,0.0 -8.269496178062123,39.4167867902876,0.0 -8.269654611909619,39.41679200544729,0.0 -8.269827998249093,39.416776331793,0.0 -8.270015652638637,39.41673983111654,0.0 -8.270216834302945,39.41668264740248,0.0 -8.270430749059798,39.416605006261086,0.0 -8.270656552457659,39.41650721403896,0.0 -8.270893353111928,39.416389656610995,0.0 -8.27114021622664,39.416252797858746,0.0 -8.271396167287653,39.41609717784053,0.0 -8.27166019591269,39.415923410661115,0.0 -8.271931259842951,39.41573218204899,0.0 -8.272208289060526,39.415524246650946,0.0 -8.27249019001523,39.415300425054475,0.0 -8.272775849944185,39.415061600549954,0.0 -8.273064141266982,39.414808715645165,0.0 -8.27335392603906,39.41454276834606,0.0 -8.273644060445658,39.414264808218235,0.0 -8.27393339931856,39.41397593224498,0.0 -8.27422080065775,39.41367728049792,0.0 -8.274505130140142,39.41337003163751,0.0 -8.2747852655975,39.41305539826109,0.0 -8.27506010144592,39.412734622116986,0.0 -8.275328553049327,39.41240896920323,0.0 -8.275589560999792,39.41207972477066,0.0 -8.275842095297786,39.41174818824995,0.0 -8.27608515941584,39.41141566812236,0.0 -8.276317794229676,39.41108347675494,0.0 -8.27653908180121,39.41075292522019,0.0 -8.276748148998657,39.41042531812089,0.0 -8.276944170939384,39.41010194844033,0.0 -8.277126374242028,39.4097840924384,0.0 -8.277294040075104,39.409473004613815,0.0 -8.277446506990072,39.409169912752,0.0 -8.277583173527818,39.40887601307869,0.0 -8.277703500588254,39.40859246553793,0.0 -8.277807013553799,39.408320389213515,0.0 -8.277893304158413,39.40806085791154,0.0 -8.277962032094841,39.40781489592203,0.0 -8.278012926353842,39.40758347397575,0.0 -8.278045786290136,39.407367505412815,0.0 -8.278060482410918,39.40716784257776,0.0 -8.278056956883924,39.406985273455405,0.0 -8.278035223763027,39.406820518561055,0.0 -8.277995368930572,39.40667422809688,0.0 -8.277937549756674,39.406546979386086,0.0 -8.277861994476867,39.40643927459472,0.0 -8.277769001290583,39.40635153875031,0.0 -8.277658937184025,39.40628411806502,0.0 -8.277532236482081,39.406237278569925,0.0 -8.27738939913499,39.406211205065865,0.0 -8.277230988746537,39.40620600039497,0.0 -8.27705763035149,39.4062216850357,0.0 -8.276870007951057,39.40625819702301,0.0 -8.276668861816061,39.40631539219392,0.0 -8.276454985568398,39.40639304475748,0.0 -8.27622922305229,39.40649084818701,0.0 -8.275992465007613,39.40660841643079,0.0 -8.27574564555835,39.40674528543676,0.0 -8.275489738530013,39.40690091498487,0.0 -8.27522575361046,39.40707469082004,0.0 -8.274954732369222,39.4072659270773,0.0 -8.274677744150987,39.40747386898928,0.0 -8.27439588185935,39.407697695865764,0.0 -8.274110257647454,39.40793652433312,0.0 -8.273821998532423,39.40818941182103,0.0 -8.273532241950885,39.408455360282844,0.0 -8.273242131273019,39.40873332013461,0.0 -8.272952811292827,39.40902219439739,0.0 -8.272665423712372,39.40932084302654,0.0 -8.27238110263776,39.40962808741079,0.0 -8.272100970104628,39.409942715023355,0.0 -8.271826131650764,39.41026348420686,0.0 -8.271557671953335,39.410589129073,0.0 -8.271296650547914,39.410918364497874,0.0 -8.271044097646227,39.41124989119285,0.0 -8.270801010069128,39.41158240083165,0.0 -8.270568347310869,39.411914581212635,0.0 -8.270347027750221,39.41224512143654,0.0 -8.270137925023464,39.41257271707899,0.0 -8.26994186457355,39.412896075337365,0.0 -8.26975962038915,39.413213920131895,0.0 -8.269591911946483,39.41352499714066,0.0 -8.269439401366066,39.41382807874876,0.0 -8.269302690795646,39.41412196889219,0.0 -8.269182320029728,39.414405507777175,0.0 -8.269078764375156,39.41467757645647,0.0 -8.268992432771205,39.4149371012445,0.0 -8.268923666171709,39.415183057953996,0.0 -8.26887273619565,39.41541447593746,0.0 -8.26883984405159,39.41563044191725,0.0 -8.268825119740265,39.41583010358961,0.0 -8.268828621538526,39.41601267298802,0.0 -8.268850335766713,39.41617742959285,0.0 -8.268890176840431,39.416323723174926,0.0 -8.268947987606552,39.416450976361894,0.0 -8.269023539962133,39.416558686917114,0.0 -8.269116535753858,39.41664642972212,0.0 - - Impact σ2 + + Impact Ellipse 2 1 - #17 - - + #757 + + - - 217.59836217559382,665.7600457740662,0.0 209.87518235647352,670.2045383312935,0.0 202.60706963942624,675.4683643807339,0.0 195.82270794486132,681.5307500057833,0.0 189.54887204890719,688.36776974002,0.0 183.81032191560217,695.9524409900904,0.0 178.62970498062828,704.2548305236771,0.0 174.0274667722291,713.2421726022922,0.0 170.02177022205055,722.8789982926771,0.0 166.62842398434745,733.1272754464791,0.0 163.86082004644766,743.9465587957641,0.0 161.7298808766961,755.2941495720135,0.0 160.24401631846217,767.1252640186539,0.0 159.40909040033034,779.3932101320869,0.0 159.22839819345813,792.0495719336942,0.0 159.7026528074357,805.0444005455863,0.0 160.82998257596793,818.3264113160049,0.0 162.60593844348637,831.8431862164123,0.0 165.023511523539,845.5413807115038,0.0 168.07316075966307,859.3669342857171,0.0 171.74285057957562,873.2652837953896,0.0 176.01809839407935,887.1815788045582,0.0 180.8820317532253,901.0608980545721,0.0 186.3154549341648,914.8484662132097,0.0 192.2969246978975,928.4898700478891,0.0 198.80283491593963,941.9312731698399,0.0 205.80750973292817,955.1196285017323,0.0 213.283304897492,968.0028876302582,0.0 221.20071686148253,980.530206217438,0.0 229.52849921699948,992.6521446599961,0.0 238.2337860116872,1004.3208632048861,0.0 247.28222145563456,1015.4903107509422,0.0 256.6380955079811,1026.116406591535,0.0 266.2644848081346,1036.1572143809835,0.0 276.1233983954061,1045.5731076381508,0.0 286.1759276419759,1054.3269261340638,0.0 296.38239980747164,1062.3841225463582,0.0 306.70253460914967,1069.712898801778,0.0 317.0956031897687,1076.2843315686416,0.0 327.52058885578265,1082.072486404021,0.0 337.9363489514906,1087.0545201051373,0.0 348.3017772303029,1091.2107708610465,0.0 358.5759660823169,1094.5248358488257,0.0 368.7183679779639,1096.98363596802,0.0 378.6889554905847,1098.5774674578784,0.0 388.44837926639497,1099.3000401936624,0.0 397.9581233184081,1099.1485025108962,0.0 407.18065703144003,1098.1234524595825,0.0 416.07958327829976,1096.228935443973,0.0 424.6197820626239,1093.472428257206,0.0 432.76754912145645,1089.864809573819,0.0 440.49072894057673,1085.4203170165915,0.0 447.75884165762403,1080.1564909671513,0.0 454.5432033521889,1074.094105342102,0.0 460.81703924814303,1067.2570856078653,0.0 466.55558938144804,1059.6724143577949,0.0 471.736206316422,1051.370024824208,0.0 476.3384445248211,1042.382682745593,0.0 480.34414107499975,1032.745857055208,0.0 483.7374873127028,1022.4975799014061,0.0 486.5050912506026,1011.6782965521211,0.0 488.6360304203542,1000.3307057758717,0.0 490.12189497858816,988.4995913292314,0.0 490.95682089671993,976.2316452157983,0.0 491.1375131035921,963.575283414191,0.0 490.6632584896146,950.5804548022988,0.0 489.53592872108237,937.2984440318803,0.0 487.7599728535639,923.7816691314729,0.0 485.3423997735112,910.0834746363812,0.0 482.29275053738723,896.257921062168,0.0 478.6230607174747,882.3595715524956,0.0 474.3478129029709,868.443276543327,0.0 469.48387954382497,854.563957293313,0.0 464.05045636288554,840.7763891346756,0.0 458.06898659915277,827.134985299996,0.0 451.56307638111065,813.6935821780453,0.0 444.55840156412216,800.5052268461529,0.0 437.08260639955824,787.621967717627,0.0 429.16519443556774,775.0946491304471,0.0 420.8374120800508,762.972710687889,0.0 412.13212528536303,751.3039921429989,0.0 403.0836898414158,740.134544596943,0.0 393.72781578906927,729.5084487563502,0.0 384.10142648891565,719.4676409669017,0.0 374.2425129016442,710.0517477097343,0.0 364.18998365507446,701.2979292138214,0.0 353.98351148957875,693.2407328015269,0.0 343.66337668790084,685.9119565461074,0.0 333.2703081072816,679.3405237792435,0.0 322.84532244126757,673.5523689438639,0.0 312.4295623455597,668.5703352427479,0.0 302.06413406674744,664.4140844868388,0.0 291.78994521473356,661.1000194990597,0.0 281.64754331908637,658.6412193798651,0.0 271.67695580646557,657.0473878900068,0.0 261.91753203065537,656.3248151542227,0.0 252.40778797864212,656.476352836989,0.0 243.18525426561027,657.5014028883028,0.0 234.2863280187505,659.3959199039122,0.0 -8.281267238932218,39.391727670207075,0.0 + + -8.265009497151306,39.4219285003329,0.0 -8.265262938921104,39.42202220634878,0.0 -8.265548669429958,39.42207438283717,0.0 -8.265865560590022,39.42208482364887,0.0 -8.26621236122171,39.42205348733061,0.0 -8.266587702000258,39.421980497292566,0.0 -8.266990100870272,39.42186614132551,0.0 -8.267417968906667,39.42171087046913,0.0 -8.267869616598679,39.42151529723632,0.0 -8.268343260531985,39.42128019320015,0.0 -8.268837030442274,39.42100648595297,0.0 -8.269348976612239,39.420695255449694,0.0 -8.269877077582525,39.42034772974948,0.0 -8.270419248145929,39.4199652801728,0.0 -8.270973347593094,39.41954941589259,0.0 -8.271537188176818,39.41910177798113,0.0 -8.27210854376142,39.41862413293593,0.0 -8.272685158622679,39.418118365710114,0.0 -8.273264756363492,39.41758647227484,0.0 -8.273845048909779,39.417030551743075,0.0 -8.274423745550973,39.416452798085835,0.0 -8.27499856198926,39.41585549147342,0.0 -8.275567229361695,39.41524098927599,0.0 -8.276127503199481,39.414611716758955,0.0 -8.276677172288991,39.41397015750988,0.0 -8.277214067399502,39.413318843634734,0.0 -8.277736069843154,39.41266034576224,0.0 -8.278241119833424,39.411997262895774,0.0 -8.278727224609115,39.41133221215291,0.0 -8.27919246629193,39.41066781843316,0.0 -8.279635009446697,39.41000670405488,0.0 -8.28005310831455,39.409351478401945,0.0 -8.280445113690714,39.40870472762158,0.0 -8.28080947941989,39.40806900441375,0.0 -8.281144768483866,39.407446817952454,0.0 -8.281449658657516,39.40684062397913,0.0 -8.281722947711136,39.40625281510681,0.0 -8.281963558138798,39.405685711373835,0.0 -8.282170541394377,39.40514155108414,0.0 -8.282343081618722,39.40462248197044,0.0 -8.28248049884358,39.404130552715316,0.0 -8.28258225165984,39.403667704863516,0.0 -8.282647939339823,39.4032357651577,0.0 -8.28267730340546,39.40283643832752,0.0 -8.282670228636404,39.40247130036094,0.0 -8.282626743514243,39.402141792284134,0.0 -8.282547020101267,39.40184921447442,0.0 -8.282431373354388,39.401594721529,0.0 -8.28228025987702,39.40137931770943,0.0 -8.282094276113957,39.40120385297987,0.0 -8.281874155996396,39.4010690196549,0.0 -8.281620768046414,39.40097534966982,0.0 -8.28133511195234,39.40092321248432,0.0 -8.281018314628444,39.4009128136278,0.0 -8.28067162577447,39.400944193891874,0.0 -8.280296412952376,39.40101722917326,0.0 -8.279894156199605,39.40113163096774,0.0 -8.279466442199972,39.40128694751287,0.0 -8.279014958034983,39.401482565575215,0.0 -8.278541484540048,39.40171771287472,0.0 -8.278047889291562,39.40199146113675,0.0 -8.277536119252307,39.40230272975957,0.0 -8.277008193103956,39.40265029008281,0.0 -8.276466193296661,39.40303277024004,0.0 -8.275912257846858,39.403448660576004,0.0 -8.275348571915407,39.403896319607526,0.0 -8.274777359199037,39.404373980504,0.0 -8.274200873168846,39.40487975806233,0.0 -8.273621388190195,39.405411656148424,0.0 -8.27304119055884,39.40596757557594,0.0 -8.27246256948848,39.4065453223913,0.0 -8.271887808085134,39.407142616532106,0.0 -8.271319174343816,39.40775710082487,0.0 -8.270758912202938,39.408386350286534,0.0 -8.270209232691656,39.409027881693156,0.0 -8.269672305205052,39.40967916337786,0.0 -8.269150248941582,39.41033762521956,0.0 -8.268645124536535,39.41100066878314,0.0 -8.268158925924675,39.41166567757083,0.0 -8.26769357246415,39.41233002734479,0.0 -8.267250901352934,39.412991096479715,0.0 -8.266832660367843,39.41364627630522,0.0 -8.266440500954927,39.41429298139683,0.0 -8.266075971698733,39.41492865977514,0.0 -8.265740512196393,39.4155508029731,0.0 -8.265435447360948,39.41615695593157,0.0 -8.265161982176624,39.41674472668436,0.0 -8.264921196927032,39.41731179579427,0.0 -8.264714042915347,39.41785592550343,0.0 -8.264541338693643,39.41837496856138,0.0 -8.264403766816509,39.41886687669645,0.0 -8.264301871132016,39.41932970869696,0.0 -8.264236054620964,39.419761638070256,0.0 -8.264206577793157,39.42016096024963,0.0 -8.264213557647274,39.42052609932043,0.0 -8.264256967198591,39.42085561423913,0.0 -8.264336635576617,39.42114820452046,0.0 -8.264452248692375,39.42140271537054,0.0 -8.26460335047283,39.421618142245485,0.0 -8.26478934465766,39.42179363481749,0.0 - - Impact σ3 + + Impact Ellipse 3 1 - #26 - - + #766 + + - - 217.59836217559382,665.7600457740662,0.0 209.87518235647352,670.2045383312935,0.0 202.60706963942624,675.4683643807339,0.0 195.82270794486132,681.5307500057833,0.0 189.54887204890719,688.36776974002,0.0 183.81032191560217,695.9524409900904,0.0 178.62970498062828,704.2548305236771,0.0 174.0274667722291,713.2421726022922,0.0 170.02177022205055,722.8789982926771,0.0 166.62842398434745,733.1272754464791,0.0 163.86082004644766,743.9465587957641,0.0 161.7298808766961,755.2941495720135,0.0 160.24401631846217,767.1252640186539,0.0 159.40909040033034,779.3932101320869,0.0 159.22839819345813,792.0495719336942,0.0 159.7026528074357,805.0444005455863,0.0 160.82998257596793,818.3264113160049,0.0 162.60593844348637,831.8431862164123,0.0 165.023511523539,845.5413807115038,0.0 168.07316075966307,859.3669342857171,0.0 171.74285057957562,873.2652837953896,0.0 176.01809839407935,887.1815788045582,0.0 180.8820317532253,901.0608980545721,0.0 186.3154549341648,914.8484662132097,0.0 192.2969246978975,928.4898700478891,0.0 198.80283491593963,941.9312731698399,0.0 205.80750973292817,955.1196285017323,0.0 213.283304897492,968.0028876302582,0.0 221.20071686148253,980.530206217438,0.0 229.52849921699948,992.6521446599961,0.0 238.2337860116872,1004.3208632048861,0.0 247.28222145563456,1015.4903107509422,0.0 256.6380955079811,1026.116406591535,0.0 266.2644848081346,1036.1572143809835,0.0 276.1233983954061,1045.5731076381508,0.0 286.1759276419759,1054.3269261340638,0.0 296.38239980747164,1062.3841225463582,0.0 306.70253460914967,1069.712898801778,0.0 317.0956031897687,1076.2843315686416,0.0 327.52058885578265,1082.072486404021,0.0 337.9363489514906,1087.0545201051373,0.0 348.3017772303029,1091.2107708610465,0.0 358.5759660823169,1094.5248358488257,0.0 368.7183679779639,1096.98363596802,0.0 378.6889554905847,1098.5774674578784,0.0 388.44837926639497,1099.3000401936624,0.0 397.9581233184081,1099.1485025108962,0.0 407.18065703144003,1098.1234524595825,0.0 416.07958327829976,1096.228935443973,0.0 424.6197820626239,1093.472428257206,0.0 432.76754912145645,1089.864809573819,0.0 440.49072894057673,1085.4203170165915,0.0 447.75884165762403,1080.1564909671513,0.0 454.5432033521889,1074.094105342102,0.0 460.81703924814303,1067.2570856078653,0.0 466.55558938144804,1059.6724143577949,0.0 471.736206316422,1051.370024824208,0.0 476.3384445248211,1042.382682745593,0.0 480.34414107499975,1032.745857055208,0.0 483.7374873127028,1022.4975799014061,0.0 486.5050912506026,1011.6782965521211,0.0 488.6360304203542,1000.3307057758717,0.0 490.12189497858816,988.4995913292314,0.0 490.95682089671993,976.2316452157983,0.0 491.1375131035921,963.575283414191,0.0 490.6632584896146,950.5804548022988,0.0 489.53592872108237,937.2984440318803,0.0 487.7599728535639,923.7816691314729,0.0 485.3423997735112,910.0834746363812,0.0 482.29275053738723,896.257921062168,0.0 478.6230607174747,882.3595715524956,0.0 474.3478129029709,868.443276543327,0.0 469.48387954382497,854.563957293313,0.0 464.05045636288554,840.7763891346756,0.0 458.06898659915277,827.134985299996,0.0 451.56307638111065,813.6935821780453,0.0 444.55840156412216,800.5052268461529,0.0 437.08260639955824,787.621967717627,0.0 429.16519443556774,775.0946491304471,0.0 420.8374120800508,762.972710687889,0.0 412.13212528536303,751.3039921429989,0.0 403.0836898414158,740.134544596943,0.0 393.72781578906927,729.5084487563502,0.0 384.10142648891565,719.4676409669017,0.0 374.2425129016442,710.0517477097343,0.0 364.18998365507446,701.2979292138214,0.0 353.98351148957875,693.2407328015269,0.0 343.66337668790084,685.9119565461074,0.0 333.2703081072816,679.3405237792435,0.0 322.84532244126757,673.5523689438639,0.0 312.4295623455597,668.5703352427479,0.0 302.06413406674744,664.4140844868388,0.0 291.78994521473356,661.1000194990597,0.0 281.64754331908637,658.6412193798651,0.0 271.67695580646557,657.0473878900068,0.0 261.91753203065537,656.3248151542227,0.0 252.40778797864212,656.476352836989,0.0 243.18525426561027,657.5014028883028,0.0 234.2863280187505,659.3959199039122,0.0 -8.281267238932218,39.391727670207075,0.0 + + -8.260791755298575,39.42714298993135,0.0 -8.261171938138306,39.42728356247317,0.0 -8.261600561816097,39.4273618419521,0.0 -8.262075933759848,39.42737751891164,0.0 -8.262596176644792,39.42733053092355,0.0 -8.263159235822148,39.42722106284295,0.0 -8.263762887451369,39.427049546088114,0.0 -8.264404747303495,39.426816656947295,0.0 -8.26508228020049,39.4265233139194,0.0 -8.265792810052783,39.42617067409866,0.0 -8.26653353045494,39.42576012861751,0.0 -8.267301515797065,39.425293297165595,0.0 -8.268093732847547,39.42477202160609,0.0 -8.268907052760833,39.42419835871481,0.0 -8.26973826346228,39.423574572070265,0.0 -8.270584082360593,39.4229031231268,0.0 -8.271441169337168,39.4221866615058,0.0 -8.272306139960458,39.421428014543295,0.0 -8.273175578872785,39.42063017613504,0.0 -8.274046053296201,39.4197962949232,0.0 -8.27491412660377,39.418929661870976,0.0 -8.275776371902234,39.41803369727449,0.0 -8.276629385572237,39.41711193726301,0.0 -8.277469800712353,39.41616801984074,0.0 -8.27829430043374,39.4152056705256,0.0 -8.279099630952773,39.41422868764146,0.0 -8.279882614430006,39.41324092732196,0.0 -8.280640161504815,39.41224628828539,0.0 -8.28136928347634,39.41124869644066,0.0 -8.282067104082865,39.41025208938529,0.0 -8.282730870833369,39.40926040085671,0.0 -8.283357965846857,39.40827754519833,0.0 -8.283945916157071,39.40730740190194,0.0 -8.284492403442302,39.40635380028755,0.0 -8.284995273142421,39.40542050438119,0.0 -8.28545254292763,39.404511198050635,0.0 -8.285862410486054,39.40362947045784,0.0 -8.286223260600009,39.402778801885454,0.0 -8.286533671483612,39.4019625499939,0.0 -8.286792420357264,39.40118393656283,0.0 -8.286998488237622,39.400446034769935,0.0 -8.287151063924705,39.399751757057025,0.0 -8.287249547170928,39.3991038436315,0.0 -8.287293551020099,39.398504851648795,0.0 -8.287282903307574,39.39795714511818,0.0 -8.287217647316117,39.39746288557219,0.0 -8.287098041585221,39.397024023536304,0.0 -8.286924558874968,39.396642290832496,0.0 -8.286697884288753,39.396319193747196,0.0 -8.286418912562473,39.39605600709039,0.0 -8.286088744530993,39.39585376916936,0.0 -8.285708682785845,39.39571327769681,0.0 -8.2852802265413,39.395635086649385,0.0 -8.284805065728936,39.395619504089,0.0 -8.284285074343854,39.39566659095515,0.0 -8.283722303068526,39.39577616083333,0.0 -8.283118971203118,39.39594778069986,0.0 -8.28247745793372,39.39618077264037,0.0 -8.281800292972553,39.39647421653473,0.0 -8.281090146606614,39.39682695369798,0.0 -8.280349819193534,39.397237591462535,0.0 -8.279582230145529,39.39770450868342,0.0 -8.278790406444418,39.39822586214478,0.0 -8.277977470732399,39.398799593842284,0.0 -8.27714662902503,39.39942343911227,0.0 -8.276301158094347,39.40009493557586,0.0 -8.275444392571302,39.40081143286224,0.0 -8.274579711817921,39.40157010307293,0.0 -8.27371052662047,39.40236795194551,0.0 -8.272840265755653,39.40320183067281,0.0 -8.271972362482467,39.40406844833081,0.0 -8.271110241012622,39.40496438486614,0.0 -8.270257303012631,39.405886104592106,0.0 -8.269416914190547,39.40682997013982,0.0 -8.268592391020173,39.40779225680942,0.0 -8.267786987654937,39.40876916726505,0.0 -8.267003883083111,39.40975684651529,0.0 -8.266246168575053,39.410751397120364,0.0 -8.265516835472146,39.41174889456595,0.0 -8.264818763365778,39.41274540274328,0.0 -8.264154708713267,39.41373698947429,0.0 -8.263527293935995,39.41471974202099,0.0 -8.262938997043088,39.415689782517696,0.0 -8.262392141822069,39.41664328326563,0.0 -8.261888888635632,39.417576481829485,0.0 -8.261431225861385,39.418485695876626,0.0 -8.261020962008871,39.41936733770047,0.0 -8.260659718545568,39.42021792837098,0.0 -8.260348923460715,39.42103411145632,0.0 -8.260089805592994,39.421812666261935,0.0 -8.259883389745001,39.42255052053469,0.0 -8.259730492604378,39.42324476258222,0.0 -8.259631719488223,39.423892652759534,0.0 -8.25958746192415,39.42449163427792,0.0 -8.259597896078041,39.42503934329306,0.0 -8.259662982035081,39.425533618233274,0.0 -8.259782463937318,39.4259725083303,0.0 -8.259955870977528,39.42635428131962,0.0 -8.260182519245674,39.42667743027947,0.0 -8.26046151442091,39.426940679581804,0.0 + + Launch Pad + Flight initial position + + -8.288964,39.3897,0.0 + + diff --git a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt index 64c9f72ee..d42c5721d 100644 --- a/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt +++ b/docs/notebooks/monte_carlo_analysis/monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt @@ -1,1000 +1,819 @@ -{"apogee": 1795.9064038509528, "out_of_rail_stability_margin": 2.7227803782640456, "lateral_surface_wind": -2.113177307989077, "impact_velocity": -5.467153999196374, "x_impact": 528.5623274826356, "max_mach_number": 0.5155433857399323, "out_of_rail_time": 0.43915323723180216, "apogee_y": 262.5200443868642, "out_of_rail_velocity": 20.164440703173007, "apogee_x": 144.94821111532227, "initial_stability_margin": 2.6383332381344387, "t_final": 213.1713087048155, "apogee_time": 19.53888579299219, "frontal_surface_wind": 0.9909058243705631, "y_impact": 155.4171703954702} -{"apogee": 4095.375901834891, "out_of_rail_stability_margin": 2.7859397485999273, "lateral_surface_wind": -2.111687902314004, "impact_velocity": -5.492225189761873, "x_impact": 1055.186015480787, "max_mach_number": 0.9598528770441666, "out_of_rail_time": 0.33585026558236913, "apogee_y": 536.980422681765, "out_of_rail_velocity": 27.822701142321577, "apogee_x": 407.7795940282364, "initial_stability_margin": 2.72110721309205, "t_final": 326.8633147406795, "apogee_time": 27.848242010160142, "frontal_surface_wind": 0.8713565951453185, "y_impact": 417.03276604245764} -{"apogee": 3859.0514780477583, "out_of_rail_stability_margin": 2.604345341470938, "lateral_surface_wind": -1.1633970653056904, "impact_velocity": -5.310508243223657, "x_impact": 770.3188879949383, "max_mach_number": 0.9215043543090827, "out_of_rail_time": 0.34291743405077924, "apogee_y": 343.9712307504226, "out_of_rail_velocity": 27.11665040797263, "apogee_x": 272.2758509165763, "initial_stability_margin": 2.5325060932455905, "t_final": 333.1044722693616, "apogee_time": 27.052083807913196, "frontal_surface_wind": 0.40151611052063807, "y_impact": 343.9507480316644} -{"apogee": 4724.451893789255, "out_of_rail_stability_margin": 2.610971081385574, "lateral_surface_wind": -2.083614998673116, "impact_velocity": -5.4718343735759545, "x_impact": 1121.7022505313075, "max_mach_number": 1.122622797035511, "out_of_rail_time": 0.3122835564896401, "apogee_y": 436.2344210772217, "out_of_rail_velocity": 30.56494630857079, "apogee_x": 220.52123479798308, "initial_stability_margin": 2.547911270645299, "t_final": 374.7021804968354, "apogee_time": 29.35703239215007, "frontal_surface_wind": 0.9771309853312291, "y_impact": 237.60431079525867} -{"apogee": 2400.5969668829816, "out_of_rail_stability_margin": 2.676845123484072, "lateral_surface_wind": -2.0805021392916796, "impact_velocity": -5.517687741348902, "x_impact": 654.8665181204419, "max_mach_number": 0.6339809536050632, "out_of_rail_time": 0.4026138474246894, "apogee_y": 378.1165986731139, "out_of_rail_velocity": 22.365883730479787, "apogee_x": 283.04062294737275, "initial_stability_margin": 2.5951198460712006, "t_final": 242.9334404739182, "apogee_time": 22.212351019374427, "frontal_surface_wind": 0.9301608419656868, "y_impact": 168.92955052486744} -{"apogee": 2968.3793775462364, "out_of_rail_stability_margin": 2.573983545595593, "lateral_surface_wind": -1.8845101355904699, "impact_velocity": -5.468728031934867, "x_impact": 641.6237052437879, "max_mach_number": 0.7399387748944131, "out_of_rail_time": 0.37705908111399977, "apogee_y": 326.7488312621109, "out_of_rail_velocity": 24.16579092182925, "apogee_x": 173.41581374239007, "initial_stability_margin": 2.497501423414522, "t_final": 284.6664842439484, "apogee_time": 24.329030498428516, "frontal_surface_wind": 0.8500832032482664, "y_impact": 233.85889917520916} -{"apogee": 2517.6741846280406, "out_of_rail_stability_margin": 2.8009317823730813, "lateral_surface_wind": -1.172343772663687, "impact_velocity": -5.55081068004812, "x_impact": 586.7569244385078, "max_mach_number": 0.653626065712292, "out_of_rail_time": 0.39666145882152887, "apogee_y": 366.5004366574292, "out_of_rail_velocity": 22.687905256169042, "apogee_x": 311.1256251128248, "initial_stability_margin": 2.7229418057377424, "t_final": 246.01570064215466, "apogee_time": 22.714711711587288, "frontal_surface_wind": 0.3745904393683692, "y_impact": 358.38704190954206} -{"apogee": 3361.8533144607813, "out_of_rail_stability_margin": 2.632743650119453, "lateral_surface_wind": -3.051013410380717, "impact_velocity": -5.4733202954727025, "x_impact": 902.1851320645949, "max_mach_number": 0.8152846031622654, "out_of_rail_time": 0.3610847684143487, "apogee_y": 514.6875071504993, "out_of_rail_velocity": 25.38984182626011, "apogee_x": 254.51570670317622, "initial_stability_margin": 2.5603546934630237, "t_final": 296.11883020721154, "apogee_time": 25.665825870286035, "frontal_surface_wind": 1.0803275961408043, "y_impact": 230.5750695977808} -{"apogee": 4170.396334557389, "out_of_rail_stability_margin": 2.567402346181651, "lateral_surface_wind": -1.5093615765476671, "impact_velocity": -5.501422094582606, "x_impact": 1180.8370445433045, "max_mach_number": 0.9829116733477974, "out_of_rail_time": 0.33242502148924136, "apogee_y": 537.0524828478569, "out_of_rail_velocity": 28.20554723980552, "apogee_x": 497.57547393840173, "initial_stability_margin": 2.5003228193580007, "t_final": 348.3132713154828, "apogee_time": 27.995234527990405, "frontal_surface_wind": 1.111682349610818, "y_impact": 536.5852079513696} -{"apogee": 2313.546887504778, "out_of_rail_stability_margin": 2.5920257209066433, "lateral_surface_wind": -2.5149325932194815, "impact_velocity": -5.42273190046999, "x_impact": 675.9200646287593, "max_mach_number": 0.6186922214472718, "out_of_rail_time": 0.4078083582297648, "apogee_y": 356.697091215385, "out_of_rail_velocity": 22.02236985597458, "apogee_x": 202.81133490093464, "initial_stability_margin": 2.5049211844148327, "t_final": 242.13160797972665, "apogee_time": 21.843357418146056, "frontal_surface_wind": 1.2427564557752198, "y_impact": 128.60273003530344} -{"apogee": 3135.461605599304, "out_of_rail_stability_margin": 2.5984306865229345, "lateral_surface_wind": -1.4619493221600488, "impact_velocity": -5.399167720572794, "x_impact": 945.2315594119923, "max_mach_number": 0.7756907145020226, "out_of_rail_time": 0.3683291063299614, "apogee_y": 372.3487210115861, "out_of_rail_velocity": 24.82415703265138, "apogee_x": 334.41453928439086, "initial_stability_margin": 2.5258444618763822, "t_final": 289.5404865130748, "apogee_time": 24.865353035412504, "frontal_surface_wind": 1.425646720223355, "y_impact": 398.6423666074995} -{"apogee": 3865.030207176948, "out_of_rail_stability_margin": 2.7481737219068174, "lateral_surface_wind": -2.023995438475904, "impact_velocity": -5.582862410151909, "x_impact": 1345.581848170677, "max_mach_number": 0.9172149535520094, "out_of_rail_time": 0.3428298096456579, "apogee_y": 729.8040948036487, "out_of_rail_velocity": 27.095956276234883, "apogee_x": 561.8620275508861, "initial_stability_margin": 2.6827912032900474, "t_final": 319.85720168407136, "apogee_time": 27.193575564533212, "frontal_surface_wind": 0.6403087472764554, "y_impact": 527.298931928559} -{"apogee": 2963.2170451318207, "out_of_rail_stability_margin": 2.6102605846327003, "lateral_surface_wind": -1.9201356134413068, "impact_velocity": -5.45596154214112, "x_impact": 734.734476537695, "max_mach_number": 0.7382339938820075, "out_of_rail_time": 0.37794036031599, "apogee_y": 365.84250126025097, "out_of_rail_velocity": 24.10740100358665, "apogee_x": 209.63719181936258, "initial_stability_margin": 2.532235778806163, "t_final": 277.1180960448503, "apogee_time": 24.335305510830057, "frontal_surface_wind": 1.2241412785776795, "y_impact": 230.79912750429656} -{"apogee": 3647.039845997081, "out_of_rail_stability_margin": 2.7941106412256302, "lateral_surface_wind": -1.6522179250792228, "impact_velocity": -5.5287860789500645, "x_impact": 1070.396230819056, "max_mach_number": 0.8650351644877571, "out_of_rail_time": 0.35235394259962516, "apogee_y": 548.4304379106783, "out_of_rail_velocity": 26.216746706399256, "apogee_x": 469.9829840508964, "initial_stability_margin": 2.7234578110682697, "t_final": 306.4205786418322, "apogee_time": 26.60496601265822, "frontal_surface_wind": 0.8331398057153161, "y_impact": 627.9083527470846} -{"apogee": 1686.8518499882762, "out_of_rail_stability_margin": 2.816824214101486, "lateral_surface_wind": -2.1136453726583477, "impact_velocity": -5.476475111130766, "x_impact": 466.0982567446753, "max_mach_number": 0.492701298690713, "out_of_rail_time": 0.4482830319907761, "apogee_y": 266.9998443004393, "out_of_rail_velocity": 19.68130408615649, "apogee_x": 152.4589615457936, "initial_stability_margin": 2.7256048728738262, "t_final": 202.58985606996856, "apogee_time": 19.010021349234627, "frontal_surface_wind": 0.8521687521632829, "y_impact": 98.9630095549107} -{"apogee": 3472.9903827023986, "out_of_rail_stability_margin": 2.5748316784424508, "lateral_surface_wind": -1.656085823207046, "impact_velocity": -5.563299882245895, "x_impact": 914.9547546642086, "max_mach_number": 0.8307894899056161, "out_of_rail_time": 0.3582453022841824, "apogee_y": 455.03213259623567, "out_of_rail_velocity": 25.66738183650159, "apogee_x": 355.5575687722846, "initial_stability_margin": 2.5031639927068308, "t_final": 303.1957629709487, "apogee_time": 26.061335496620035, "frontal_surface_wind": 0.8254245901310959, "y_impact": 517.2418920643481} -{"apogee": 3093.991683188904, "out_of_rail_stability_margin": 2.827134225895419, "lateral_surface_wind": -3.085739884554137, "impact_velocity": -5.447894622549997, "x_impact": 954.3953981024339, "max_mach_number": 0.7710627519307379, "out_of_rail_time": 0.36858994675572365, "apogee_y": 585.3378334427327, "out_of_rail_velocity": 24.815562882948946, "apogee_x": 329.9358954468702, "initial_stability_margin": 2.7598903004474398, "t_final": 284.8150613034083, "apogee_time": 24.730059948609824, "frontal_surface_wind": 0.9767291897850519, "y_impact": 308.46175241437487} -{"apogee": 2827.230258371446, "out_of_rail_stability_margin": 2.6749547314141924, "lateral_surface_wind": -1.3728080613216984, "impact_velocity": -5.35973186604977, "x_impact": 505.0264542125882, "max_mach_number": 0.7157547614068155, "out_of_rail_time": 0.3815348257016295, "apogee_y": 277.5669461728039, "out_of_rail_velocity": 23.763518948937953, "apogee_x": 167.34816202976688, "initial_stability_margin": 2.5964974193193915, "t_final": 272.33546386154575, "apogee_time": 23.778594629082715, "frontal_surface_wind": 0.5827634326737949, "y_impact": 195.14877404383088} -{"apogee": 3019.976992012309, "out_of_rail_stability_margin": 2.726857829423236, "lateral_surface_wind": -2.0091085281242265, "impact_velocity": -5.50164023292671, "x_impact": 787.1444397247005, "max_mach_number": 0.7487517401833557, "out_of_rail_time": 0.3746414599953421, "apogee_y": 443.3910368170896, "out_of_rail_velocity": 24.344316194761653, "apogee_x": 298.6746757000079, "initial_stability_margin": 2.6533101858030377, "t_final": 277.2195927944605, "apogee_time": 24.540340338235765, "frontal_surface_wind": 1.0291101365738466, "y_impact": 349.7713521968322} -{"apogee": 4218.404250134342, "out_of_rail_stability_margin": 2.502937915405129, "lateral_surface_wind": -1.3290694043042481, "impact_velocity": -5.317005294591223, "x_impact": 920.6775072933111, "max_mach_number": 1.0136902964634893, "out_of_rail_time": 0.3281655020560505, "apogee_y": 455.53114611881614, "out_of_rail_velocity": 28.64967606034983, "apogee_x": 392.38222518772625, "initial_stability_margin": 2.4338759155266416, "t_final": 351.7236530001519, "apogee_time": 27.993403151764415, "frontal_surface_wind": 0.49682379436915103, "y_impact": 75.54230331304015} -{"apogee": 3143.2600081383616, "out_of_rail_stability_margin": 2.549554483487053, "lateral_surface_wind": -2.1592248512360483, "impact_velocity": -5.347146369148786, "x_impact": 1031.9854591445646, "max_mach_number": 0.7864905340059795, "out_of_rail_time": 0.3671665383931562, "apogee_y": 567.6775744562983, "out_of_rail_velocity": 24.886316430450723, "apogee_x": 443.9554776597988, "initial_stability_margin": 2.471694402265632, "t_final": 294.77235470394197, "apogee_time": 24.833313179406563, "frontal_surface_wind": 0.9811209651093246, "y_impact": 342.58173587406515} -{"apogee": 3202.703799557666, "out_of_rail_stability_margin": 2.633638250016819, "lateral_surface_wind": -2.677673349135042, "impact_velocity": -5.38979198841716, "x_impact": 747.3830591550286, "max_mach_number": 0.7901100632922254, "out_of_rail_time": 0.36615910411092084, "apogee_y": 509.158221351344, "out_of_rail_velocity": 25.010532478092777, "apogee_x": 311.6156142802441, "initial_stability_margin": 2.560521427972568, "t_final": 288.63136854628374, "apogee_time": 25.107487688417507, "frontal_surface_wind": 0.26858573118295004, "y_impact": 123.55201372021233} -{"apogee": 3140.6747424688065, "out_of_rail_stability_margin": 2.8129080221492995, "lateral_surface_wind": -1.65913380727231, "impact_velocity": -5.544802272939559, "x_impact": 719.0152102023719, "max_mach_number": 0.7678922011491843, "out_of_rail_time": 0.37026912482106017, "apogee_y": 365.23888206647405, "out_of_rail_velocity": 24.67735694460741, "apogee_x": 240.86201968499404, "initial_stability_margin": 2.7408728703317635, "t_final": 283.23767869162776, "apogee_time": 24.971763827236497, "frontal_surface_wind": 0.81928079276066, "y_impact": 397.9218896017486} -{"apogee": 3132.4569352831804, "out_of_rail_stability_margin": 2.4858989616250047, "lateral_surface_wind": -2.136445296404018, "impact_velocity": -5.339685014845183, "x_impact": 786.8184420903851, "max_mach_number": 0.7781509127984877, "out_of_rail_time": 0.36885899474795336, "apogee_y": 407.81729974891346, "out_of_rail_velocity": 24.767337335653707, "apogee_x": 254.21344570800565, "initial_stability_margin": 2.4081846771694413, "t_final": 301.9193263316106, "apogee_time": 24.832299827007393, "frontal_surface_wind": 0.8087580652801604, "y_impact": 261.14535712434946} -{"apogee": 3518.608341594847, "out_of_rail_stability_margin": 2.7614822626778883, "lateral_surface_wind": -1.3483776537353704, "impact_velocity": -5.522758964048645, "x_impact": 925.8450752406889, "max_mach_number": 0.8424629403219841, "out_of_rail_time": 0.35678695190166176, "apogee_y": 478.7562577469111, "out_of_rail_velocity": 25.895748554531657, "apogee_x": 430.0073200293852, "initial_stability_margin": 2.6901150044286455, "t_final": 305.2684845373421, "apogee_time": 26.16673747262376, "frontal_surface_wind": 0.6372541836651069, "y_impact": 391.42942163324807} -{"apogee": 2291.6305398763407, "out_of_rail_stability_margin": 2.536621848806956, "lateral_surface_wind": -1.9633897693036764, "impact_velocity": -5.3289017198003235, "x_impact": 595.4323472016406, "max_mach_number": 0.6162676816366134, "out_of_rail_time": 0.40677718868664825, "apogee_y": 304.97505682547853, "out_of_rail_velocity": 22.03843942292592, "apogee_x": 198.72403732560585, "initial_stability_margin": 2.4556074533589887, "t_final": 248.26480047488914, "apogee_time": 21.716834160822714, "frontal_surface_wind": 0.7406195427194024, "y_impact": 198.36219725225598} -{"apogee": 4139.719728102081, "out_of_rail_stability_margin": 2.784173842600765, "lateral_surface_wind": -0.6560457963377402, "impact_velocity": -5.442040086480743, "x_impact": 880.3462121391557, "max_mach_number": 0.9747158876913755, "out_of_rail_time": 0.3338130107709603, "apogee_y": 335.9281798003297, "out_of_rail_velocity": 28.013762799120048, "apogee_x": 385.75398082265906, "initial_stability_margin": 2.716993032313716, "t_final": 342.75296748899626, "apogee_time": 27.91269099430265, "frontal_surface_wind": 0.9050816229028288, "y_impact": 492.8752465173023} -{"apogee": 2780.1529713216714, "out_of_rail_stability_margin": 2.7556329957487713, "lateral_surface_wind": -1.9825759396156206, "impact_velocity": -5.4143861753177545, "x_impact": 755.9347237226308, "max_mach_number": 0.708826783943653, "out_of_rail_time": 0.38333267358934786, "apogee_y": 404.8507878174478, "out_of_rail_velocity": 23.654972224138064, "apogee_x": 272.45488091267777, "initial_stability_margin": 2.6793834923038644, "t_final": 270.3773978384706, "apogee_time": 23.64555551621628, "frontal_surface_wind": 0.7589107131061256, "y_impact": 244.10774209111221} -{"apogee": 4740.823679369193, "out_of_rail_stability_margin": 2.6516855428679293, "lateral_surface_wind": -2.1299509716523146, "impact_velocity": -5.388869925056045, "x_impact": 1076.9705186303534, "max_mach_number": 1.1433430119790167, "out_of_rail_time": 0.3090722608519749, "apogee_y": 567.3251896255956, "out_of_rail_velocity": 30.949121855018557, "apogee_x": 402.23807062405655, "initial_stability_margin": 2.5889113618050943, "t_final": 379.0081925141, "apogee_time": 29.285171215447615, "frontal_surface_wind": 0.8105536391139906, "y_impact": 137.54205218901896} -{"apogee": 3858.283310914215, "out_of_rail_stability_margin": 2.8105203019156275, "lateral_surface_wind": -1.8876611853062002, "impact_velocity": -5.565875412689125, "x_impact": 1159.409714334648, "max_mach_number": 0.9092158346752092, "out_of_rail_time": 0.344327064552819, "apogee_y": 575.1223371814294, "out_of_rail_velocity": 26.95251422218784, "apogee_x": 464.7891075811538, "initial_stability_margin": 2.7430801640126723, "t_final": 309.7668365123502, "apogee_time": 27.201369866257867, "frontal_surface_wind": 1.2736474761140975, "y_impact": 431.6829272601808} -{"apogee": 2833.5941557873552, "out_of_rail_stability_margin": 2.5764171549775754, "lateral_surface_wind": -1.2964306450248708, "impact_velocity": -5.3214626962121825, "x_impact": 575.8987173450461, "max_mach_number": 0.7220357371569873, "out_of_rail_time": 0.3804712118065443, "apogee_y": 327.02959915697096, "out_of_rail_velocity": 23.87223877822589, "apogee_x": 296.47438238420773, "initial_stability_margin": 2.5000779869490914, "t_final": 266.7469765112452, "apogee_time": 23.80197421374236, "frontal_surface_wind": 0.5766514950552082, "y_impact": 133.37525296007277} -{"apogee": 3150.7235527223106, "out_of_rail_stability_margin": 2.7853313283506056, "lateral_surface_wind": -1.982362610430509, "impact_velocity": -5.431066264095682, "x_impact": 812.185549790366, "max_mach_number": 0.776189127359837, "out_of_rail_time": 0.36824971287416347, "apogee_y": 394.41651547272687, "out_of_rail_velocity": 24.802029360338203, "apogee_x": 241.5524147830088, "initial_stability_margin": 2.714082013971994, "t_final": 288.7448465246973, "apogee_time": 24.954859281413487, "frontal_surface_wind": 0.7594677791566582, "y_impact": 205.61511398433998} -{"apogee": 2209.5195460783957, "out_of_rail_stability_margin": 2.8157912229608812, "lateral_surface_wind": -1.879148003826525, "impact_velocity": -5.627607316892384, "x_impact": 552.4869710896737, "max_mach_number": 0.5908484544397544, "out_of_rail_time": 0.41437233024266384, "apogee_y": 281.62691978015454, "out_of_rail_velocity": 21.554183812112083, "apogee_x": 157.27989837215583, "initial_stability_margin": 2.7339838842806667, "t_final": 228.78822582694727, "apogee_time": 21.485094103756104, "frontal_surface_wind": 1.2861747251591469, "y_impact": 185.042576410297} -{"apogee": 4240.111812187782, "out_of_rail_stability_margin": 2.5523559442291757, "lateral_surface_wind": -0.6940544261606344, "impact_velocity": -5.378431303490922, "x_impact": 934.5962028029309, "max_mach_number": 1.0067267281114183, "out_of_rail_time": 0.329253521310319, "apogee_y": 386.5307920451257, "out_of_rail_velocity": 28.55710935987526, "apogee_x": 415.6583912567891, "initial_stability_margin": 2.483475646866016, "t_final": 350.6221448977071, "apogee_time": 28.121882106313492, "frontal_surface_wind": 0.8762746627260601, "y_impact": 552.5729618697521} -{"apogee": 3403.9069559051295, "out_of_rail_stability_margin": 2.6892042563416902, "lateral_surface_wind": -1.335213039575061, "impact_velocity": -5.495925848897031, "x_impact": 797.3292621719494, "max_mach_number": 0.8246579300912954, "out_of_rail_time": 0.3592780553463094, "apogee_y": 474.94026386541555, "out_of_rail_velocity": 25.5752279515157, "apogee_x": 405.406650742212, "initial_stability_margin": 2.619308773321698, "t_final": 298.35445669228, "apogee_time": 25.801631459705703, "frontal_surface_wind": 0.48006822750285894, "y_impact": 216.09236289654046} -{"apogee": 3875.484645117828, "out_of_rail_stability_margin": 2.7689612642358137, "lateral_surface_wind": -0.3922564540830393, "impact_velocity": -5.443289574957998, "x_impact": 969.8457852626651, "max_mach_number": 0.9225167177480035, "out_of_rail_time": 0.34213524535234463, "apogee_y": 462.8129651129646, "out_of_rail_velocity": 27.23771891063233, "apogee_x": 615.1467192224243, "initial_stability_margin": 2.7045424614830234, "t_final": 311.59906849388756, "apogee_time": 27.16742620413816, "frontal_surface_wind": 0.24785038394082926, "y_impact": 755.5541609837654} -{"apogee": 2485.658216163064, "out_of_rail_stability_margin": 2.5597471051364105, "lateral_surface_wind": -1.2451872579561496, "impact_velocity": -5.291727792698879, "x_impact": 562.8345199170353, "max_mach_number": 0.651342888944949, "out_of_rail_time": 0.3985597044212297, "apogee_y": 277.22144969923346, "out_of_rail_velocity": 22.562032727825688, "apogee_x": 178.8066140069816, "initial_stability_margin": 2.4731395589739136, "t_final": 255.95419760503026, "apogee_time": 22.506547922747018, "frontal_surface_wind": 1.1062055445242909, "y_impact": 338.77607633866756} -{"apogee": 3714.5165422306245, "out_of_rail_stability_margin": 2.7560157447913394, "lateral_surface_wind": -2.1838576458634926, "impact_velocity": -5.602616092373783, "x_impact": 1059.4474935795854, "max_mach_number": 0.877403132452014, "out_of_rail_time": 0.3506086271406852, "apogee_y": 600.8896273925964, "out_of_rail_velocity": 26.37097229578301, "apogee_x": 414.7148109951272, "initial_stability_margin": 2.6842079547253053, "t_final": 314.59202618332586, "apogee_time": 26.816922581498822, "frontal_surface_wind": 0.9249951832177027, "y_impact": 327.14534294823625} -{"apogee": 3524.137392450519, "out_of_rail_stability_margin": 2.5869816100672476, "lateral_surface_wind": -2.0732502398715864, "impact_velocity": -5.432000598160592, "x_impact": 1177.144139318702, "max_mach_number": 0.8520672780648479, "out_of_rail_time": 0.35434263029272706, "apogee_y": 546.3578422488931, "out_of_rail_velocity": 26.006459543386555, "apogee_x": 477.169587204434, "initial_stability_margin": 2.5155025112485014, "t_final": 310.7219995882334, "apogee_time": 26.13353187949594, "frontal_surface_wind": 1.0719356933342028, "y_impact": 415.301363522796} -{"apogee": 3047.7513298510466, "out_of_rail_stability_margin": 2.6869179562895242, "lateral_surface_wind": -2.156679650684137, "impact_velocity": -5.428778433004625, "x_impact": 820.1922543349734, "max_mach_number": 0.7575008866219511, "out_of_rail_time": 0.3725770953452292, "apogee_y": 458.57352902492545, "out_of_rail_velocity": 24.50716060877655, "apogee_x": 290.86570412763075, "initial_stability_margin": 2.6136889500816882, "t_final": 277.37970397742805, "apogee_time": 24.59426652113507, "frontal_surface_wind": 1.2397473275389441, "y_impact": 340.51344109784554} -{"apogee": 1846.0096844956686, "out_of_rail_stability_margin": 2.776935377888805, "lateral_surface_wind": -2.0789121035207367, "impact_velocity": -5.435267842995208, "x_impact": 541.192694202334, "max_mach_number": 0.5271253632275125, "out_of_rail_time": 0.43471952176042616, "apogee_y": 310.6332482283723, "out_of_rail_velocity": 20.37539352219447, "apogee_x": 182.65092689464987, "initial_stability_margin": 2.6917304030461935, "t_final": 215.9607916589198, "apogee_time": 19.774882968897785, "frontal_surface_wind": 0.9870972044459118, "y_impact": 166.99063221366666} -{"apogee": 3029.3018924855623, "out_of_rail_stability_margin": 2.60356472504246, "lateral_surface_wind": -2.1488351945336204, "impact_velocity": -5.266035507305173, "x_impact": 838.2749232222973, "max_mach_number": 0.7624752119663052, "out_of_rail_time": 0.37218243284892977, "apogee_y": 433.1303133235335, "out_of_rail_velocity": 24.52815640099858, "apogee_x": 285.4495550339761, "initial_stability_margin": 2.5262897577232057, "t_final": 292.0228042091044, "apogee_time": 24.443529426920186, "frontal_surface_wind": 1.0036720645240877, "y_impact": 201.99892646036685} -{"apogee": 2925.2248559197715, "out_of_rail_stability_margin": 2.839966133521883, "lateral_surface_wind": -1.5325827368470706, "impact_velocity": -5.5108408671295575, "x_impact": 594.5459023621779, "max_mach_number": 0.7273150494794468, "out_of_rail_time": 0.378570606442085, "apogee_y": 283.00113004843405, "out_of_rail_velocity": 24.006740518493004, "apogee_x": 163.40027407691144, "initial_stability_margin": 2.7663155852847257, "t_final": 271.534529452447, "apogee_time": 24.211359301318428, "frontal_surface_wind": 1.079444380185024, "y_impact": 264.716898687583} -{"apogee": 3449.2159523942623, "out_of_rail_stability_margin": 2.640237417286088, "lateral_surface_wind": -1.316763168363674, "impact_velocity": -5.393152813830929, "x_impact": 895.9864525671223, "max_mach_number": 0.8367848347698241, "out_of_rail_time": 0.35732897718395196, "apogee_y": 417.45139059973496, "out_of_rail_velocity": 25.775507458271214, "apogee_x": 405.01949129689245, "initial_stability_margin": 2.5661157275296436, "t_final": 307.49173970321897, "apogee_time": 25.86463816165857, "frontal_surface_wind": 0.7002499197661101, "y_impact": 322.2282197989987} -{"apogee": 3787.1291348291716, "out_of_rail_stability_margin": 2.4995658745955502, "lateral_surface_wind": -2.125927341458776, "impact_velocity": -5.35201930606918, "x_impact": 939.6679703770478, "max_mach_number": 0.9068228863272858, "out_of_rail_time": 0.3450253071363478, "apogee_y": 534.2687459441454, "out_of_rail_velocity": 26.87677907982167, "apogee_x": 382.76046625441063, "initial_stability_margin": 2.427603294701146, "t_final": 326.3693518738483, "apogee_time": 26.86781651571865, "frontal_surface_wind": 0.8210488915780795, "y_impact": 191.72981138595128} -{"apogee": 3897.697569544453, "out_of_rail_stability_margin": 2.7160746521774115, "lateral_surface_wind": -2.5261398251510014, "impact_velocity": -5.440234433797083, "x_impact": 1252.899853710442, "max_mach_number": 0.9276346685916699, "out_of_rail_time": 0.3418532215061844, "apogee_y": 628.6531994613939, "out_of_rail_velocity": 27.23912937991829, "apogee_x": 474.33045072419014, "initial_stability_margin": 2.6478287549990016, "t_final": 333.7407343296196, "apogee_time": 27.224659938862704, "frontal_surface_wind": 1.2198143877634497, "y_impact": 313.65855150334227} -{"apogee": 3533.3025080600414, "out_of_rail_stability_margin": 2.5764208515621485, "lateral_surface_wind": -2.1241547999136148, "impact_velocity": -5.38622525956873, "x_impact": 851.798075369449, "max_mach_number": 0.8520652399246991, "out_of_rail_time": 0.354823066605445, "apogee_y": 427.9701958320662, "out_of_rail_velocity": 25.989550097761445, "apogee_x": 269.7098953932521, "initial_stability_margin": 2.5028175969010067, "t_final": 312.6973749802364, "apogee_time": 26.144301827795402, "frontal_surface_wind": 0.8405084762728523, "y_impact": 296.68799243107065} -{"apogee": 3672.2553194081406, "out_of_rail_stability_margin": 2.562194714102807, "lateral_surface_wind": -1.210374954203067, "impact_velocity": -5.273749008882977, "x_impact": 821.1599274898797, "max_mach_number": 0.8928158869106162, "out_of_rail_time": 0.34729010385762915, "apogee_y": 472.26335226668334, "out_of_rail_velocity": 26.681180159873616, "apogee_x": 437.0512811516672, "initial_stability_margin": 2.491705648276554, "t_final": 317.7470220832214, "apogee_time": 26.467354789431013, "frontal_surface_wind": 0.47117986019569086, "y_impact": 497.11597877055056} -{"apogee": 2756.3767449850084, "out_of_rail_stability_margin": 2.6326902032372366, "lateral_surface_wind": -1.8634499721622353, "impact_velocity": -5.462959654510746, "x_impact": 711.2211619701604, "max_mach_number": 0.7012481670834032, "out_of_rail_time": 0.38566969993070765, "apogee_y": 325.7557355348699, "out_of_rail_velocity": 23.469105329176646, "apogee_x": 212.19087349610635, "initial_stability_margin": 2.5533622610314, "t_final": 264.2215541145393, "apogee_time": 23.582279820053852, "frontal_surface_wind": 1.464401191351421, "y_impact": 201.38684810861187} -{"apogee": 2959.103149719691, "out_of_rail_stability_margin": 2.6935582084639202, "lateral_surface_wind": -1.8955043957228257, "impact_velocity": -5.366319275295281, "x_impact": 774.6726296640892, "max_mach_number": 0.7433893249929059, "out_of_rail_time": 0.37664938144759263, "apogee_y": 429.4312125962127, "out_of_rail_velocity": 24.226099115816524, "apogee_x": 289.07090736716333, "initial_stability_margin": 2.616381974922609, "t_final": 283.5086000337659, "apogee_time": 24.265430414610275, "frontal_surface_wind": 0.825277522645255, "y_impact": 350.96881656593433} -{"apogee": 3053.25452008074, "out_of_rail_stability_margin": 2.5838325370601747, "lateral_surface_wind": -2.679930237853782, "impact_velocity": -5.424775921695579, "x_impact": 732.9323375939928, "max_mach_number": 0.7630931086380158, "out_of_rail_time": 0.37201928756786085, "apogee_y": 509.09895130528656, "out_of_rail_velocity": 24.54361296621325, "apogee_x": 315.76088531486135, "initial_stability_margin": 2.5089113522248883, "t_final": 287.8998256663455, "apogee_time": 24.596811647378438, "frontal_surface_wind": 0.24504444474446618, "y_impact": 119.94073265869005} -{"apogee": 3738.898620756124, "out_of_rail_stability_margin": 2.569306332861774, "lateral_surface_wind": -0.400422687251049, "impact_velocity": -5.3570847609423, "x_impact": 923.932954827815, "max_mach_number": 0.9024324940952085, "out_of_rail_time": 0.346005007843123, "apogee_y": 461.2100863880822, "out_of_rail_velocity": 26.82015178445095, "apogee_x": 570.9013411788275, "initial_stability_margin": 2.497971809043948, "t_final": 324.027769590614, "apogee_time": 26.703389768980067, "frontal_surface_wind": 0.23442826221269603, "y_impact": 764.3263543773512} -{"apogee": 2278.8759512381343, "out_of_rail_stability_margin": 2.602151962798722, "lateral_surface_wind": -2.0260912851324275, "impact_velocity": -5.4483885959364855, "x_impact": 651.2643796793017, "max_mach_number": 0.6116926982304344, "out_of_rail_time": 0.4078429083031114, "apogee_y": 373.34128346803396, "out_of_rail_velocity": 21.9533034491119, "apogee_x": 242.97741071096587, "initial_stability_margin": 2.5208640722916673, "t_final": 239.7001563328623, "apogee_time": 21.698134471506012, "frontal_surface_wind": 0.9952581852418815, "y_impact": 281.5843185174005} -{"apogee": 3326.698537835656, "out_of_rail_stability_margin": 2.636461393201619, "lateral_surface_wind": -2.0085813901449887, "impact_velocity": -5.425953743765199, "x_impact": 951.6179425304327, "max_mach_number": 0.8121108250118211, "out_of_rail_time": 0.3616982604146242, "apogee_y": 489.47523576227593, "out_of_rail_velocity": 25.351369314467036, "apogee_x": 326.4950074788228, "initial_stability_margin": 2.56432426839616, "t_final": 294.036973813683, "apogee_time": 25.522071070863923, "frontal_surface_wind": 0.6871343580212195, "y_impact": 303.60993087099814} -{"apogee": 3335.10968258143, "out_of_rail_stability_margin": 2.6944167324228916, "lateral_surface_wind": -3.022479863555266, "impact_velocity": -5.449004088017824, "x_impact": 702.5291885081475, "max_mach_number": 0.8089449352474901, "out_of_rail_time": 0.36258772600387323, "apogee_y": 387.30894620256333, "out_of_rail_velocity": 25.268392884136954, "apogee_x": 82.33710845586229, "initial_stability_margin": 2.6212393055117933, "t_final": 302.2764318908539, "apogee_time": 25.582267718463847, "frontal_surface_wind": 0.6825808857707407, "y_impact": -83.03862365327528} -{"apogee": 4382.311838912044, "out_of_rail_stability_margin": 2.656748765305047, "lateral_surface_wind": -2.4371924020071, "impact_velocity": -5.553218300257839, "x_impact": 1120.35783586173, "max_mach_number": 1.0269339994876614, "out_of_rail_time": 0.32540087510675786, "apogee_y": 477.59886003365546, "out_of_rail_velocity": 28.991914849415984, "apogee_x": 328.97015686905377, "initial_stability_margin": 2.5933368472997067, "t_final": 340.90542222973437, "apogee_time": 28.594475606470173, "frontal_surface_wind": 1.389036627453542, "y_impact": 136.09969419794464} -{"apogee": 4014.664048807163, "out_of_rail_stability_margin": 2.5779604749606593, "lateral_surface_wind": -1.4456883346181122, "impact_velocity": -5.316683361774465, "x_impact": 1095.9107796664962, "max_mach_number": 0.9580884893369418, "out_of_rail_time": 0.33749134823427446, "apogee_y": 435.7761746665325, "out_of_rail_velocity": 27.84750761527781, "apogee_x": 429.95662775470726, "initial_stability_margin": 2.5086935730065316, "t_final": 345.5263305033295, "apogee_time": 27.47158051425358, "frontal_surface_wind": 1.1933127227779803, "y_impact": 419.062028901636} -{"apogee": 4272.801797140103, "out_of_rail_stability_margin": 2.6701350404485056, "lateral_surface_wind": -2.134662057748831, "impact_velocity": -5.457831095742902, "x_impact": 847.0981578836588, "max_mach_number": 1.0120012851704268, "out_of_rail_time": 0.3281833776864094, "apogee_y": 469.66035762137903, "out_of_rail_velocity": 28.640733948186643, "apogee_x": 269.354768950766, "initial_stability_margin": 2.6012359408235635, "t_final": 338.71590610739463, "apogee_time": 28.213127816956145, "frontal_surface_wind": 0.7980640592904172, "y_impact": 97.52604643034172} -{"apogee": 3421.8927820777217, "out_of_rail_stability_margin": 2.5696263296809674, "lateral_surface_wind": -3.0252394535143092, "impact_velocity": -5.4653237242678125, "x_impact": 929.8924133051197, "max_mach_number": 0.8273014265501198, "out_of_rail_time": 0.35904804935704354, "apogee_y": 507.2923297913304, "out_of_rail_velocity": 25.588148313916015, "apogee_x": 267.390278637681, "initial_stability_margin": 2.4970021154446536, "t_final": 301.0397709663281, "apogee_time": 25.849638026248147, "frontal_surface_wind": 1.1505289193265802, "y_impact": 219.1883701917173} -{"apogee": 2746.129705078656, "out_of_rail_stability_margin": 2.6115936962005026, "lateral_surface_wind": -1.9761735707214605, "impact_velocity": -5.468707110701121, "x_impact": 467.9521650925574, "max_mach_number": 0.6990199206298587, "out_of_rail_time": 0.38627364217331295, "apogee_y": 221.06831436406432, "out_of_rail_velocity": 23.415918730172493, "apogee_x": 40.41462651638855, "initial_stability_margin": 2.5311754866411484, "t_final": 266.38094588025035, "apogee_time": 23.518748625660646, "frontal_surface_wind": 0.7754294585531314, "y_impact": 34.033056323451234} -{"apogee": 3050.8220147457805, "out_of_rail_stability_margin": 2.7316484563898507, "lateral_surface_wind": -1.1755350507675513, "impact_velocity": -5.3963040006698435, "x_impact": 938.5935223019162, "max_mach_number": 0.7627494987014933, "out_of_rail_time": 0.37074047082435424, "apogee_y": 462.68371630523654, "out_of_rail_velocity": 24.630823357681162, "apogee_x": 437.8674859360413, "initial_stability_margin": 2.659637328137626, "t_final": 279.2435210960439, "apogee_time": 24.56865480277138, "frontal_surface_wind": 1.1799573545385307, "y_impact": 588.3705640338237} -{"apogee": 3742.6662923471886, "out_of_rail_stability_margin": 2.80485720838361, "lateral_surface_wind": -1.171830670892812, "impact_velocity": -5.486436378822952, "x_impact": 940.6924567102994, "max_mach_number": 0.8890326555144362, "out_of_rail_time": 0.3483118406312071, "apogee_y": 499.95231083116676, "out_of_rail_velocity": 26.590995842418163, "apogee_x": 444.0205614040947, "initial_stability_margin": 2.7342081181256486, "t_final": 319.73336577438516, "apogee_time": 26.834617553753816, "frontal_surface_wind": 0.376192500356422, "y_impact": 528.7373766888696} -{"apogee": 4064.208928056126, "out_of_rail_stability_margin": 2.584478597495026, "lateral_surface_wind": -3.1019929125213697, "impact_velocity": -5.5583423488007, "x_impact": 1299.019001657933, "max_mach_number": 0.9614892791852474, "out_of_rail_time": 0.336944950639471, "apogee_y": 801.7499659406762, "out_of_rail_velocity": 27.758976587167176, "apogee_x": 525.0460223595874, "initial_stability_margin": 2.5157099190601517, "t_final": 325.0922728641394, "apogee_time": 27.735481350798644, "frontal_surface_wind": 0.9238130308528547, "y_impact": 547.0338636865708} -{"apogee": 3745.1656987772785, "out_of_rail_stability_margin": 2.6164315033863175, "lateral_surface_wind": -1.9233064758920246, "impact_velocity": -5.422743590451423, "x_impact": 1001.9669945838365, "max_mach_number": 0.8918217336580878, "out_of_rail_time": 0.34749652852999163, "apogee_y": 476.58804310628955, "out_of_rail_velocity": 26.65710690499606, "apogee_x": 316.7455218361515, "initial_stability_margin": 2.546140739647857, "t_final": 319.0249094921918, "apogee_time": 26.80574860421207, "frontal_surface_wind": 1.2191533306829048, "y_impact": 307.67658947390885} -{"apogee": 4044.7031523399864, "out_of_rail_stability_margin": 2.641812584142076, "lateral_surface_wind": -1.9507199575086178, "impact_velocity": -5.412951038389468, "x_impact": 1013.6995954266279, "max_mach_number": 0.957167733000262, "out_of_rail_time": 0.3368672356603028, "apogee_y": 365.0207907914825, "out_of_rail_velocity": 27.767075447255586, "apogee_x": 210.93990629529725, "initial_stability_margin": 2.575620916226395, "t_final": 341.86594020877254, "apogee_time": 27.61882576539, "frontal_surface_wind": 0.8374034118557114, "y_impact": 81.4536647132795} -{"apogee": 3130.528148962769, "out_of_rail_stability_margin": 2.642933680631974, "lateral_surface_wind": -1.1486247485835026, "impact_velocity": -5.349530462407325, "x_impact": 643.1907878168006, "max_mach_number": 0.7772329900001475, "out_of_rail_time": 0.3681417241342806, "apogee_y": 315.8221685014564, "out_of_rail_velocity": 24.816252112254787, "apogee_x": 276.4419848048605, "initial_stability_margin": 2.5692357509000336, "t_final": 289.4366712609727, "apogee_time": 24.812917329451505, "frontal_surface_wind": 0.4420057754271993, "y_impact": 306.7466046223565} -{"apogee": 3561.8021983873423, "out_of_rail_stability_margin": 2.611048255194512, "lateral_surface_wind": -2.6055947888095377, "impact_velocity": -5.4985072613326675, "x_impact": 1051.2029796291254, "max_mach_number": 0.8520513114557609, "out_of_rail_time": 0.3537190293281018, "apogee_y": 514.2011134355472, "out_of_rail_velocity": 26.04891050934824, "apogee_x": 304.1719406251247, "initial_stability_margin": 2.5419144484846043, "t_final": 310.9745265444532, "apogee_time": 26.291519199680796, "frontal_surface_wind": 0.9423900275218525, "y_impact": 235.63982308448763} -{"apogee": 1994.4948357387327, "out_of_rail_stability_margin": 2.7398765042160624, "lateral_surface_wind": -2.181052770150496, "impact_velocity": -5.560771495539253, "x_impact": 439.3847896094687, "max_mach_number": 0.5511407105993007, "out_of_rail_time": 0.42673772810147625, "apogee_y": 276.99414447223796, "out_of_rail_velocity": 20.81991192632042, "apogee_x": 111.85767284422367, "initial_stability_margin": 2.6562851247619825, "t_final": 218.26847642873093, "apogee_time": 20.51697058996211, "frontal_surface_wind": 0.679335650839413, "y_impact": 121.34603920115815} -{"apogee": 3811.9610742495065, "out_of_rail_stability_margin": 2.586777984169381, "lateral_surface_wind": -2.036254936662135, "impact_velocity": -5.39462978038201, "x_impact": 1268.0563699226664, "max_mach_number": 0.9133577753066758, "out_of_rail_time": 0.34405663510995954, "apogee_y": 603.9785821374179, "out_of_rail_velocity": 26.975992152180655, "apogee_x": 502.3491575223192, "initial_stability_margin": 2.516067220717401, "t_final": 331.6785677721917, "apogee_time": 26.957201226519004, "frontal_surface_wind": 1.07233495611634, "y_impact": 442.06202045886334} -{"apogee": 2592.986450521117, "out_of_rail_stability_margin": 2.690422484629956, "lateral_surface_wind": -1.8701561635923418, "impact_velocity": -5.618706317996774, "x_impact": 711.084111060352, "max_mach_number": 0.6660890389085155, "out_of_rail_time": 0.394484695304449, "apogee_y": 363.5574696615829, "out_of_rail_velocity": 22.91596307097789, "apogee_x": 254.71848459130996, "initial_stability_margin": 2.6120582127740004, "t_final": 244.90861008088146, "apogee_time": 23.018707636309145, "frontal_surface_wind": 1.2992145964778081, "y_impact": 268.6157320759526} -{"apogee": 1997.4676997339645, "out_of_rail_stability_margin": 2.813221987308335, "lateral_surface_wind": -1.8323425012972878, "impact_velocity": -5.362550807501986, "x_impact": 469.54781684008327, "max_mach_number": 0.5560337318984121, "out_of_rail_time": 0.42445595300576683, "apogee_y": 243.22027711168587, "out_of_rail_velocity": 20.951816502982684, "apogee_x": 144.40992707677069, "initial_stability_margin": 2.730828421507987, "t_final": 227.55934021246293, "apogee_time": 20.457255463537116, "frontal_surface_wind": 0.9573614059108724, "y_impact": 140.45266999440446} -{"apogee": 3906.5947701531436, "out_of_rail_stability_margin": 2.5388456764592706, "lateral_surface_wind": -1.4845650112735156, "impact_velocity": -5.33306290004237, "x_impact": 1299.5234515148752, "max_mach_number": 0.9405996313186156, "out_of_rail_time": 0.3399705713543406, "apogee_y": 516.3809941059574, "out_of_rail_velocity": 27.54074264873967, "apogee_x": 503.848819908227, "initial_stability_margin": 2.4680257016921257, "t_final": 339.74065335269455, "apogee_time": 27.13782058768465, "frontal_surface_wind": 1.402080995788154, "y_impact": 541.3313639718949} -{"apogee": 2146.0892568105564, "out_of_rail_stability_margin": 2.7046424690755897, "lateral_surface_wind": -0.7063002207669695, "impact_velocity": -5.602909736092179, "x_impact": 585.6548105789207, "max_mach_number": 0.5824559388929107, "out_of_rail_time": 0.41692653975427646, "apogee_y": 309.7635394955292, "out_of_rail_velocity": 21.35898535035428, "apogee_x": 330.1578630960297, "initial_stability_margin": 2.620787823734505, "t_final": 226.5380279874972, "apogee_time": 21.200857843557802, "frontal_surface_wind": 0.8664345498382254, "y_impact": 378.5029269652106} -{"apogee": 3829.2682415811964, "out_of_rail_stability_margin": 2.5853298600500256, "lateral_surface_wind": -0.6032733778729347, "impact_velocity": -5.325199755029125, "x_impact": 854.3607932242587, "max_mach_number": 0.9209753552665754, "out_of_rail_time": 0.3433413206804457, "apogee_y": 501.31872496289293, "out_of_rail_velocity": 27.06227562427189, "apogee_x": 595.4843217824069, "initial_stability_margin": 2.5127705330302432, "t_final": 323.3714329695759, "apogee_time": 26.97736683106078, "frontal_surface_wind": -0.734379432160879, "y_impact": 540.9390500492549} -{"apogee": 3828.2635461436507, "out_of_rail_stability_margin": 2.6672928091660557, "lateral_surface_wind": -1.3042885035152898, "impact_velocity": -5.420190640644113, "x_impact": 997.6422270363231, "max_mach_number": 0.9128212804164569, "out_of_rail_time": 0.3441788965254482, "apogee_y": 507.54224160010216, "out_of_rail_velocity": 26.981098183323862, "apogee_x": 510.4627858586138, "initial_stability_margin": 2.5982856567539208, "t_final": 330.7169392116271, "apogee_time": 27.044838723596136, "frontal_surface_wind": 0.5586509318947346, "y_impact": 173.37821322139476} -{"apogee": 3534.1363023707213, "out_of_rail_stability_margin": 2.8052602408658593, "lateral_surface_wind": -1.9978033425119865, "impact_velocity": -5.479284672137155, "x_impact": 733.5915980960949, "max_mach_number": 0.8426924661151849, "out_of_rail_time": 0.3559797334694367, "apogee_y": 379.1312162784584, "out_of_rail_velocity": 25.881124177524377, "apogee_x": 195.7158232770553, "initial_stability_margin": 2.7343781258801343, "t_final": 307.2739782417542, "apogee_time": 26.22163286688332, "frontal_surface_wind": 1.0508884601271773, "y_impact": 262.112545907147} -{"apogee": 2485.8455034140993, "out_of_rail_stability_margin": 2.6857197298469044, "lateral_surface_wind": -1.858629389030083, "impact_velocity": -5.475046951419354, "x_impact": 733.7306153876192, "max_mach_number": 0.6486125026006806, "out_of_rail_time": 0.3976929555989249, "apogee_y": 365.56131270155277, "out_of_rail_velocity": 22.65770024034724, "apogee_x": 273.3712271940423, "initial_stability_margin": 2.6094156563529163, "t_final": 249.88088485749483, "apogee_time": 22.569383581136023, "frontal_surface_wind": 1.315651716130481, "y_impact": 263.4830607598796} -{"apogee": 3440.3915594396776, "out_of_rail_stability_margin": 2.646960827020563, "lateral_surface_wind": -2.089243588301316, "impact_velocity": -5.451025772994369, "x_impact": 872.3995167377652, "max_mach_number": 0.8355080314568342, "out_of_rail_time": 0.3576595897316947, "apogee_y": 506.33449790839484, "out_of_rail_velocity": 25.72701523760953, "apogee_x": 300.12073015803577, "initial_stability_margin": 2.5732384575086558, "t_final": 306.56566291731855, "apogee_time": 25.854033336522296, "frontal_surface_wind": 0.2485395179577663, "y_impact": 187.3958282739679} -{"apogee": 2942.8451222596336, "out_of_rail_stability_margin": 2.6146974090857715, "lateral_surface_wind": -2.1365060328703036, "impact_velocity": -5.57552691076333, "x_impact": 592.5700877094607, "max_mach_number": 0.7312019673592862, "out_of_rail_time": 0.3789958988946361, "apogee_y": 325.28791119512493, "out_of_rail_velocity": 23.96095357019329, "apogee_x": 144.6869270936604, "initial_stability_margin": 2.535769585139882, "t_final": 270.48384815486526, "apogee_time": 24.292303509447546, "frontal_surface_wind": 0.8085976033796779, "y_impact": 183.81941081623188} -{"apogee": 3257.832876675686, "out_of_rail_stability_margin": 2.707994646396114, "lateral_surface_wind": -0.38388768523658834, "impact_velocity": -5.559072303244479, "x_impact": 926.2023359687927, "max_mach_number": 0.7913096659117472, "out_of_rail_time": 0.3655173006995026, "apogee_y": 423.41724523429787, "out_of_rail_velocity": 25.039638934950318, "apogee_x": 608.3542570068738, "initial_stability_margin": 2.6380333342996045, "t_final": 294.03470693052185, "apogee_time": 25.405081044216374, "frontal_surface_wind": 0.2606246030464317, "y_impact": 674.4278606709346} -{"apogee": 3109.0224869807917, "out_of_rail_stability_margin": 2.729317328942035, "lateral_surface_wind": -1.1529394476390977, "impact_velocity": -5.5373584440729475, "x_impact": 727.4135419400685, "max_mach_number": 0.7646973583019216, "out_of_rail_time": 0.370793758339359, "apogee_y": 383.5982445343973, "out_of_rail_velocity": 24.606478136942755, "apogee_x": 357.92016456690874, "initial_stability_margin": 2.657140850144132, "t_final": 281.052598296991, "apogee_time": 24.856549678330364, "frontal_surface_wind": 0.43062576403086555, "y_impact": 387.64912637920787} -{"apogee": 3819.049542979974, "out_of_rail_stability_margin": 2.7139504945401165, "lateral_surface_wind": -2.3455198106508552, "impact_velocity": -5.267808064191413, "x_impact": 1100.4860242559657, "max_mach_number": 0.917747275533762, "out_of_rail_time": 0.343011704014505, "apogee_y": 498.3950408549348, "out_of_rail_velocity": 27.08481999087749, "apogee_x": 323.84127106405356, "initial_stability_margin": 2.642861992387136, "t_final": 331.2778520939756, "apogee_time": 26.9053219808395, "frontal_surface_wind": 0.9069952062040336, "y_impact": 220.4553539453132} -{"apogee": 4464.246698948229, "out_of_rail_stability_margin": 2.7726164102581183, "lateral_surface_wind": -1.479336289310503, "impact_velocity": -5.516405866006007, "x_impact": 1141.7509101142214, "max_mach_number": 1.0529227401257402, "out_of_rail_time": 0.3210254544471255, "apogee_y": 400.6521225597128, "out_of_rail_velocity": 29.47483901953354, "apogee_x": 326.88861333440724, "initial_stability_margin": 2.7105307130099674, "t_final": 350.76261034961243, "apogee_time": 28.74382850148171, "frontal_surface_wind": 1.4075967229916622, "y_impact": 394.5023753049558} -{"apogee": 4012.2266719086797, "out_of_rail_stability_margin": 2.710463266980167, "lateral_surface_wind": -1.1356367655510118, "impact_velocity": -5.3990229926355555, "x_impact": 1236.9178473975571, "max_mach_number": 0.9491661463351914, "out_of_rail_time": 0.33768235395083523, "apogee_y": 543.9584837533755, "out_of_rail_velocity": 27.61718789188907, "apogee_x": 566.6668932041741, "initial_stability_margin": 2.6429110467612364, "t_final": 329.8305881058003, "apogee_time": 27.561738415104674, "frontal_surface_wind": 1.2184051669463132, "y_impact": 720.7127101314373} -{"apogee": 4236.777713564425, "out_of_rail_stability_margin": 2.709357355721605, "lateral_surface_wind": -1.9988510829259805, "impact_velocity": -5.406207649799518, "x_impact": 1228.3833960745026, "max_mach_number": 1.0049308955702596, "out_of_rail_time": 0.3291139660060393, "apogee_y": 554.7110426722426, "out_of_rail_velocity": 28.521941403740215, "apogee_x": 395.9793057906438, "initial_stability_margin": 2.6425284060370005, "t_final": 339.95984053403504, "apogee_time": 28.14112888560031, "frontal_surface_wind": 0.7149455749185699, "y_impact": 295.9425038335877} -{"apogee": 3941.792139166954, "out_of_rail_stability_margin": 2.632599930667721, "lateral_surface_wind": -2.1944417701966925, "impact_velocity": -5.392498248338658, "x_impact": 1083.5412793888177, "max_mach_number": 0.9397610538499492, "out_of_rail_time": 0.340045524153978, "apogee_y": 605.0359888687061, "out_of_rail_velocity": 27.37279692008887, "apogee_x": 408.9098595078741, "initial_stability_margin": 2.5604661236718003, "t_final": 326.53275264317216, "apogee_time": 27.31689978825869, "frontal_surface_wind": 0.8995974786471975, "y_impact": 312.79391716403836} -{"apogee": 3535.1046066807357, "out_of_rail_stability_margin": 2.7651740941399816, "lateral_surface_wind": -1.9903691099418692, "impact_velocity": -5.444503156491959, "x_impact": 1148.352428133869, "max_mach_number": 0.8557523374059238, "out_of_rail_time": 0.35484549990337777, "apogee_y": 555.3513808112563, "out_of_rail_velocity": 26.04726912989212, "apogee_x": 423.42997774056863, "initial_stability_margin": 2.6930268638280874, "t_final": 317.961028726828, "apogee_time": 26.154646472023828, "frontal_surface_wind": 0.7382300677967683, "y_impact": 342.5439174726602} -{"apogee": 3440.19920691306, "out_of_rail_stability_margin": 2.5796876787022556, "lateral_surface_wind": -0.7384570093745924, "impact_velocity": -5.411855394489126, "x_impact": 921.4051257071893, "max_mach_number": 0.834823991247182, "out_of_rail_time": 0.3585426349167335, "apogee_y": 499.42514298627685, "out_of_rail_velocity": 25.668077998245543, "apogee_x": 508.07563575341044, "initial_stability_margin": 2.5041030893427663, "t_final": 310.0800335142908, "apogee_time": 25.886597598195713, "frontal_surface_wind": 0.8391960893106994, "y_impact": 657.4409336159962} -{"apogee": 2290.4404641570177, "out_of_rail_stability_margin": 2.682737984248985, "lateral_surface_wind": -0.40558267184761043, "impact_velocity": -5.447544524314711, "x_impact": 555.393969824493, "max_mach_number": 0.6133339867219002, "out_of_rail_time": 0.4087202327205476, "apogee_y": 298.0144770403676, "out_of_rail_velocity": 21.940832109227575, "apogee_x": 345.5859731564831, "initial_stability_margin": 2.598938177918552, "t_final": 234.70293717574182, "apogee_time": 21.773659092492654, "frontal_surface_wind": 0.22538330658318398, "y_impact": 429.12516883134947} -{"apogee": 3078.263908492356, "out_of_rail_stability_margin": 2.5948157847228974, "lateral_surface_wind": -1.3311674659606951, "impact_velocity": -5.389856260324102, "x_impact": 490.51503564495266, "max_mach_number": 0.7663781450775508, "out_of_rail_time": 0.3705936088452207, "apogee_y": 280.83420040427785, "out_of_rail_velocity": 24.629293622026037, "apogee_x": 183.97847684433705, "initial_stability_margin": 2.52151314755794, "t_final": 293.2183263659769, "apogee_time": 24.657450008649803, "frontal_surface_wind": 0.49117465496174634, "y_impact": 14.311032420390612} -{"apogee": 4439.906947005212, "out_of_rail_stability_margin": 2.549884727835771, "lateral_surface_wind": -1.29763531446565, "impact_velocity": -5.349427026821879, "x_impact": 891.6190703210922, "max_mach_number": 1.067859882118166, "out_of_rail_time": 0.31903872946338346, "apogee_y": 373.14027919081354, "out_of_rail_velocity": 29.68759749058972, "apogee_x": 340.42047435806774, "initial_stability_margin": 2.4859276776536183, "t_final": 362.9787346011694, "apogee_time": 28.55723204775185, "frontal_surface_wind": 0.573935497038337, "y_impact": -41.68814606567425} -{"apogee": 1909.1327773029072, "out_of_rail_stability_margin": 2.5638464965884777, "lateral_surface_wind": -1.341966986461152, "impact_velocity": -5.398415237307357, "x_impact": 452.5474416418839, "max_mach_number": 0.5382405472813973, "out_of_rail_time": 0.43119318250248506, "apogee_y": 254.867259490089, "out_of_rail_velocity": 20.558402653018707, "apogee_x": 205.44152851379494, "initial_stability_margin": 2.4748685159093142, "t_final": 217.24500713796618, "apogee_time": 20.06258600785819, "frontal_surface_wind": 0.6506456784917263, "y_impact": 203.54725158072637} -{"apogee": 4432.90839836334, "out_of_rail_stability_margin": 2.7111351009591806, "lateral_surface_wind": -1.9116078184743404, "impact_velocity": -5.389189241444888, "x_impact": 1304.8772819164417, "max_mach_number": 1.063351180169437, "out_of_rail_time": 0.3193102185039982, "apogee_y": 662.473787943178, "out_of_rail_velocity": 29.642050405321275, "apogee_x": 511.5943992485368, "initial_stability_margin": 2.648234466250915, "t_final": 368.85105085756845, "apogee_time": 28.568888158707903, "frontal_surface_wind": 0.7872581863250557, "y_impact": 587.7294468391825} -{"apogee": 4478.288349514381, "out_of_rail_stability_margin": 2.606566156286319, "lateral_surface_wind": -2.4093826896224897, "impact_velocity": -5.377357799329716, "x_impact": 1087.8546383290316, "max_mach_number": 1.064293350632383, "out_of_rail_time": 0.3204713466342089, "apogee_y": 508.17281509619164, "out_of_rail_velocity": 29.5443248358951, "apogee_x": 247.23786710742544, "initial_stability_margin": 2.538680432842462, "t_final": 353.0354672265145, "apogee_time": 28.730609459497618, "frontal_surface_wind": 0.7204016526773224, "y_impact": 238.53654073390854} -{"apogee": 4272.020140481052, "out_of_rail_stability_margin": 2.5986502438382733, "lateral_surface_wind": -1.9743775899577076, "impact_velocity": -5.443805317012697, "x_impact": 1158.2276300300177, "max_mach_number": 1.0194488501542198, "out_of_rail_time": 0.3264118824433577, "apogee_y": 589.8631486018211, "out_of_rail_velocity": 28.863839165702665, "apogee_x": 397.20730420139677, "initial_stability_margin": 2.5333876992136397, "t_final": 344.74776742385455, "apogee_time": 28.176268074683577, "frontal_surface_wind": 1.134581762675663, "y_impact": 400.6059317271573} -{"apogee": 4494.166753416795, "out_of_rail_stability_margin": 2.524843959992018, "lateral_surface_wind": -1.8730824246505313, "impact_velocity": -5.3471482800744035, "x_impact": 1133.56627078825, "max_mach_number": 1.0826494362437997, "out_of_rail_time": 0.31712648154921386, "apogee_y": 486.95914248369905, "out_of_rail_velocity": 29.923390169067975, "apogee_x": 371.08658300281417, "initial_stability_margin": 2.4596606850090645, "t_final": 348.01205640469004, "apogee_time": 28.679242492961105, "frontal_surface_wind": 1.2949922294703955, "y_impact": 280.90981947005156} -{"apogee": 4205.319210428855, "out_of_rail_stability_margin": 2.665758055451669, "lateral_surface_wind": -0.400742258314775, "impact_velocity": -5.300341355081523, "x_impact": 1044.5064553969682, "max_mach_number": 1.0146121582180532, "out_of_rail_time": 0.3270336727593005, "apogee_y": 521.7399653945045, "out_of_rail_velocity": 28.76615221887161, "apogee_x": 648.4580473353476, "initial_stability_margin": 2.600164459741009, "t_final": 350.9440748837376, "apogee_time": 27.93115479488439, "frontal_surface_wind": 0.23388155333456745, "y_impact": 861.0841618794133} -{"apogee": 2194.2374582288844, "out_of_rail_stability_margin": 2.7692799964222194, "lateral_surface_wind": -1.6735404170981072, "impact_velocity": -5.62451046270263, "x_impact": 733.4682438302572, "max_mach_number": 0.5930665490256346, "out_of_rail_time": 0.41362139807968196, "apogee_y": 436.0633927800148, "out_of_rail_velocity": 21.602279187984344, "apogee_x": 362.77168395452134, "initial_stability_margin": 2.6878971678456565, "t_final": 223.8041843869798, "apogee_time": 21.40941639812155, "frontal_surface_wind": 0.7894355452850724, "y_impact": 442.81852624403086} -{"apogee": 3373.307061515045, "out_of_rail_stability_margin": 2.5980031672140056, "lateral_surface_wind": -2.0128323727054784, "impact_velocity": -5.409171426212693, "x_impact": 1053.721692941149, "max_mach_number": 0.8261189613160793, "out_of_rail_time": 0.3595538153540244, "apogee_y": 547.2540023020496, "out_of_rail_velocity": 25.587426483852997, "apogee_x": 390.1612478737196, "initial_stability_margin": 2.5249258796929626, "t_final": 303.6240944196045, "apogee_time": 25.62914763736203, "frontal_surface_wind": 0.6745803630397514, "y_impact": 356.36540698763565} -{"apogee": 3057.604282991558, "out_of_rail_stability_margin": 2.6234477106188625, "lateral_surface_wind": -2.00074475070497, "impact_velocity": -5.509338809008611, "x_impact": 851.0771772121724, "max_mach_number": 0.7545477854398823, "out_of_rail_time": 0.3740402362783166, "apogee_y": 415.05743608090717, "out_of_rail_velocity": 24.396387066079722, "apogee_x": 307.3699509793594, "initial_stability_margin": 2.548554606099491, "t_final": 275.84679928326506, "apogee_time": 24.694987372717108, "frontal_surface_wind": 1.1372145214146956, "y_impact": 265.148832510451} -{"apogee": 2947.1862730428675, "out_of_rail_stability_margin": 2.7324016309694033, "lateral_surface_wind": -1.3589822059151366, "impact_velocity": -5.417422136514057, "x_impact": 694.3814806523776, "max_mach_number": 0.7388925291659979, "out_of_rail_time": 0.3766343432335239, "apogee_y": 394.74005242481877, "out_of_rail_velocity": 24.18419729386567, "apogee_x": 351.6012170662526, "initial_stability_margin": 2.657780054827877, "t_final": 267.05212207225264, "apogee_time": 24.23665493665548, "frontal_surface_wind": 0.6306166948080116, "y_impact": 313.5152250883929} -{"apogee": 4049.7540938969387, "out_of_rail_stability_margin": 2.553596964409999, "lateral_surface_wind": -3.0306588221589594, "impact_velocity": -5.459770056276121, "x_impact": 1151.7723534160507, "max_mach_number": 0.9559970981460076, "out_of_rail_time": 0.3377122003225714, "apogee_y": 631.8693982717296, "out_of_rail_velocity": 27.672544096589327, "apogee_x": 366.21429754336214, "initial_stability_margin": 2.485569593366254, "t_final": 340.02518906045145, "apogee_time": 27.69973216401945, "frontal_surface_wind": 0.6452970594127154, "y_impact": 113.22014421288405} -{"apogee": 3182.6505908932013, "out_of_rail_stability_margin": 2.6359033814768797, "lateral_surface_wind": -0.5799274813697713, "impact_velocity": -5.370917028280191, "x_impact": 574.4481263088393, "max_mach_number": 0.7866685572334098, "out_of_rail_time": 0.3673122172872983, "apogee_y": 396.9287496738301, "out_of_rail_velocity": 24.873800643688764, "apogee_x": 431.1820743016582, "initial_stability_margin": 2.559196345753219, "t_final": 282.1691190379911, "apogee_time": 25.038726101292724, "frontal_surface_wind": -0.7529515490277374, "y_impact": 406.0247169798402} -{"apogee": 3567.5386347336093, "out_of_rail_stability_margin": 2.722442502161801, "lateral_surface_wind": -3.057951419142971, "impact_velocity": -5.518213632511821, "x_impact": 927.8754457820959, "max_mach_number": 0.8528441835242737, "out_of_rail_time": 0.3536319618609003, "apogee_y": 575.5855890804324, "out_of_rail_velocity": 26.061691561934282, "apogee_x": 259.76063727637677, "initial_stability_margin": 2.65577269013909, "t_final": 305.2311118311964, "apogee_time": 26.338619061959598, "frontal_surface_wind": 0.5002342545029412, "y_impact": 126.22575430686133} -{"apogee": 2384.7331257718083, "out_of_rail_stability_margin": 2.66266904126229, "lateral_surface_wind": -1.631954128029036, "impact_velocity": -5.326420700864242, "x_impact": 795.1519088320738, "max_mach_number": 0.637128581076684, "out_of_rail_time": 0.401795301791946, "apogee_y": 417.29629237661084, "out_of_rail_velocity": 22.37072008104825, "apogee_x": 381.5019786302997, "initial_stability_margin": 2.5787421119656955, "t_final": 251.16187851685825, "apogee_time": 22.09780176057559, "frontal_surface_wind": 0.8721649682424968, "y_impact": 417.8132233633553} -{"apogee": 3392.976558418654, "out_of_rail_stability_margin": 2.77932321476517, "lateral_surface_wind": -1.9775074240404233, "impact_velocity": -5.517955321812745, "x_impact": 1042.7635246777884, "max_mach_number": 0.8203778506970861, "out_of_rail_time": 0.36080166817859466, "apogee_y": 549.7867615562708, "out_of_rail_velocity": 25.47282606659285, "apogee_x": 444.08672494893545, "initial_stability_margin": 2.70653409481708, "t_final": 290.9158302637458, "apogee_time": 25.793075443053556, "frontal_surface_wind": 0.7020548989425608, "y_impact": 464.1693961672067} -{"apogee": 3168.184243817336, "out_of_rail_stability_margin": 2.8751974469492736, "lateral_surface_wind": -1.1939526151562707, "impact_velocity": -5.468186068129781, "x_impact": 655.0736632832568, "max_mach_number": 0.7798332584559106, "out_of_rail_time": 0.3682458500329531, "apogee_y": 392.56857069632184, "out_of_rail_velocity": 24.827876068321373, "apogee_x": 366.9603901787662, "initial_stability_margin": 2.8023381913742473, "t_final": 289.4840724172702, "apogee_time": 25.0281570608572, "frontal_surface_wind": 0.5113659581724318, "y_impact": 393.2178056978996} -{"apogee": 4347.1564520140155, "out_of_rail_stability_margin": 2.6426910572686104, "lateral_surface_wind": -3.0162556885142155, "impact_velocity": -5.498691431472998, "x_impact": 1317.223060421568, "max_mach_number": 1.034049102443828, "out_of_rail_time": 0.32475547306972796, "apogee_y": 694.56274990619, "out_of_rail_velocity": 29.01323670803813, "apogee_x": 467.8560086735542, "initial_stability_margin": 2.5764707739688997, "t_final": 356.18141827473175, "apogee_time": 28.433187337873903, "frontal_surface_wind": 0.7095793209516905, "y_impact": 152.30137970593756} -{"apogee": 3894.9343929151173, "out_of_rail_stability_margin": 2.7105917852178676, "lateral_surface_wind": -1.1517247375242148, "impact_velocity": -5.360241505675338, "x_impact": 1032.9882698663837, "max_mach_number": 0.9324820085397454, "out_of_rail_time": 0.3404770381570609, "apogee_y": 490.5963387423196, "out_of_rail_velocity": 27.356616020136656, "apogee_x": 490.9410810921231, "initial_stability_margin": 2.642365460513688, "t_final": 337.42626148315134, "apogee_time": 27.15418145119521, "frontal_surface_wind": 0.43386408879313015, "y_impact": 511.28771213425443} -{"apogee": 4340.948399189469, "out_of_rail_stability_margin": 2.7817660789802927, "lateral_surface_wind": -1.9823550824054865, "impact_velocity": -5.287776287557144, "x_impact": 1185.1267617688648, "max_mach_number": 1.0492371888565637, "out_of_rail_time": 0.32099926324560923, "apogee_y": 550.4129331086019, "out_of_rail_velocity": 29.447304946288643, "apogee_x": 368.4689768885762, "initial_stability_margin": 2.7203828965609325, "t_final": 376.4144078898729, "apogee_time": 28.267226954895328, "frontal_surface_wind": 1.2989168469321017, "y_impact": 382.2983585904388} -{"apogee": 3040.678004488119, "out_of_rail_stability_margin": 2.6835694512823336, "lateral_surface_wind": -1.3903359468057126, "impact_velocity": -5.35680937970503, "x_impact": 643.2057733298925, "max_mach_number": 0.7582246427861538, "out_of_rail_time": 0.3735808241000771, "apogee_y": 378.14142207613247, "out_of_rail_velocity": 24.415874422564873, "apogee_x": 281.4184956955541, "initial_stability_margin": 2.6038075299822196, "t_final": 290.350133496037, "apogee_time": 24.534498937975517, "frontal_surface_wind": 0.5581003554777708, "y_impact": 268.5138481160239} -{"apogee": 3084.281445300351, "out_of_rail_stability_margin": 2.656509008753216, "lateral_surface_wind": -3.050945989806264, "impact_velocity": -5.434194523849963, "x_impact": 950.5077517321573, "max_mach_number": 0.7678865417790077, "out_of_rail_time": 0.37090552057454973, "apogee_y": 551.2405519029827, "out_of_rail_velocity": 24.59597294652374, "apogee_x": 324.89289253958174, "initial_stability_margin": 2.5800765092622893, "t_final": 285.01388445898306, "apogee_time": 24.716104901488603, "frontal_surface_wind": 1.0805179834650689, "y_impact": 272.9295761021423} -{"apogee": 4183.318321676979, "out_of_rail_stability_margin": 2.5938908569605137, "lateral_surface_wind": -1.3208699996682651, "impact_velocity": -5.39628723606623, "x_impact": 1061.1712619771938, "max_mach_number": 0.9974831532692267, "out_of_rail_time": 0.33023925483898703, "apogee_y": 556.7823038698014, "out_of_rail_velocity": 28.442820283290786, "apogee_x": 537.2495771598669, "initial_stability_margin": 2.5282438089403927, "t_final": 335.8497203212279, "apogee_time": 27.97355589515894, "frontal_surface_wind": 0.5182294936467496, "y_impact": 220.25136810913867} -{"apogee": 2548.45995673982, "out_of_rail_stability_margin": 2.6995898897131374, "lateral_surface_wind": -0.5814290251019205, "impact_velocity": -5.388930069407297, "x_impact": 396.44799313180334, "max_mach_number": 0.6652854540232859, "out_of_rail_time": 0.3947740375790757, "apogee_y": 321.3342910264303, "out_of_rail_velocity": 22.85778813717294, "apogee_x": 343.89677054438334, "initial_stability_margin": 2.619474077884672, "t_final": 252.3196992203275, "apogee_time": 22.77452652974605, "frontal_surface_wind": -0.751792662640562, "y_impact": 298.8709712698996} -{"apogee": 4496.397703615932, "out_of_rail_stability_margin": 2.690854383171817, "lateral_surface_wind": -2.596104490005005, "impact_velocity": -5.356208868930613, "x_impact": 1376.3913753474424, "max_mach_number": 1.086410886702201, "out_of_rail_time": 0.31562051838749816, "apogee_y": 628.7485752855915, "out_of_rail_velocity": 30.056761538641222, "apogee_x": 447.6892047007434, "initial_stability_margin": 2.6289587384356583, "t_final": 364.89359383825047, "apogee_time": 28.66445285666129, "frontal_surface_wind": 0.9682275788366657, "y_impact": 337.9157617435608} -{"apogee": 2916.028437112187, "out_of_rail_stability_margin": 2.485118192422439, "lateral_surface_wind": -1.5137608377035607, "impact_velocity": -5.404344656670046, "x_impact": 866.3507239452263, "max_mach_number": 0.732750211043055, "out_of_rail_time": 0.3781135846285729, "apogee_y": 381.6445009120253, "out_of_rail_velocity": 24.037977376000832, "apogee_x": 319.06422289188293, "initial_stability_margin": 2.4072797132977866, "t_final": 265.27179883311527, "apogee_time": 24.136782092017242, "frontal_surface_wind": 1.370508123902536, "y_impact": 418.4730074013528} -{"apogee": 2993.1950386953145, "out_of_rail_stability_margin": 2.781763572088366, "lateral_surface_wind": -0.412312470772825, "impact_velocity": -5.425360312835292, "x_impact": 604.5622697076902, "max_mach_number": 0.7474857461571155, "out_of_rail_time": 0.37561788980329747, "apogee_y": 319.7217429630644, "out_of_rail_velocity": 24.27380044772626, "apogee_x": 339.8513336882537, "initial_stability_margin": 2.7057681518195054, "t_final": 283.0407784562807, "apogee_time": 24.410236424076018, "frontal_surface_wind": 0.2128223790737815, "y_impact": 530.6506533022607} -{"apogee": 2833.488694530237, "out_of_rail_stability_margin": 2.6370073455846628, "lateral_surface_wind": -2.352222688408064, "impact_velocity": -5.452980961306822, "x_impact": 744.4095484905588, "max_mach_number": 0.7146682444568805, "out_of_rail_time": 0.38198354718372163, "apogee_y": 383.4976054875278, "out_of_rail_velocity": 23.723376843267847, "apogee_x": 210.20931523681006, "initial_stability_margin": 2.558536995423494, "t_final": 273.4253050299755, "apogee_time": 23.857918957929762, "frontal_surface_wind": 0.8894672058997227, "y_impact": 121.1633874460585} -{"apogee": 4115.844096714692, "out_of_rail_stability_margin": 2.799192640047344, "lateral_surface_wind": -2.0773984902236053, "impact_velocity": -5.428592816839591, "x_impact": 1113.5086531458444, "max_mach_number": 0.9757795256552304, "out_of_rail_time": 0.3341459580966851, "apogee_y": 565.6034143940794, "out_of_rail_velocity": 28.009406185581728, "apogee_x": 383.5556408900663, "initial_stability_margin": 2.729458879685655, "t_final": 337.9142328479642, "apogee_time": 27.816246955434657, "frontal_surface_wind": 0.3333559299930372, "y_impact": 235.4780176821828} -{"apogee": 3748.1756997727884, "out_of_rail_stability_margin": 2.4850713270685945, "lateral_surface_wind": -0.5877038458270875, "impact_velocity": -5.34945934827296, "x_impact": 768.5066390517649, "max_mach_number": 0.9001332226859442, "out_of_rail_time": 0.3470876661123543, "apogee_y": 465.7704662620863, "out_of_rail_velocity": 26.685419296193714, "apogee_x": 526.2111601571945, "initial_stability_margin": 2.410233867347148, "t_final": 323.1602635232802, "apogee_time": 26.77649938396857, "frontal_surface_wind": -0.7468976559283116, "y_impact": 499.6018908833958} -{"apogee": 3553.8009729961955, "out_of_rail_stability_margin": 2.6694623167764435, "lateral_surface_wind": -2.084456439721884, "impact_velocity": -5.427035495416165, "x_impact": 986.6607279593212, "max_mach_number": 0.8561660767196315, "out_of_rail_time": 0.3528950372897045, "apogee_y": 541.3727075574793, "out_of_rail_velocity": 26.149240622456784, "apogee_x": 453.2059019783909, "initial_stability_margin": 2.601134084399972, "t_final": 310.27188459928607, "apogee_time": 26.217797245336126, "frontal_surface_wind": 0.9212652682184097, "y_impact": 229.9306109528158} -{"apogee": 3147.9313927332587, "out_of_rail_stability_margin": 2.6590682240980605, "lateral_surface_wind": -1.1464163677877321, "impact_velocity": -5.363184157095983, "x_impact": 732.7393923937557, "max_mach_number": 0.7786873772089098, "out_of_rail_time": 0.3684476368546526, "apogee_y": 371.2773115010718, "out_of_rail_velocity": 24.801874600763167, "apogee_x": 355.36407977363206, "initial_stability_margin": 2.5835751514170178, "t_final": 284.7407231414961, "apogee_time": 24.911745906334524, "frontal_surface_wind": 0.4477023902526066, "y_impact": 373.7338518175774} -{"apogee": 3539.0211604553137, "out_of_rail_stability_margin": 2.6548443324363373, "lateral_surface_wind": -0.3980919388026034, "impact_velocity": -5.550222732043689, "x_impact": 594.3793925554617, "max_mach_number": 0.8421912697419561, "out_of_rail_time": 0.3571090980702527, "apogee_y": 263.3697534531595, "out_of_rail_velocity": 25.831730856297415, "apogee_x": 305.51428575799605, "initial_stability_margin": 2.5833570843287164, "t_final": 301.78346591618316, "apogee_time": 26.26338814457248, "frontal_surface_wind": 0.2383647349122775, "y_impact": 510.99493094236743} -{"apogee": 3217.8499507794163, "out_of_rail_stability_margin": 2.6906272370428193, "lateral_surface_wind": -1.3485758667521175, "impact_velocity": -5.375656368444346, "x_impact": 742.9723638269418, "max_mach_number": 0.7932841268611708, "out_of_rail_time": 0.3656331172161976, "apogee_y": 383.74677857581696, "out_of_rail_velocity": 25.035652670373675, "apogee_x": 344.3028342660615, "initial_stability_margin": 2.613914086990204, "t_final": 286.99966912820196, "apogee_time": 25.112475802432368, "frontal_surface_wind": 0.6525742742234986, "y_impact": 279.21795149655503} -{"apogee": 3853.7415508624376, "out_of_rail_stability_margin": 2.720900035193201, "lateral_surface_wind": -2.136034545567064, "impact_velocity": -5.428224721438578, "x_impact": 1066.6674567974849, "max_mach_number": 0.9192028654268232, "out_of_rail_time": 0.3424524407895469, "apogee_y": 588.093969341728, "out_of_rail_velocity": 27.155924192772037, "apogee_x": 437.51548547589726, "initial_stability_margin": 2.6527773909024104, "t_final": 330.68255344059486, "apogee_time": 27.07381197410842, "frontal_surface_wind": 1.2749890085640398, "y_impact": 460.5722347590349} -{"apogee": 2925.569614750834, "out_of_rail_stability_margin": 2.836992856623021, "lateral_surface_wind": -1.3515539875399087, "impact_velocity": -5.4784243465304145, "x_impact": 632.821552238718, "max_mach_number": 0.7362525106226401, "out_of_rail_time": 0.3775871895457852, "apogee_y": 436.763528226241, "out_of_rail_velocity": 24.136309177839806, "apogee_x": 334.94598663636157, "initial_stability_margin": 2.7646346135649447, "t_final": 274.75438820191357, "apogee_time": 24.18174896715145, "frontal_surface_wind": 0.4319272888739281, "y_impact": 236.8109234106197} -{"apogee": 3968.6268320562813, "out_of_rail_stability_margin": 2.741793278955929, "lateral_surface_wind": -2.1490700273305072, "impact_velocity": -5.459703580624453, "x_impact": 919.6846146940691, "max_mach_number": 0.9332314691757756, "out_of_rail_time": 0.3400451341356331, "apogee_y": 506.411768919437, "out_of_rail_velocity": 27.384146654028424, "apogee_x": 312.007115779346, "initial_stability_margin": 2.6752558074109265, "t_final": 326.46609631096374, "apogee_time": 27.472532221095, "frontal_surface_wind": 1.2528920821222629, "y_impact": 375.6834124931969} -{"apogee": 2566.3295834150977, "out_of_rail_stability_margin": 2.631487975511505, "lateral_surface_wind": -1.561117731994847, "impact_velocity": -5.384428311876226, "x_impact": 682.3209588334676, "max_mach_number": 0.6675354326018297, "out_of_rail_time": 0.39268603784173967, "apogee_y": 366.86713087707597, "out_of_rail_velocity": 22.939816643244693, "apogee_x": 271.66797268852605, "initial_stability_margin": 2.552103072680782, "t_final": 256.6928623136314, "apogee_time": 22.827110059088568, "frontal_surface_wind": 1.0377482556217343, "y_impact": 368.6741762546651} -{"apogee": 2176.9591537209135, "out_of_rail_stability_margin": 2.8453827221675234, "lateral_surface_wind": -1.9767365646175532, "impact_velocity": -5.37111871356751, "x_impact": 466.004178326851, "max_mach_number": 0.5905484290150264, "out_of_rail_time": 0.41387404148950846, "apogee_y": 251.81984153826886, "out_of_rail_velocity": 21.56463461653901, "apogee_x": 112.29180889000772, "initial_stability_margin": 2.764721947303035, "t_final": 234.55026274114988, "apogee_time": 21.260242978305705, "frontal_surface_wind": 0.7042224416817697, "y_impact": 142.47769554344114} -{"apogee": 2824.4430483877713, "out_of_rail_stability_margin": 2.682624163366606, "lateral_surface_wind": -1.9498835496554459, "impact_velocity": -5.3076028132481525, "x_impact": 676.7555165851868, "max_mach_number": 0.7180854289423168, "out_of_rail_time": 0.3808534641912177, "apogee_y": 325.6096900747005, "out_of_rail_velocity": 23.81001983831611, "apogee_x": 163.3699938205763, "initial_stability_margin": 2.6072006059305863, "t_final": 275.47442161044745, "apogee_time": 23.774809819991418, "frontal_surface_wind": 1.3471714036328024, "y_impact": 194.3231294178703} -{"apogee": 2472.0008130541974, "out_of_rail_stability_margin": 2.676850768507727, "lateral_surface_wind": -2.1391470407490756, "impact_velocity": -5.485671497107541, "x_impact": 812.6993983980423, "max_mach_number": 0.6482210028710043, "out_of_rail_time": 0.39925540469229637, "apogee_y": 448.1684733307774, "out_of_rail_velocity": 22.532170592106066, "apogee_x": 315.6849695313371, "initial_stability_margin": 2.5938145297688293, "t_final": 252.86142095271626, "apogee_time": 22.521815620299364, "frontal_surface_wind": 0.9335216257944657, "y_impact": 364.31130444603485} -{"apogee": 3191.5889557295877, "out_of_rail_stability_margin": 2.7283367525422033, "lateral_surface_wind": -1.2015498413915018, "impact_velocity": -5.534940479653789, "x_impact": 697.1252487637894, "max_mach_number": 0.783850597900129, "out_of_rail_time": 0.36720412232848876, "apogee_y": 427.4265161740441, "out_of_rail_velocity": 24.88024957986139, "apogee_x": 402.28854371550534, "initial_stability_margin": 2.6559296814785016, "t_final": 285.8685761783854, "apogee_time": 25.118071727137472, "frontal_surface_wind": 0.4932504121317731, "y_impact": 435.45488548703446} -{"apogee": 3372.2036989479193, "out_of_rail_stability_margin": 2.818478139094119, "lateral_surface_wind": -1.5727023088569738, "impact_velocity": -5.434812585955332, "x_impact": 841.3737968745934, "max_mach_number": 0.817579811010925, "out_of_rail_time": 0.35958418288042193, "apogee_y": 360.24914460947616, "out_of_rail_velocity": 25.55683821800076, "apogee_x": 228.41760529088012, "initial_stability_margin": 2.7505734919766684, "t_final": 290.7090262118424, "apogee_time": 25.651510807962, "frontal_surface_wind": 1.3024484017279834, "y_impact": 384.0832841045431} -{"apogee": 3363.081916522446, "out_of_rail_stability_margin": 2.635137580162016, "lateral_surface_wind": -2.687525160941753, "impact_velocity": -5.407531015878975, "x_impact": 640.5226367978184, "max_mach_number": 0.8185769235528652, "out_of_rail_time": 0.3603788320924248, "apogee_y": 458.20481167822845, "out_of_rail_velocity": 25.468916905754053, "apogee_x": 196.02045078137573, "initial_stability_margin": 2.56353483573295, "t_final": 300.1232744599162, "apogee_time": 25.63014083604299, "frontal_surface_wind": 0.138857369153234, "y_impact": 48.31704005402571} -{"apogee": 3561.943157634984, "out_of_rail_stability_margin": 2.66926578738029, "lateral_surface_wind": -1.364245305111833, "impact_velocity": -5.429644165278954, "x_impact": 984.8031668357728, "max_mach_number": 0.856140690602928, "out_of_rail_time": 0.353037159668461, "apogee_y": 522.3218845805569, "out_of_rail_velocity": 26.13332699856421, "apogee_x": 459.4022341071824, "initial_stability_margin": 2.5994562978205766, "t_final": 319.95228626542263, "apogee_time": 26.25021846732046, "frontal_surface_wind": 0.6025362554833577, "y_impact": 429.1220782413663} -{"apogee": 4622.475812560094, "out_of_rail_stability_margin": 2.570298688971423, "lateral_surface_wind": -1.9286052420203283, "impact_velocity": -5.39715234997372, "x_impact": 1207.93808761316, "max_mach_number": 1.1140251481113617, "out_of_rail_time": 0.3127183680349463, "apogee_y": 525.8616479384032, "out_of_rail_velocity": 30.46689166185745, "apogee_x": 387.7353830102608, "initial_stability_margin": 2.5080355461930735, "t_final": 371.4395134870192, "apogee_time": 29.018333159336454, "frontal_surface_wind": 1.3774608772791361, "y_impact": 366.5422758809319} -{"apogee": 4173.572783285908, "out_of_rail_stability_margin": 2.6987214859000375, "lateral_surface_wind": -2.046563733484115, "impact_velocity": -5.396610063499251, "x_impact": 1229.6159103921948, "max_mach_number": 0.9926591077976892, "out_of_rail_time": 0.33050294448479195, "apogee_y": 550.8771485860524, "out_of_rail_velocity": 28.403361598539593, "apogee_x": 408.5044223812719, "initial_stability_margin": 2.633784336348949, "t_final": 346.6213015817768, "apogee_time": 27.941768516037133, "frontal_surface_wind": 1.0525271065286197, "y_impact": 384.82954255222074} -{"apogee": 3920.025613875148, "out_of_rail_stability_margin": 2.7736069268041206, "lateral_surface_wind": -2.630602441359337, "impact_velocity": -5.568570229121993, "x_impact": 1304.8984007561203, "max_mach_number": 0.9261078024021515, "out_of_rail_time": 0.34190401586801794, "apogee_y": 697.4136480680662, "out_of_rail_velocity": 27.212687342853457, "apogee_x": 480.0490493425045, "initial_stability_margin": 2.704940982604376, "t_final": 325.13408226076575, "apogee_time": 27.345029542876432, "frontal_surface_wind": 0.8701459434821003, "y_impact": 437.42258753460465} -{"apogee": 3566.0955022133116, "out_of_rail_stability_margin": 2.6367000832790386, "lateral_surface_wind": -1.959402368616857, "impact_velocity": -5.263347120976356, "x_impact": 996.28241392776, "max_mach_number": 0.872011113980634, "out_of_rail_time": 0.3508003694405284, "apogee_y": 497.4653399173962, "out_of_rail_velocity": 26.332664266693694, "apogee_x": 402.9414366860048, "initial_stability_margin": 2.563230807003837, "t_final": 319.01693390407155, "apogee_time": 26.11759364070921, "frontal_surface_wind": 1.1208599862780302, "y_impact": 390.96247547130946} -{"apogee": 4515.373940170541, "out_of_rail_stability_margin": 2.8196444678922696, "lateral_surface_wind": -1.3612113933428458, "impact_velocity": -5.484558836375024, "x_impact": 1377.3944057227598, "max_mach_number": 1.0798439590439193, "out_of_rail_time": 0.31621483320560184, "apogee_y": 687.3101762888352, "out_of_rail_velocity": 30.008977089543507, "apogee_x": 713.2810206982721, "initial_stability_margin": 2.7612550805475324, "t_final": 360.0669765783465, "apogee_time": 28.80653552158416, "frontal_surface_wind": 0.6257903757634657, "y_impact": 588.6856242209293} -{"apogee": 2511.2024778964915, "out_of_rail_stability_margin": 2.8251764585083015, "lateral_surface_wind": -1.2145110393610123, "impact_velocity": -5.435471080722042, "x_impact": 471.0908805828318, "max_mach_number": 0.6570986153538658, "out_of_rail_time": 0.39620144815333785, "apogee_y": 342.65218653337985, "out_of_rail_velocity": 22.71802653651845, "apogee_x": 287.5196370278744, "initial_stability_margin": 2.745546512327279, "t_final": 255.10872310823495, "apogee_time": 22.639671107882823, "frontal_surface_wind": 0.46041386348191177, "y_impact": 316.6978683835962} -{"apogee": 3156.7442908297044, "out_of_rail_stability_margin": 2.6839229040367214, "lateral_surface_wind": -2.088138386379506, "impact_velocity": -5.406465009245775, "x_impact": 936.9002903356416, "max_mach_number": 0.780639649755292, "out_of_rail_time": 0.3667485235776186, "apogee_y": 481.7834408560117, "out_of_rail_velocity": 24.918580768531683, "apogee_x": 375.30756985390116, "initial_stability_margin": 2.613361661930285, "t_final": 289.45025482914855, "apogee_time": 24.938134739229397, "frontal_surface_wind": 1.3520054109149857, "y_impact": 361.08536697322063} -{"apogee": 4149.886879951744, "out_of_rail_stability_margin": 2.6076048079619465, "lateral_surface_wind": -0.6661059551248906, "impact_velocity": -5.490648226872377, "x_impact": 958.1899132216989, "max_mach_number": 0.9704435429063124, "out_of_rail_time": 0.33477965265878007, "apogee_y": 393.9552920715047, "out_of_rail_velocity": 27.9631895303055, "apogee_x": 460.4000573734477, "initial_stability_margin": 2.540609565582648, "t_final": 336.67111851180454, "apogee_time": 28.007478479764575, "frontal_surface_wind": 0.8977035632969246, "y_impact": 556.3080880060577} -{"apogee": 4386.947245776626, "out_of_rail_stability_margin": 2.5931514158054503, "lateral_surface_wind": -1.6721636291188284, "impact_velocity": -5.31210744249518, "x_impact": 1129.8377454370523, "max_mach_number": 1.0609451406491337, "out_of_rail_time": 0.3198794493419356, "apogee_y": 490.5157999357841, "out_of_rail_velocity": 29.597599647677445, "apogee_x": 368.64120193761426, "initial_stability_margin": 2.527583866280422, "t_final": 353.6094300774829, "apogee_time": 28.36117917594809, "frontal_surface_wind": 0.7923476542986647, "y_impact": 549.9894245099816} -{"apogee": 2793.9510797380553, "out_of_rail_stability_margin": 2.5724582054319676, "lateral_surface_wind": -1.3317682433508213, "impact_velocity": -5.392265670326255, "x_impact": 647.0445899809243, "max_mach_number": 0.7114390198788836, "out_of_rail_time": 0.38216072801869405, "apogee_y": 334.92847191392013, "out_of_rail_velocity": 23.71896157801786, "apogee_x": 290.1183615858079, "initial_stability_margin": 2.4955508539142737, "t_final": 271.2049607155231, "apogee_time": 23.656944843457325, "frontal_surface_wind": 0.6712738172265114, "y_impact": 263.59896703874506} -{"apogee": 3866.5977468229735, "out_of_rail_stability_margin": 2.684488403742944, "lateral_surface_wind": -1.1889637188015674, "impact_velocity": -5.567603374183234, "x_impact": 925.413290788601, "max_mach_number": 0.9060198578622145, "out_of_rail_time": 0.34569235841077256, "apogee_y": 390.64881176934045, "out_of_rail_velocity": 26.87807741819698, "apogee_x": 311.36065402339443, "initial_stability_margin": 2.613857325786061, "t_final": 323.4083387965554, "apogee_time": 27.23734468809872, "frontal_surface_wind": 1.1664250037984374, "y_impact": 548.8832134140556} -{"apogee": 3192.212303823909, "out_of_rail_stability_margin": 2.6832208489328195, "lateral_surface_wind": -1.9473571734522412, "impact_velocity": -5.438707997253518, "x_impact": 919.8595408622223, "max_mach_number": 0.7856781154700961, "out_of_rail_time": 0.36674778024013294, "apogee_y": 432.1220115898561, "out_of_rail_velocity": 24.935711243465963, "apogee_x": 333.96867975598656, "initial_stability_margin": 2.610673743128739, "t_final": 284.33757397646144, "apogee_time": 25.08838894880487, "frontal_surface_wind": 0.8451939811747997, "y_impact": 253.0694526371706} -{"apogee": 4206.5678418651405, "out_of_rail_stability_margin": 2.8302253844309586, "lateral_surface_wind": -2.109330730375948, "impact_velocity": -5.560119609578258, "x_impact": 993.7415602456604, "max_mach_number": 0.9780129451245843, "out_of_rail_time": 0.3337127677390786, "apogee_y": 465.69654930565844, "out_of_rail_velocity": 28.193207119735238, "apogee_x": 309.24248555761847, "initial_stability_margin": 2.7656159546751224, "t_final": 338.52201584353776, "apogee_time": 28.188661729845123, "frontal_surface_wind": 1.0842389848479241, "y_impact": 125.78881685598968} -{"apogee": 3038.6674312488285, "out_of_rail_stability_margin": 2.6627823479192214, "lateral_surface_wind": -0.6956785918440318, "impact_velocity": -5.547625782707521, "x_impact": 786.8259022814337, "max_mach_number": 0.7515193261617075, "out_of_rail_time": 0.37469905476351045, "apogee_y": 396.3191192531332, "out_of_rail_velocity": 24.32266231958496, "apogee_x": 439.32184064607657, "initial_stability_margin": 2.5872384424051704, "t_final": 275.27326997871097, "apogee_time": 24.63869741250229, "frontal_surface_wind": 0.874985787232423, "y_impact": 517.3956103124424} -{"apogee": 3414.3383148592875, "out_of_rail_stability_margin": 2.7176454690603227, "lateral_surface_wind": -1.988267552235551, "impact_velocity": -5.588619863231748, "x_impact": 888.7300762201724, "max_mach_number": 0.8209237650554502, "out_of_rail_time": 0.36037701568370056, "apogee_y": 465.85266667343535, "out_of_rail_velocity": 25.551403571269393, "apogee_x": 319.0369149978838, "initial_stability_margin": 2.647486624662704, "t_final": 285.7372520702529, "apogee_time": 25.874623396030323, "frontal_surface_wind": 0.6709760308621234, "y_impact": 374.34599712254425} -{"apogee": 2985.054133962618, "out_of_rail_stability_margin": 2.683507668869764, "lateral_surface_wind": -2.084757043018625, "impact_velocity": -5.522393290194168, "x_impact": 720.0099372416435, "max_mach_number": 0.7434476663013382, "out_of_rail_time": 0.37603504966151724, "apogee_y": 460.6985699835286, "out_of_rail_velocity": 24.25364732698561, "apogee_x": 279.20442708140683, "initial_stability_margin": 2.609979117807475, "t_final": 278.54894251452737, "apogee_time": 24.41695835177877, "frontal_surface_wind": 0.2837229896026715, "y_impact": 162.5950867966828} -{"apogee": 3006.468588812979, "out_of_rail_stability_margin": 2.61185089286689, "lateral_surface_wind": -1.31352141692361, "impact_velocity": -5.410147111013491, "x_impact": 624.780712042894, "max_mach_number": 0.7491295531250903, "out_of_rail_time": 0.3754302606832866, "apogee_y": 366.36602641846747, "out_of_rail_velocity": 24.28241867424522, "apogee_x": 317.522995336097, "initial_stability_margin": 2.536047139197081, "t_final": 277.9349714297152, "apogee_time": 24.482963897087085, "frontal_surface_wind": 0.5365825671711687, "y_impact": 144.12630773667559} -{"apogee": 2880.4182667421874, "out_of_rail_stability_margin": 2.6459382498490682, "lateral_surface_wind": -2.5619180529722634, "impact_velocity": -5.516411980896952, "x_impact": 834.7318369020917, "max_mach_number": 0.7251094151459085, "out_of_rail_time": 0.3798254137486876, "apogee_y": 470.0461855529852, "out_of_rail_velocity": 23.961171054573907, "apogee_x": 282.33854225937193, "initial_stability_margin": 2.5724707321130973, "t_final": 266.7173629389778, "apogee_time": 24.036611529321313, "frontal_surface_wind": 1.142762200400178, "y_impact": 232.6962696740316} -{"apogee": 2116.7897433041653, "out_of_rail_stability_margin": 2.6249680364131898, "lateral_surface_wind": -1.977468255322124, "impact_velocity": -5.486504365580193, "x_impact": 473.1049144464097, "max_mach_number": 0.5768657906381399, "out_of_rail_time": 0.41868471286476844, "apogee_y": 257.23028967866213, "out_of_rail_velocity": 21.277422870554986, "apogee_x": 128.99939579359565, "initial_stability_margin": 2.540895749818104, "t_final": 227.09560772442757, "apogee_time": 21.033404074766274, "frontal_surface_wind": 0.7021652173509554, "y_impact": 151.81721072415854} -{"apogee": 4228.206506886177, "out_of_rail_stability_margin": 2.7964707765356955, "lateral_surface_wind": -1.9409771381675687, "impact_velocity": -5.413887306761062, "x_impact": 1208.9825434055945, "max_mach_number": 1.0092891980502565, "out_of_rail_time": 0.3277749500559921, "apogee_y": 541.609510373512, "out_of_rail_velocity": 28.68427850570365, "apogee_x": 476.2557930440918, "initial_stability_margin": 2.7321647116001073, "t_final": 336.17975081466665, "apogee_time": 28.062220307793094, "frontal_surface_wind": 0.7975114057962274, "y_impact": 424.35871593239466} -{"apogee": 3455.5121917000124, "out_of_rail_stability_margin": 2.7025569488544035, "lateral_surface_wind": -2.0052198201542923, "impact_velocity": -5.410524096131494, "x_impact": 782.2685007464416, "max_mach_number": 0.8344021600479021, "out_of_rail_time": 0.3572274561589278, "apogee_y": 403.6812076847219, "out_of_rail_velocity": 25.750036285851138, "apogee_x": 231.76595670209457, "initial_stability_margin": 2.6306779610130677, "t_final": 311.79967713128144, "apogee_time": 25.91269637760012, "frontal_surface_wind": 1.0366668818096407, "y_impact": 290.065492213476} -{"apogee": 4385.491295035686, "out_of_rail_stability_margin": 2.801020812745395, "lateral_surface_wind": -2.064206486318761, "impact_velocity": -5.5826609795497575, "x_impact": 1316.2094236858134, "max_mach_number": 1.0252082994007627, "out_of_rail_time": 0.3259943648520925, "apogee_y": 653.1599288214912, "out_of_rail_velocity": 28.863458166441113, "apogee_x": 529.6152780700452, "initial_stability_margin": 2.735987931703886, "t_final": 344.49904301039345, "apogee_time": 28.651923915591635, "frontal_surface_wind": 0.4071390979559607, "y_impact": 332.5025654130576} -{"apogee": 2895.7816637489136, "out_of_rail_stability_margin": 2.6296966345336954, "lateral_surface_wind": -1.6130941513671138, "impact_velocity": -5.614100543944185, "x_impact": 695.764622667307, "max_mach_number": 0.7200501727255456, "out_of_rail_time": 0.3805861443640174, "apogee_y": 331.248632609106, "out_of_rail_velocity": 23.847119108257793, "apogee_x": 252.90451704130683, "initial_stability_margin": 2.5548499961557014, "t_final": 270.7949494480154, "apogee_time": 24.152210723812633, "frontal_surface_wind": 0.9065722622304618, "y_impact": 345.9512471318078} -{"apogee": 3571.8710914290236, "out_of_rail_stability_margin": 2.637962264522158, "lateral_surface_wind": -0.6146672673749267, "impact_velocity": -5.43090903268234, "x_impact": 576.460050780497, "max_mach_number": 0.855323298075905, "out_of_rail_time": 0.35424772412259703, "apogee_y": 339.93566929611984, "out_of_rail_velocity": 26.04538915545647, "apogee_x": 386.8349695992822, "initial_stability_margin": 2.566172251037942, "t_final": 302.02451052566795, "apogee_time": 26.315898638178258, "frontal_surface_wind": -0.7248696912197363, "y_impact": 350.2246377584372} -{"apogee": 3079.9610545476003, "out_of_rail_stability_margin": 2.6771543814160945, "lateral_surface_wind": -2.0171943137090675, "impact_velocity": -5.377140336069322, "x_impact": 842.0717616542242, "max_mach_number": 0.766719797025275, "out_of_rail_time": 0.37086615653842997, "apogee_y": 471.49531536370483, "out_of_rail_velocity": 24.624697436330287, "apogee_x": 300.8160329768699, "initial_stability_margin": 2.6024283853327588, "t_final": 289.223985171714, "apogee_time": 24.689862535251322, "frontal_surface_wind": 0.5782246916243228, "y_impact": 369.9994138923948} -{"apogee": 4071.936056562169, "out_of_rail_stability_margin": 2.677742513868466, "lateral_surface_wind": -2.132282312420346, "impact_velocity": -5.420189409659449, "x_impact": 1180.0412362478282, "max_mach_number": 0.9669615045086611, "out_of_rail_time": 0.3345132517553714, "apogee_y": 653.8271261643857, "out_of_rail_velocity": 27.969366271982068, "apogee_x": 523.2591172656169, "initial_stability_margin": 2.612277473427189, "t_final": 337.85665492293225, "apogee_time": 27.687665143970545, "frontal_surface_wind": 1.2812543431943353, "y_impact": 533.5007631800065} -{"apogee": 4290.4675369587185, "out_of_rail_stability_margin": 2.577242986289622, "lateral_surface_wind": -0.7265827323998334, "impact_velocity": -5.421196041609425, "x_impact": 845.9653071604532, "max_mach_number": 1.0225650876602177, "out_of_rail_time": 0.32584852531426595, "apogee_y": 357.04668166854856, "out_of_rail_velocity": 28.916268367725714, "apogee_x": 341.4926465655989, "initial_stability_margin": 2.5121590459589505, "t_final": 344.7030598627149, "apogee_time": 28.2112566827554, "frontal_surface_wind": 0.8494977127616237, "y_impact": 516.9058231077001} -{"apogee": 3654.5160063095773, "out_of_rail_stability_margin": 2.5572099991582338, "lateral_surface_wind": -2.345160568516029, "impact_velocity": -5.403432109346005, "x_impact": 942.6487905378301, "max_mach_number": 0.872498697435579, "out_of_rail_time": 0.3497675938302156, "apogee_y": 433.4058303659006, "out_of_rail_velocity": 26.43274642054265, "apogee_x": 249.45412553797442, "initial_stability_margin": 2.489673064286921, "t_final": 305.8627091045619, "apogee_time": 26.5234056093007, "frontal_surface_wind": 0.9079236719627354, "y_impact": 172.9343206447066} -{"apogee": 3865.3697217169833, "out_of_rail_stability_margin": 2.6295702046266527, "lateral_surface_wind": -1.9671695059236154, "impact_velocity": -5.416906367683771, "x_impact": 1136.307021141374, "max_mach_number": 0.9229882177677856, "out_of_rail_time": 0.34257153572516763, "apogee_y": 541.8899188959973, "out_of_rail_velocity": 27.205303940197524, "apogee_x": 445.80768103090014, "initial_stability_margin": 2.5623552897771438, "t_final": 324.0944460376071, "apogee_time": 27.109714630107614, "frontal_surface_wind": 0.7305209293569067, "y_impact": 427.36726859196} -{"apogee": 2672.750554844475, "out_of_rail_stability_margin": 2.6211232484128044, "lateral_surface_wind": -2.089219029493893, "impact_velocity": -5.236612596348962, "x_impact": 831.688526215347, "max_mach_number": 0.6957915534799126, "out_of_rail_time": 0.3866023909460999, "apogee_y": 409.6817074007874, "out_of_rail_velocity": 23.390049377711712, "apogee_x": 326.1424410152008, "initial_stability_margin": 2.5396364838639394, "t_final": 269.29911270561354, "apogee_time": 23.159777930184195, "frontal_surface_wind": 1.122503520338793, "y_impact": 218.78044807603507} -{"apogee": 3352.5494844777954, "out_of_rail_stability_margin": 2.755904081884214, "lateral_surface_wind": -2.682515632524056, "impact_velocity": -5.541193663522972, "x_impact": 739.5884558032093, "max_mach_number": 0.8106009966300225, "out_of_rail_time": 0.36148664101791095, "apogee_y": 520.2933577214409, "out_of_rail_velocity": 25.39085524946418, "apogee_x": 291.20774525041065, "initial_stability_margin": 2.6879169887345236, "t_final": 293.20051448027704, "apogee_time": 25.67279602981486, "frontal_surface_wind": 0.21490170061499558, "y_impact": 126.28025945865615} -{"apogee": 3467.822941548093, "out_of_rail_stability_margin": 2.629295448034828, "lateral_surface_wind": -1.1955966898994925, "impact_velocity": -5.459157761912231, "x_impact": 847.595720861241, "max_mach_number": 0.8336587090996164, "out_of_rail_time": 0.3585628453789292, "apogee_y": 375.4766630241768, "out_of_rail_velocity": 25.66298629374694, "apogee_x": 297.36680610119845, "initial_stability_margin": 2.553354237558474, "t_final": 305.7705072927157, "apogee_time": 25.99016644135925, "frontal_surface_wind": 1.1596251847963692, "y_impact": 511.4071542790754} -{"apogee": 4073.4418393939036, "out_of_rail_stability_margin": 2.603309665509458, "lateral_surface_wind": -1.9311891538251227, "impact_velocity": -5.429861246363755, "x_impact": 981.6844460276274, "max_mach_number": 0.9654918480659551, "out_of_rail_time": 0.3356791926571342, "apogee_y": 430.10478921577453, "out_of_rail_velocity": 27.85155919020207, "apogee_x": 261.0813337316226, "initial_stability_margin": 2.534561975614481, "t_final": 342.45704863021564, "apogee_time": 27.69934102490182, "frontal_surface_wind": 1.3738359072797244, "y_impact": 273.0595809545628} -{"apogee": 3505.846212713697, "out_of_rail_stability_margin": 2.6465694154128747, "lateral_surface_wind": -1.1786065526289267, "impact_velocity": -5.396168072016999, "x_impact": 999.4343543446754, "max_mach_number": 0.8495304637890237, "out_of_rail_time": 0.3555070767358376, "apogee_y": 468.69287733024504, "out_of_rail_velocity": 25.9693070977633, "apogee_x": 430.8803633859504, "initial_stability_margin": 2.573331980314545, "t_final": 301.14058478081114, "apogee_time": 26.04191575864919, "frontal_surface_wind": 1.1768893780694913, "y_impact": 620.242064504847} -{"apogee": 1838.002097381466, "out_of_rail_stability_margin": 2.70555500704099, "lateral_surface_wind": -0.7599979109888803, "impact_velocity": -5.3719643245747495, "x_impact": 329.58585980713593, "max_mach_number": 0.5238262616405694, "out_of_rail_time": 0.436544499155511, "apogee_y": 168.46041434368152, "out_of_rail_velocity": 20.279769410287052, "apogee_x": 125.90011776894177, "initial_stability_margin": 2.6167729221145217, "t_final": 213.33362068059316, "apogee_time": 19.71567428941532, "frontal_surface_wind": 0.819738986691115, "y_impact": 204.8828763597356} -{"apogee": 3918.9597284087918, "out_of_rail_stability_margin": 2.775829890428758, "lateral_surface_wind": -0.7243815592177709, "impact_velocity": -5.367947366235447, "x_impact": 840.6373453398706, "max_mach_number": 0.9296044357285903, "out_of_rail_time": 0.34076761264952277, "apogee_y": 390.6752216525901, "out_of_rail_velocity": 27.286613135285204, "apogee_x": 384.12759356106176, "initial_stability_margin": 2.7085436393536937, "t_final": 330.35131934804997, "apogee_time": 27.279984853258668, "frontal_surface_wind": 0.8513754680950522, "y_impact": 548.7952070969125} -{"apogee": 3599.9223653218496, "out_of_rail_stability_margin": 2.5772825167282667, "lateral_surface_wind": -2.04702512241942, "impact_velocity": -5.4300228663395, "x_impact": 1081.4157195760752, "max_mach_number": 0.8655651839880171, "out_of_rail_time": 0.352137152341845, "apogee_y": 484.5067399628853, "out_of_rail_velocity": 26.233790872977476, "apogee_x": 437.75583892011167, "initial_stability_margin": 2.5055609002397494, "t_final": 311.9270321817591, "apogee_time": 26.35747208166933, "frontal_surface_wind": 1.1977221942320952, "y_impact": 207.29390574868074} -{"apogee": 3277.170335823312, "out_of_rail_stability_margin": 2.7052275111294057, "lateral_surface_wind": -2.35804442830422, "impact_velocity": -5.424941003009796, "x_impact": 912.261314409496, "max_mach_number": 0.7996499629972281, "out_of_rail_time": 0.36369514279748794, "apogee_y": 464.4027875852048, "out_of_rail_velocity": 25.193835604603905, "apogee_x": 286.57022045497604, "initial_stability_margin": 2.6331501834526945, "t_final": 286.95911812684886, "apogee_time": 25.363802677855386, "frontal_surface_wind": 0.8739164493108865, "y_impact": 219.76603616455884} -{"apogee": 2017.3159718830332, "out_of_rail_stability_margin": 2.7121594689801953, "lateral_surface_wind": -2.052267934973038, "impact_velocity": -5.473196828964188, "x_impact": 523.5295304659189, "max_mach_number": 0.5606043457273683, "out_of_rail_time": 0.4239579234649074, "apogee_y": 341.5613006612823, "out_of_rail_velocity": 20.96261758363415, "apogee_x": 249.44144527004207, "initial_stability_margin": 2.6256544099341688, "t_final": 221.75806743585872, "apogee_time": 20.584222108945795, "frontal_surface_wind": 0.46358061470076584, "y_impact": 95.67860873636263} -{"apogee": 3095.9020395991975, "out_of_rail_stability_margin": 2.6378778654325092, "lateral_surface_wind": -1.364654150423863, "impact_velocity": -5.3850342317537425, "x_impact": 663.8510853626472, "max_mach_number": 0.7671528986921613, "out_of_rail_time": 0.37012011561144403, "apogee_y": 358.0424471861782, "out_of_rail_velocity": 24.664442279695468, "apogee_x": 292.77292687538886, "initial_stability_margin": 2.5638658651659885, "t_final": 288.7040218336259, "apogee_time": 24.73032985983151, "frontal_surface_wind": 0.6182467965913578, "y_impact": 246.0764693875316} -{"apogee": 2223.3513635026284, "out_of_rail_stability_margin": 2.6580463934650695, "lateral_surface_wind": -1.3444273582331685, "impact_velocity": -5.368057290363172, "x_impact": 499.55489623333165, "max_mach_number": 0.6032098826290265, "out_of_rail_time": 0.4107672214406825, "apogee_y": 361.6595181936346, "out_of_rail_velocity": 21.7742776179038, "apogee_x": 286.3841374552843, "initial_stability_margin": 2.576617424852931, "t_final": 234.0670835958089, "apogee_time": 21.466454404711943, "frontal_surface_wind": 0.45362367943394816, "y_impact": 241.8275869324721} -{"apogee": 3094.6268086661644, "out_of_rail_stability_margin": 2.8715202943125178, "lateral_surface_wind": -2.061428272864759, "impact_velocity": -5.405500982584895, "x_impact": 904.574455414891, "max_mach_number": 0.771549057780253, "out_of_rail_time": 0.3692831028928802, "apogee_y": 493.8259761566426, "out_of_rail_velocity": 24.73855507757573, "apogee_x": 347.9867257467784, "initial_stability_margin": 2.799121885072569, "t_final": 275.8901315799878, "apogee_time": 24.717707392230636, "frontal_surface_wind": 1.0231079615679686, "y_impact": 356.57051211905934} -{"apogee": 3501.1750862319614, "out_of_rail_stability_margin": 2.5496847625890724, "lateral_surface_wind": -0.6160107606859536, "impact_velocity": -5.3078711509126215, "x_impact": 660.2098011906887, "max_mach_number": 0.8532853323928422, "out_of_rail_time": 0.3546824393758151, "apogee_y": 390.2413921160919, "out_of_rail_velocity": 25.979476589256272, "apogee_x": 462.7627365114454, "initial_stability_margin": 2.475227256931445, "t_final": 307.8490898363824, "apogee_time": 25.996867984616173, "frontal_surface_wind": -0.7237283064453597, "y_impact": 406.07290830914525} -{"apogee": 2989.4380104519696, "out_of_rail_stability_margin": 2.557925300818556, "lateral_surface_wind": -2.683854101796695, "impact_velocity": -5.353208484063462, "x_impact": 548.4648374814232, "max_mach_number": 0.7503554976273475, "out_of_rail_time": 0.37528863739493495, "apogee_y": 404.257938022264, "out_of_rail_velocity": 24.306272408908654, "apogee_x": 168.53534024861162, "initial_stability_margin": 2.4799995299120963, "t_final": 280.3069035754466, "apogee_time": 24.36128632479613, "frontal_surface_wind": 0.1974842270466437, "y_impact": 12.827292348857226} -{"apogee": 2785.408658519207, "out_of_rail_stability_margin": 2.6656198981877495, "lateral_surface_wind": -2.5909170019528514, "impact_velocity": -5.4120143792971716, "x_impact": 787.1305264873829, "max_mach_number": 0.7097309751115675, "out_of_rail_time": 0.3831344070869215, "apogee_y": 409.22023753953005, "out_of_rail_velocity": 23.664654324094332, "apogee_x": 221.48660661345977, "initial_stability_margin": 2.5877488941729094, "t_final": 270.0331265768059, "apogee_time": 23.64748071758283, "frontal_surface_wind": 0.982024570179232, "y_impact": 130.81676617194913} -{"apogee": 4230.92965996985, "out_of_rail_stability_margin": 2.7614231031369854, "lateral_surface_wind": -1.8327379767723877, "impact_velocity": -5.428177245039412, "x_impact": 1192.5231860433078, "max_mach_number": 1.0019168600022053, "out_of_rail_time": 0.32868009881179516, "apogee_y": 536.336871512086, "out_of_rail_velocity": 28.61178819921451, "apogee_x": 467.595731627409, "initial_stability_margin": 2.6985722946669437, "t_final": 341.1230433810992, "apogee_time": 28.118573070757844, "frontal_surface_wind": 0.9566041041540112, "y_impact": 464.4206523066892} -{"apogee": 3898.424404013512, "out_of_rail_stability_margin": 2.7696854819214467, "lateral_surface_wind": -1.485457695091352, "impact_velocity": -5.493825504641689, "x_impact": 1175.4113827667322, "max_mach_number": 0.9185871552478776, "out_of_rail_time": 0.34285510448691586, "apogee_y": 478.0572755444184, "out_of_rail_velocity": 27.09415904105291, "apogee_x": 436.4269227973525, "initial_stability_margin": 2.7010954579553137, "t_final": 319.1860465935321, "apogee_time": 27.287891319473633, "frontal_surface_wind": 1.4011351924570743, "y_impact": 504.8481915638499} -{"apogee": 3823.9734651308922, "out_of_rail_stability_margin": 2.663564743225466, "lateral_surface_wind": -2.609620571450007, "impact_velocity": -5.3010882783765885, "x_impact": 955.6206064672958, "max_mach_number": 0.9176925477751698, "out_of_rail_time": 0.34288775466558175, "apogee_y": 497.84213617346256, "out_of_rail_velocity": 27.10640583546533, "apogee_x": 227.1042251145201, "initial_stability_margin": 2.594165357868972, "t_final": 328.22956154746777, "apogee_time": 26.93671193600803, "frontal_surface_wind": 1.0291792991862927, "y_impact": 177.12881798239124} -{"apogee": 4028.648415381139, "out_of_rail_stability_margin": 2.6532252648690284, "lateral_surface_wind": -1.5129354764326364, "impact_velocity": -5.4557262013937065, "x_impact": 1064.534481592897, "max_mach_number": 0.9436287681540211, "out_of_rail_time": 0.33914982947500305, "apogee_y": 403.85887684057997, "out_of_rail_velocity": 27.474435413477675, "apogee_x": 309.82461054567034, "initial_stability_margin": 2.5835691015424924, "t_final": 332.50207604097176, "apogee_time": 27.657653652075073, "frontal_surface_wind": 1.371419204911243, "y_impact": 412.784415503594} -{"apogee": 3761.37411167207, "out_of_rail_stability_margin": 2.6103493888312275, "lateral_surface_wind": -2.105072974205698, "impact_velocity": -5.416227526838793, "x_impact": 904.5738285503181, "max_mach_number": 0.8957944735694284, "out_of_rail_time": 0.34644513215122297, "apogee_y": 470.4219741567771, "out_of_rail_velocity": 26.769614160346027, "apogee_x": 316.5266801520096, "initial_stability_margin": 2.541173319401251, "t_final": 314.2099220706554, "apogee_time": 26.832353572866154, "frontal_surface_wind": 1.325484185150386, "y_impact": 338.71441759153055} -{"apogee": 3967.8809999890777, "out_of_rail_stability_margin": 2.6706301735517886, "lateral_surface_wind": -2.1691928942699485, "impact_velocity": -5.485808609327681, "x_impact": 875.9366427385621, "max_mach_number": 0.9288051029572301, "out_of_rail_time": 0.34046158530737475, "apogee_y": 542.3170949780391, "out_of_rail_velocity": 27.326038233766052, "apogee_x": 318.139770647092, "initial_stability_margin": 2.60585236688088, "t_final": 328.7137614620949, "apogee_time": 27.51305148183636, "frontal_surface_wind": 0.6987778838603412, "y_impact": 197.34858560582714} -{"apogee": 3224.0953149603424, "out_of_rail_stability_margin": 2.61328781374604, "lateral_surface_wind": -1.2948012614876598, "impact_velocity": -5.358108543976894, "x_impact": 721.4638302366013, "max_mach_number": 0.7924576893731192, "out_of_rail_time": 0.3662099122322537, "apogee_y": 379.3654587203555, "out_of_rail_velocity": 24.973046082336882, "apogee_x": 360.5598525141575, "initial_stability_margin": 2.5374483680640876, "t_final": 298.0936095796596, "apogee_time": 25.193286910265687, "frontal_surface_wind": 0.5803008334984315, "y_impact": 112.51526869582828} -{"apogee": 3361.0583056572154, "out_of_rail_stability_margin": 2.6699103380383913, "lateral_surface_wind": -2.6782257061002825, "impact_velocity": -5.398491012156424, "x_impact": 893.8047518280969, "max_mach_number": 0.8226628760896646, "out_of_rail_time": 0.36032788211050715, "apogee_y": 596.4504525918952, "out_of_rail_velocity": 25.493245763113453, "apogee_x": 414.5257178422718, "initial_stability_margin": 2.5960508543490413, "t_final": 300.3017393887167, "apogee_time": 25.613313464247838, "frontal_surface_wind": 0.2630207726526501, "y_impact": 200.86520042715304} -{"apogee": 3123.753500235166, "out_of_rail_stability_margin": 2.7611570453146266, "lateral_surface_wind": -1.99197123096031, "impact_velocity": -5.548672855342815, "x_impact": 812.1003783842328, "max_mach_number": 0.7673179847497282, "out_of_rail_time": 0.3709223238236402, "apogee_y": 430.1203793769404, "out_of_rail_velocity": 24.646614087693287, "apogee_x": 278.77338901691496, "initial_stability_margin": 2.687667574543546, "t_final": 283.56495989715006, "apogee_time": 24.914918226298493, "frontal_surface_wind": 0.659899468321279, "y_impact": 332.06202664315754} -{"apogee": 2896.5586844774307, "out_of_rail_stability_margin": 2.6552805852712362, "lateral_surface_wind": -2.1027856738315633, "impact_velocity": -5.412141180420679, "x_impact": 804.6193877200243, "max_mach_number": 0.7300004225704585, "out_of_rail_time": 0.37839841007037966, "apogee_y": 403.9094982276272, "out_of_rail_velocity": 24.0686248871932, "apogee_x": 292.583990685905, "initial_stability_margin": 2.5827276300905075, "t_final": 270.75600640483617, "apogee_time": 24.05853425383318, "frontal_surface_wind": 1.0968786242338415, "y_impact": 204.60608369053222} -{"apogee": 2702.341258291166, "out_of_rail_stability_margin": 2.6596161029412575, "lateral_surface_wind": -2.672465538987564, "impact_velocity": -5.308806640478861, "x_impact": 751.4469737297343, "max_mach_number": 0.7020502048706269, "out_of_rail_time": 0.3847718432124116, "apogee_y": 512.1338581939038, "out_of_rail_velocity": 23.54968975663649, "apogee_x": 371.0085937971525, "initial_stability_margin": 2.583051746108508, "t_final": 267.1250027258692, "apogee_time": 23.295589854779017, "frontal_surface_wind": 0.3162290350158645, "y_impact": 158.1123787096234} -{"apogee": 3551.0801061852517, "out_of_rail_stability_margin": 2.6554765586131674, "lateral_surface_wind": -1.1412219826088599, "impact_velocity": -5.449146773524036, "x_impact": 881.6027929989892, "max_mach_number": 0.8477964812931648, "out_of_rail_time": 0.3553525974341129, "apogee_y": 368.1706621645871, "out_of_rail_velocity": 25.93506324710985, "apogee_x": 328.98080844510577, "initial_stability_margin": 2.5828925257202116, "t_final": 300.3225643206641, "apogee_time": 26.265477557248587, "frontal_surface_wind": 1.2131753379140793, "y_impact": 504.3840201812901} -{"apogee": 3062.083256868093, "out_of_rail_stability_margin": 2.7576230908384636, "lateral_surface_wind": -1.9879966218524072, "impact_velocity": -5.611448009353372, "x_impact": 1027.2045713851267, "max_mach_number": 0.7584320943466215, "out_of_rail_time": 0.3738341009047476, "apogee_y": 580.3468445390848, "out_of_rail_velocity": 24.41519035843927, "apogee_x": 479.22877957699853, "initial_stability_margin": 2.680765481662137, "t_final": 277.04420879628327, "apogee_time": 24.720228418395326, "frontal_surface_wind": 0.671778330081922, "y_impact": 507.7099548767765} -{"apogee": 2308.0290923200446, "out_of_rail_stability_margin": 2.6669687145436973, "lateral_surface_wind": -1.9731378792797758, "impact_velocity": -5.483581013258727, "x_impact": 666.9516627889659, "max_mach_number": 0.6156080595991702, "out_of_rail_time": 0.40728951248412537, "apogee_y": 332.3595793753971, "out_of_rail_velocity": 22.01623222625638, "apogee_x": 252.4138120546556, "initial_stability_margin": 2.585720651085854, "t_final": 241.3844009124362, "apogee_time": 21.845530136186003, "frontal_surface_wind": 1.184467532075597, "y_impact": 174.01717684108235} -{"apogee": 3046.3073030126493, "out_of_rail_stability_margin": 2.7234096873780453, "lateral_surface_wind": -1.823767885928266, "impact_velocity": -5.445123412336602, "x_impact": 1019.6264850498377, "max_mach_number": 0.7605626417594029, "out_of_rail_time": 0.3731290479669936, "apogee_y": 518.8410264793652, "out_of_rail_velocity": 24.502941580092454, "apogee_x": 492.67809639710134, "initial_stability_margin": 2.6466291710120666, "t_final": 282.5551837475462, "apogee_time": 24.59158823305837, "frontal_surface_wind": 0.973596734713499, "y_impact": 456.35457543310014} -{"apogee": 2884.6884258298837, "out_of_rail_stability_margin": 2.7814007995335817, "lateral_surface_wind": -2.404248920292948, "impact_velocity": -5.4608132915191785, "x_impact": 694.8316644594063, "max_mach_number": 0.7244495756112859, "out_of_rail_time": 0.37952539047962963, "apogee_y": 384.99507667762725, "out_of_rail_velocity": 23.97905698515657, "apogee_x": 158.9354113021395, "initial_stability_margin": 2.706752944923244, "t_final": 276.43341048478885, "apogee_time": 24.031512226884654, "frontal_surface_wind": 0.7373537926280135, "y_impact": 119.72700381947678} -{"apogee": 3384.352074674031, "out_of_rail_stability_margin": 2.6509383102395967, "lateral_surface_wind": -1.9289910181522214, "impact_velocity": -5.434013457751922, "x_impact": 1110.524445365616, "max_mach_number": 0.8248593088059856, "out_of_rail_time": 0.3604783082407595, "apogee_y": 578.670578944238, "out_of_rail_velocity": 25.49885331897752, "apogee_x": 473.6270483491073, "initial_stability_margin": 2.5752787535069004, "t_final": 301.26171045889396, "apogee_time": 25.717402193670576, "frontal_surface_wind": 1.376920585898458, "y_impact": 463.4635489472141} -{"apogee": 4172.76943274058, "out_of_rail_stability_margin": 2.7207799432329174, "lateral_surface_wind": -1.3368674798739297, "impact_velocity": -5.459792167359443, "x_impact": 1090.6977242976207, "max_mach_number": 0.9879083239656027, "out_of_rail_time": 0.33159539978277136, "apogee_y": 493.4128565676991, "out_of_rail_velocity": 28.271051830687576, "apogee_x": 500.59982650391714, "initial_stability_margin": 2.6527948970894415, "t_final": 340.5381100181726, "apogee_time": 27.960444147446427, "frontal_surface_wind": 0.6762361961771043, "y_impact": 372.1123215704103} -{"apogee": 3711.855674620831, "out_of_rail_stability_margin": 2.613479671069757, "lateral_surface_wind": -1.1243151611715714, "impact_velocity": -5.339531422912509, "x_impact": 833.0452372658295, "max_mach_number": 0.892937110248665, "out_of_rail_time": 0.34717679325833184, "apogee_y": 345.6007470324707, "out_of_rail_velocity": 26.69857330417923, "apogee_x": 349.4744940677361, "initial_stability_margin": 2.5425960555726475, "t_final": 324.2018573646314, "apogee_time": 26.618080387259905, "frontal_surface_wind": 0.500622948863971, "y_impact": 346.3110336070519} -{"apogee": 3707.004742119233, "out_of_rail_stability_margin": 2.745797405849237, "lateral_surface_wind": -2.4217022214076946, "impact_velocity": -5.5017408732868684, "x_impact": 974.5822288953386, "max_mach_number": 0.8785870560558752, "out_of_rail_time": 0.3496027768715857, "apogee_y": 518.303382356637, "out_of_rail_velocity": 26.482031369039937, "apogee_x": 253.9954597185367, "initial_stability_margin": 2.676300101903114, "t_final": 315.07578505008803, "apogee_time": 26.73655355137342, "frontal_surface_wind": 0.677836143224716, "y_impact": 260.02420312198825} -{"apogee": 2660.544127783411, "out_of_rail_stability_margin": 2.5814873326607524, "lateral_surface_wind": -0.6135540599116592, "impact_velocity": -5.342612156165293, "x_impact": 653.9700604486264, "max_mach_number": 0.6970071038248857, "out_of_rail_time": 0.3868661431481957, "apogee_y": 449.42609912497954, "out_of_rail_velocity": 23.379934555760435, "apogee_x": 554.6396068006771, "initial_stability_margin": 2.5001397305262643, "t_final": 258.42147058511466, "apogee_time": 23.13126344431606, "frontal_surface_wind": -0.7258121894795345, "y_impact": 447.8237977031875} -{"apogee": 4087.927894022392, "out_of_rail_stability_margin": 2.7361637223129387, "lateral_surface_wind": -3.068557561036239, "impact_velocity": -5.3923488244511395, "x_impact": 1229.8588621308454, "max_mach_number": 0.9754081862665634, "out_of_rail_time": 0.3334960231960901, "apogee_y": 754.5008265357371, "out_of_rail_velocity": 28.059197449412647, "apogee_x": 421.6444665753762, "initial_stability_margin": 2.6707781036226597, "t_final": 346.0971800649149, "apogee_time": 27.723888463586473, "frontal_surface_wind": 0.43041338945710894, "y_impact": 238.20090289638654} -{"apogee": 3632.710156830774, "out_of_rail_stability_margin": 2.6545316561399166, "lateral_surface_wind": -2.000355399844642, "impact_velocity": -5.4677200739090415, "x_impact": 1067.3068744442958, "max_mach_number": 0.8711117639347484, "out_of_rail_time": 0.3511376747364735, "apogee_y": 519.7800564856417, "out_of_rail_velocity": 26.30220721882004, "apogee_x": 363.82210384304466, "initial_stability_margin": 2.583449900223982, "t_final": 308.6658254624933, "apogee_time": 26.478707940328423, "frontal_surface_wind": 0.7107257566195214, "y_impact": 310.1869674622261} -{"apogee": 4349.778735798591, "out_of_rail_stability_margin": 2.5755036756419454, "lateral_surface_wind": -2.102128219050151, "impact_velocity": -5.478581153143241, "x_impact": 1277.958276839338, "max_mach_number": 1.0373994382667502, "out_of_rail_time": 0.32379330911880494, "apogee_y": 686.3717724245739, "out_of_rail_velocity": 29.13628695163361, "apogee_x": 602.8311744192878, "initial_stability_margin": 2.5095980849562602, "t_final": 335.88268877182736, "apogee_time": 28.39897249358176, "frontal_surface_wind": 1.3301494286312519, "y_impact": 580.7021365308842} -{"apogee": 3234.6575491482063, "out_of_rail_stability_margin": 2.739437574177616, "lateral_surface_wind": -3.022906291390825, "impact_velocity": -5.4250503081548604, "x_impact": 804.3481507210915, "max_mach_number": 0.7946054732102742, "out_of_rail_time": 0.36490203677541394, "apogee_y": 461.52236097202695, "out_of_rail_velocity": 25.092664175767396, "apogee_x": 188.90499194355112, "initial_stability_margin": 2.6681251741459326, "t_final": 294.73704077009705, "apogee_time": 25.217533735464844, "frontal_surface_wind": 0.6806899034702927, "y_impact": 20.963180453655205} -{"apogee": 4087.6190462225936, "out_of_rail_stability_margin": 2.7678457220686528, "lateral_surface_wind": -2.0839543806198737, "impact_velocity": -5.409369197136951, "x_impact": 1085.5919183892909, "max_mach_number": 0.9659155166520201, "out_of_rail_time": 0.33360296798569666, "apogee_y": 523.1521280713569, "out_of_rail_velocity": 28.01878301000843, "apogee_x": 331.71372943872876, "initial_stability_margin": 2.70724204494868, "t_final": 327.18772612808453, "apogee_time": 27.75369234192268, "frontal_surface_wind": 0.9764069667332289, "y_impact": 366.1985134469414} -{"apogee": 4502.871255645637, "out_of_rail_stability_margin": 2.6784591990772006, "lateral_surface_wind": -1.9648352910431286, "impact_velocity": -5.512481860064735, "x_impact": 1116.7332433025185, "max_mach_number": 1.0675375675899865, "out_of_rail_time": 0.31938501803533553, "apogee_y": 489.2808594589568, "out_of_rail_velocity": 29.62916119831031, "apogee_x": 361.07177093086653, "initial_stability_margin": 2.614347282242634, "t_final": 352.6419764431465, "apogee_time": 28.8327083080526, "frontal_surface_wind": 0.7367760666143433, "y_impact": 356.92859141154156} -{"apogee": 4551.313540033133, "out_of_rail_stability_margin": 2.6383051669723634, "lateral_surface_wind": -2.215910806553679, "impact_velocity": -5.403249291355238, "x_impact": 1095.77526066801, "max_mach_number": 1.09434951323642, "out_of_rail_time": 0.3154492552209814, "apogee_y": 582.818902146978, "out_of_rail_velocity": 30.142086591700366, "apogee_x": 352.4044204317492, "initial_stability_margin": 2.5745479184545546, "t_final": 366.01091134568884, "apogee_time": 28.840179576749392, "frontal_surface_wind": 0.8453340190546048, "y_impact": 208.30439838948718} -{"apogee": 4144.967025279806, "out_of_rail_stability_margin": 2.6497032073716564, "lateral_surface_wind": -1.1651922270064174, "impact_velocity": -5.478938569235552, "x_impact": 1174.0402637505947, "max_mach_number": 0.9839387256852521, "out_of_rail_time": 0.3318407862865787, "apogee_y": 514.6434099532994, "out_of_rail_velocity": 28.21478845303424, "apogee_x": 493.9881448941451, "initial_stability_margin": 2.583254430328229, "t_final": 334.7994758600434, "apogee_time": 27.874104469047445, "frontal_surface_wind": 1.190171873401679, "y_impact": 694.2142022616163} -{"apogee": 2130.817926965923, "out_of_rail_stability_margin": 2.572775307396154, "lateral_surface_wind": -2.1797347827972655, "impact_velocity": -5.21875800820934, "x_impact": 560.8490186279827, "max_mach_number": 0.5872911914567416, "out_of_rail_time": 0.41712143084341863, "apogee_y": 341.4009475532812, "out_of_rail_velocity": 21.39493351424063, "apogee_x": 183.8022242674465, "initial_stability_margin": 2.480641094488036, "t_final": 239.78902342236702, "apogee_time": 21.021103134318665, "frontal_surface_wind": 0.6835527699792604, "y_impact": 182.5474176698467} -{"apogee": 3927.674789308223, "out_of_rail_stability_margin": 2.6565536185691596, "lateral_surface_wind": -1.9625994180366626, "impact_velocity": -5.508176114956165, "x_impact": 967.0362088899461, "max_mach_number": 0.9233113784199904, "out_of_rail_time": 0.34311033241417427, "apogee_y": 443.8935068800035, "out_of_rail_velocity": 27.129205779906595, "apogee_x": 307.5662990832734, "initial_stability_margin": 2.586962740734913, "t_final": 317.76645701478617, "apogee_time": 27.385396699061697, "frontal_surface_wind": 0.7427113958910231, "y_impact": 323.9333805693214} -{"apogee": 3596.7151994064693, "out_of_rail_stability_margin": 2.7102100895584913, "lateral_surface_wind": -1.3211381777707718, "impact_velocity": -5.451088471474232, "x_impact": 882.1880884922402, "max_mach_number": 0.858147024501624, "out_of_rail_time": 0.35259166853137996, "apogee_y": 412.11657436615474, "out_of_rail_velocity": 26.146503984723637, "apogee_x": 384.5937753573032, "initial_stability_margin": 2.6404420485423925, "t_final": 305.908791178917, "apogee_time": 26.38540796327701, "frontal_surface_wind": 0.6919603362390863, "y_impact": 319.25480149445235} -{"apogee": 2642.0575076799328, "out_of_rail_stability_margin": 2.7253460332540693, "lateral_surface_wind": -2.124073921602949, "impact_velocity": -5.3717031936563435, "x_impact": 570.870747272884, "max_mach_number": 0.6802618546224954, "out_of_rail_time": 0.3897283741439949, "apogee_y": 285.4216196013701, "out_of_rail_velocity": 23.151196389560344, "apogee_x": 120.05624309532112, "initial_stability_margin": 2.6470183574573114, "t_final": 261.1095398151787, "apogee_time": 23.11834272765208, "frontal_surface_wind": 1.0550641127147946, "y_impact": 84.87585046573925} -{"apogee": 3023.8661372407146, "out_of_rail_stability_margin": 2.659243170771683, "lateral_surface_wind": -1.9955369296053207, "impact_velocity": -5.4853943123101745, "x_impact": 735.0427374399414, "max_mach_number": 0.751690624072156, "out_of_rail_time": 0.37492401432653727, "apogee_y": 343.6087807663354, "out_of_rail_velocity": 24.324771739128735, "apogee_x": 209.49691719833157, "initial_stability_margin": 2.5819251544829878, "t_final": 278.1231506395602, "apogee_time": 24.521369136200207, "frontal_surface_wind": 1.1463283943841387, "y_impact": 177.21070429385742} -{"apogee": 4405.934439936586, "out_of_rail_stability_margin": 2.604278149812722, "lateral_surface_wind": -2.583246091399701, "impact_velocity": -5.515450974084604, "x_impact": 1309.3744909136994, "max_mach_number": 1.0465658874804076, "out_of_rail_time": 0.32285277516087557, "apogee_y": 679.9297990666096, "out_of_rail_velocity": 29.235241067496393, "apogee_x": 463.5831825424479, "initial_stability_margin": 2.537481094778026, "t_final": 356.20487910865353, "apogee_time": 28.582913243534676, "frontal_surface_wind": 1.0936951988908141, "y_impact": 342.92531618257686} -{"apogee": 2585.32795170855, "out_of_rail_stability_margin": 2.7337403604125914, "lateral_surface_wind": -2.5901873569286273, "impact_velocity": -5.460321929679937, "x_impact": 702.8306829956748, "max_mach_number": 0.666900928156775, "out_of_rail_time": 0.39322441481961723, "apogee_y": 372.3463695732844, "out_of_rail_velocity": 22.91995556356068, "apogee_x": 181.22374147159974, "initial_stability_margin": 2.6552056055396887, "t_final": 260.23296330305226, "apogee_time": 22.95271965136964, "frontal_surface_wind": 0.9839474698636865, "y_impact": 91.23092714764425} -{"apogee": 3939.9208191752323, "out_of_rail_stability_margin": 2.5729374707285873, "lateral_surface_wind": -1.1405112892483547, "impact_velocity": -5.291081195350261, "x_impact": 764.3408843095752, "max_mach_number": 0.9408264317199106, "out_of_rail_time": 0.3386572081604262, "apogee_y": 255.17765564600083, "out_of_rail_velocity": 27.516608218984167, "apogee_x": 173.2027693616334, "initial_stability_margin": 2.5048328112873826, "t_final": 322.9830690469508, "apogee_time": 27.23141673826253, "frontal_surface_wind": 1.2138434879380837, "y_impact": 384.5321502878431} -{"apogee": 3407.779349044704, "out_of_rail_stability_margin": 2.6685230856905626, "lateral_surface_wind": -3.046876709134262, "impact_velocity": -5.429706524829395, "x_impact": 957.4919838383719, "max_mach_number": 0.8291052361049972, "out_of_rail_time": 0.35855291983410853, "apogee_y": 577.4832653992021, "out_of_rail_velocity": 25.644391179463675, "apogee_x": 294.91141531959, "initial_stability_margin": 2.59798596687145, "t_final": 303.81800943223385, "apogee_time": 25.776820817659885, "frontal_surface_wind": 0.5637761174010443, "y_impact": 133.67375041858594} -{"apogee": 3720.909994339561, "out_of_rail_stability_margin": 2.630859104271464, "lateral_surface_wind": -1.1648432657739487, "impact_velocity": -5.3733927984346375, "x_impact": 1032.682793514914, "max_mach_number": 0.8913864818269935, "out_of_rail_time": 0.3476550511338015, "apogee_y": 525.4836062579816, "out_of_rail_velocity": 26.637937399426267, "apogee_x": 502.22920062459747, "initial_stability_margin": 2.5599335614222047, "t_final": 336.5976483530285, "apogee_time": 26.713819065570405, "frontal_surface_wind": 0.39730100018826553, "y_impact": 556.0580188452691} -{"apogee": 3888.429262087158, "out_of_rail_stability_margin": 2.6892902138629746, "lateral_surface_wind": -2.1592100032521264, "impact_velocity": -5.438803430758782, "x_impact": 1041.0358146554056, "max_mach_number": 0.9216752273480168, "out_of_rail_time": 0.34295778410426847, "apogee_y": 516.8181300571778, "out_of_rail_velocity": 27.098570257833853, "apogee_x": 313.08843732091196, "initial_stability_margin": 2.618607925564182, "t_final": 329.56705250226196, "apogee_time": 27.222421668828293, "frontal_surface_wind": 0.8861291382340504, "y_impact": 368.55093463182635} -{"apogee": 3381.3771757346676, "out_of_rail_stability_margin": 2.658937433605195, "lateral_surface_wind": -1.957160630527019, "impact_velocity": -5.411138031500041, "x_impact": 1074.4447145090476, "max_mach_number": 0.8233632055829893, "out_of_rail_time": 0.35972239717545035, "apogee_y": 511.26002839030946, "out_of_rail_velocity": 25.54994068211289, "apogee_x": 425.6068719629828, "initial_stability_margin": 2.5872514962851083, "t_final": 293.39230263521995, "apogee_time": 25.69842693740584, "frontal_surface_wind": 0.8222378567817774, "y_impact": 330.4831076421315} -{"apogee": 3460.5688948825177, "out_of_rail_stability_margin": 2.5183549417967668, "lateral_surface_wind": -1.2069384196768684, "impact_velocity": -5.352172179946062, "x_impact": 632.1371892771765, "max_mach_number": 0.8463353654289885, "out_of_rail_time": 0.3554398987537564, "apogee_y": 363.8145981025555, "out_of_rail_velocity": 25.92816134554459, "apogee_x": 307.51075648268204, "initial_stability_margin": 2.4459696426587003, "t_final": 299.93810217209676, "apogee_time": 25.841367263131605, "frontal_surface_wind": 0.47991420225287185, "y_impact": 369.44219687265166} -{"apogee": 3249.658549907916, "out_of_rail_stability_margin": 2.662384380607095, "lateral_surface_wind": -1.9986219950164519, "impact_velocity": -5.403073898457935, "x_impact": 869.2547330564339, "max_mach_number": 0.7976638932479322, "out_of_rail_time": 0.3644706394240952, "apogee_y": 476.2284974726639, "out_of_rail_velocity": 25.150384159129512, "apogee_x": 343.0931836365702, "initial_stability_margin": 2.5885857271673784, "t_final": 287.8852833598181, "apogee_time": 25.25067096418017, "frontal_surface_wind": 1.0493306781072365, "y_impact": 387.0612536551139} -{"apogee": 3635.678423730331, "out_of_rail_stability_margin": 2.6543695419804743, "lateral_surface_wind": -2.687923230051802, "impact_velocity": -5.389969532545958, "x_impact": 885.2228864025619, "max_mach_number": 0.8801262938345243, "out_of_rail_time": 0.3491346275520336, "apogee_y": 622.560212057053, "out_of_rail_velocity": 26.507171930386487, "apogee_x": 383.194634331826, "initial_stability_margin": 2.5858026786251944, "t_final": 306.22280010026435, "apogee_time": 26.416044871065974, "frontal_surface_wind": 0.13092581491455269, "y_impact": 224.20681225805822} -{"apogee": 2773.950332147578, "out_of_rail_stability_margin": 2.69301255633573, "lateral_surface_wind": -1.8376291965450886, "impact_velocity": -5.477300497863882, "x_impact": 628.8711747577198, "max_mach_number": 0.7032823037556998, "out_of_rail_time": 0.38388565943678216, "apogee_y": 280.78125551074515, "out_of_rail_velocity": 23.581881486907665, "apogee_x": 151.72978123365777, "initial_stability_margin": 2.6181217801456933, "t_final": 263.9970657385345, "apogee_time": 23.62896755232903, "frontal_surface_wind": 1.3448277138460791, "y_impact": 147.9315207775639} -{"apogee": 3163.446024029756, "out_of_rail_stability_margin": 2.528568005611689, "lateral_surface_wind": -2.362735310739639, "impact_velocity": -5.343049752005279, "x_impact": 963.105113642123, "max_mach_number": 0.7854994758400764, "out_of_rail_time": 0.3674352114342303, "apogee_y": 492.25719657276085, "out_of_rail_velocity": 24.902873507266428, "apogee_x": 332.2325297094372, "initial_stability_margin": 2.4506498398651395, "t_final": 291.9454354819527, "apogee_time": 24.924710659477274, "frontal_surface_wind": 0.8611534924836474, "y_impact": 237.44401750132494} -{"apogee": 3584.3795625206612, "out_of_rail_stability_margin": 2.596687622288076, "lateral_surface_wind": -2.3334120971572783, "impact_velocity": -5.291838837586013, "x_impact": 1180.2572002859322, "max_mach_number": 0.8684544302477354, "out_of_rail_time": 0.3509763210196976, "apogee_y": 558.7365467337709, "out_of_rail_velocity": 26.321975338521245, "apogee_x": 440.52977349449463, "initial_stability_margin": 2.5258733646866585, "t_final": 315.31584010229835, "apogee_time": 26.247843670867383, "frontal_surface_wind": 0.9377054287316426, "y_impact": 297.0365647120188} -{"apogee": 2254.697570143509, "out_of_rail_stability_margin": 2.7492974776767904, "lateral_surface_wind": -2.1199770080733398, "impact_velocity": -5.379456491132524, "x_impact": 581.0481956143992, "max_mach_number": 0.607473088633742, "out_of_rail_time": 0.408603176308623, "apogee_y": 352.4863027289923, "out_of_rail_velocity": 21.879460145288466, "apogee_x": 221.157794509439, "initial_stability_margin": 2.668542099920588, "t_final": 241.07556849340742, "apogee_time": 21.583717755204585, "frontal_surface_wind": 0.8362929084740477, "y_impact": 147.21433608215523} -{"apogee": 2901.320467973247, "out_of_rail_stability_margin": 2.6037089739124704, "lateral_surface_wind": -1.8745320976459465, "impact_velocity": -5.380657557673654, "x_impact": 743.6313104038119, "max_mach_number": 0.7313457716206904, "out_of_rail_time": 0.379953897203476, "apogee_y": 401.69300463683004, "out_of_rail_velocity": 24.021513488090765, "apogee_x": 279.2876708093136, "initial_stability_margin": 2.5224327440635004, "t_final": 273.27425047718015, "apogee_time": 24.07430964692316, "frontal_surface_wind": 0.8718654245255583, "y_impact": 326.45531824045304} -{"apogee": 3351.618066355054, "out_of_rail_stability_margin": 2.6402266510565457, "lateral_surface_wind": -1.5123088723546383, "impact_velocity": -5.439087331612719, "x_impact": 962.9076163312761, "max_mach_number": 0.8153725153562462, "out_of_rail_time": 0.3612629541802658, "apogee_y": 455.6477043806943, "out_of_rail_velocity": 25.446137708672904, "apogee_x": 401.18639289461373, "initial_stability_margin": 2.5670632328232696, "t_final": 305.93430225320134, "apogee_time": 25.594471378851427, "frontal_surface_wind": 1.107669576088524, "y_impact": 453.2018034811066} -{"apogee": 3606.2267875318676, "out_of_rail_stability_margin": 2.610101102858749, "lateral_surface_wind": -1.2236589102010775, "impact_velocity": -5.35723484159857, "x_impact": 771.4129989219451, "max_mach_number": 0.8735553840399369, "out_of_rail_time": 0.3510799720587937, "apogee_y": 473.6875220802568, "out_of_rail_velocity": 26.323072937673935, "apogee_x": 406.27967196384094, "initial_stability_margin": 2.53723342092209, "t_final": 311.74852251636594, "apogee_time": 26.328647389634654, "frontal_surface_wind": 0.43551907180009697, "y_impact": 496.02068594210056} -{"apogee": 4417.248430976269, "out_of_rail_stability_margin": 2.6633759560491868, "lateral_surface_wind": -0.6800368824691028, "impact_velocity": -5.398037737972255, "x_impact": 1196.3140043429858, "max_mach_number": 1.0630419272945557, "out_of_rail_time": 0.31975606324411876, "apogee_y": 522.9860682598828, "out_of_rail_velocity": 29.605458227319303, "apogee_x": 624.5945331746592, "initial_stability_margin": 2.5989892995714166, "t_final": 353.99538055579427, "apogee_time": 28.512866367238217, "frontal_surface_wind": 0.8871970860471432, "y_impact": 707.6964176524721} -{"apogee": 3980.128704766481, "out_of_rail_stability_margin": 2.6870896416334116, "lateral_surface_wind": -2.572855841348327, "impact_velocity": -5.402546976466083, "x_impact": 1057.7871216192377, "max_mach_number": 0.9393243259501545, "out_of_rail_time": 0.33976128861235466, "apogee_y": 456.84800786777976, "out_of_rail_velocity": 27.425599197116462, "apogee_x": 231.5683193469907, "initial_stability_margin": 2.617321607403599, "t_final": 338.9850020577376, "apogee_time": 27.468427601170458, "frontal_surface_wind": 1.0284143071174432, "y_impact": 150.70240712741514} -{"apogee": 2687.2070446028843, "out_of_rail_stability_margin": 2.8568523516857236, "lateral_surface_wind": -1.9023945242960099, "impact_velocity": -5.525663380511634, "x_impact": 582.6049335444668, "max_mach_number": 0.6844168150569593, "out_of_rail_time": 0.38827388741525665, "apogee_y": 286.29628576722763, "out_of_rail_velocity": 23.23681952343689, "apogee_x": 125.3181648453255, "initial_stability_margin": 2.7814365379074553, "t_final": 259.28281893811675, "apogee_time": 23.338915203985216, "frontal_surface_wind": 1.25153414569958, "y_impact": 161.67880076372916} -{"apogee": 3694.531953678913, "out_of_rail_stability_margin": 2.5565635066448746, "lateral_surface_wind": -1.312094808437814, "impact_velocity": -5.379462346671929, "x_impact": 853.4750347350791, "max_mach_number": 0.8822967901142387, "out_of_rail_time": 0.3484883238879647, "apogee_y": 356.6663808614165, "out_of_rail_velocity": 26.549523830774337, "apogee_x": 349.06097197369263, "initial_stability_margin": 2.4869890978141482, "t_final": 322.8166439427769, "apogee_time": 26.620579860479218, "frontal_surface_wind": 0.7231301856755031, "y_impact": 219.46305857523552} -{"apogee": 3077.984511288229, "out_of_rail_stability_margin": 2.607827289447668, "lateral_surface_wind": -0.3965502182064593, "impact_velocity": -5.4977461695223235, "x_impact": 741.0021830661988, "max_mach_number": 0.7612732774506035, "out_of_rail_time": 0.3732709943047646, "apogee_y": 361.52480287170476, "out_of_rail_velocity": 24.471058860413873, "apogee_x": 456.81272818282946, "initial_stability_margin": 2.5306022896862572, "t_final": 279.00435392783703, "apogee_time": 24.747316931586482, "frontal_surface_wind": 0.2409208646627052, "y_impact": 581.6436738725356} -{"apogee": 2613.848693870547, "out_of_rail_stability_margin": 2.6637295518752553, "lateral_surface_wind": -1.2006145261495789, "impact_velocity": -5.47284080656195, "x_impact": 380.7082473652913, "max_mach_number": 0.6739111099454145, "out_of_rail_time": 0.3924896656354451, "apogee_y": 264.48823696445396, "out_of_rail_velocity": 22.995918655521532, "apogee_x": 204.19002658814128, "initial_stability_margin": 2.582737969188303, "t_final": 254.47748385460602, "apogee_time": 23.043470826545644, "frontal_surface_wind": 0.495522703833769, "y_impact": 226.25427037476283} -{"apogee": 3659.8961106986003, "out_of_rail_stability_margin": 2.6228002170662315, "lateral_surface_wind": -3.0096519548504617, "impact_velocity": -5.428322177254891, "x_impact": 1113.4930586126532, "max_mach_number": 0.8795948708462918, "out_of_rail_time": 0.3500939741919312, "apogee_y": 615.8725298648303, "out_of_rail_velocity": 26.403401575746432, "apogee_x": 395.09929022380214, "initial_stability_margin": 2.5509713723626133, "t_final": 315.83461236930776, "apogee_time": 26.54747064789718, "frontal_surface_wind": 0.7370863598530519, "y_impact": 149.05788176890903} -{"apogee": 4111.030411599899, "out_of_rail_stability_margin": 2.733652738495677, "lateral_surface_wind": -1.6038151129131508, "impact_velocity": -5.3957300522571305, "x_impact": 980.3749767428757, "max_mach_number": 0.9742529047834996, "out_of_rail_time": 0.3337572042274946, "apogee_y": 391.8889059676924, "out_of_rail_velocity": 28.03164502150026, "apogee_x": 306.9371471634493, "initial_stability_margin": 2.6653224402213778, "t_final": 332.42564245674276, "apogee_time": 27.77233323930534, "frontal_surface_wind": 0.9228884501454252, "y_impact": 447.86275997021204} -{"apogee": 2641.2194343249193, "out_of_rail_stability_margin": 2.7262158502201874, "lateral_surface_wind": -1.8245171303140544, "impact_velocity": -5.398135996484375, "x_impact": 757.4107181207769, "max_mach_number": 0.6820836723009464, "out_of_rail_time": 0.38909414063633885, "apogee_y": 338.73962164952013, "out_of_rail_velocity": 23.199753720577732, "apogee_x": 260.0208781917296, "initial_stability_margin": 2.650331025301931, "t_final": 258.3666150483387, "apogee_time": 23.12529569833974, "frontal_surface_wind": 1.5126314452547467, "y_impact": 223.83164310505146} -{"apogee": 4082.7998189568543, "out_of_rail_stability_margin": 2.747044594692791, "lateral_surface_wind": -1.3056448595149468, "impact_velocity": -5.548328703327023, "x_impact": 1127.1637860474514, "max_mach_number": 0.9565767629755242, "out_of_rail_time": 0.3369615485272661, "apogee_y": 508.9924322638164, "out_of_rail_velocity": 27.760661384799274, "apogee_x": 541.8159531114826, "initial_stability_margin": 2.6808504303984706, "t_final": 335.489377095899, "apogee_time": 27.805860719566393, "frontal_surface_wind": 0.7207681267327093, "y_impact": 397.30093716630535} -{"apogee": 4111.734816434984, "out_of_rail_stability_margin": 2.688901897968618, "lateral_surface_wind": -1.8512670140568068, "impact_velocity": -5.529810691040505, "x_impact": 1028.5923824972679, "max_mach_number": 0.9581451120564468, "out_of_rail_time": 0.3362184961368295, "apogee_y": 438.898838617571, "out_of_rail_velocity": 27.78649423592806, "apogee_x": 325.4400833094169, "initial_stability_margin": 2.624628233701683, "t_final": 328.38527281567946, "apogee_time": 27.939151793649152, "frontal_surface_wind": 1.4797726482970588, "y_impact": 296.19467519608514} -{"apogee": 3338.9583387977136, "out_of_rail_stability_margin": 2.7954170375816276, "lateral_surface_wind": -1.3393307347976835, "impact_velocity": -5.6101911881302815, "x_impact": 1039.6078183068123, "max_mach_number": 0.8095254390998399, "out_of_rail_time": 0.36158487625174807, "apogee_y": 561.5460295152859, "out_of_rail_velocity": 25.381185408634302, "apogee_x": 561.9501657595594, "initial_stability_margin": 2.72583943260655, "t_final": 286.7440711398997, "apogee_time": 25.611418638528093, "frontal_surface_wind": 0.6560551611853087, "y_impact": 505.31400918112604} -{"apogee": 3602.095694266291, "out_of_rail_stability_margin": 2.728273512871294, "lateral_surface_wind": -1.827954867175848, "impact_velocity": -5.448756997610621, "x_impact": 894.168170837334, "max_mach_number": 0.8652358788232287, "out_of_rail_time": 0.3523318569981735, "apogee_y": 371.84755184401854, "out_of_rail_velocity": 26.240188639180573, "apogee_x": 259.9397192638187, "initial_stability_margin": 2.6575599369176297, "t_final": 309.5417192021023, "apogee_time": 26.36176614420698, "frontal_surface_wind": 1.5084752737618952, "y_impact": 228.49451632763027} -{"apogee": 4021.3701039252574, "out_of_rail_stability_margin": 2.4898761783256083, "lateral_surface_wind": -1.7051455665416504, "impact_velocity": -5.381412602948794, "x_impact": 1216.187819449161, "max_mach_number": 0.9658883982158163, "out_of_rail_time": 0.3357693668171402, "apogee_y": 662.1200172829602, "out_of_rail_velocity": 27.876711189470385, "apogee_x": 525.623944036067, "initial_stability_margin": 2.418889605617251, "t_final": 329.91266856222404, "apogee_time": 27.474618216468716, "frontal_surface_wind": 0.7186268883946669, "y_impact": 754.3452926536868} -{"apogee": 3598.436596962107, "out_of_rail_stability_margin": 2.675432489320025, "lateral_surface_wind": -2.045369447619489, "impact_velocity": -5.448415463871877, "x_impact": 1071.0571115757186, "max_mach_number": 0.867191509208287, "out_of_rail_time": 0.35162519563616473, "apogee_y": 541.5007615077575, "out_of_rail_velocity": 26.272616127428652, "apogee_x": 462.4708620548971, "initial_stability_margin": 2.6045498543904158, "t_final": 299.74708207510093, "apogee_time": 26.34512450924891, "frontal_surface_wind": 0.49312725131509827, "y_impact": 253.94431403622818} -{"apogee": 2848.1181227815455, "out_of_rail_stability_margin": 2.661081742726395, "lateral_surface_wind": -1.53589385211723, "impact_velocity": -5.5485449360668255, "x_impact": 719.0389636277697, "max_mach_number": 0.7128799284533853, "out_of_rail_time": 0.38280246876253443, "apogee_y": 364.86089440301, "out_of_rail_velocity": 23.699443478690313, "apogee_x": 273.9744941539419, "initial_stability_margin": 2.582718937273947, "t_final": 272.39056715763314, "apogee_time": 23.966468798363948, "frontal_surface_wind": 1.0747279145082183, "y_impact": 357.53999683365197} -{"apogee": 3620.6365312040457, "out_of_rail_stability_margin": 2.6304270894329727, "lateral_surface_wind": -2.0805350284819863, "impact_velocity": -5.430627484540993, "x_impact": 928.9022646473281, "max_mach_number": 0.8649740519541963, "out_of_rail_time": 0.3515204696252239, "apogee_y": 403.2175155570829, "out_of_rail_velocity": 26.280433756649423, "apogee_x": 256.58352614281955, "initial_stability_margin": 2.5624368412655585, "t_final": 311.83953559779485, "apogee_time": 26.44849418456275, "frontal_surface_wind": 1.057727130705708, "y_impact": 251.7965285728618} -{"apogee": 3660.2118010572963, "out_of_rail_stability_margin": 2.6363197111896643, "lateral_surface_wind": -1.8727238182385721, "impact_velocity": -5.458185181544223, "x_impact": 906.285325675677, "max_mach_number": 0.869290595552725, "out_of_rail_time": 0.35164926500453586, "apogee_y": 451.446187685555, "out_of_rail_velocity": 26.26254375541544, "apogee_x": 313.584277121463, "initial_stability_margin": 2.56436229567854, "t_final": 303.2550499153209, "apogee_time": 26.605892139620607, "frontal_surface_wind": 0.87574277284485, "y_impact": 382.3242897161884} -{"apogee": 3419.8586503708057, "out_of_rail_stability_margin": 2.7954224202101314, "lateral_surface_wind": -0.4039049623376181, "impact_velocity": -5.45112573146088, "x_impact": 957.2342572266891, "max_mach_number": 0.8353247542893322, "out_of_rail_time": 0.35752488181364134, "apogee_y": 508.1086013293008, "out_of_rail_velocity": 25.735269461828665, "apogee_x": 616.4341418231279, "initial_stability_margin": 2.7235713452925645, "t_final": 310.69543303059385, "apogee_time": 25.78624000543868, "frontal_surface_wind": 0.22837626844412562, "y_impact": 797.7096121480347} -{"apogee": 3441.356124143189, "out_of_rail_stability_margin": 2.6569194549275927, "lateral_surface_wind": -2.0441301542540984, "impact_velocity": -5.368372015365058, "x_impact": 953.3971322505806, "max_mach_number": 0.8349573379599465, "out_of_rail_time": 0.3571331206286876, "apogee_y": 473.89536402190635, "out_of_rail_velocity": 25.793105351202232, "apogee_x": 377.0354661392905, "initial_stability_margin": 2.58679029151284, "t_final": 302.47250438451096, "apogee_time": 25.862519032265077, "frontal_surface_wind": 0.4982394762701493, "y_impact": 160.5374156895354} -{"apogee": 2226.8603864706392, "out_of_rail_stability_margin": 2.7493364948817764, "lateral_surface_wind": -1.0975554599424386, "impact_velocity": -5.604896040931461, "x_impact": 625.2094229139785, "max_mach_number": 0.5959585833130091, "out_of_rail_time": 0.4125612223207142, "apogee_y": 273.20225098365984, "out_of_rail_velocity": 21.674981187403088, "apogee_x": 267.2740541151639, "initial_stability_margin": 2.6680019551280996, "t_final": 227.18755371886195, "apogee_time": 21.539240938679136, "frontal_surface_wind": 1.2528184331590828, "y_impact": 328.31272270680245} -{"apogee": 3211.4115159262738, "out_of_rail_stability_margin": 2.7024466835423206, "lateral_surface_wind": -1.9935146140487205, "impact_velocity": -5.373840368557356, "x_impact": 791.9721662757454, "max_mach_number": 0.7909564435663796, "out_of_rail_time": 0.3658881580189076, "apogee_y": 395.77018312174624, "out_of_rail_velocity": 25.00420062096101, "apogee_x": 233.1599437318551, "initial_stability_margin": 2.628281197348244, "t_final": 296.9028535188136, "apogee_time": 25.11665762666936, "frontal_surface_wind": 0.6552222346947792, "y_impact": 279.10897468366187} -{"apogee": 2994.563746166848, "out_of_rail_stability_margin": 2.7358731621404333, "lateral_surface_wind": -1.39301072388474, "impact_velocity": -5.534918779549148, "x_impact": 598.0614765329314, "max_mach_number": 0.7421405527724767, "out_of_rail_time": 0.3756000033530704, "apogee_y": 362.9922439688311, "out_of_rail_velocity": 24.27008151271621, "apogee_x": 260.953066998115, "initial_stability_margin": 2.6639252904827226, "t_final": 276.41489278872194, "apogee_time": 24.449607193069383, "frontal_surface_wind": 0.5513902201768399, "y_impact": 263.42825962069674} -{"apogee": 4481.465231806269, "out_of_rail_stability_margin": 2.791578462893579, "lateral_surface_wind": -1.3685212728997809, "impact_velocity": -5.473244075958279, "x_impact": 957.2479129463959, "max_mach_number": 1.0650280359845088, "out_of_rail_time": 0.3186425177909439, "apogee_y": 417.96548733759437, "out_of_rail_velocity": 29.738256169217014, "apogee_x": 340.347160328907, "initial_stability_margin": 2.730788992159129, "t_final": 361.27717949730294, "apogee_time": 28.72164714498057, "frontal_surface_wind": 0.6096388909717907, "y_impact": 284.1196153002499} -{"apogee": 4556.529322290013, "out_of_rail_stability_margin": 2.5461747875397687, "lateral_surface_wind": -1.6458489708565898, "impact_velocity": -5.404968120628271, "x_impact": 1279.462755204712, "max_mach_number": 1.0948106160335358, "out_of_rail_time": 0.31571191309991437, "apogee_y": 524.7161520252263, "out_of_rail_velocity": 30.115779801304658, "apogee_x": 447.09154098210547, "initial_stability_margin": 2.4808510360268787, "t_final": 368.69816917327813, "apogee_time": 28.859658548306484, "frontal_surface_wind": 0.8456519218630976, "y_impact": 587.0631879395353} -{"apogee": 4329.939249454047, "out_of_rail_stability_margin": 2.6273198455508164, "lateral_surface_wind": -2.5769937139746624, "impact_velocity": -5.357285548220282, "x_impact": 1350.616666011531, "max_mach_number": 1.046992589959924, "out_of_rail_time": 0.3227815481017461, "apogee_y": 697.7004051800203, "out_of_rail_velocity": 29.24897860447622, "apogee_x": 500.40731218643504, "initial_stability_margin": 2.5588801932265257, "t_final": 355.8324483805477, "apogee_time": 28.250140354222978, "frontal_surface_wind": 1.1083469470087985, "y_impact": 365.7118887841164} -{"apogee": 2221.9316540510267, "out_of_rail_stability_margin": 2.8027305700308274, "lateral_surface_wind": -1.8828837108391228, "impact_velocity": -5.610843764299195, "x_impact": 550.5269978387744, "max_mach_number": 0.5946819582787946, "out_of_rail_time": 0.4140216612330077, "apogee_y": 262.0858583212438, "out_of_rail_velocity": 21.578572358604625, "apogee_x": 137.51458656063926, "initial_stability_margin": 2.718425214770286, "t_final": 227.53660648461866, "apogee_time": 21.52872781396613, "frontal_surface_wind": 1.4393281694733802, "y_impact": 155.49997180325303} -{"apogee": 3014.508861746737, "out_of_rail_stability_margin": 2.703542366954115, "lateral_surface_wind": -2.1186055091606892, "impact_velocity": -5.33423753117244, "x_impact": 747.5994221937498, "max_mach_number": 0.7534332534628998, "out_of_rail_time": 0.37341527271704134, "apogee_y": 360.17882565242473, "out_of_rail_velocity": 24.444261262879927, "apogee_x": 193.08599850063203, "initial_stability_margin": 2.631003441820312, "t_final": 278.1856140045653, "apogee_time": 24.448777514131006, "frontal_surface_wind": 0.9792463348542317, "y_impact": 238.07201234437503} -{"apogee": 3619.453362672522, "out_of_rail_stability_margin": 2.5717503018662033, "lateral_surface_wind": -1.5193358346029642, "impact_velocity": -5.477576930766638, "x_impact": 1195.7968943779283, "max_mach_number": 0.8695302131593955, "out_of_rail_time": 0.3510652078572318, "apogee_y": 592.7295216819122, "out_of_rail_velocity": 26.29351700669472, "apogee_x": 571.8278818459625, "initial_stability_margin": 2.5003494317771704, "t_final": 318.7342638641577, "apogee_time": 26.4289277528875, "frontal_surface_wind": 1.0980112189253814, "y_impact": 603.82533441967} -{"apogee": 4315.306951715741, "out_of_rail_stability_margin": 2.66290462145839, "lateral_surface_wind": -0.6041062426874706, "impact_velocity": -5.521789880293656, "x_impact": 1023.4369533881951, "max_mach_number": 1.0197408383715942, "out_of_rail_time": 0.32780094080458727, "apogee_y": 569.4199299053439, "out_of_rail_velocity": 28.788467409242383, "apogee_x": 687.3111616931016, "initial_stability_margin": 2.597020187503819, "t_final": 347.09279160189993, "apogee_time": 28.400390124659715, "frontal_surface_wind": -0.7336944639134076, "y_impact": 634.6326566604691} -{"apogee": 2390.2911268593807, "out_of_rail_stability_margin": 2.6522273339035904, "lateral_surface_wind": -2.141011553991726, "impact_velocity": -5.376344468984156, "x_impact": 738.667108949858, "max_mach_number": 0.6369186210056528, "out_of_rail_time": 0.40203691329164265, "apogee_y": 432.55933044831073, "out_of_rail_velocity": 22.355445308909694, "apogee_x": 318.93028837687166, "initial_stability_margin": 2.5681874586974516, "t_final": 246.4739739762563, "apogee_time": 22.138074143466152, "frontal_surface_wind": 0.7965912617876848, "y_impact": 300.5899167812094} -{"apogee": 2693.3545983119006, "out_of_rail_stability_margin": 2.651592121417164, "lateral_surface_wind": -1.5272618043786519, "impact_velocity": -5.42001351413687, "x_impact": 506.2410901474449, "max_mach_number": 0.6876434731259943, "out_of_rail_time": 0.38882061799899453, "apogee_y": 232.74815104199715, "out_of_rail_velocity": 23.258007273885138, "apogee_x": 113.86865793136157, "initial_stability_margin": 2.5702749828630544, "t_final": 261.81177344257856, "apogee_time": 23.31803668706575, "frontal_surface_wind": 1.086959703062056, "y_impact": 207.57004520888265} -{"apogee": 1970.2995496648464, "out_of_rail_stability_margin": 2.6219618765229744, "lateral_surface_wind": -2.0565219762897726, "impact_velocity": -5.413623538622204, "x_impact": 411.9537484195216, "max_mach_number": 0.550293489338259, "out_of_rail_time": 0.42866554902980586, "apogee_y": 276.39312861428704, "out_of_rail_velocity": 20.70311215703443, "apogee_x": 158.49379546614776, "initial_stability_margin": 2.5288093046609217, "t_final": 224.35189669838482, "apogee_time": 20.364667555025836, "frontal_surface_wind": 0.4443287344771282, "y_impact": 11.27152820762071} -{"apogee": 2970.744873962844, "out_of_rail_stability_margin": 2.6055574019930545, "lateral_surface_wind": -1.833978691078147, "impact_velocity": -5.219500330817949, "x_impact": 775.6425938001254, "max_mach_number": 0.7490394283422802, "out_of_rail_time": 0.37666145904929405, "apogee_y": 338.8350857743335, "out_of_rail_velocity": 24.220964989243587, "apogee_x": 227.31446822759642, "initial_stability_margin": 2.521750271449597, "t_final": 286.9964359319804, "apogee_time": 24.25538290649994, "frontal_surface_wind": 1.3498017649250227, "y_impact": 189.1800826755652} -{"apogee": 3197.4876480825096, "out_of_rail_stability_margin": 2.7991382883698677, "lateral_surface_wind": -2.561806762851454, "impact_velocity": -5.471932095442117, "x_impact": 745.7235874642253, "max_mach_number": 0.7846195991025379, "out_of_rail_time": 0.3670936587613425, "apogee_y": 397.5837944456868, "out_of_rail_velocity": 24.905735768287762, "apogee_x": 157.57499271900443, "initial_stability_margin": 2.72513213301724, "t_final": 285.75514086528926, "apogee_time": 25.101845934323435, "frontal_surface_wind": 1.143011665127354, "y_impact": 124.71776161979672} -{"apogee": 3135.6486421490563, "out_of_rail_stability_margin": 2.6871100410863162, "lateral_surface_wind": -1.2284093353159575, "impact_velocity": -5.460172215179848, "x_impact": 672.6112418476013, "max_mach_number": 0.7756986103307176, "out_of_rail_time": 0.3691970123197751, "apogee_y": 458.0824511695177, "out_of_rail_velocity": 24.733235453855258, "apogee_x": 385.65907644215895, "initial_stability_margin": 2.612693313433449, "t_final": 291.0225039920616, "apogee_time": 24.910955156217852, "frontal_surface_wind": 0.42193423104165706, "y_impact": 467.89514731545916} -{"apogee": 3538.2353216150063, "out_of_rail_stability_margin": 2.8124760482606326, "lateral_surface_wind": -2.1701909351024806, "impact_velocity": -5.4590997404589965, "x_impact": 814.6218019762487, "max_mach_number": 0.8472793127367036, "out_of_rail_time": 0.3544504424695225, "apogee_y": 423.075423427466, "out_of_rail_velocity": 26.028407169815527, "apogee_x": 221.49152725389115, "initial_stability_margin": 2.745525294037202, "t_final": 303.94684273150165, "apogee_time": 26.206681986462875, "frontal_surface_wind": 0.9566198887601118, "y_impact": 158.5226729469357} -{"apogee": 3346.1962354846937, "out_of_rail_stability_margin": 2.7029054930723695, "lateral_surface_wind": -1.8606562674339102, "impact_velocity": -5.393800581999654, "x_impact": 974.3446113320042, "max_mach_number": 0.8160209026609416, "out_of_rail_time": 0.36110248529821687, "apogee_y": 493.00975308168205, "out_of_rail_velocity": 25.423868468021126, "apogee_x": 394.75943912721823, "initial_stability_margin": 2.629622700496138, "t_final": 303.35868086146723, "apogee_time": 25.573530485036457, "frontal_surface_wind": 0.9010983065387226, "y_impact": 424.01607619086116} -{"apogee": 3850.781365411112, "out_of_rail_stability_margin": 2.6679249292124037, "lateral_surface_wind": -1.6861779130711525, "impact_velocity": -5.577100557748687, "x_impact": 920.4137515356329, "max_mach_number": 0.9033681189341878, "out_of_rail_time": 0.34618716685375567, "apogee_y": 446.609838207922, "out_of_rail_velocity": 26.795065138178025, "apogee_x": 291.8165932773028, "initial_stability_margin": 2.5962710852502946, "t_final": 324.8813800139738, "apogee_time": 27.195355367631898, "frontal_surface_wind": 0.7620695855966565, "y_impact": 517.3230500806762} -{"apogee": 2474.6707215266674, "out_of_rail_stability_margin": 2.7067361531263128, "lateral_surface_wind": -2.1301896606806627, "impact_velocity": -5.402751274689105, "x_impact": 628.0477928415434, "max_mach_number": 0.6475358155684007, "out_of_rail_time": 0.3983693504950049, "apogee_y": 354.1782825439251, "out_of_rail_velocity": 22.600883083099227, "apogee_x": 218.56122798279154, "initial_stability_margin": 2.6280647968422746, "t_final": 251.81329784209166, "apogee_time": 22.509056144220988, "frontal_surface_wind": 0.8250940081056006, "y_impact": 206.29674181074623} -{"apogee": 3784.5582699214406, "out_of_rail_stability_margin": 2.748565526025087, "lateral_surface_wind": -1.8445748465772906, "impact_velocity": -5.47100622423784, "x_impact": 799.7152214060452, "max_mach_number": 0.8899664791180636, "out_of_rail_time": 0.34738060784141844, "apogee_y": 354.49933855459943, "out_of_rail_velocity": 26.66573892662514, "apogee_x": 202.14224110452463, "initial_stability_margin": 2.681079928694715, "t_final": 311.1168613614306, "apogee_time": 26.985216936051135, "frontal_surface_wind": 0.9335756739345819, "y_impact": 269.01427109744367} -{"apogee": 3317.9854490384746, "out_of_rail_stability_margin": 2.7070917151336795, "lateral_surface_wind": -0.7033019593774488, "impact_velocity": -5.508778268451636, "x_impact": 830.3813136832912, "max_mach_number": 0.8045375721237366, "out_of_rail_time": 0.36336738819945225, "apogee_y": 412.29797382319344, "out_of_rail_velocity": 25.247943021230142, "apogee_x": 445.9373598069464, "initial_stability_margin": 2.6351757557121513, "t_final": 295.53885415998695, "apogee_time": 25.553722883349106, "frontal_surface_wind": 0.8688700621753976, "y_impact": 553.3236967675265} -{"apogee": 2583.2832355434766, "out_of_rail_stability_margin": 2.70905414968116, "lateral_surface_wind": -1.3311253287481166, "impact_velocity": -5.519136795144738, "x_impact": 550.0047612566501, "max_mach_number": 0.664865269684291, "out_of_rail_time": 0.39356436741598605, "apogee_y": 307.9029371090538, "out_of_rail_velocity": 22.93670921989009, "apogee_x": 278.965673592066, "initial_stability_margin": 2.6318336417282837, "t_final": 247.94554457961834, "apogee_time": 22.95134767233027, "frontal_surface_wind": 0.6874702982164174, "y_impact": 222.0054693204913} -{"apogee": 3269.0873058346674, "out_of_rail_stability_margin": 2.6376268906784004, "lateral_surface_wind": -2.0200414797922095, "impact_velocity": -5.460007093737945, "x_impact": 987.7171688426095, "max_mach_number": 0.8018631965658714, "out_of_rail_time": 0.3633891856914653, "apogee_y": 567.4830653954459, "out_of_rail_velocity": 25.21485446447366, "apogee_x": 436.3361590331002, "initial_stability_margin": 2.565026825809473, "t_final": 298.00232420817366, "apogee_time": 25.327236947463785, "frontal_surface_wind": 1.0074806057187584, "y_impact": 480.24160007000734} -{"apogee": 3656.662056957625, "out_of_rail_stability_margin": 2.5986347017635896, "lateral_surface_wind": -1.1377458127337434, "impact_velocity": -5.399641851358305, "x_impact": 1033.5566664469088, "max_mach_number": 0.8796545673474756, "out_of_rail_time": 0.35005423135662733, "apogee_y": 490.18136177780036, "out_of_rail_velocity": 26.39730223553289, "apogee_x": 534.4645175962316, "initial_stability_margin": 2.5249231910101324, "t_final": 319.02552251686257, "apogee_time": 26.51600238064817, "frontal_surface_wind": 0.469299887253713, "y_impact": 512.2422350049758} -{"apogee": 3306.975225721722, "out_of_rail_stability_margin": 2.6830315886407474, "lateral_surface_wind": -2.552832235972626, "impact_velocity": -5.497748379564133, "x_impact": 863.5208809100146, "max_mach_number": 0.8027091680744001, "out_of_rail_time": 0.36304048166275305, "apogee_y": 397.7157958454851, "out_of_rail_velocity": 25.22961385768904, "apogee_x": 199.0777392481678, "initial_stability_margin": 2.611646507195947, "t_final": 293.1006279583966, "apogee_time": 25.47833894853745, "frontal_surface_wind": 1.0771586431083682, "y_impact": 110.2291097743186} -{"apogee": 3681.587559381645, "out_of_rail_stability_margin": 2.70708308324184, "lateral_surface_wind": -2.0026598539629963, "impact_velocity": -5.501089526781755, "x_impact": 935.6100504006047, "max_mach_number": 0.874544315882568, "out_of_rail_time": 0.35109032015574154, "apogee_y": 497.2183992315923, "out_of_rail_velocity": 26.315374412482086, "apogee_x": 292.9180449734297, "initial_stability_margin": 2.6350997915319123, "t_final": 309.4655661410999, "apogee_time": 26.684598674705956, "frontal_surface_wind": 1.2673871378974173, "y_impact": 375.28896217782017} -{"apogee": 2816.4995635198907, "out_of_rail_stability_margin": 2.7015562320450885, "lateral_surface_wind": -1.1724011323437962, "impact_velocity": -5.426820672418517, "x_impact": 538.3310171225601, "max_mach_number": 0.7114951001555294, "out_of_rail_time": 0.3823723046544681, "apogee_y": 308.9833215281387, "out_of_rail_velocity": 23.720358809618173, "apogee_x": 234.2529527932159, "initial_stability_margin": 2.6261831053340794, "t_final": 267.4642984763917, "apogee_time": 23.79379472258733, "frontal_surface_wind": 0.3744108751739171, "y_impact": 293.21262645913134} -{"apogee": 2943.12899399639, "out_of_rail_stability_margin": 2.610306349323818, "lateral_surface_wind": -1.9380571799283104, "impact_velocity": -5.352449966677431, "x_impact": 745.6156958577718, "max_mach_number": 0.7384656129913938, "out_of_rail_time": 0.3770305021293675, "apogee_y": 381.7733434429196, "out_of_rail_velocity": 24.183102081561877, "apogee_x": 221.89670254057538, "initial_stability_margin": 2.5359282464769772, "t_final": 274.8923712726166, "apogee_time": 24.218520559469912, "frontal_surface_wind": 1.1955655612519729, "y_impact": 254.60715389415444} -{"apogee": 2968.168866607301, "out_of_rail_stability_margin": 2.8213404442755143, "lateral_surface_wind": -2.0147408868780996, "impact_velocity": -5.582642042396518, "x_impact": 691.8175008503249, "max_mach_number": 0.7370086573000074, "out_of_rail_time": 0.37806261598473767, "apogee_y": 394.78186593027203, "out_of_rail_velocity": 24.106268175568538, "apogee_x": 210.72934382459118, "initial_stability_margin": 2.7458718197162666, "t_final": 269.76656897996537, "apogee_time": 24.388510870640594, "frontal_surface_wind": 0.586716159659753, "y_impact": 300.8724523587797} -{"apogee": 3755.2012308416734, "out_of_rail_stability_margin": 2.5966927046057187, "lateral_surface_wind": -1.8599904364127209, "impact_velocity": -5.282092489761724, "x_impact": 1022.6691953040938, "max_mach_number": 0.903263202045798, "out_of_rail_time": 0.3454545709974954, "apogee_y": 433.85613443005354, "out_of_rail_velocity": 26.873433287729117, "apogee_x": 316.8838749191801, "initial_stability_margin": 2.5259468940775385, "t_final": 328.62081726309134, "apogee_time": 26.7374961819781, "frontal_surface_wind": 1.313726843897405, "y_impact": 247.20058072145164} -{"apogee": 3835.333077633247, "out_of_rail_stability_margin": 2.639368683119002, "lateral_surface_wind": -2.6863482543561097, "impact_velocity": -5.450372825100133, "x_impact": 1063.7044838458455, "max_mach_number": 0.9180799357523844, "out_of_rail_time": 0.3431520873971556, "apogee_y": 719.0235520487421, "out_of_rail_velocity": 27.093457837352553, "apogee_x": 504.14132027953394, "initial_stability_margin": 2.5710180842608183, "t_final": 328.7459452961182, "apogee_time": 27.04192382493716, "frontal_surface_wind": 0.16001848637277916, "y_impact": 295.6138902355876} -{"apogee": 3286.9816881284787, "out_of_rail_stability_margin": 2.8148849385724293, "lateral_surface_wind": -1.125014992256394, "impact_velocity": -5.399910194065151, "x_impact": 623.5271894804508, "max_mach_number": 0.7986816597455335, "out_of_rail_time": 0.3638849909011768, "apogee_y": 217.55299167090953, "out_of_rail_velocity": 25.194381732488175, "apogee_x": 135.9094418754071, "initial_stability_margin": 2.743473996961258, "t_final": 294.0471881890965, "apogee_time": 25.38115822509689, "frontal_surface_wind": 1.2282195574533825, "y_impact": 314.29249257882} -{"apogee": 3374.0499917531497, "out_of_rail_stability_margin": 2.672856276518974, "lateral_surface_wind": -1.345983653157445, "impact_velocity": -5.40744486369595, "x_impact": 882.4876511590174, "max_mach_number": 0.8218140234393693, "out_of_rail_time": 0.35971318690463533, "apogee_y": 446.2795926653739, "out_of_rail_velocity": 25.528864377405903, "apogee_x": 432.7953706735773, "initial_stability_margin": 2.5995610638186433, "t_final": 299.7451540879166, "apogee_time": 25.641621196423152, "frontal_surface_wind": 0.6579042918217592, "y_impact": 339.7693203780685} -{"apogee": 3844.5768434785814, "out_of_rail_stability_margin": 2.484028832109054, "lateral_surface_wind": -1.1960248422382995, "impact_velocity": -5.369008652403537, "x_impact": 868.8445005300348, "max_mach_number": 0.9207737928510658, "out_of_rail_time": 0.34316237058853266, "apogee_y": 467.58652723332557, "out_of_rail_velocity": 27.088484336980127, "apogee_x": 460.2381939801416, "initial_stability_margin": 2.41274542524792, "t_final": 322.9299203989763, "apogee_time": 27.0402584931746, "frontal_surface_wind": 0.5065003130946296, "y_impact": 495.6649386012226} -{"apogee": 3969.82290741371, "out_of_rail_stability_margin": 2.7036704232004545, "lateral_surface_wind": -1.3485128012977592, "impact_velocity": -5.5030452361463125, "x_impact": 1284.3328274448345, "max_mach_number": 0.9369640112909603, "out_of_rail_time": 0.33892955263980745, "apogee_y": 677.0239354257507, "out_of_rail_velocity": 27.48654571296503, "apogee_x": 683.2759911299065, "initial_stability_margin": 2.639630298991182, "t_final": 336.71242404062286, "apogee_time": 27.477525891322788, "frontal_surface_wind": 0.6369681439661284, "y_impact": 584.5132808763909} -{"apogee": 3018.916227843855, "out_of_rail_stability_margin": 2.688814885721613, "lateral_surface_wind": -2.1806664640007045, "impact_velocity": -5.353944821687908, "x_impact": 791.3956206542766, "max_mach_number": 0.754804508995545, "out_of_rail_time": 0.37395623928002786, "apogee_y": 434.6263516653957, "out_of_rail_velocity": 24.438734541634652, "apogee_x": 254.03452225301388, "initial_stability_margin": 2.613186033005063, "t_final": 286.70148142880396, "apogee_time": 24.468915275403276, "frontal_surface_wind": 0.9324934740549401, "y_impact": 212.28550378525765} -{"apogee": 4357.553654247235, "out_of_rail_stability_margin": 2.629418730640653, "lateral_surface_wind": -1.9799569034025206, "impact_velocity": -5.379665205540963, "x_impact": 1297.5366752169648, "max_mach_number": 1.0493339087743185, "out_of_rail_time": 0.3221222726180901, "apogee_y": 534.8762883967528, "out_of_rail_velocity": 29.33886365675219, "apogee_x": 407.93930004143806, "initial_stability_margin": 2.5631976890432826, "t_final": 357.4077251702747, "apogee_time": 28.344623800500116, "frontal_surface_wind": 0.7657176290766142, "y_impact": 249.796838546936} -{"apogee": 2571.0079451344654, "out_of_rail_stability_margin": 2.6440492690773394, "lateral_surface_wind": -1.4548601361527616, "impact_velocity": -5.422258166596869, "x_impact": 828.7363040155993, "max_mach_number": 0.6676157105393201, "out_of_rail_time": 0.39414789702083164, "apogee_y": 344.56790024823135, "out_of_rail_velocity": 22.851210374408982, "apogee_x": 316.34473403948937, "initial_stability_margin": 2.559353987363124, "t_final": 257.7630351781649, "apogee_time": 22.868122871322456, "frontal_surface_wind": 1.432880447099967, "y_impact": 377.5344743247689} -{"apogee": 3714.422874213162, "out_of_rail_stability_margin": 2.700009378438168, "lateral_surface_wind": -1.9834695905773303, "impact_velocity": -5.426746403068476, "x_impact": 1164.7672030660867, "max_mach_number": 0.8913690473068622, "out_of_rail_time": 0.3477756863778711, "apogee_y": 535.3941931301101, "out_of_rail_velocity": 26.636953771582238, "apogee_x": 405.6421056441095, "initial_stability_margin": 2.6294908804387203, "t_final": 325.1076003822206, "apogee_time": 26.686388985752007, "frontal_surface_wind": 0.7565720124779975, "y_impact": 303.49135639531545} -{"apogee": 4347.255105834348, "out_of_rail_stability_margin": 2.5077196580862746, "lateral_surface_wind": -2.1472206675147616, "impact_velocity": -5.259969678690893, "x_impact": 1131.7805969666763, "max_mach_number": 1.0653736808027752, "out_of_rail_time": 0.319662717241424, "apogee_y": 587.7433095805752, "out_of_rail_velocity": 29.597651293153287, "apogee_x": 442.6834671597675, "initial_stability_margin": 2.4391826712897524, "t_final": 342.60811921587685, "apogee_time": 28.178998609925937, "frontal_surface_wind": 0.7796996329869752, "y_impact": 465.68518793304594} -{"apogee": 3481.292635445693, "out_of_rail_stability_margin": 2.766652391393657, "lateral_surface_wind": -1.115549924484646, "impact_velocity": -5.479533328164723, "x_impact": 776.787156518962, "max_mach_number": 0.8323278869540589, "out_of_rail_time": 0.35729775359448207, "apogee_y": 301.78251070524647, "out_of_rail_velocity": 25.741451947522624, "apogee_x": 256.17558333718006, "initial_stability_margin": 2.6975962232679196, "t_final": 292.09376216930036, "apogee_time": 26.05198163885676, "frontal_surface_wind": 1.2368226954963826, "y_impact": 421.96395711938476} -{"apogee": 4375.935185863897, "out_of_rail_stability_margin": 2.741190850010333, "lateral_surface_wind": -2.1220000681348985, "impact_velocity": -5.366392031553556, "x_impact": 1188.8346589289954, "max_mach_number": 1.046486671681914, "out_of_rail_time": 0.3219610410835571, "apogee_y": 573.2636538566518, "out_of_rail_velocity": 29.358933614002517, "apogee_x": 457.41971980308426, "initial_stability_margin": 2.6778980574822255, "t_final": 351.09724902260405, "apogee_time": 28.430295439830726, "frontal_surface_wind": 1.0592289729835913, "y_impact": 225.88828479208976} -{"apogee": 2895.7804947523828, "out_of_rail_stability_margin": 2.6737286456775946, "lateral_surface_wind": -1.1535331043146673, "impact_velocity": -5.4675580313080845, "x_impact": 850.099214192252, "max_mach_number": 0.726523728063879, "out_of_rail_time": 0.38012721901458246, "apogee_y": 404.6498908446809, "out_of_rail_velocity": 23.874955301670447, "apogee_x": 384.9789104267995, "initial_stability_margin": 2.5931911902226448, "t_final": 271.0056552172042, "apogee_time": 24.106674799227086, "frontal_surface_wind": 1.2014755059354327, "y_impact": 508.7042739746046} -{"apogee": 3486.9600685855694, "out_of_rail_stability_margin": 2.637985318013615, "lateral_surface_wind": -1.3586101743788184, "impact_velocity": -5.463633937031282, "x_impact": 768.8843849225989, "max_mach_number": 0.8375314294133787, "out_of_rail_time": 0.3575556364945271, "apogee_y": 392.7653865084765, "out_of_rail_velocity": 25.749153337810025, "apogee_x": 306.6134479812266, "initial_stability_margin": 2.5623688632133415, "t_final": 296.4495360602236, "apogee_time": 26.039286077083997, "frontal_surface_wind": 0.6151370463286545, "y_impact": 305.240174384212} -{"apogee": 3502.992158573724, "out_of_rail_stability_margin": 2.7924150714795575, "lateral_surface_wind": -0.40008409344794105, "impact_velocity": -5.447500345087075, "x_impact": 843.7699363755544, "max_mach_number": 0.8443388628911921, "out_of_rail_time": 0.3567971212720606, "apogee_y": 421.01012227301186, "out_of_rail_velocity": 25.85330902524207, "apogee_x": 517.3604657855693, "initial_stability_margin": 2.7200298411434365, "t_final": 307.2477837635598, "apogee_time": 26.100543075950156, "frontal_surface_wind": 0.2350056526114961, "y_impact": 696.3427994674215} -{"apogee": 3090.1645994043365, "out_of_rail_stability_margin": 2.5467800343769573, "lateral_surface_wind": -1.9697809459891689, "impact_velocity": -5.406693619807575, "x_impact": 857.3450236353898, "max_mach_number": 0.7685709645877694, "out_of_rail_time": 0.37216554467058477, "apogee_y": 411.2782566193143, "out_of_rail_velocity": 24.780865128444223, "apogee_x": 288.99860735755084, "initial_stability_margin": 2.471311093673768, "t_final": 288.54343930513494, "apogee_time": 24.71995220390863, "frontal_surface_wind": 0.7915275431897644, "y_impact": 225.6392680616238} -{"apogee": 3217.5037109727964, "out_of_rail_stability_margin": 2.617494494710288, "lateral_surface_wind": -2.080516629048039, "impact_velocity": -5.289828979780704, "x_impact": 1067.7482822464422, "max_mach_number": 0.8018337214521652, "out_of_rail_time": 0.36389839571146315, "apogee_y": 588.2948614752572, "out_of_rail_velocity": 25.198560408853567, "apogee_x": 448.0851738926477, "initial_stability_margin": 2.5429267283170254, "t_final": 293.2137460115803, "apogee_time": 25.07451397601746, "frontal_surface_wind": 0.9837108220633404, "y_impact": 452.6075667597412} -{"apogee": 3693.595055968454, "out_of_rail_stability_margin": 2.7521456854169024, "lateral_surface_wind": -1.902960428853723, "impact_velocity": -5.465220039363601, "x_impact": 1168.93456430141, "max_mach_number": 0.8821211908399205, "out_of_rail_time": 0.3486896361269403, "apogee_y": 659.9249467422552, "out_of_rail_velocity": 26.52568744354105, "apogee_x": 531.4342824380673, "initial_stability_margin": 2.6837558268030275, "t_final": 307.126994688062, "apogee_time": 26.6799375265346, "frontal_surface_wind": 0.8079365753602802, "y_impact": 620.5250412897406} -{"apogee": 3253.1451516953443, "out_of_rail_stability_margin": 2.755154574955688, "lateral_surface_wind": -2.0793848874547805, "impact_velocity": -5.563598532021064, "x_impact": 815.0984591411162, "max_mach_number": 0.788952374279739, "out_of_rail_time": 0.36572764577088984, "apogee_y": 414.06044809416306, "out_of_rail_velocity": 25.0434377993174, "apogee_x": 274.811986828243, "initial_stability_margin": 2.68454562521063, "t_final": 290.3217837318888, "apogee_time": 25.34790013082723, "frontal_surface_wind": 1.3654299841587179, "y_impact": 282.5723116334248} -{"apogee": 3771.2672744221695, "out_of_rail_stability_margin": 2.712614041205421, "lateral_surface_wind": -1.5134914319228503, "impact_velocity": -5.4733514232702625, "x_impact": 980.9275628977574, "max_mach_number": 0.8931066430621365, "out_of_rail_time": 0.34751622220861267, "apogee_y": 452.5272827437165, "out_of_rail_velocity": 26.667246033707563, "apogee_x": 379.2520248349699, "initial_stability_margin": 2.641170336350221, "t_final": 316.97679914014554, "apogee_time": 26.910397312440303, "frontal_surface_wind": 1.1060532087973018, "y_impact": 449.85687128419977} -{"apogee": 3012.5563855736114, "out_of_rail_stability_margin": 2.6686478157091065, "lateral_surface_wind": -0.5578736946420442, "impact_velocity": -5.540048217315193, "x_impact": 557.1100049463932, "max_mach_number": 0.7509463495458311, "out_of_rail_time": 0.3754549388430682, "apogee_y": 419.36556443974166, "out_of_rail_velocity": 24.292356622357453, "apogee_x": 436.76986739478485, "initial_stability_margin": 2.5913474269105463, "t_final": 269.4669920038435, "apogee_time": 24.513069690794048, "frontal_surface_wind": -0.769434116515242, "y_impact": 428.610728695378} -{"apogee": 3429.081792982001, "out_of_rail_stability_margin": 2.704941469558802, "lateral_surface_wind": -2.6829919100232575, "impact_velocity": -5.453608762465074, "x_impact": 827.8290645757309, "max_mach_number": 0.83139756034105, "out_of_rail_time": 0.35829863040852766, "apogee_y": 566.7364361258533, "out_of_rail_velocity": 25.654002825001427, "apogee_x": 346.59886655530926, "initial_stability_margin": 2.6332427043008404, "t_final": 306.70599647340697, "apogee_time": 25.861896279817785, "frontal_surface_wind": 0.20887142076623189, "y_impact": 156.26009808309428} -{"apogee": 4241.718192817518, "out_of_rail_stability_margin": 2.738453842415455, "lateral_surface_wind": -1.8747828760454093, "impact_velocity": -5.496063688848451, "x_impact": 919.4581086471884, "max_mach_number": 0.9922028652104881, "out_of_rail_time": 0.3310471928779911, "apogee_y": 408.02047326383513, "out_of_rail_velocity": 28.321702874828247, "apogee_x": 236.4217055571779, "initial_stability_margin": 2.6716826270767724, "t_final": 337.5343754773746, "apogee_time": 28.22096306617111, "frontal_surface_wind": 0.8713260418895719, "y_impact": 321.19926084985843} -{"apogee": 2805.565018545726, "out_of_rail_stability_margin": 2.662500768826464, "lateral_surface_wind": -2.090009542630286, "impact_velocity": -5.309987065683446, "x_impact": 678.9317310597806, "max_mach_number": 0.7169768738211841, "out_of_rail_time": 0.38124938639593, "apogee_y": 368.66827148304947, "out_of_rail_velocity": 23.819226047034398, "apogee_x": 190.3041400111407, "initial_stability_margin": 2.586243394995712, "t_final": 271.6162074323117, "apogee_time": 23.678051049233783, "frontal_surface_wind": 0.9633776709599873, "y_impact": 205.32694020529757} -{"apogee": 3225.5522383120506, "out_of_rail_stability_margin": 2.536941645651636, "lateral_surface_wind": -0.3965011820471338, "impact_velocity": -5.485475657980019, "x_impact": 563.9255290776736, "max_mach_number": 0.787703662143068, "out_of_rail_time": 0.36644328024349293, "apogee_y": 249.07940175676998, "out_of_rail_velocity": 24.967268648616628, "apogee_x": 295.12628597093345, "initial_stability_margin": 2.4637487908228355, "t_final": 289.6754480581624, "apogee_time": 25.212026581538492, "frontal_surface_wind": 0.24100155855230812, "y_impact": 468.00474501107} -{"apogee": 3269.250884855839, "out_of_rail_stability_margin": 2.719219522812601, "lateral_surface_wind": -2.347655849337541, "impact_velocity": -5.522509860778115, "x_impact": 944.6692175827649, "max_mach_number": 0.7953689823594555, "out_of_rail_time": 0.36467251067000717, "apogee_y": 468.9883886304158, "out_of_rail_velocity": 25.129914323355695, "apogee_x": 303.33532527187197, "initial_stability_margin": 2.647248613033347, "t_final": 293.5422086129999, "apogee_time": 25.371121640755742, "frontal_surface_wind": 0.9014518840758784, "y_impact": 212.88331953743904} -{"apogee": 3103.2924108361644, "out_of_rail_stability_margin": 2.7741724489376374, "lateral_surface_wind": -2.1044207135073467, "impact_velocity": -5.467236283984904, "x_impact": 758.9014454482083, "max_mach_number": 0.7667219805440112, "out_of_rail_time": 0.37082956082063256, "apogee_y": 397.7703450658074, "out_of_rail_velocity": 24.618624837336714, "apogee_x": 261.8235258208416, "initial_stability_margin": 2.6994750767764013, "t_final": 280.3079187620684, "apogee_time": 24.79753907591799, "frontal_surface_wind": 0.8887640706305535, "y_impact": 266.31689110520665} -{"apogee": 2800.263638085521, "out_of_rail_stability_margin": 2.642509154449959, "lateral_surface_wind": -2.1134303939043493, "impact_velocity": -5.365563264003396, "x_impact": 860.3841647702533, "max_mach_number": 0.7144091216678624, "out_of_rail_time": 0.3831914575939739, "apogee_y": 436.2289293996264, "out_of_rail_velocity": 23.692227474433246, "apogee_x": 309.92861193040017, "initial_stability_margin": 2.563004736274791, "t_final": 273.134648274585, "apogee_time": 23.70469592894959, "frontal_surface_wind": 0.9903659212093152, "y_impact": 330.98657297239305} -{"apogee": 4368.198189004638, "out_of_rail_stability_margin": 2.6750444440798327, "lateral_surface_wind": -1.9858018149177599, "impact_velocity": -5.257864282150433, "x_impact": 1384.6615319873845, "max_mach_number": 1.0653144499072498, "out_of_rail_time": 0.31935963350843233, "apogee_y": 602.647743303006, "out_of_rail_velocity": 29.612605923552692, "apogee_x": 488.4267198098448, "initial_stability_margin": 2.6092113387222304, "t_final": 356.09341104356696, "apogee_time": 28.28507200229679, "frontal_surface_wind": 0.7504291963132438, "y_impact": 332.1879046439359} -{"apogee": 3933.3260828195776, "out_of_rail_stability_margin": 2.519330825807224, "lateral_surface_wind": -2.10465892354113, "impact_velocity": -5.431528669616796, "x_impact": 1049.2279872899778, "max_mach_number": 0.9333354089737577, "out_of_rail_time": 0.3407854279090299, "apogee_y": 584.3474459216854, "out_of_rail_velocity": 27.315908616145627, "apogee_x": 473.17018444114336, "initial_stability_margin": 2.4486875891228475, "t_final": 326.30476387224206, "apogee_time": 27.328879331254935, "frontal_surface_wind": 0.8741276560561765, "y_impact": 247.49906262184456} -{"apogee": 2850.4706524291764, "out_of_rail_stability_margin": 2.624856467722815, "lateral_surface_wind": -2.1228031667577842, "impact_velocity": -5.4404117652291095, "x_impact": 653.499983715779, "max_mach_number": 0.720237835795767, "out_of_rail_time": 0.3807005855027726, "apogee_y": 397.4502404920572, "out_of_rail_velocity": 23.834868560015178, "apogee_x": 244.12070281010512, "initial_stability_margin": 2.5471208393034117, "t_final": 267.84514438701177, "apogee_time": 23.89804853195476, "frontal_surface_wind": 0.8290929132049649, "y_impact": 153.11645547231973} -{"apogee": 3716.5379662937007, "out_of_rail_stability_margin": 2.5580621821770575, "lateral_surface_wind": -2.3544295462922653, "impact_velocity": -5.404936614348565, "x_impact": 899.169957356066, "max_mach_number": 0.8877240208691057, "out_of_rail_time": 0.34803645563305663, "apogee_y": 393.2142293699722, "out_of_rail_velocity": 26.63302833553423, "apogee_x": 181.68204143547135, "initial_stability_margin": 2.4874510754070713, "t_final": 318.49156716935437, "apogee_time": 26.672418029269043, "frontal_surface_wind": 0.8836090752016527, "y_impact": 113.06590826149933} -{"apogee": 3737.190668690936, "out_of_rail_stability_margin": 2.656131083820141, "lateral_surface_wind": -1.5691516814401645, "impact_velocity": -5.450577720388188, "x_impact": 1197.5703787827276, "max_mach_number": 0.8875180438006226, "out_of_rail_time": 0.34734247459730105, "apogee_y": 572.7795516386981, "out_of_rail_velocity": 26.646689721562133, "apogee_x": 488.88512064165513, "initial_stability_margin": 2.589519620253994, "t_final": 305.2515792864066, "apogee_time": 26.822649389402535, "frontal_surface_wind": 1.3067239157837967, "y_impact": 621.5372288888905} -{"apogee": 4800.973969173251, "out_of_rail_stability_margin": 2.5299071897943683, "lateral_surface_wind": -2.0768621974906374, "impact_velocity": -5.292637115928389, "x_impact": 1475.4986120012738, "max_mach_number": 1.1886258285171583, "out_of_rail_time": 0.303646805922818, "apogee_y": 630.9405986366828, "out_of_rail_velocity": 31.69641955913243, "apogee_x": 482.16422835649445, "initial_stability_margin": 2.4662133105963324, "t_final": 395.63934347208317, "apogee_time": 29.235746951058555, "frontal_surface_wind": 0.9914029644016142, "y_impact": 434.8840598226354} -{"apogee": 2790.4159130282164, "out_of_rail_stability_margin": 2.717702091062232, "lateral_surface_wind": -1.6644565642557216, "impact_velocity": -5.522523643089125, "x_impact": 606.4317934718521, "max_mach_number": 0.7042876047232982, "out_of_rail_time": 0.3843137665314145, "apogee_y": 318.8161711809621, "out_of_rail_velocity": 23.579984874430092, "apogee_x": 194.39186690435832, "initial_stability_margin": 2.6408675265936146, "t_final": 261.1815623666401, "apogee_time": 23.719693675214973, "frontal_surface_wind": 0.8084122423160632, "y_impact": 324.93546964963133} -{"apogee": 3238.4681426419997, "out_of_rail_stability_margin": 2.636342522367136, "lateral_surface_wind": -2.684242060689349, "impact_velocity": -5.263903353231322, "x_impact": 916.1252491113739, "max_mach_number": 0.8095200378079755, "out_of_rail_time": 0.36208948591904844, "apogee_y": 631.7782174886563, "out_of_rail_velocity": 25.318110739385897, "apogee_x": 443.78038159111827, "initial_stability_margin": 2.5632924771228396, "t_final": 299.70485625128043, "apogee_time": 25.11469730614941, "frontal_surface_wind": 0.19213906237241307, "y_impact": 237.28574500755403} -{"apogee": 3057.2996181025023, "out_of_rail_stability_margin": 2.677587511923859, "lateral_surface_wind": -1.955545298188803, "impact_velocity": -5.343603577934465, "x_impact": 633.0580343647883, "max_mach_number": 0.7584666174485611, "out_of_rail_time": 0.3728614480904381, "apogee_y": 303.9621854383138, "out_of_rail_velocity": 24.506240112483685, "apogee_x": 151.55855061975217, "initial_stability_margin": 2.602335744346444, "t_final": 287.22487200668195, "apogee_time": 24.603406156862626, "frontal_surface_wind": 1.127575867829833, "y_impact": 182.5025570369138} -{"apogee": 4205.076705302606, "out_of_rail_stability_margin": 2.7004855280891484, "lateral_surface_wind": -1.279016119033924, "impact_velocity": -5.473038608005142, "x_impact": 1015.8569793897565, "max_mach_number": 0.9952401741648464, "out_of_rail_time": 0.3302869339095556, "apogee_y": 454.1766360562969, "out_of_rail_velocity": 28.41017523030477, "apogee_x": 485.6158000530823, "initial_stability_margin": 2.6360870160298, "t_final": 343.9744827582851, "apogee_time": 28.07785363258175, "frontal_surface_wind": 0.6143102891539496, "y_impact": 81.22627482044763} -{"apogee": 4203.398119654743, "out_of_rail_stability_margin": 2.662105296022179, "lateral_surface_wind": -1.2962208190752804, "impact_velocity": -5.3527773839262105, "x_impact": 819.7390907959985, "max_mach_number": 0.9962100412512881, "out_of_rail_time": 0.33083071087054455, "apogee_y": 360.0858954529786, "out_of_rail_velocity": 28.367957387442804, "apogee_x": 316.25535869751644, "initial_stability_margin": 2.594216260916346, "t_final": 343.54508618255124, "apogee_time": 28.04476530818096, "frontal_surface_wind": 0.5771229958204909, "y_impact": -17.78419094761071} -{"apogee": 2845.17939176832, "out_of_rail_stability_margin": 2.6968822692716943, "lateral_surface_wind": -1.349461815908906, "impact_velocity": -5.604485401530856, "x_impact": 728.5345344094686, "max_mach_number": 0.713760220806244, "out_of_rail_time": 0.3816885046217083, "apogee_y": 411.8554415912967, "out_of_rail_velocity": 23.738952636030447, "apogee_x": 361.8760849573458, "initial_stability_margin": 2.6214737217882673, "t_final": 264.7154656570962, "apogee_time": 23.947719189892865, "frontal_surface_wind": 0.6349551158116784, "y_impact": 356.90636770744806} -{"apogee": 2653.67463577207, "out_of_rail_stability_margin": 2.5657520570553007, "lateral_surface_wind": -1.9710063332192027, "impact_velocity": -5.40187470839479, "x_impact": 564.3120767173943, "max_mach_number": 0.6785596997321287, "out_of_rail_time": 0.39178943115177717, "apogee_y": 284.1842368496937, "out_of_rail_velocity": 23.04716660204663, "apogee_x": 137.01683903494657, "initial_stability_margin": 2.4813881162971105, "t_final": 262.991093692476, "apogee_time": 23.208047792434495, "frontal_surface_wind": 1.100326672125296, "y_impact": 168.73426082938644} -{"apogee": 3307.427615813966, "out_of_rail_stability_margin": 2.637008321293297, "lateral_surface_wind": -2.9834562762123804, "impact_velocity": -5.322632247970392, "x_impact": 962.315160882993, "max_mach_number": 0.8165081656639812, "out_of_rail_time": 0.3611233191175093, "apogee_y": 527.2185824460964, "out_of_rail_velocity": 25.44379904595345, "apogee_x": 334.30086492572156, "initial_stability_margin": 2.5642340841794677, "t_final": 285.5780816463517, "apogee_time": 25.385548440388114, "frontal_surface_wind": 0.8368332206273748, "y_impact": 121.10060622069322} -{"apogee": 3535.6810351147524, "out_of_rail_stability_margin": 2.7839490907619693, "lateral_surface_wind": -2.5155237350216675, "impact_velocity": -5.540583776226136, "x_impact": 1133.4445832642089, "max_mach_number": 0.8497440552000198, "out_of_rail_time": 0.3543338563747689, "apogee_y": 585.2262173120957, "out_of_rail_velocity": 26.00232852011794, "apogee_x": 437.30492638022145, "initial_stability_margin": 2.7149068385515642, "t_final": 305.7473862000183, "apogee_time": 26.207764448055297, "frontal_surface_wind": 1.2415594610614868, "y_impact": 307.36205042797866} -{"apogee": 3511.9367098949615, "out_of_rail_stability_margin": 2.6700907986465525, "lateral_surface_wind": -2.6751441082437486, "impact_velocity": -5.4555302791435, "x_impact": 919.1337729474812, "max_mach_number": 0.8519192789636519, "out_of_rail_time": 0.3542762610667843, "apogee_y": 594.3875178914544, "out_of_rail_velocity": 26.006374220426338, "apogee_x": 418.2373542714208, "initial_stability_margin": 2.599483107220862, "t_final": 306.9972849782962, "apogee_time": 26.080242195598423, "frontal_surface_wind": 0.2927060979752789, "y_impact": 191.82348968148622} -{"apogee": 3653.437352121663, "out_of_rail_stability_margin": 2.7170233937303148, "lateral_surface_wind": -1.576062322943761, "impact_velocity": -5.369770013627727, "x_impact": 885.7620009873147, "max_mach_number": 0.877310206235859, "out_of_rail_time": 0.3493367673707096, "apogee_y": 342.32553530884184, "out_of_rail_velocity": 26.498695899586153, "apogee_x": 199.49625859605388, "initial_stability_margin": 2.648095846390866, "t_final": 318.0043762655312, "apogee_time": 26.463128870329836, "frontal_surface_wind": 1.298380508805085, "y_impact": 354.0869130806271} -{"apogee": 3303.824118482678, "out_of_rail_stability_margin": 2.6426336192200672, "lateral_surface_wind": -0.406819284049438, "impact_velocity": -5.401734976041856, "x_impact": 691.9545365802793, "max_mach_number": 0.8074191915844923, "out_of_rail_time": 0.3635528431264089, "apogee_y": 355.1410043588897, "out_of_rail_velocity": 25.293233815890275, "apogee_x": 402.63707073404174, "initial_stability_margin": 2.567661163812095, "t_final": 290.0560741550873, "apogee_time": 25.440839370768064, "frontal_surface_wind": 0.22314347114562555, "y_impact": 594.3974980242172} -{"apogee": 3631.0906212241384, "out_of_rail_stability_margin": 2.6888959359019347, "lateral_surface_wind": -1.6538271936252238, "impact_velocity": -5.487940439845272, "x_impact": 1072.4749369122299, "max_mach_number": 0.8682315736046531, "out_of_rail_time": 0.3512337520676935, "apogee_y": 534.0359914465661, "out_of_rail_velocity": 26.30642085423375, "apogee_x": 455.4464527571056, "initial_stability_margin": 2.619549735243602, "t_final": 318.227351117747, "apogee_time": 26.48876963253435, "frontal_surface_wind": 0.829940733694981, "y_impact": 611.5438271342867} -{"apogee": 3115.810723716053, "out_of_rail_stability_margin": 2.61288058344056, "lateral_surface_wind": -2.986267312476957, "impact_velocity": -5.260115088865977, "x_impact": 1079.4316781099933, "max_mach_number": 0.7863685795574967, "out_of_rail_time": 0.3667135142133569, "apogee_y": 587.1067555496172, "out_of_rail_velocity": 24.951266705905727, "apogee_x": 436.93078952590923, "initial_stability_margin": 2.5389188803258276, "t_final": 291.49673393845416, "apogee_time": 24.704754522866082, "frontal_surface_wind": 0.8267458676330226, "y_impact": 174.1752021776445} -{"apogee": 3116.9096765644476, "out_of_rail_stability_margin": 2.6574674005620746, "lateral_surface_wind": -2.679582191919037, "impact_velocity": -5.627990571925388, "x_impact": 770.0364613912546, "max_mach_number": 0.7688942991795471, "out_of_rail_time": 0.37025912454160664, "apogee_y": 538.6435528741578, "out_of_rail_velocity": 24.675784167445787, "apogee_x": 347.21809168443, "initial_stability_margin": 2.58546554998647, "t_final": 284.5229263012634, "apogee_time": 24.884618813589768, "frontal_surface_wind": 0.24882149507934992, "y_impact": 162.5894330885823} -{"apogee": 3172.3661371367834, "out_of_rail_stability_margin": 2.6118030335779885, "lateral_surface_wind": -1.5509809676980937, "impact_velocity": -5.43271685851816, "x_impact": 936.90507471774, "max_mach_number": 0.7827894046171361, "out_of_rail_time": 0.3676385598200538, "apogee_y": 406.6970424845242, "out_of_rail_velocity": 24.862321934329337, "apogee_x": 312.12128777303394, "initial_stability_margin": 2.5357452900787627, "t_final": 296.35001956468915, "apogee_time": 24.993146070423272, "frontal_surface_wind": 1.3282403507220066, "y_impact": 441.08505038386437} -{"apogee": 2360.403576197861, "out_of_rail_stability_margin": 2.6853853697933907, "lateral_surface_wind": -1.9707184142203245, "impact_velocity": -5.446210736480459, "x_impact": 588.9499781812053, "max_mach_number": 0.6263612655742771, "out_of_rail_time": 0.404691767655865, "apogee_y": 307.0348328570246, "out_of_rail_velocity": 22.187103662599174, "apogee_x": 185.22492937642824, "initial_stability_margin": 2.601401309382088, "t_final": 243.40081389044673, "apogee_time": 22.026348781640873, "frontal_surface_wind": 1.1008422606502108, "y_impact": 203.55659434890597} -{"apogee": 4067.570923981202, "out_of_rail_stability_margin": 2.6586899680832885, "lateral_surface_wind": -3.0550230892486208, "impact_velocity": -5.451952149902506, "x_impact": 1064.8195194146583, "max_mach_number": 0.9615077185509234, "out_of_rail_time": 0.337275625112593, "apogee_y": 612.8197322581985, "out_of_rail_velocity": 27.729850329662042, "apogee_x": 288.31792440848415, "initial_stability_margin": 2.589091143722179, "t_final": 340.9932976785597, "apogee_time": 27.731185931068193, "frontal_surface_wind": 0.5178176468356794, "y_impact": 88.30094094941508} -{"apogee": 2340.641327790184, "out_of_rail_stability_margin": 2.7392030341373017, "lateral_surface_wind": -0.41907721988961666, "impact_velocity": -5.449171008585468, "x_impact": 561.206828786144, "max_mach_number": 0.6251661563497249, "out_of_rail_time": 0.4044442028105511, "apogee_y": 336.2659107532565, "out_of_rail_velocity": 22.172991682531155, "apogee_x": 343.7829809780164, "initial_stability_margin": 2.658225444004287, "t_final": 249.9400911306406, "apogee_time": 21.954226938488453, "frontal_surface_wind": 0.199171339200714, "y_impact": 484.7371280635272} -{"apogee": 3579.5479385247118, "out_of_rail_stability_margin": 2.5451077062941465, "lateral_surface_wind": -2.669830535964342, "impact_velocity": -5.388039633947939, "x_impact": 842.1111552338135, "max_mach_number": 0.8589745000152805, "out_of_rail_time": 0.3531685688972377, "apogee_y": 501.9428531519967, "out_of_rail_velocity": 26.11856148883027, "apogee_x": 189.378493944284, "initial_stability_margin": 2.4734138145162627, "t_final": 302.0706823418622, "apogee_time": 26.312649507906585, "frontal_surface_wind": 0.8610078199650714, "y_impact": 220.585123008315} -{"apogee": 3121.97939180159, "out_of_rail_stability_margin": 2.6661979333420636, "lateral_surface_wind": -0.40093206032128037, "impact_velocity": -5.494326226564096, "x_impact": 877.4183826915109, "max_mach_number": 0.775548267416818, "out_of_rail_time": 0.36904728255616387, "apogee_y": 460.13713540906156, "out_of_rail_velocity": 24.75670900012533, "apogee_x": 572.9030418306415, "initial_stability_margin": 2.59220404020672, "t_final": 282.00266195424206, "apogee_time": 24.85165541704279, "frontal_surface_wind": 0.23355603523769028, "y_impact": 700.237348800809} -{"apogee": 3658.5229083105523, "out_of_rail_stability_margin": 2.5950401423007743, "lateral_surface_wind": -1.2234192669781416, "impact_velocity": -5.491451723651231, "x_impact": 754.637932124631, "max_mach_number": 0.86922511116637, "out_of_rail_time": 0.3512704857762177, "apogee_y": 456.84843358543276, "out_of_rail_velocity": 26.30742538991279, "apogee_x": 384.7205533649283, "initial_stability_margin": 2.5266719523309416, "t_final": 314.6062426839038, "apogee_time": 26.623679512350137, "frontal_surface_wind": 0.4361918013933481, "y_impact": 480.189401096976} -{"apogee": 2778.769022874158, "out_of_rail_stability_margin": 2.6254753907838535, "lateral_surface_wind": -1.6865963469721204, "impact_velocity": -5.4858960744805545, "x_impact": 858.5368653768269, "max_mach_number": 0.7068783397560015, "out_of_rail_time": 0.3843789767658435, "apogee_y": 499.31872981337864, "out_of_rail_velocity": 23.57271195441147, "apogee_x": 397.7882375529353, "initial_stability_margin": 2.5459340052904884, "t_final": 270.0639094280795, "apogee_time": 23.677731767096688, "frontal_surface_wind": 0.7611430681552227, "y_impact": 536.345323496139} -{"apogee": 1841.7050184966954, "out_of_rail_stability_margin": 2.6843153466895884, "lateral_surface_wind": -2.011694560485065, "impact_velocity": -5.523180234771029, "x_impact": 480.69793138619906, "max_mach_number": 0.5242248744564357, "out_of_rail_time": 0.435037894822366, "apogee_y": 296.707190701299, "out_of_rail_velocity": 20.351726381163644, "apogee_x": 169.27132863067874, "initial_stability_margin": 2.603336478843542, "t_final": 209.29302630747515, "apogee_time": 19.7801064190185, "frontal_surface_wind": 0.6779659446644873, "y_impact": 178.31479563596673} -{"apogee": 3037.237008021175, "out_of_rail_stability_margin": 2.6678959041573655, "lateral_surface_wind": -2.4299725345919096, "impact_velocity": -5.47791882513465, "x_impact": 850.8987545123707, "max_mach_number": 0.7550607827972365, "out_of_rail_time": 0.37377370809321186, "apogee_y": 520.9927198614877, "out_of_rail_velocity": 24.422082312661217, "apogee_x": 280.57900981760304, "initial_stability_margin": 2.5918815080261512, "t_final": 273.6790986002885, "apogee_time": 24.57396820692478, "frontal_surface_wind": 0.6475623270092931, "y_impact": 295.26542724129814} -{"apogee": 3772.6772058195174, "out_of_rail_stability_margin": 2.6939358011930894, "lateral_surface_wind": -1.0791341599000386, "impact_velocity": -5.406757006523337, "x_impact": 1069.4628935819183, "max_mach_number": 0.9009616147878337, "out_of_rail_time": 0.3459148080590426, "apogee_y": 428.2542638487886, "out_of_rail_velocity": 26.81879163907018, "apogee_x": 469.1944885286865, "initial_stability_margin": 2.623338733975152, "t_final": 305.07903144535084, "apogee_time": 26.851457733668546, "frontal_surface_wind": 1.2687204101177985, "y_impact": 580.4771938835526} -{"apogee": 4089.6729651946916, "out_of_rail_stability_margin": 2.7627929841126644, "lateral_surface_wind": -1.975456299146762, "impact_velocity": -5.4551737929964155, "x_impact": 1101.902365699173, "max_mach_number": 0.965112645213311, "out_of_rail_time": 0.3347526563042535, "apogee_y": 507.2149363050274, "out_of_rail_velocity": 27.940410308829343, "apogee_x": 372.93724943438093, "initial_stability_margin": 2.698842839893898, "t_final": 341.60522508318337, "apogee_time": 27.777940011956428, "frontal_surface_wind": 0.7078058373774683, "y_impact": 383.2894376674517} -{"apogee": 3960.9073873832313, "out_of_rail_stability_margin": 2.569160440853992, "lateral_surface_wind": -1.9566766965131677, "impact_velocity": -5.490575796768141, "x_impact": 1066.4863990935226, "max_mach_number": 0.9317087629535209, "out_of_rail_time": 0.34155215002464523, "apogee_y": 424.89302485227677, "out_of_rail_velocity": 27.217459546858016, "apogee_x": 286.6141190098142, "initial_stability_margin": 2.497736064735817, "t_final": 330.9109040932922, "apogee_time": 27.46901416997754, "frontal_surface_wind": 0.8233888098172857, "y_impact": 167.55015859795103} -{"apogee": 4141.362797765315, "out_of_rail_stability_margin": 2.6941537127686392, "lateral_surface_wind": -2.3546150873162497, "impact_velocity": -5.428318041524851, "x_impact": 1261.9049937230293, "max_mach_number": 0.9806177657404264, "out_of_rail_time": 0.3329481885937558, "apogee_y": 600.8002872362879, "out_of_rail_velocity": 28.120277473287658, "apogee_x": 438.98108719628885, "initial_stability_margin": 2.625457289718042, "t_final": 336.99013878938655, "apogee_time": 27.88371219551664, "frontal_surface_wind": 0.8831145321052146, "y_impact": 345.85155995483694} -{"apogee": 3777.8060247655567, "out_of_rail_stability_margin": 2.740738359366931, "lateral_surface_wind": -1.1887613394315795, "impact_velocity": -5.451477370337596, "x_impact": 1046.9099942316348, "max_mach_number": 0.8968814731129543, "out_of_rail_time": 0.3451206731180281, "apogee_y": 489.9104042509693, "out_of_rail_velocity": 26.86965068079362, "apogee_x": 441.083771373309, "initial_stability_margin": 2.677373051160214, "t_final": 311.75814950884796, "apogee_time": 26.91175358465324, "frontal_surface_wind": 1.1666312579326317, "y_impact": 653.8684081851897} -{"apogee": 3707.7736932947414, "out_of_rail_stability_margin": 2.695626732936276, "lateral_surface_wind": -2.077659141981856, "impact_velocity": -5.493368615820256, "x_impact": 951.3880482780205, "max_mach_number": 0.8764356266514626, "out_of_rail_time": 0.34971435660156036, "apogee_y": 492.0627829145923, "out_of_rail_velocity": 26.451807430500274, "apogee_x": 366.3995325413794, "initial_stability_margin": 2.6270135100430645, "t_final": 308.2620639375193, "apogee_time": 26.76730579087758, "frontal_surface_wind": 1.368054473167725, "y_impact": 366.753091264641} -{"apogee": 4084.2167624438844, "out_of_rail_stability_margin": 2.6566889358110033, "lateral_surface_wind": -1.1561498315630754, "impact_velocity": -5.4502573678097, "x_impact": 1162.2565449674469, "max_mach_number": 0.9701128190375973, "out_of_rail_time": 0.3339726382389637, "apogee_y": 581.4750651636589, "out_of_rail_velocity": 28.026842870869768, "apogee_x": 599.2359146585952, "initial_stability_margin": 2.591775984823244, "t_final": 331.17050726095965, "apogee_time": 27.72896057272544, "frontal_surface_wind": 0.42193066438241544, "y_impact": 616.1074764467137} -{"apogee": 3678.8157606004443, "out_of_rail_stability_margin": 2.677326423244426, "lateral_surface_wind": -2.061841431128059, "impact_velocity": -5.395845506299947, "x_impact": 1048.4341973955668, "max_mach_number": 0.881194128770693, "out_of_rail_time": 0.34898939602083645, "apogee_y": 510.65497032396587, "out_of_rail_velocity": 26.499074018199057, "apogee_x": 350.980032514924, "initial_stability_margin": 2.608256699580136, "t_final": 315.45734343010963, "apogee_time": 26.594594642433613, "frontal_surface_wind": 1.0222750794545203, "y_impact": 355.01915113920865} -{"apogee": 2472.656877766568, "out_of_rail_stability_margin": 2.507484742594506, "lateral_surface_wind": -1.9664018820033964, "impact_velocity": -5.323631729320976, "x_impact": 794.0942162856608, "max_mach_number": 0.6566017060174654, "out_of_rail_time": 0.39736369814000994, "apogee_y": 425.234747082535, "out_of_rail_velocity": 22.703531699387632, "apogee_x": 300.1149092456871, "initial_stability_margin": 2.423274131954858, "t_final": 255.54585334853377, "apogee_time": 22.42271296912757, "frontal_surface_wind": 1.3229437956453014, "y_impact": 322.9156273192686} -{"apogee": 2767.9781078264077, "out_of_rail_stability_margin": 2.6857211418551596, "lateral_surface_wind": -2.002188582826574, "impact_velocity": -5.525036714595296, "x_impact": 787.8029964817921, "max_mach_number": 0.7010393087149196, "out_of_rail_time": 0.38476574556272625, "apogee_y": 399.54878883727775, "out_of_rail_velocity": 23.522574711600722, "apogee_x": 298.63457847353015, "initial_stability_margin": 2.61058943645918, "t_final": 262.6987113053321, "apogee_time": 23.661545656357543, "frontal_surface_wind": 1.1346705706895124, "y_impact": 249.23781365018255} -{"apogee": 3367.773250042231, "out_of_rail_stability_margin": 2.6951119026144568, "lateral_surface_wind": -1.5279923896434706, "impact_velocity": -5.382856034028341, "x_impact": 984.3345820637068, "max_mach_number": 0.821747134045166, "out_of_rail_time": 0.3597822721763336, "apogee_y": 488.5357196422515, "out_of_rail_velocity": 25.52214187350003, "apogee_x": 426.53802285721065, "initial_stability_margin": 2.6215724048338505, "t_final": 299.4653658384562, "apogee_time": 25.6172260122159, "frontal_surface_wind": 1.085932443748838, "y_impact": 494.3998956691155} -{"apogee": 3711.721949041975, "out_of_rail_stability_margin": 2.7971198880869967, "lateral_surface_wind": -1.3070182917363127, "impact_velocity": -5.433991790548651, "x_impact": 914.4760462981103, "max_mach_number": 0.8878368012670003, "out_of_rail_time": 0.34824228423898945, "apogee_y": 473.0642472178182, "out_of_rail_velocity": 26.604086321996505, "apogee_x": 455.166321412908, "initial_stability_margin": 2.7283633378538554, "t_final": 321.5762364507115, "apogee_time": 26.711574791793115, "frontal_surface_wind": 0.5522341434352827, "y_impact": 160.503166952889} -{"apogee": 3964.2555093177943, "out_of_rail_stability_margin": 2.4914859598500203, "lateral_surface_wind": -2.1348443650758266, "impact_velocity": -5.4302357645449515, "x_impact": 1155.9697831385804, "max_mach_number": 0.9412979792037091, "out_of_rail_time": 0.3394293155125207, "apogee_y": 583.6223947419871, "out_of_rail_velocity": 27.465681518778936, "apogee_x": 467.51609248831676, "initial_stability_margin": 2.421786155622884, "t_final": 329.50475316683475, "apogee_time": 27.40862103866661, "frontal_surface_wind": 1.03309720901587, "y_impact": 280.4956885358006} -{"apogee": 3512.660199674777, "out_of_rail_stability_margin": 2.753137037646359, "lateral_surface_wind": -2.048649750063865, "impact_velocity": -5.5175104924851865, "x_impact": 763.3900580064993, "max_mach_number": 0.8386243339737114, "out_of_rail_time": 0.35627129524901774, "apogee_y": 329.60011967617953, "out_of_rail_velocity": 25.845673025793673, "apogee_x": 183.8338985052621, "initial_stability_margin": 2.684264332501433, "t_final": 301.01574873490335, "apogee_time": 26.154128373886902, "frontal_surface_wind": 1.1949412152636003, "y_impact": 52.18112769301907} -{"apogee": 2381.4716795524273, "out_of_rail_stability_margin": 2.7418335216454066, "lateral_surface_wind": -2.372658234238031, "impact_velocity": -5.675559059411142, "x_impact": 635.4472595487402, "max_mach_number": 0.6226946967181155, "out_of_rail_time": 0.4050932855997159, "apogee_y": 373.9878151779781, "out_of_rail_velocity": 22.14518579493166, "apogee_x": 203.77219850909816, "initial_stability_margin": 2.6618791851705947, "t_final": 234.85180101831145, "apogee_time": 22.22124648941602, "frontal_surface_wind": 0.8334244955214548, "y_impact": 155.77580489147732} -{"apogee": 2051.112635680478, "out_of_rail_stability_margin": 2.713341094699049, "lateral_surface_wind": -1.3636034336990916, "impact_velocity": -5.491574284189551, "x_impact": 537.5468286321724, "max_mach_number": 0.5653437026473609, "out_of_rail_time": 0.42344009699625007, "apogee_y": 332.1548643195834, "out_of_rail_velocity": 21.046529327828576, "apogee_x": 271.26114560298333, "initial_stability_margin": 2.6250577824221986, "t_final": 225.44690400867387, "apogee_time": 20.745997893299656, "frontal_surface_wind": 0.6039874727969377, "y_impact": 291.28041588981074} -{"apogee": 2607.60334834971, "out_of_rail_stability_margin": 2.765267034264323, "lateral_surface_wind": -1.9477875248629404, "impact_velocity": -5.549118423901294, "x_impact": 695.9271270682851, "max_mach_number": 0.6720591497087958, "out_of_rail_time": 0.3918288383577359, "apogee_y": 359.2243376442485, "out_of_rail_velocity": 23.04185941095464, "apogee_x": 262.7637570875904, "initial_stability_margin": 2.6892207162865067, "t_final": 251.06949490608423, "apogee_time": 23.03999505808788, "frontal_surface_wind": 0.7807307162220144, "y_impact": 269.85085936265386} -{"apogee": 2337.93532172868, "out_of_rail_stability_margin": 2.7160091807685776, "lateral_surface_wind": -2.006228250037365, "impact_velocity": -5.407360311399933, "x_impact": 687.2086621296102, "max_mach_number": 0.6240724220162707, "out_of_rail_time": 0.4035184604259801, "apogee_y": 408.4381147121196, "out_of_rail_velocity": 22.22797537388183, "apogee_x": 279.070019697093, "initial_stability_margin": 2.6408960172747307, "t_final": 243.00628384004548, "apogee_time": 21.948555366577406, "frontal_surface_wind": 0.6151950113713953, "y_impact": 327.79951263806424} -{"apogee": 4474.596718834028, "out_of_rail_stability_margin": 2.570516225516628, "lateral_surface_wind": -1.9538235605577339, "impact_velocity": -5.387762198347083, "x_impact": 1365.720998018849, "max_mach_number": 1.0725611170800846, "out_of_rail_time": 0.3187898735596074, "apogee_y": 535.1471121520802, "out_of_rail_velocity": 29.703728863380956, "apogee_x": 447.0075333927888, "initial_stability_margin": 2.5049040748120155, "t_final": 364.23605909083216, "apogee_time": 28.689947559584226, "frontal_surface_wind": 0.8301363267677834, "y_impact": 240.01514455829883} -{"apogee": 3551.467781961071, "out_of_rail_stability_margin": 2.832098960549353, "lateral_surface_wind": -1.9061515769750361, "impact_velocity": -5.67487451441203, "x_impact": 969.5490907833738, "max_mach_number": 0.8404400719797034, "out_of_rail_time": 0.35503892404052895, "apogee_y": 476.91157230954144, "out_of_rail_velocity": 25.957242617882024, "apogee_x": 330.28093725303995, "initial_stability_margin": 2.7693108043568464, "t_final": 300.8290076603381, "apogee_time": 26.356307247234245, "frontal_surface_wind": 1.2458044828619788, "y_impact": 327.4234128097231} -{"apogee": 3603.4953660541555, "out_of_rail_stability_margin": 2.7459902681033745, "lateral_surface_wind": -1.9344841184244779, "impact_velocity": -5.420853688419889, "x_impact": 1030.698258404571, "max_mach_number": 0.8640359422666142, "out_of_rail_time": 0.3515874972438818, "apogee_y": 510.8153776518894, "out_of_rail_velocity": 26.251540876962743, "apogee_x": 372.0272583323134, "initial_stability_margin": 2.6787198426523897, "t_final": 314.0780760182451, "apogee_time": 26.401895898575034, "frontal_surface_wind": 1.369192405597682, "y_impact": 380.2902634473973} -{"apogee": 3849.649493560174, "out_of_rail_stability_margin": 2.6703029679949846, "lateral_surface_wind": -2.090597906653129, "impact_velocity": -5.531019172822668, "x_impact": 912.6444557674298, "max_mach_number": 0.9063740130662536, "out_of_rail_time": 0.3448655473723638, "apogee_y": 492.37745749907526, "out_of_rail_velocity": 26.916261001158126, "apogee_x": 360.69230274990554, "initial_stability_margin": 2.602436805125189, "t_final": 323.39029924990587, "apogee_time": 27.16330812872014, "frontal_surface_wind": 0.9072423800843563, "y_impact": 150.7063471121803} -{"apogee": 3161.902027378944, "out_of_rail_stability_margin": 2.5709521473733687, "lateral_surface_wind": -1.974508853508563, "impact_velocity": -5.332144172118642, "x_impact": 799.2283464453564, "max_mach_number": 0.7832711805802205, "out_of_rail_time": 0.36837705585941743, "apogee_y": 406.18435369775926, "out_of_rail_velocity": 24.81216471413328, "apogee_x": 277.0106078660841, "initial_stability_margin": 2.490782865872974, "t_final": 296.4403638411272, "apogee_time": 24.92905738681912, "frontal_surface_wind": 1.094029039101264, "y_impact": 295.39522530547947} -{"apogee": 3272.263018635024, "out_of_rail_stability_margin": 2.6350351728744514, "lateral_surface_wind": -2.6882111481313893, "impact_velocity": -5.451943111733587, "x_impact": 688.6769676063783, "max_mach_number": 0.8003312641679518, "out_of_rail_time": 0.3651646605778672, "apogee_y": 504.5350486745019, "out_of_rail_velocity": 25.091516167735513, "apogee_x": 248.71448383135967, "initial_stability_margin": 2.5579032000342874, "t_final": 296.79133790187785, "apogee_time": 25.364639102325278, "frontal_surface_wind": 0.12487466806871206, "y_impact": 103.64704638544711} -{"apogee": 3448.2450509313085, "out_of_rail_stability_margin": 2.661855698235735, "lateral_surface_wind": -1.3170971426323705, "impact_velocity": -5.41129562733955, "x_impact": 661.9706694392303, "max_mach_number": 0.838040342602538, "out_of_rail_time": 0.3571047342249576, "apogee_y": 346.6018676115578, "out_of_rail_velocity": 25.822991610845698, "apogee_x": 277.7143967337772, "initial_stability_margin": 2.5923199880903938, "t_final": 306.27389672409333, "apogee_time": 25.86166253828633, "frontal_surface_wind": 0.5277447119381251, "y_impact": 51.67386316614537} -{"apogee": 3290.5344890592064, "out_of_rail_stability_margin": 2.823834446764486, "lateral_surface_wind": -2.559630066427644, "impact_velocity": -5.568539464839326, "x_impact": 789.1794054030901, "max_mach_number": 0.7949162812887803, "out_of_rail_time": 0.36445067022998456, "apogee_y": 417.42564374859006, "out_of_rail_velocity": 25.156238693489815, "apogee_x": 179.1371284955813, "initial_stability_margin": 2.7552825996719372, "t_final": 291.9921836293565, "apogee_time": 25.485245926343506, "frontal_surface_wind": 1.1478778157313887, "y_impact": 139.11675981865415} -{"apogee": 3197.2079295055464, "out_of_rail_stability_margin": 2.729628179535383, "lateral_surface_wind": -2.126686209876386, "impact_velocity": -5.434535537947584, "x_impact": 903.6530057384225, "max_mach_number": 0.7871176895121665, "out_of_rail_time": 0.36621307363426925, "apogee_y": 458.8828738764898, "out_of_rail_velocity": 24.977106558947007, "apogee_x": 326.9314375831788, "initial_stability_margin": 2.657016371374412, "t_final": 295.0941529574857, "apogee_time": 25.08810979302256, "frontal_surface_wind": 1.0497885839987018, "y_impact": 223.1770648080323} -{"apogee": 3314.9559761991923, "out_of_rail_stability_margin": 2.5772446829183266, "lateral_surface_wind": -2.999977911684147, "impact_velocity": -5.351792481433464, "x_impact": 939.7176631453317, "max_mach_number": 0.81498830384019, "out_of_rail_time": 0.3617205404336946, "apogee_y": 500.8210871426222, "out_of_rail_velocity": 25.37591387448671, "apogee_x": 290.290666224917, "initial_stability_margin": 2.5017884089265694, "t_final": 293.19266716649275, "apogee_time": 25.42614967344149, "frontal_surface_wind": 1.2148757445572633, "y_impact": 214.52045155582036} -{"apogee": 3292.002876855817, "out_of_rail_stability_margin": 2.733632852404229, "lateral_surface_wind": -2.607287645571149, "impact_velocity": -5.322144715968636, "x_impact": 722.6326100063641, "max_mach_number": 0.8060319577854568, "out_of_rail_time": 0.36247486582578636, "apogee_y": 381.4874094999855, "out_of_rail_velocity": 25.29763568953683, "apogee_x": 109.14545866680007, "initial_stability_margin": 2.661633122999937, "t_final": 298.69776811228735, "apogee_time": 25.364531887452518, "frontal_surface_wind": 1.035075209857094, "y_impact": 84.94600318606045} -{"apogee": 2985.7746126140023, "out_of_rail_stability_margin": 2.6457580790106587, "lateral_surface_wind": -1.3484902480027192, "impact_velocity": -5.385608016792348, "x_impact": 813.4776789268403, "max_mach_number": 0.7474977033226897, "out_of_rail_time": 0.3751146989339258, "apogee_y": 446.1361819172548, "out_of_rail_velocity": 24.301668918890005, "apogee_x": 406.09585866556597, "initial_stability_margin": 2.5693631179574985, "t_final": 283.25331388836736, "apogee_time": 24.3672240409246, "frontal_surface_wind": 0.6370158889173403, "y_impact": 377.12498789219825} -{"apogee": 4678.836609296462, "out_of_rail_stability_margin": 2.719868053610105, "lateral_surface_wind": -2.5325193514541233, "impact_velocity": -5.505279827006927, "x_impact": 1177.273340224358, "max_mach_number": 1.1126641603274456, "out_of_rail_time": 0.31256705461247886, "apogee_y": 538.2326451067859, "out_of_rail_velocity": 30.476319149501894, "apogee_x": 328.62737816085064, "initial_stability_margin": 2.6599910745226856, "t_final": 363.63795779770504, "apogee_time": 29.24655051666427, "frontal_surface_wind": 1.2065136929678983, "y_impact": 169.13561809808476} -{"apogee": 2735.707497264747, "out_of_rail_stability_margin": 2.716786835091791, "lateral_surface_wind": -1.4012568747556604, "impact_velocity": -5.373600310593555, "x_impact": 508.3928096883872, "max_mach_number": 0.6976771068973945, "out_of_rail_time": 0.3860246367328446, "apogee_y": 330.5795314291197, "out_of_rail_velocity": 23.486381151829647, "apogee_x": 220.58810599259422, "initial_stability_margin": 2.639948432459632, "t_final": 265.4221959273884, "apogee_time": 23.471169984382406, "frontal_surface_wind": 0.5300841656893285, "y_impact": 236.08015795880019} -{"apogee": 4530.455232112101, "out_of_rail_stability_margin": 2.7003530767190975, "lateral_surface_wind": -2.128304015999999, "impact_velocity": -5.443721315204601, "x_impact": 1238.3098829952373, "max_mach_number": 1.0869749665699495, "out_of_rail_time": 0.31619501188509225, "apogee_y": 576.1261461752802, "out_of_rail_velocity": 30.048592673970322, "apogee_x": 421.0096311788575, "initial_stability_margin": 2.6382813514097005, "t_final": 362.617803473382, "apogee_time": 28.81617842917618, "frontal_surface_wind": 0.9579847092985067, "y_impact": 425.00955458018257} -{"apogee": 2927.296578809553, "out_of_rail_stability_margin": 2.661843530068848, "lateral_surface_wind": -0.40563196008037694, "impact_velocity": -5.536074863857468, "x_impact": 705.2385151979153, "max_mach_number": 0.7324319191700941, "out_of_rail_time": 0.3785719398181944, "apogee_y": 372.3569671139894, "out_of_rail_velocity": 23.990526268930452, "apogee_x": 434.5597193115272, "initial_stability_margin": 2.584348415660154, "t_final": 274.00878577380234, "apogee_time": 24.234324881977127, "frontal_surface_wind": 0.2252945883743493, "y_impact": 581.4270327042325} -{"apogee": 2208.79339890547, "out_of_rail_stability_margin": 2.7648939958974466, "lateral_surface_wind": -3.042583627997213, "impact_velocity": -5.5564929700116865, "x_impact": 589.4611463790969, "max_mach_number": 0.5969501946321433, "out_of_rail_time": 0.4126204871285791, "apogee_y": 384.62301609897446, "out_of_rail_velocity": 21.647297298478268, "apogee_x": 147.13771863605942, "initial_stability_margin": 2.683341464348329, "t_final": 233.53090052269306, "apogee_time": 21.442429020027927, "frontal_surface_wind": 0.5865032462484265, "y_impact": 69.6412808128528} -{"apogee": 3629.5958386167945, "out_of_rail_stability_margin": 2.6756203083008394, "lateral_surface_wind": -2.622227566231293, "impact_velocity": -5.371812048939505, "x_impact": 1067.95772805205, "max_mach_number": 0.873429451068437, "out_of_rail_time": 0.3495879960393531, "apogee_y": 534.8298232559262, "out_of_rail_velocity": 26.465079408396257, "apogee_x": 310.3799830786311, "initial_stability_margin": 2.6086512437361704, "t_final": 313.4640864261127, "apogee_time": 26.41455678974885, "frontal_surface_wind": 0.8950674602178139, "y_impact": 257.1165420310375} -{"apogee": 3549.5417237247093, "out_of_rail_stability_margin": 2.59224638335205, "lateral_surface_wind": -1.657798080313631, "impact_velocity": -5.366162218295959, "x_impact": 1053.266093809655, "max_mach_number": 0.8586336645676167, "out_of_rail_time": 0.35270346167702127, "apogee_y": 538.5935306225275, "out_of_rail_velocity": 26.176157695606875, "apogee_x": 462.9826138452179, "initial_stability_margin": 2.522480682061238, "t_final": 307.0424510585333, "apogee_time": 26.17929708665742, "frontal_surface_wind": 0.8219802508143896, "y_impact": 610.5059183465091} -{"apogee": 2193.129737731587, "out_of_rail_stability_margin": 2.645431196096237, "lateral_surface_wind": -2.0080335313188553, "impact_velocity": -5.439570630057675, "x_impact": 582.0450004636883, "max_mach_number": 0.5958968136797136, "out_of_rail_time": 0.41356185942681084, "apogee_y": 342.81480334167196, "out_of_rail_velocity": 21.654494653132723, "apogee_x": 205.62280904951044, "initial_stability_margin": 2.561042167359751, "t_final": 237.248409399632, "apogee_time": 21.334580854409342, "frontal_surface_wind": 0.6092766451812894, "y_impact": 247.47921082417926} -{"apogee": 3235.959597680429, "out_of_rail_stability_margin": 2.539477837643631, "lateral_surface_wind": -1.340445194299174, "impact_velocity": -5.478114721673466, "x_impact": 770.1314580220317, "max_mach_number": 0.7886723253471553, "out_of_rail_time": 0.36720191154951515, "apogee_y": 389.2522881774461, "out_of_rail_velocity": 24.893565609407993, "apogee_x": 335.5766766301076, "initial_stability_margin": 2.460198867678628, "t_final": 289.964932227119, "apogee_time": 25.261161034121237, "frontal_surface_wind": 0.6537750934165614, "y_impact": 306.19040722224577} -{"apogee": 3106.7848493421875, "out_of_rail_stability_margin": 2.6274121847703533, "lateral_surface_wind": -1.6572132997326618, "impact_velocity": -5.365385071779964, "x_impact": 909.0643762637882, "max_mach_number": 0.7748279663980265, "out_of_rail_time": 0.3684593245860088, "apogee_y": 477.10921719614925, "out_of_rail_velocity": 24.790680489905142, "apogee_x": 399.3789133897634, "initial_stability_margin": 2.554209592551922, "t_final": 287.6605553746628, "apogee_time": 24.740501042589642, "frontal_surface_wind": 0.8231586037997962, "y_impact": 522.0146227401367} -{"apogee": 3579.0284681169096, "out_of_rail_stability_margin": 2.8412025766451077, "lateral_surface_wind": -2.6556061300008786, "impact_velocity": -5.410308705633951, "x_impact": 1156.0000365114815, "max_mach_number": 0.8646284131239057, "out_of_rail_time": 0.35178466631790845, "apogee_y": 732.5700925472048, "out_of_rail_velocity": 26.248321302482687, "apogee_x": 440.5896047819459, "initial_stability_margin": 2.772288258997998, "t_final": 313.9559752249556, "apogee_time": 26.29209856427568, "frontal_surface_wind": 0.9039278948624193, "y_impact": 462.06319292311287} -{"apogee": 3316.983942539945, "out_of_rail_stability_margin": 2.604685536045193, "lateral_surface_wind": -1.1538835565851662, "impact_velocity": -5.437477393533906, "x_impact": 957.879353894639, "max_mach_number": 0.8137087590172215, "out_of_rail_time": 0.36195105066465927, "apogee_y": 509.79090210717413, "out_of_rail_velocity": 25.376789697039268, "apogee_x": 523.2352626313552, "initial_stability_margin": 2.5302712038828594, "t_final": 299.71068505555536, "apogee_time": 25.46563051338241, "frontal_surface_wind": 0.4280895425163781, "y_impact": 527.6910715496916} -{"apogee": 2818.166329527309, "out_of_rail_stability_margin": 2.6211136353627693, "lateral_surface_wind": -1.9433942452880686, "impact_velocity": -5.407815278728806, "x_impact": 768.6893883274456, "max_mach_number": 0.7151229057125472, "out_of_rail_time": 0.38349322389701485, "apogee_y": 418.86406020033377, "out_of_rail_velocity": 23.686332784003163, "apogee_x": 264.24688901129787, "initial_stability_margin": 2.539623604269906, "t_final": 264.2184254071764, "apogee_time": 23.788475802233222, "frontal_surface_wind": 1.1868704441954219, "y_impact": 313.60436855422125} -{"apogee": 3020.346312541379, "out_of_rail_stability_margin": 2.7491927040216253, "lateral_surface_wind": -1.1574684773080104, "impact_velocity": -5.408960091983601, "x_impact": 768.0404218547601, "max_mach_number": 0.7558099143704472, "out_of_rail_time": 0.37295645761346513, "apogee_y": 417.88612285933874, "out_of_rail_velocity": 24.476492021927815, "apogee_x": 397.22495184907933, "initial_stability_margin": 2.676227943544478, "t_final": 285.2884768768483, "apogee_time": 24.476629670007434, "frontal_surface_wind": 0.41829970428843255, "y_impact": 421.5872541320819} -{"apogee": 3933.675123469475, "out_of_rail_stability_margin": 2.625118322318927, "lateral_surface_wind": -2.0539695819813812, "impact_velocity": -5.500007205488249, "x_impact": 1142.0369321360984, "max_mach_number": 0.9225081700713732, "out_of_rail_time": 0.34278494229381656, "apogee_y": 543.3452433688628, "out_of_rail_velocity": 27.100725517602143, "apogee_x": 389.8490252888048, "initial_stability_margin": 2.5552388034689213, "t_final": 326.8950011999286, "apogee_time": 27.43469395279589, "frontal_surface_wind": 1.0380006654550742, "y_impact": 387.8071583320151} -{"apogee": 3454.9736118508704, "out_of_rail_stability_margin": 2.6495988453573047, "lateral_surface_wind": -2.1305099531222016, "impact_velocity": -5.4685543514673345, "x_impact": 851.766236787074, "max_mach_number": 0.8311682406734695, "out_of_rail_time": 0.35828143894886416, "apogee_y": 454.6936664497609, "out_of_rail_velocity": 25.692934769610694, "apogee_x": 299.5357186297026, "initial_stability_margin": 2.5783854426526935, "t_final": 295.9795316966189, "apogee_time": 25.967014854855083, "frontal_surface_wind": 0.8242666148339358, "y_impact": 334.5441652631069} -{"apogee": 4452.03081770866, "out_of_rail_stability_margin": 2.8028901735793808, "lateral_surface_wind": -1.4850578831558547, "impact_velocity": -5.550898763820862, "x_impact": 1332.7501882057477, "max_mach_number": 1.050214295984865, "out_of_rail_time": 0.3215759451475568, "apogee_y": 522.4616868076242, "out_of_rail_velocity": 29.394056854719494, "apogee_x": 493.51203863208906, "initial_stability_margin": 2.740129733526391, "t_final": 351.48544554725606, "apogee_time": 28.73251017765516, "frontal_surface_wind": 1.4015589445772467, "y_impact": 530.8709217899467} -{"apogee": 3356.3506984035444, "out_of_rail_stability_margin": 2.7686177753049686, "lateral_surface_wind": -2.34427064400455, "impact_velocity": -5.460121069264223, "x_impact": 1022.1785852864873, "max_mach_number": 0.816274122942057, "out_of_rail_time": 0.3610187934928763, "apogee_y": 511.07103065282746, "out_of_rail_velocity": 25.43935367525323, "apogee_x": 357.67150231205795, "initial_stability_margin": 2.695378477918604, "t_final": 295.55736699127254, "apogee_time": 25.61372785839001, "frontal_surface_wind": 0.9102190032575765, "y_impact": 264.0203284255607} -{"apogee": 2711.2102514551525, "out_of_rail_stability_margin": 2.834166933716331, "lateral_surface_wind": -0.6463047972128639, "impact_velocity": -5.457705414176453, "x_impact": 714.8153711438248, "max_mach_number": 0.6930646489227333, "out_of_rail_time": 0.38719649315856375, "apogee_y": 322.04537998184367, "out_of_rail_velocity": 23.369417988867674, "apogee_x": 397.05768849572036, "initial_stability_margin": 2.7566387753834594, "t_final": 266.496623373634, "apogee_time": 23.423208595739766, "frontal_surface_wind": 0.9120630132334481, "y_impact": 414.77068407047227} -{"apogee": 3960.2869431824897, "out_of_rail_stability_margin": 2.5938324595643016, "lateral_surface_wind": -1.856657910038785, "impact_velocity": -5.398690821163035, "x_impact": 986.6147359519377, "max_mach_number": 0.9334591055557193, "out_of_rail_time": 0.3403786328397959, "apogee_y": 449.65532625411447, "out_of_rail_velocity": 27.317539067811897, "apogee_x": 323.3975006094162, "initial_stability_margin": 2.5247249693620932, "t_final": 328.4124071346738, "apogee_time": 27.434208188560003, "frontal_surface_wind": 0.9093081483625092, "y_impact": 369.4531610349349} -{"apogee": 3627.3108797706805, "out_of_rail_stability_margin": 2.5241790909009554, "lateral_surface_wind": -1.1533300559886244, "impact_velocity": -5.418074733302044, "x_impact": 835.4632013629107, "max_mach_number": 0.869768143604993, "out_of_rail_time": 0.3521066053853384, "apogee_y": 396.5862934338718, "out_of_rail_velocity": 26.226286354539223, "apogee_x": 366.0073864812293, "initial_stability_margin": 2.4490295392177637, "t_final": 317.6703436095071, "apogee_time": 26.442564395341375, "frontal_surface_wind": 0.42957851496878957, "y_impact": 405.89529374324866} -{"apogee": 4452.287248831326, "out_of_rail_stability_margin": 2.7029890408152277, "lateral_surface_wind": -0.753733488147799, "impact_velocity": -5.420152008751751, "x_impact": 738.3155287831928, "max_mach_number": 1.0540916750942269, "out_of_rail_time": 0.32173792440652504, "apogee_y": 272.49401822522304, "out_of_rail_velocity": 29.384516921765872, "apogee_x": 210.29418554472062, "initial_stability_margin": 2.636582470442743, "t_final": 362.4656762122153, "apogee_time": 28.678083101378448, "frontal_surface_wind": 0.8255026710152973, "y_impact": 425.9786548955197} -{"apogee": 3773.6459034432337, "out_of_rail_stability_margin": 2.4749670766733964, "lateral_surface_wind": -2.073729762540351, "impact_velocity": -5.3350944132812215, "x_impact": 876.4226397027381, "max_mach_number": 0.9010891053958968, "out_of_rail_time": 0.3461530368949169, "apogee_y": 424.6593530652766, "out_of_rail_velocity": 26.812004855325764, "apogee_x": 282.4734667911259, "initial_stability_margin": 2.4028632915452404, "t_final": 321.05894861614763, "apogee_time": 26.836127164904756, "frontal_surface_wind": 1.374003429314987, "y_impact": 278.5502071388927} -{"apogee": 2583.167343721663, "out_of_rail_stability_margin": 2.790989778705194, "lateral_surface_wind": -1.1778725248684776, "impact_velocity": -5.488744861238055, "x_impact": 427.5379616303147, "max_mach_number": 0.6636859103514792, "out_of_rail_time": 0.3944013561294156, "apogee_y": 260.6581164774003, "out_of_rail_velocity": 22.88616989036401, "apogee_x": 172.46611404822454, "initial_stability_margin": 2.7148618166865948, "t_final": 248.51413288884282, "apogee_time": 22.957773160593906, "frontal_surface_wind": 0.3568252145371343, "y_impact": 234.50183302039483} -{"apogee": 3973.4387987707037, "out_of_rail_stability_margin": 2.638580700550257, "lateral_surface_wind": -2.1557321488475587, "impact_velocity": -5.368382890598175, "x_impact": 1136.6671252220474, "max_mach_number": 0.9464816332032062, "out_of_rail_time": 0.3382574358119031, "apogee_y": 583.6915327151225, "out_of_rail_velocity": 27.609877636279524, "apogee_x": 437.1645667334812, "initial_stability_margin": 2.57244487462244, "t_final": 336.37526610318747, "apogee_time": 27.398343564046783, "frontal_surface_wind": 0.9887715655283956, "y_impact": 273.3559369407628} -{"apogee": 2931.008771254248, "out_of_rail_stability_margin": 2.6875364378585016, "lateral_surface_wind": -1.9919515802675907, "impact_velocity": -5.504122283604811, "x_impact": 678.1490175990666, "max_mach_number": 0.7315192658362035, "out_of_rail_time": 0.3782227066232455, "apogee_y": 358.645397694697, "out_of_rail_velocity": 24.076285011411812, "apogee_x": 201.7392397525129, "initial_stability_margin": 2.6155338116058573, "t_final": 269.92229063671857, "apogee_time": 24.230394261196007, "frontal_surface_wind": 0.6599587829051808, "y_impact": 256.9803891901421} -{"apogee": 3588.4185301402063, "out_of_rail_stability_margin": 2.494476420892538, "lateral_surface_wind": -2.558360320325461, "impact_velocity": -5.3904932168957655, "x_impact": 1047.1857609042338, "max_mach_number": 0.8658079931183448, "out_of_rail_time": 0.3528727394953851, "apogee_y": 545.2729862744956, "out_of_rail_velocity": 26.16426524099904, "apogee_x": 347.50090691076093, "initial_stability_margin": 2.4190596283235015, "t_final": 312.051049826636, "apogee_time": 26.306516098351924, "frontal_surface_wind": 1.1507050135429389, "y_impact": 252.83815875411193} -{"apogee": 3393.605786732696, "out_of_rail_stability_margin": 2.7337255915262264, "lateral_surface_wind": -1.6645318464322183, "impact_velocity": -5.448318573230952, "x_impact": 1127.4719742034292, "max_mach_number": 0.8251596714831392, "out_of_rail_time": 0.3586102029134109, "apogee_y": 607.9386092089624, "out_of_rail_velocity": 25.654903494326817, "apogee_x": 542.1409597423592, "initial_stability_margin": 2.665323501121192, "t_final": 304.47392819666715, "apogee_time": 25.74530178988935, "frontal_surface_wind": 0.8082572239289892, "y_impact": 692.2693759485658} -{"apogee": 2079.271099859438, "out_of_rail_stability_margin": 2.7808637427675067, "lateral_surface_wind": -1.9402441409208504, "impact_velocity": -5.510243410453563, "x_impact": 616.5941722627152, "max_mach_number": 0.5712912051872465, "out_of_rail_time": 0.42123731615244075, "apogee_y": 336.99385006985034, "out_of_rail_velocity": 21.167672494573356, "apogee_x": 261.67354655694146, "initial_stability_margin": 2.695182584405223, "t_final": 228.66367765124056, "apogee_time": 20.88772455032091, "frontal_surface_wind": 0.8613974114381356, "y_impact": 207.36722294271195} -{"apogee": 3256.744109477508, "out_of_rail_stability_margin": 2.6240655782187265, "lateral_surface_wind": -1.8776925243593054, "impact_velocity": -5.474500475634472, "x_impact": 856.4491302665798, "max_mach_number": 0.794551426253228, "out_of_rail_time": 0.36593607249761173, "apogee_y": 399.37740556599243, "out_of_rail_velocity": 25.02246778469252, "apogee_x": 267.49342878643665, "initial_stability_margin": 2.5472600789462696, "t_final": 290.90160063021614, "apogee_time": 25.31808634613065, "frontal_surface_wind": 1.2882986563249221, "y_impact": 253.66190762564997} -{"apogee": 2688.293210418553, "out_of_rail_stability_margin": 2.61851706616789, "lateral_surface_wind": -1.5030465944839946, "impact_velocity": -5.533218268257019, "x_impact": 833.5941120180104, "max_mach_number": 0.6875341916003228, "out_of_rail_time": 0.3886374651471871, "apogee_y": 371.6396292990187, "out_of_rail_velocity": 23.25691594307092, "apogee_x": 318.00091500118464, "initial_stability_margin": 2.538836192078798, "t_final": 256.57234420032995, "apogee_time": 23.339510163692314, "frontal_surface_wind": 1.3822500954088954, "y_impact": 408.93336960686804} -{"apogee": 4481.588860988763, "out_of_rail_stability_margin": 2.748724856918848, "lateral_surface_wind": -2.687819526229614, "impact_velocity": -5.564837021239535, "x_impact": 1014.7769005770174, "max_mach_number": 1.0614904357635957, "out_of_rail_time": 0.31964813319693414, "apogee_y": 665.6902894794043, "out_of_rail_velocity": 29.603737552394122, "apogee_x": 404.8406189433993, "initial_stability_margin": 2.6883792187457107, "t_final": 361.96324688445685, "apogee_time": 28.80514757160804, "frontal_surface_wind": 0.13303779193134413, "y_impact": 191.51518381225156} -{"apogee": 2510.2692235059267, "out_of_rail_stability_margin": 2.7562718998408737, "lateral_surface_wind": -2.0563771951414536, "impact_velocity": -5.512033510964357, "x_impact": 580.5170326907968, "max_mach_number": 0.6539019237282563, "out_of_rail_time": 0.3959136436376483, "apogee_y": 369.2410521209332, "out_of_rail_velocity": 22.743726352810953, "apogee_x": 248.77945681303743, "initial_stability_margin": 2.680759345666455, "t_final": 247.9248934451451, "apogee_time": 22.655574834406092, "frontal_surface_wind": 0.44499830847656785, "y_impact": 94.57562846333366} -{"apogee": 2636.0880374517283, "out_of_rail_stability_margin": 2.608773629614315, "lateral_surface_wind": -2.006481328976044, "impact_velocity": -5.455647481952925, "x_impact": 611.2745186571698, "max_mach_number": 0.6780269010501843, "out_of_rail_time": 0.3911378935375824, "apogee_y": 334.05626253836897, "out_of_rail_velocity": 23.0649437535965, "apogee_x": 183.39894372005375, "initial_stability_margin": 2.5266170181203336, "t_final": 258.1055143495071, "apogee_time": 23.118718173784703, "frontal_surface_wind": 1.034223103324937, "y_impact": 228.59734184931384} -{"apogee": 3457.860446395857, "out_of_rail_stability_margin": 2.752210437752611, "lateral_surface_wind": -1.1570954961307574, "impact_velocity": -5.456946370550467, "x_impact": 954.1166447682244, "max_mach_number": 0.837964513732939, "out_of_rail_time": 0.35668378025905795, "apogee_y": 506.3036101192858, "out_of_rail_velocity": 25.82097095482787, "apogee_x": 503.208412232905, "initial_stability_margin": 2.6815068774765627, "t_final": 304.4819270012048, "apogee_time": 25.933488388449874, "frontal_surface_wind": 0.4193303368508304, "y_impact": 524.695108091478} -{"apogee": 3921.909991927773, "out_of_rail_stability_margin": 2.619949551777288, "lateral_surface_wind": -1.930284182966643, "impact_velocity": -5.506698437787374, "x_impact": 1267.620129230832, "max_mach_number": 0.9294951337213013, "out_of_rail_time": 0.34150157418415084, "apogee_y": 643.6585852952583, "out_of_rail_velocity": 27.225349957128575, "apogee_x": 539.4846902790363, "initial_stability_margin": 2.550868301299034, "t_final": 328.9173523358652, "apogee_time": 27.347026836849377, "frontal_surface_wind": 1.3751071307253464, "y_impact": 526.4285468487642} -{"apogee": 4089.367757635163, "out_of_rail_stability_margin": 2.7530177702896736, "lateral_surface_wind": -1.2208957252896058, "impact_velocity": -5.505444676787019, "x_impact": 799.7732762858731, "max_mach_number": 0.9555596751636464, "out_of_rail_time": 0.3376543075278776, "apogee_y": 452.2993895974744, "out_of_rail_velocity": 27.687447228001908, "apogee_x": 372.4170964023024, "initial_stability_margin": 2.6868058836242876, "t_final": 336.01789076743984, "apogee_time": 27.866420554892247, "frontal_surface_wind": 0.44320606763183434, "y_impact": 481.75040467266587} -{"apogee": 4063.823189623393, "out_of_rail_stability_margin": 2.7671051774485904, "lateral_surface_wind": -1.9477569874216918, "impact_velocity": -5.559181834002638, "x_impact": 953.8340690360087, "max_mach_number": 0.9441917819841605, "out_of_rail_time": 0.33846697322128133, "apogee_y": 403.77732614513536, "out_of_rail_velocity": 27.524069791771907, "apogee_x": 260.05465398525666, "initial_stability_margin": 2.7018968074475236, "t_final": 333.96627471025306, "apogee_time": 27.822698789849028, "frontal_surface_wind": 0.7808068975196204, "y_impact": 268.1858122282589} -{"apogee": 4429.163311224893, "out_of_rail_stability_margin": 2.6226523451281163, "lateral_surface_wind": -1.8901522414420604, "impact_velocity": -5.335523030952577, "x_impact": 1247.3395952508151, "max_mach_number": 1.0648711988703843, "out_of_rail_time": 0.31925184217201197, "apogee_y": 523.0723735512272, "out_of_rail_velocity": 29.685212117827064, "apogee_x": 419.89544706827024, "initial_stability_margin": 2.5603020718137097, "t_final": 376.2362509760494, "apogee_time": 28.544957558786944, "frontal_surface_wind": 1.4297696150619692, "y_impact": 354.81030704181023} -{"apogee": 2057.0318909241773, "out_of_rail_stability_margin": 2.6143289536783425, "lateral_surface_wind": -1.3433917908619857, "impact_velocity": -5.518936222107881, "x_impact": 442.3432168014818, "max_mach_number": 0.5641476846746656, "out_of_rail_time": 0.42309304948890963, "apogee_y": 253.08298812120415, "out_of_rail_velocity": 21.024126436939024, "apogee_x": 192.58304767593418, "initial_stability_margin": 2.5257032676196474, "t_final": 226.57428065243215, "apogee_time": 20.774336688899705, "frontal_surface_wind": 0.6476987632659272, "y_impact": 195.4017092755933} -{"apogee": 3220.5272262960652, "out_of_rail_stability_margin": 2.595724054565441, "lateral_surface_wind": -1.961607089343961, "impact_velocity": -5.299157349885573, "x_impact": 769.8510234731774, "max_mach_number": 0.7933809789370404, "out_of_rail_time": 0.3660828951340882, "apogee_y": 363.57816977107046, "out_of_rail_velocity": 24.989693980924113, "apogee_x": 227.68758362454915, "initial_stability_margin": 2.5181614577531892, "t_final": 288.7156700363306, "apogee_time": 25.13655512753942, "frontal_surface_wind": 0.7453283305361156, "y_impact": 249.5714952867328} -{"apogee": 3515.2468090730836, "out_of_rail_stability_margin": 2.640940922653204, "lateral_surface_wind": -1.3493801747885763, "impact_velocity": -5.444111109960521, "x_impact": 843.7947468857251, "max_mach_number": 0.8440562718085997, "out_of_rail_time": 0.35519240756431, "apogee_y": 416.84826317216226, "out_of_rail_velocity": 25.95948069475941, "apogee_x": 352.9397291011782, "initial_stability_margin": 2.5712470750184306, "t_final": 309.8275138651622, "apogee_time": 26.116707671447134, "frontal_surface_wind": 0.6351285976706889, "y_impact": 318.4072539710806} -{"apogee": 4293.27341421451, "out_of_rail_stability_margin": 2.737535585796253, "lateral_surface_wind": -2.083589775561931, "impact_velocity": -5.471958406336766, "x_impact": 1299.583003181024, "max_mach_number": 1.009882593601881, "out_of_rail_time": 0.32747110003901725, "apogee_y": 637.916613682809, "out_of_rail_velocity": 28.7267251413968, "apogee_x": 466.12264098165474, "initial_stability_margin": 2.6762394956587903, "t_final": 345.2697405008373, "apogee_time": 28.353779947435736, "frontal_surface_wind": 0.9771847687943819, "y_impact": 485.64052670847957} -{"apogee": 2987.4298434124817, "out_of_rail_stability_margin": 2.5631152372710675, "lateral_surface_wind": -2.385890981797992, "impact_velocity": -5.362691930101616, "x_impact": 747.0350615845373, "max_mach_number": 0.7460515599932416, "out_of_rail_time": 0.377085306989175, "apogee_y": 390.04742376547074, "out_of_rail_velocity": 24.215028102981652, "apogee_x": 180.83370620956015, "initial_stability_margin": 2.4810348049508457, "t_final": 283.9946379164607, "apogee_time": 24.37542705271188, "frontal_surface_wind": 0.7947500922980357, "y_impact": 122.46298971489384} -{"apogee": 4070.361947506573, "out_of_rail_stability_margin": 2.6325257018629875, "lateral_surface_wind": -1.8735180315555224, "impact_velocity": -5.348434473474239, "x_impact": 1058.7321681922886, "max_mach_number": 0.9655252674716298, "out_of_rail_time": 0.3354598580285745, "apogee_y": 449.5769730513311, "out_of_rail_velocity": 27.886449887045874, "apogee_x": 329.93736852679046, "initial_stability_margin": 2.5648723777116524, "t_final": 341.2128954954133, "apogee_time": 27.68891257691783, "frontal_surface_wind": 1.4514981341425202, "y_impact": 295.6907177650282} -{"apogee": 3149.1628740728192, "out_of_rail_stability_margin": 2.7329292443043056, "lateral_surface_wind": -2.1092311137758095, "impact_velocity": -5.488212813245895, "x_impact": 846.405559360752, "max_mach_number": 0.7732391275282404, "out_of_rail_time": 0.3685534015621736, "apogee_y": 425.38393799514307, "out_of_rail_velocity": 24.78566700947952, "apogee_x": 299.0536865393603, "initial_stability_margin": 2.6625951439860485, "t_final": 282.6845167104792, "apogee_time": 24.973797291011262, "frontal_surface_wind": 1.0844327618863447, "y_impact": 203.98180287742085} -{"apogee": 3946.375348667475, "out_of_rail_stability_margin": 2.671279145867187, "lateral_surface_wind": -1.8784089114226148, "impact_velocity": -5.379674001997693, "x_impact": 882.3127810730377, "max_mach_number": 0.9307022449467589, "out_of_rail_time": 0.34040560534357067, "apogee_y": 402.7596295629383, "out_of_rail_velocity": 27.337829937493925, "apogee_x": 237.50603872255633, "initial_stability_margin": 2.604542248116734, "t_final": 326.52229290611206, "apogee_time": 27.378888964486542, "frontal_surface_wind": 0.8634812476690797, "y_impact": 316.30434582700735} -{"apogee": 2935.1729469542875, "out_of_rail_stability_margin": 2.620874958341219, "lateral_surface_wind": -1.3694371342080562, "impact_velocity": -5.349260120606104, "x_impact": 755.794671335786, "max_mach_number": 0.7388995085698431, "out_of_rail_time": 0.37681344032461594, "apogee_y": 436.6158913525341, "out_of_rail_velocity": 24.20832547565178, "apogee_x": 363.2766200503371, "initial_stability_margin": 2.545715454529934, "t_final": 278.76833315612186, "apogee_time": 24.172960523747776, "frontal_surface_wind": 0.5906412846589799, "y_impact": 376.2018158027402} -{"apogee": 3250.7700612989156, "out_of_rail_stability_margin": 2.7393638859063154, "lateral_surface_wind": -2.68745990371275, "impact_velocity": -5.63554740070532, "x_impact": 684.2764470523354, "max_mach_number": 0.7865007881756619, "out_of_rail_time": 0.36700544260743345, "apogee_y": 515.0393965465965, "out_of_rail_velocity": 24.922273965620736, "apogee_x": 262.45626081636254, "initial_stability_margin": 2.667322312306937, "t_final": 283.23160306813605, "apogee_time": 25.40256733652363, "frontal_surface_wind": 0.1401146873079666, "y_impact": 139.77607413110013} -{"apogee": 2680.6362665898, "out_of_rail_stability_margin": 2.6765351363599734, "lateral_surface_wind": -2.1744341353424383, "impact_velocity": -5.49430108289025, "x_impact": 604.1267333799105, "max_mach_number": 0.6826839700127292, "out_of_rail_time": 0.3904220098687402, "apogee_y": 337.30721731575954, "out_of_rail_velocity": 23.11145227510364, "apogee_x": 152.02459107749314, "initial_stability_margin": 2.5941611768687425, "t_final": 257.60504961559315, "apogee_time": 23.339595296718183, "frontal_surface_wind": 0.9469353185038406, "y_impact": 149.49635529196732} -{"apogee": 4135.872944383362, "out_of_rail_stability_margin": 2.6227206002826535, "lateral_surface_wind": -3.1160224015894658, "impact_velocity": -5.480024229847127, "x_impact": 1094.3403553139576, "max_mach_number": 0.9739972522300961, "out_of_rail_time": 0.3337257959460703, "apogee_y": 659.2653452779925, "out_of_rail_velocity": 28.00761044912001, "apogee_x": 326.3776273080104, "initial_stability_margin": 2.5562100148265525, "t_final": 333.55364198791796, "apogee_time": 27.931923833843427, "frontal_surface_wind": 0.8753256183266671, "y_impact": 382.7217615094922} -{"apogee": 2732.290106620054, "out_of_rail_stability_margin": 2.6770134170630433, "lateral_surface_wind": -0.7321221119754081, "impact_velocity": -5.434047722026593, "x_impact": 491.99687161054976, "max_mach_number": 0.6958918027226028, "out_of_rail_time": 0.38689918073588286, "apogee_y": 243.1569721618105, "out_of_rail_velocity": 23.404595465521734, "apogee_x": 211.27843874997052, "initial_stability_margin": 2.5975947209487202, "t_final": 262.44409489241787, "apogee_time": 23.477145685268372, "frontal_surface_wind": 0.8447283848465766, "y_impact": 321.7776070547922} -{"apogee": 1532.8323372398295, "out_of_rail_stability_margin": 2.6898286132117435, "lateral_surface_wind": -3.045823529264373, "impact_velocity": -5.529432312755332, "x_impact": 522.6850394234569, "max_mach_number": 0.4620465050833564, "out_of_rail_time": 0.46076604893639056, "apogee_y": 273.7192394553355, "out_of_rail_velocity": 19.041838028942177, "apogee_x": 104.98304843961265, "initial_stability_margin": 2.596534380892443, "t_final": 193.61393290041863, "apogee_time": 18.209320401445275, "frontal_surface_wind": 1.0948742274279109, "y_impact": 0.9914413287556293} -{"apogee": 3680.4352968722687, "out_of_rail_stability_margin": 2.521089243881502, "lateral_surface_wind": -1.125760915526531, "impact_velocity": -5.421371782734269, "x_impact": 1177.8640325345389, "max_mach_number": 0.886551078561826, "out_of_rail_time": 0.3484344551208267, "apogee_y": 547.6185626985376, "out_of_rail_velocity": 26.56200367092483, "apogee_x": 658.6975903459587, "initial_stability_margin": 2.4499614842530137, "t_final": 319.0151062443473, "apogee_time": 26.581676402850494, "frontal_surface_wind": 0.4973633276010419, "y_impact": 577.3619237990671} -{"apogee": 2927.792852052069, "out_of_rail_stability_margin": 2.5803028644107506, "lateral_surface_wind": -3.0354548845668345, "impact_velocity": -5.333653022285115, "x_impact": 854.8488180916762, "max_mach_number": 0.7446882292391335, "out_of_rail_time": 0.37648020179533426, "apogee_y": 515.9578769261645, "out_of_rail_velocity": 24.222611512280913, "apogee_x": 275.36077563539254, "initial_stability_margin": 2.502946243294928, "t_final": 278.96795387282083, "apogee_time": 24.10889129556788, "frontal_surface_wind": 0.6223462340015993, "y_impact": 124.57891034645239} -{"apogee": 4079.5943105984875, "out_of_rail_stability_margin": 2.665613221305605, "lateral_surface_wind": -2.6812796216915897, "impact_velocity": -5.457879192545166, "x_impact": 792.1558141415585, "max_mach_number": 0.9597831269316293, "out_of_rail_time": 0.3375158126697061, "apogee_y": 519.542155814602, "out_of_rail_velocity": 27.733170069666055, "apogee_x": 261.9323348621862, "initial_stability_margin": 2.5964237674956907, "t_final": 325.8739048389565, "apogee_time": 27.785406554465133, "frontal_surface_wind": 0.22980959502283027, "y_impact": 84.07806514398537} -{"apogee": 4332.545402723135, "out_of_rail_stability_margin": 2.6427967628259865, "lateral_surface_wind": -3.137641539861109, "impact_velocity": -5.4659827701669395, "x_impact": 1193.027380839043, "max_mach_number": 1.031886009395353, "out_of_rail_time": 0.3247076967671686, "apogee_y": 724.893763726612, "out_of_rail_velocity": 29.045589768276287, "apogee_x": 370.0611495566518, "initial_stability_margin": 2.5778600965835343, "t_final": 354.8049022891637, "apogee_time": 28.37098810675711, "frontal_surface_wind": 0.7943526374629564, "y_impact": 427.57392292332446} -{"apogee": 2390.9531543425246, "out_of_rail_stability_margin": 2.694478349403618, "lateral_surface_wind": -0.5569251263273798, "impact_velocity": -5.363698943091604, "x_impact": 328.28550804535394, "max_mach_number": 0.6345315900860191, "out_of_rail_time": 0.4029913090940046, "apogee_y": 301.93835214577564, "out_of_rail_velocity": 22.289160802348842, "apogee_x": 302.283256678023, "initial_stability_margin": 2.6103432513726186, "t_final": 245.56796713475939, "apogee_time": 22.156816618683035, "frontal_surface_wind": -0.7701209791301544, "y_impact": 265.0104810965535} -{"apogee": 3153.855112880786, "out_of_rail_stability_margin": 2.611824962266698, "lateral_surface_wind": -1.1515283989988851, "impact_velocity": -5.434845051301194, "x_impact": 775.0168666544608, "max_mach_number": 0.773337913415382, "out_of_rail_time": 0.36843164677120893, "apogee_y": 332.8403594409993, "out_of_rail_velocity": 24.815133912995954, "apogee_x": 287.1331818060112, "initial_stability_margin": 2.5420476040773705, "t_final": 283.5427336392633, "apogee_time": 24.976062939541134, "frontal_surface_wind": 1.2033970086433243, "y_impact": 442.1783912464853} -{"apogee": 3819.2233055036513, "out_of_rail_stability_margin": 2.655477586484837, "lateral_surface_wind": -1.2377764502182131, "impact_velocity": -5.375232503032445, "x_impact": 957.8362636853027, "max_mach_number": 0.9075249733266697, "out_of_rail_time": 0.34481821584275346, "apogee_y": 455.0166897086784, "out_of_rail_velocity": 26.91623846901633, "apogee_x": 351.03180089843147, "initial_stability_margin": 2.585307328238299, "t_final": 318.9708636136699, "apogee_time": 27.005174490199018, "frontal_surface_wind": 1.1144915761897152, "y_impact": 616.2950010843505} -{"apogee": 3780.5508786782416, "out_of_rail_stability_margin": 2.737789877809155, "lateral_surface_wind": -1.1624099089445281, "impact_velocity": -5.41417645704569, "x_impact": 1130.6081130732277, "max_mach_number": 0.9031621684282125, "out_of_rail_time": 0.3450612581549739, "apogee_y": 514.2828053855807, "out_of_rail_velocity": 26.89159039462575, "apogee_x": 499.9817721429924, "initial_stability_margin": 2.669719760826235, "t_final": 320.0689077472855, "apogee_time": 26.877241863631433, "frontal_surface_wind": 1.1928894406860222, "y_impact": 684.7683035225749} -{"apogee": 3428.017515135601, "out_of_rail_stability_margin": 2.668238995301764, "lateral_surface_wind": -1.2727902904743835, "impact_velocity": -5.431640042762125, "x_impact": 831.3181834354791, "max_mach_number": 0.8291051967155727, "out_of_rail_time": 0.3584672601185051, "apogee_y": 345.91224843243464, "out_of_rail_velocity": 25.670129914162544, "apogee_x": 358.5330526920962, "initial_stability_margin": 2.5951531683865317, "t_final": 300.7621088033678, "apogee_time": 25.821373809216155, "frontal_surface_wind": 0.7773159384482726, "y_impact": 246.1549671929838} -{"apogee": 3979.2035632610323, "out_of_rail_stability_margin": 2.692470624552443, "lateral_surface_wind": -2.1346437681667076, "impact_velocity": -5.528379223464396, "x_impact": 894.1139608326384, "max_mach_number": 0.9303101910914108, "out_of_rail_time": 0.3412274987549514, "apogee_y": 436.7891259749145, "out_of_rail_velocity": 27.249408182505174, "apogee_x": 255.13297124531093, "initial_stability_margin": 2.6232859096330214, "t_final": 319.6286090973404, "apogee_time": 27.550455847396695, "frontal_surface_wind": 1.033511630026207, "y_impact": 134.22603548968263} -{"apogee": 3638.963814259277, "out_of_rail_stability_margin": 2.6609268452164687, "lateral_surface_wind": -2.1751563247869488, "impact_velocity": -5.535538076901732, "x_impact": 879.0953440803946, "max_mach_number": 0.8637539324688901, "out_of_rail_time": 0.35209485346191705, "apogee_y": 508.9296732957843, "out_of_rail_velocity": 26.250358129449182, "apogee_x": 307.9230852355077, "initial_stability_margin": 2.5917545449334862, "t_final": 307.1827315990417, "apogee_time": 26.553528437925497, "frontal_surface_wind": 1.207035838140003, "y_impact": 384.96761589756727} -{"apogee": 3917.527469601626, "out_of_rail_stability_margin": 2.6433843106693438, "lateral_surface_wind": -1.372350576786065, "impact_velocity": -5.412512657094825, "x_impact": 817.5794326262605, "max_mach_number": 0.9282079261361198, "out_of_rail_time": 0.34148566214420706, "apogee_y": 396.9344677543358, "out_of_rail_velocity": 27.263708777298003, "apogee_x": 286.3478992963154, "initial_stability_margin": 2.5726737975021368, "t_final": 327.2062707560983, "apogee_time": 27.25717093142447, "frontal_surface_wind": 0.5838399490327286, "y_impact": 283.13097691626035} -{"apogee": 4092.3310010405635, "out_of_rail_stability_margin": 2.760498347251632, "lateral_surface_wind": -2.0165779690066943, "impact_velocity": -5.554244240783383, "x_impact": 1105.2545417438057, "max_mach_number": 0.9598393838006652, "out_of_rail_time": 0.3355627267351207, "apogee_y": 621.2671809889723, "out_of_rail_velocity": 27.843212320995864, "apogee_x": 472.6043826686323, "initial_stability_margin": 2.6961104670370832, "t_final": 333.4810611756344, "apogee_time": 27.83538396081328, "frontal_surface_wind": 1.0143954090478586, "y_impact": 537.9545058887061} -{"apogee": 1767.3359032799403, "out_of_rail_stability_margin": 2.741884184411714, "lateral_surface_wind": -2.0543989893908723, "impact_velocity": -5.373475502327965, "x_impact": 496.5197281774549, "max_mach_number": 0.5112431937788704, "out_of_rail_time": 0.4416751902759571, "apogee_y": 266.96786795603305, "out_of_rail_velocity": 20.018842639015816, "apogee_x": 147.006513922652, "initial_stability_margin": 2.649992021262757, "t_final": 213.28900426382168, "apogee_time": 19.386235959635265, "frontal_surface_wind": 1.0371505279272204, "y_impact": 115.94920908613612} -{"apogee": 3302.165258047892, "out_of_rail_stability_margin": 2.645957939329937, "lateral_surface_wind": -2.0479651353016504, "impact_velocity": -5.317147969170302, "x_impact": 708.2307064196355, "max_mach_number": 0.8077236650085796, "out_of_rail_time": 0.3619958660925074, "apogee_y": 357.3087189109589, "out_of_rail_velocity": 25.356510577462533, "apogee_x": 234.74004898543893, "initial_stability_margin": 2.5746835045373264, "t_final": 298.77038570667105, "apogee_time": 25.39154406515975, "frontal_surface_wind": 0.9997635461010097, "y_impact": 49.20889783568363} -{"apogee": 3547.4348713094364, "out_of_rail_stability_margin": 2.6938622172767097, "lateral_surface_wind": -3.028984609067689, "impact_velocity": -5.428956539153816, "x_impact": 1124.824783768377, "max_mach_number": 0.8597922607961519, "out_of_rail_time": 0.35330847858745856, "apogee_y": 653.3256923609002, "out_of_rail_velocity": 26.127424464449007, "apogee_x": 414.8065196644214, "initial_stability_margin": 2.622923025623485, "t_final": 314.5936267309556, "apogee_time": 26.190890538195443, "frontal_surface_wind": 0.6531105796476455, "y_impact": 188.00889776166827} -{"apogee": 4565.608820385068, "out_of_rail_stability_margin": 2.5329959737351904, "lateral_surface_wind": -0.6073506810851058, "impact_velocity": -5.3728403487078795, "x_impact": 839.4741375536727, "max_mach_number": 1.1060900912313858, "out_of_rail_time": 0.3139065194048716, "apogee_y": 430.5962624265848, "out_of_rail_velocity": 30.301575515524085, "apogee_x": 503.30308757661675, "initial_stability_margin": 2.468396615393478, "t_final": 362.47773686444935, "apogee_time": 28.828653044277424, "frontal_surface_wind": -0.7310109910368062, "y_impact": 478.45213932969517} -{"apogee": 3967.3654132651895, "out_of_rail_stability_margin": 2.571076070998705, "lateral_surface_wind": -1.99158506500279, "impact_velocity": -5.268312757078617, "x_impact": 1017.9111761045106, "max_mach_number": 0.9515743839874814, "out_of_rail_time": 0.33800782037341215, "apogee_y": 470.39155930847346, "out_of_rail_velocity": 27.612443495698244, "apogee_x": 311.7251890896672, "initial_stability_margin": 2.5000252817466717, "t_final": 338.18278047043407, "apogee_time": 27.32441415269619, "frontal_surface_wind": 0.661064007583284, "y_impact": 341.07330403591243} -{"apogee": 2294.8365840139872, "out_of_rail_stability_margin": 2.666630719089039, "lateral_surface_wind": -2.075754529733488, "impact_velocity": -5.38982871951169, "x_impact": 734.2143752165881, "max_mach_number": 0.6181951239680057, "out_of_rail_time": 0.4075303670290261, "apogee_y": 433.4130381194627, "out_of_rail_velocity": 21.98110470488578, "apogee_x": 305.96681541261427, "initial_stability_margin": 2.5799091012504483, "t_final": 244.38266095094443, "apogee_time": 21.757701556753922, "frontal_surface_wind": 0.9937200599167011, "y_impact": 289.05626809345944} -{"apogee": 3837.1846781718937, "out_of_rail_stability_margin": 2.6282843915240064, "lateral_surface_wind": -2.1391836548453993, "impact_velocity": -5.362632636852039, "x_impact": 976.6519626753851, "max_mach_number": 0.9190156557097239, "out_of_rail_time": 0.3439072043441515, "apogee_y": 578.9629906675127, "out_of_rail_velocity": 27.038038655939047, "apogee_x": 411.00383468284264, "initial_stability_margin": 2.5540410341042477, "t_final": 325.9218736832987, "apogee_time": 27.00176645064785, "frontal_surface_wind": 0.7858636232616016, "y_impact": 249.4506684330063} -{"apogee": 3162.0438226230312, "out_of_rail_stability_margin": 2.7328849258893553, "lateral_surface_wind": -1.638761840805496, "impact_velocity": -5.395343833001744, "x_impact": 844.1870511399167, "max_mach_number": 0.7792091783122906, "out_of_rail_time": 0.3674463854811297, "apogee_y": 420.19781650205664, "out_of_rail_velocity": 24.900222831594572, "apogee_x": 339.76683876816634, "initial_stability_margin": 2.6620697649960867, "t_final": 287.01233179444233, "apogee_time": 24.976676638017814, "frontal_surface_wind": 0.8593053223041439, "y_impact": 462.0407070047858} -{"apogee": 4352.0247961984, "out_of_rail_stability_margin": 2.626611595855819, "lateral_surface_wind": -1.8937555078169883, "impact_velocity": -5.392794172015021, "x_impact": 962.8727806747361, "max_mach_number": 1.0372805852730227, "out_of_rail_time": 0.32384171296762, "apogee_y": 395.6608488212353, "out_of_rail_velocity": 29.13470135557598, "apogee_x": 228.2604668249074, "initial_stability_margin": 2.5603203685230147, "t_final": 343.7393647498919, "apogee_time": 28.371489061774824, "frontal_surface_wind": 1.264568195288906, "y_impact": 184.34023895795883} -{"apogee": 4146.007851571851, "out_of_rail_stability_margin": 2.637004980862002, "lateral_surface_wind": -0.3905755825375163, "impact_velocity": -5.334732373448842, "x_impact": 795.5911558269406, "max_mach_number": 0.9895844693704382, "out_of_rail_time": 0.33162340459464956, "apogee_y": 345.64367306425197, "out_of_rail_velocity": 28.2767682637359, "apogee_x": 446.4944611358295, "initial_stability_margin": 2.568481675681631, "t_final": 330.47502668567665, "apogee_time": 27.831080805830787, "frontal_surface_wind": 0.2504908240133674, "y_impact": 638.2771905464065} -{"apogee": 4349.896920418719, "out_of_rail_stability_margin": 2.7086905878056458, "lateral_surface_wind": -1.5568106454302921, "impact_velocity": -5.604775258079839, "x_impact": 1063.7299793355846, "max_mach_number": 1.0079468468643857, "out_of_rail_time": 0.3285746200198895, "apogee_y": 508.6116792339012, "out_of_rail_velocity": 28.617029613781707, "apogee_x": 394.3825604677548, "initial_stability_margin": 2.6440012190146, "t_final": 347.4337089946996, "apogee_time": 28.59128495178372, "frontal_surface_wind": 1.0441985584502618, "y_impact": 510.81671022610493} -{"apogee": 3634.4736117090765, "out_of_rail_stability_margin": 2.5515041445360387, "lateral_surface_wind": -3.02489218570239, "impact_velocity": -5.245607836551987, "x_impact": 1176.6916690870855, "max_mach_number": 0.8912069280023065, "out_of_rail_time": 0.34824257336806885, "apogee_y": 663.0686309976074, "out_of_rail_velocity": 26.578707823740814, "apogee_x": 443.7532182925629, "initial_stability_margin": 2.4774051786608107, "t_final": 320.0845429333484, "apogee_time": 26.32122080815705, "frontal_surface_wind": 0.6718098362581841, "y_impact": 190.66426357890762} -{"apogee": 3648.0846939814533, "out_of_rail_stability_margin": 2.678578174964422, "lateral_surface_wind": -0.5629349814093646, "impact_velocity": -5.326159561364413, "x_impact": 687.709448628802, "max_mach_number": 0.8798393535192937, "out_of_rail_time": 0.3492380329004421, "apogee_y": 438.6980410036848, "out_of_rail_velocity": 26.488522541269315, "apogee_x": 460.13310351110334, "initial_stability_margin": 2.609519584456366, "t_final": 326.2773252027804, "apogee_time": 26.466184706388795, "frontal_surface_wind": -0.7657389408517723, "y_impact": 469.92106870714235} -{"apogee": 2852.954151982335, "out_of_rail_stability_margin": 2.518944093911133, "lateral_surface_wind": -1.5537490912410514, "impact_velocity": -5.360670241228237, "x_impact": 732.4130247374272, "max_mach_number": 0.723834929177564, "out_of_rail_time": 0.380726238892519, "apogee_y": 379.8610448108714, "out_of_rail_velocity": 23.828002817378707, "apogee_x": 283.58294756135683, "initial_stability_margin": 2.43645106080518, "t_final": 270.78364895486453, "apogee_time": 23.87178035697664, "frontal_surface_wind": 1.04874867182862, "y_impact": 377.4268158721209} -{"apogee": 2511.2833463117936, "out_of_rail_stability_margin": 2.68311102766907, "lateral_surface_wind": -1.315450569622288, "impact_velocity": -5.431567176263423, "x_impact": 552.504394207543, "max_mach_number": 0.6571615639052869, "out_of_rail_time": 0.39606082309412205, "apogee_y": 354.2574248704173, "out_of_rail_velocity": 22.74792697271073, "apogee_x": 312.3160378493829, "initial_stability_margin": 2.6049228493431436, "t_final": 248.5660217277003, "apogee_time": 22.647188925350907, "frontal_surface_wind": 0.5318356541163891, "y_impact": 200.46341645919497} -{"apogee": 3539.8324062241923, "out_of_rail_stability_margin": 2.6509641402626727, "lateral_surface_wind": -1.1257243800473176, "impact_velocity": -5.410892004326897, "x_impact": 937.3896527268145, "max_mach_number": 0.8535756800263132, "out_of_rail_time": 0.35386303929378315, "apogee_y": 385.35687407391924, "out_of_rail_velocity": 26.057802579674465, "apogee_x": 368.2346110083671, "initial_stability_margin": 2.579459981482678, "t_final": 306.7017259835234, "apogee_time": 26.153932457129518, "frontal_surface_wind": 1.2275694010033482, "y_impact": 524.8047322613755} -{"apogee": 2971.3960712391217, "out_of_rail_stability_margin": 2.618925693905058, "lateral_surface_wind": -2.5530801701238532, "impact_velocity": -5.309884710453624, "x_impact": 1020.2404151884294, "max_mach_number": 0.7505193847691919, "out_of_rail_time": 0.3757562182497809, "apogee_y": 561.3806544350845, "out_of_rail_velocity": 24.28911801253151, "apogee_x": 404.29682449209764, "initial_stability_margin": 2.53909714674132, "t_final": 286.95309030116306, "apogee_time": 24.29092044639541, "frontal_surface_wind": 1.1623730905905405, "y_impact": 307.02388643527246} -{"apogee": 2862.2613569276828, "out_of_rail_stability_margin": 2.6226226017731595, "lateral_surface_wind": -0.7076831763383725, "impact_velocity": -5.428798969180416, "x_impact": 726.5801971058385, "max_mach_number": 0.7253602463863107, "out_of_rail_time": 0.37987816726715845, "apogee_y": 372.4007902758846, "out_of_rail_velocity": 23.897400583638827, "apogee_x": 397.5525135495177, "initial_stability_margin": 2.54488174069128, "t_final": 272.34958743433225, "apogee_time": 23.93481517979453, "frontal_surface_wind": 0.8653053524256452, "y_impact": 480.44329563932655} -{"apogee": 3928.954421817961, "out_of_rail_stability_margin": 2.586548521582857, "lateral_surface_wind": -1.4314598075375495, "impact_velocity": -5.395650295975163, "x_impact": 1013.129391720412, "max_mach_number": 0.9302782285377175, "out_of_rail_time": 0.34109998023590055, "apogee_y": 398.8922682261653, "out_of_rail_velocity": 27.267575396514072, "apogee_x": 384.85790129029783, "initial_stability_margin": 2.515945986922544, "t_final": 328.799148090484, "apogee_time": 27.306558077034424, "frontal_surface_wind": 1.21034409760169, "y_impact": 383.44672373091623} -{"apogee": 3708.4040155489097, "out_of_rail_stability_margin": 2.699921788968785, "lateral_surface_wind": -2.089112032105647, "impact_velocity": -5.410091845680168, "x_impact": 895.8004107722035, "max_mach_number": 0.8854718872894304, "out_of_rail_time": 0.34874342335847536, "apogee_y": 451.6042614103806, "out_of_rail_velocity": 26.577923827132278, "apogee_x": 300.88116877290344, "initial_stability_margin": 2.6288567327156875, "t_final": 321.42210527622007, "apogee_time": 26.674039940173397, "frontal_surface_wind": 1.3505004513610572, "y_impact": 310.05235819373604} -{"apogee": 3498.453361405082, "out_of_rail_stability_margin": 2.613855017747848, "lateral_surface_wind": -0.7169839000264105, "impact_velocity": -5.593081075583184, "x_impact": 677.7825589499499, "max_mach_number": 0.8335123959561044, "out_of_rail_time": 0.3581369102143031, "apogee_y": 314.27165869697325, "out_of_rail_velocity": 25.671426212989342, "apogee_x": 300.33091925693526, "initial_stability_margin": 2.5412864683178626, "t_final": 301.9822357282604, "apogee_time": 26.151375428878193, "frontal_surface_wind": 0.8576146676169643, "y_impact": 446.0028331213504} -{"apogee": 3641.639423977434, "out_of_rail_stability_margin": 2.626288110247179, "lateral_surface_wind": -3.0507547971447835, "impact_velocity": -5.4427585372233525, "x_impact": 1057.291014162262, "max_mach_number": 0.876859857450283, "out_of_rail_time": 0.3504739833978526, "apogee_y": 633.6818496644762, "out_of_rail_velocity": 26.411322171219773, "apogee_x": 345.0955296205533, "initial_stability_margin": 2.5556221504920407, "t_final": 317.7477091959837, "apogee_time": 26.483755627588813, "frontal_surface_wind": 0.5423987084375479, "y_impact": 160.78551975428493} -{"apogee": 2936.9217127237443, "out_of_rail_stability_margin": 2.675591593145233, "lateral_surface_wind": -1.5206997814399628, "impact_velocity": -5.417960757986287, "x_impact": 729.0636021338988, "max_mach_number": 0.7369417103967817, "out_of_rail_time": 0.3774185935332728, "apogee_y": 355.08471944554867, "out_of_rail_velocity": 24.188612240063073, "apogee_x": 272.56445441450427, "initial_stability_margin": 2.6007515140828743, "t_final": 273.64887833072913, "apogee_time": 24.18846637747542, "frontal_surface_wind": 1.0961214302818543, "y_impact": 347.39058561948383} -{"apogee": 2378.3946805864593, "out_of_rail_stability_margin": 2.6499368581414284, "lateral_surface_wind": -1.330084092358109, "impact_velocity": -5.441273337362069, "x_impact": 618.8764837724488, "max_mach_number": 0.6294996859564361, "out_of_rail_time": 0.4036008803583337, "apogee_y": 343.6500383219495, "out_of_rail_velocity": 22.24513236639956, "apogee_x": 315.62547035742153, "initial_stability_margin": 2.5663391910808255, "t_final": 245.89984774212704, "apogee_time": 22.117489127001157, "frontal_surface_wind": 0.6746046982844763, "y_impact": 288.53037659512205} -{"apogee": 3157.32693278963, "out_of_rail_stability_margin": 2.6392097366817295, "lateral_surface_wind": -1.9705931338831721, "impact_velocity": -5.356644515073772, "x_impact": 780.1828270559997, "max_mach_number": 0.7808879058147344, "out_of_rail_time": 0.3674644236662521, "apogee_y": 389.13615668876446, "out_of_rail_velocity": 24.876504123768008, "apogee_x": 216.21669412888838, "initial_stability_margin": 2.5670413132518455, "t_final": 288.8070975131973, "apogee_time": 24.93995659641395, "frontal_surface_wind": 1.3166925794107733, "y_impact": 260.7493349265034} -{"apogee": 2575.5875011024004, "out_of_rail_stability_margin": 2.6451418674182867, "lateral_surface_wind": -2.0111639225236955, "impact_velocity": -5.432443443173587, "x_impact": 772.5660824563837, "max_mach_number": 0.6687132251076618, "out_of_rail_time": 0.3938689399240561, "apogee_y": 448.64756598491493, "out_of_rail_velocity": 22.864597497941233, "apogee_x": 327.62511281253626, "initial_stability_margin": 2.5605360503316104, "t_final": 250.60796952750036, "apogee_time": 22.899721967426846, "frontal_surface_wind": 1.0250875219802649, "y_impact": 368.5225869711558} -{"apogee": 4026.036352355903, "out_of_rail_stability_margin": 2.824643397037172, "lateral_surface_wind": -2.127112749755341, "impact_velocity": -5.422853191478892, "x_impact": 1195.0706287005162, "max_mach_number": 0.9549878304771933, "out_of_rail_time": 0.33650091958211553, "apogee_y": 618.6062522713746, "out_of_rail_velocity": 27.81169626928977, "apogee_x": 504.36896489463805, "initial_stability_margin": 2.762182977107532, "t_final": 342.84034130995855, "apogee_time": 27.580121589337885, "frontal_surface_wind": 0.832994275196915, "y_impact": 501.71646908013156} -{"apogee": 3458.687709597184, "out_of_rail_stability_margin": 2.638731797841234, "lateral_surface_wind": -1.8823582756345654, "impact_velocity": -5.368389677675814, "x_impact": 921.1116214988551, "max_mach_number": 0.837581955958121, "out_of_rail_time": 0.35544270726965493, "apogee_y": 463.4469661915553, "out_of_rail_velocity": 25.9021972781813, "apogee_x": 332.59335271958423, "initial_stability_margin": 2.573239781783691, "t_final": 307.49476637346055, "apogee_time": 25.910399046605598, "frontal_surface_wind": 0.8548375434771859, "y_impact": 392.13982017419744} -{"apogee": 3720.5193499593643, "out_of_rail_stability_margin": 2.73947229821363, "lateral_surface_wind": -2.1198201710860074, "impact_velocity": -5.456636413653146, "x_impact": 1018.2626161453445, "max_mach_number": 0.8857575972341009, "out_of_rail_time": 0.3476546030892129, "apogee_y": 480.19559746565267, "out_of_rail_velocity": 26.642733589152186, "apogee_x": 317.6155129302608, "initial_stability_margin": 2.6738866737287426, "t_final": 318.9053345480891, "apogee_time": 26.747038337105156, "frontal_surface_wind": 0.9766141152104849, "y_impact": 333.5182321052465} -{"apogee": 2243.5457423798316, "out_of_rail_stability_margin": 2.664180999018433, "lateral_surface_wind": -2.5221150716688996, "impact_velocity": -5.540526187135611, "x_impact": 600.7060483189845, "max_mach_number": 0.6026482782260907, "out_of_rail_time": 0.4114591813523246, "apogee_y": 325.36873290814947, "out_of_rail_velocity": 21.72451714088452, "apogee_x": 157.46561602029453, "initial_stability_margin": 2.5789858962097596, "t_final": 230.49973615288917, "apogee_time": 21.574375676955633, "frontal_surface_wind": 1.2281144580490992, "y_impact": 110.78917322611139} -{"apogee": 3231.6749426367237, "out_of_rail_stability_margin": 2.814533019561925, "lateral_surface_wind": -1.2938168773336698, "impact_velocity": -5.471655556583598, "x_impact": 679.1630581214939, "max_mach_number": 0.792535495008284, "out_of_rail_time": 0.3658187513283653, "apogee_y": 358.53879223470085, "out_of_rail_velocity": 25.083248166485177, "apogee_x": 328.1302596887889, "initial_stability_margin": 2.7428282489588547, "t_final": 290.9096659127836, "apogee_time": 25.222693174530523, "frontal_surface_wind": 0.5824922763741689, "y_impact": 103.01436225855637} -{"apogee": 3608.708177673826, "out_of_rail_stability_margin": 2.749995411826137, "lateral_surface_wind": -2.571702750800494, "impact_velocity": -5.587395342202454, "x_impact": 909.5891795839964, "max_mach_number": 0.8525401389188365, "out_of_rail_time": 0.35387220021759697, "apogee_y": 485.43068167522233, "out_of_rail_velocity": 26.04909609549996, "apogee_x": 241.44235621525957, "initial_stability_margin": 2.6821792026691975, "t_final": 305.3651070986276, "apogee_time": 26.521466303603574, "frontal_surface_wind": 1.1205688369456932, "y_impact": 194.56278768704692} -{"apogee": 2769.0976355218663, "out_of_rail_stability_margin": 2.7593567744949463, "lateral_surface_wind": -2.167325139725119, "impact_velocity": -5.409233574362243, "x_impact": 739.8836964933075, "max_mach_number": 0.7043213969045825, "out_of_rail_time": 0.3840036798233567, "apogee_y": 420.88606723944497, "out_of_rail_velocity": 23.61253425517734, "apogee_x": 259.9492435676793, "initial_stability_margin": 2.6850512323398226, "t_final": 257.7545016358819, "apogee_time": 23.6206068538511, "frontal_surface_wind": 0.9630950342971777, "y_impact": 247.6529577275772} -{"apogee": 4298.202092637675, "out_of_rail_stability_margin": 2.6390436629803666, "lateral_surface_wind": -2.3149287564000973, "impact_velocity": -5.4718952519360045, "x_impact": 1156.0347137117049, "max_mach_number": 1.0125051627780508, "out_of_rail_time": 0.3277105501646532, "apogee_y": 471.2195115237705, "out_of_rail_velocity": 28.677013505042275, "apogee_x": 306.11624461090173, "initial_stability_margin": 2.5718440055958283, "t_final": 353.75365134126326, "apogee_time": 28.31777016503855, "frontal_surface_wind": 0.9824501712680501, "y_impact": 183.63665317975688} -{"apogee": 3527.724677894498, "out_of_rail_stability_margin": 2.6410252751888743, "lateral_surface_wind": -2.056308627895792, "impact_velocity": -5.477292629338694, "x_impact": 1122.275533641359, "max_mach_number": 0.8482818934855256, "out_of_rail_time": 0.354317365407538, "apogee_y": 511.5055728500684, "out_of_rail_velocity": 26.0032741992269, "apogee_x": 445.3624542402517, "initial_stability_margin": 2.573556786407415, "t_final": 301.75298273654744, "apogee_time": 26.178824122543983, "frontal_surface_wind": 1.104086733283574, "y_impact": 383.46351609558025} -{"apogee": 4142.383117615634, "out_of_rail_stability_margin": 2.6822473389722394, "lateral_surface_wind": -2.3369905185428905, "impact_velocity": -5.320759155289924, "x_impact": 1196.2245218957776, "max_mach_number": 0.99251834465073, "out_of_rail_time": 0.330330910781318, "apogee_y": 532.5050015124885, "out_of_rail_velocity": 28.397676968609296, "apogee_x": 377.7359634519105, "initial_stability_margin": 2.615459711116778, "t_final": 339.4365808601267, "apogee_time": 27.78056226073247, "frontal_surface_wind": 0.9287512059068105, "y_impact": 263.1857550174817} -{"apogee": 4279.338450779423, "out_of_rail_stability_margin": 2.3639567246376347, "lateral_surface_wind": -3.019992358336574, "impact_velocity": -5.334068795565938, "x_impact": 1182.4214135422922, "max_mach_number": 1.0352872375840294, "out_of_rail_time": 0.32465201520081505, "apogee_y": 604.7640625718146, "out_of_rail_velocity": 29.012233568975248, "apogee_x": 365.5810475028483, "initial_stability_margin": 2.294505100650856, "t_final": 350.0006504190154, "apogee_time": 28.113878365599916, "frontal_surface_wind": 0.6935036746876879, "y_impact": 62.22542183658243} -{"apogee": 3910.837478667162, "out_of_rail_stability_margin": 2.4211677163223353, "lateral_surface_wind": -2.6300498765932545, "impact_velocity": -5.335308955889218, "x_impact": 946.7295965894041, "max_mach_number": 0.9326780248653063, "out_of_rail_time": 0.3411374738164747, "apogee_y": 403.65795148586403, "out_of_rail_velocity": 27.240059655449752, "apogee_x": 130.21397064963446, "initial_stability_margin": 2.3472066018650057, "t_final": 342.174275274051, "apogee_time": 27.19337053907052, "frontal_surface_wind": 0.8718146672750271, "y_impact": 84.26231188117605} -{"apogee": 3885.7822762236833, "out_of_rail_stability_margin": 2.704025756773906, "lateral_surface_wind": -1.9706891753431186, "impact_velocity": -5.3133606134240035, "x_impact": 1148.7653869741796, "max_mach_number": 0.9333149969796032, "out_of_rail_time": 0.34030985149281007, "apogee_y": 483.43477028947086, "out_of_rail_velocity": 27.416185417793663, "apogee_x": 355.28698385129684, "initial_stability_margin": 2.636715260125425, "t_final": 335.38100271319644, "apogee_time": 27.103720739739064, "frontal_surface_wind": 0.789263581445051, "y_impact": 232.10922272561308} -{"apogee": 4047.8954987674506, "out_of_rail_stability_margin": 2.698391479232595, "lateral_surface_wind": -0.618488051316642, "impact_velocity": -5.527050407284676, "x_impact": 1031.8313070063111, "max_mach_number": 0.9596758480006217, "out_of_rail_time": 0.3370395029465737, "apogee_y": 580.8343057414818, "out_of_rail_velocity": 27.747822038184175, "apogee_x": 730.6098009382142, "initial_stability_margin": 2.630897577913017, "t_final": 325.0883994752319, "apogee_time": 27.678428170495692, "frontal_surface_wind": -0.7216123954102356, "y_impact": 639.0609399876021} -{"apogee": 2617.878437645465, "out_of_rail_stability_margin": 2.5722491146398796, "lateral_surface_wind": -2.377320751716632, "impact_velocity": -5.457111934515049, "x_impact": 635.0317300418537, "max_mach_number": 0.6729698743515994, "out_of_rail_time": 0.39255917053516215, "apogee_y": 343.72965872440216, "out_of_rail_velocity": 23.034773026570665, "apogee_x": 154.0934855102705, "initial_stability_margin": 2.4928876082847222, "t_final": 260.67781707243705, "apogee_time": 23.06361672306557, "frontal_surface_wind": 0.8200302004744638, "y_impact": 85.46617724218046} -{"apogee": 2514.345606137925, "out_of_rail_stability_margin": 2.6469481387522684, "lateral_surface_wind": -2.1204148207558124, "impact_velocity": -5.340318253306006, "x_impact": 764.1377288936701, "max_mach_number": 0.6619661916651003, "out_of_rail_time": 0.3949358392604519, "apogee_y": 469.54798628334044, "out_of_rail_velocity": 22.812347025672818, "apogee_x": 359.4364135108585, "initial_stability_margin": 2.56498209022735, "t_final": 253.43435320008635, "apogee_time": 22.607382646975744, "frontal_surface_wind": 0.8351822145152915, "y_impact": 264.26126341416915} -{"apogee": 3261.5934236230173, "out_of_rail_stability_margin": 2.5159061531341034, "lateral_surface_wind": -3.0590128798642566, "impact_velocity": -5.223771518201722, "x_impact": 923.8959765773262, "max_mach_number": 0.8128813887533504, "out_of_rail_time": 0.3628509939917544, "apogee_y": 555.2850550021882, "out_of_rail_velocity": 25.288411050983274, "apogee_x": 263.4899539946495, "initial_stability_margin": 2.4376348203112888, "t_final": 309.5083543489689, "apogee_time": 25.188171871691136, "frontal_surface_wind": 0.4937017237575898, "y_impact": 94.52381301599156} -{"apogee": 3416.6727541261275, "out_of_rail_stability_margin": 2.765687928748945, "lateral_surface_wind": -2.0069889526433293, "impact_velocity": -5.462610493155209, "x_impact": 966.8316733823216, "max_mach_number": 0.826075925380445, "out_of_rail_time": 0.3584704408691338, "apogee_y": 485.38645092629105, "out_of_rail_velocity": 25.66942133919407, "apogee_x": 316.8155460434843, "initial_stability_margin": 2.698216032205748, "t_final": 300.13896847838794, "apogee_time": 25.834186206336643, "frontal_surface_wind": 0.6917717620556942, "y_impact": 289.7491456450266} -{"apogee": 3941.81943345955, "out_of_rail_stability_margin": 2.6525682947752167, "lateral_surface_wind": -0.3959251258921717, "impact_velocity": -5.334455822452439, "x_impact": 1019.1846588587468, "max_mach_number": 0.9447014464629859, "out_of_rail_time": 0.33851733217532404, "apogee_y": 495.2048897578799, "out_of_rail_velocity": 27.544087215965195, "apogee_x": 641.7035468577942, "initial_stability_margin": 2.584583107495669, "t_final": 333.2973556316666, "apogee_time": 27.29030782210982, "frontal_surface_wind": 0.24194675711131988, "y_impact": 815.6890334589419} -{"apogee": 3550.843230013556, "out_of_rail_stability_margin": 2.5769876684210242, "lateral_surface_wind": -2.068381133274204, "impact_velocity": -5.348432572591763, "x_impact": 1014.0728584714832, "max_mach_number": 0.8601021414736693, "out_of_rail_time": 0.3536458710501893, "apogee_y": 496.4264709696775, "out_of_rail_velocity": 26.112660332426636, "apogee_x": 333.65777713662305, "initial_stability_margin": 2.503038419919197, "t_final": 314.7612074038619, "apogee_time": 26.170999648493286, "frontal_surface_wind": 1.0089776571883378, "y_impact": 334.81589370719047} -{"apogee": 4603.5585501763735, "out_of_rail_stability_margin": 2.566617031771793, "lateral_surface_wind": -1.9369668784888099, "impact_velocity": -5.44839033675325, "x_impact": 806.1050615292977, "max_mach_number": 1.0965631147105968, "out_of_rail_time": 0.31565793497420974, "apogee_y": 272.1767378714174, "out_of_rail_velocity": 30.10192685725226, "apogee_x": 49.95458918852604, "initial_stability_margin": 2.501941078346636, "t_final": 365.31395589618836, "apogee_time": 29.028584588880207, "frontal_surface_wind": 1.3656778388844906, "y_impact": 81.34043770778301} -{"apogee": 3563.360657594688, "out_of_rail_stability_margin": 2.688560315274291, "lateral_surface_wind": -3.0009126559185275, "impact_velocity": -5.464979192114559, "x_impact": 1094.237703033238, "max_mach_number": 0.8607817276194304, "out_of_rail_time": 0.3528390082459432, "apogee_y": 593.8706235803626, "out_of_rail_velocity": 26.128240740508115, "apogee_x": 382.29346778071437, "initial_stability_margin": 2.6180411103192225, "t_final": 315.4539859540528, "apogee_time": 26.24981074202568, "frontal_surface_wind": 0.7718966399490532, "y_impact": 128.78901834983736} -{"apogee": 4530.65939624177, "out_of_rail_stability_margin": 2.589757164539305, "lateral_surface_wind": -1.8315288325283032, "impact_velocity": -5.4616829451442035, "x_impact": 1195.1613884800458, "max_mach_number": 1.0852666548747325, "out_of_rail_time": 0.31769346330492704, "apogee_y": 507.07721248575325, "out_of_rail_velocity": 29.926158630722508, "apogee_x": 429.4301353686226, "initial_stability_margin": 2.5232046525633574, "t_final": 357.1676225754811, "apogee_time": 28.81983919962341, "frontal_surface_wind": 0.958917118006324, "y_impact": 427.4839605610708} -{"apogee": 3039.0075546241187, "out_of_rail_stability_margin": 2.5182217587150766, "lateral_surface_wind": -1.6520582262953871, "impact_velocity": -5.36243370514786, "x_impact": 850.4998236664293, "max_mach_number": 0.7580627740956913, "out_of_rail_time": 0.37323761191662497, "apogee_y": 439.9135124997228, "out_of_rail_velocity": 24.458697659516684, "apogee_x": 361.117850007477, "initial_stability_margin": 2.441508747329475, "t_final": 280.226584849826, "apogee_time": 24.552426374712272, "frontal_surface_wind": 0.8334564324247467, "y_impact": 478.50672363300833} -{"apogee": 4157.224247896307, "out_of_rail_stability_margin": 2.7081038594358224, "lateral_surface_wind": -1.387365197781963, "impact_velocity": -5.638214157634979, "x_impact": 991.8430971378995, "max_mach_number": 0.9646810534201022, "out_of_rail_time": 0.33460541165569146, "apogee_y": 499.27800239519263, "out_of_rail_velocity": 27.924786713021895, "apogee_x": 409.7610111899769, "initial_stability_margin": 2.644642969708716, "t_final": 342.28084687985546, "apogee_time": 28.070215373322124, "frontal_surface_wind": 0.5654448335142571, "y_impact": 377.9330629700442} -{"apogee": 3656.4913791689874, "out_of_rail_stability_margin": 2.7383186061691394, "lateral_surface_wind": -2.18762337932732, "impact_velocity": -5.386023040158587, "x_impact": 1096.8458808308817, "max_mach_number": 0.8826796103759104, "out_of_rail_time": 0.34884767748234935, "apogee_y": 657.4257565439245, "out_of_rail_velocity": 26.53291303584337, "apogee_x": 459.02504631932703, "initial_stability_margin": 2.6686422526569156, "t_final": 325.5017264786953, "apogee_time": 26.49195496364952, "frontal_surface_wind": 0.6578693357370274, "y_impact": 549.8719169564238} -{"apogee": 3418.655418273755, "out_of_rail_stability_margin": 2.548111209474924, "lateral_surface_wind": -1.8442319031541698, "impact_velocity": -5.5321053176573995, "x_impact": 898.2885651323048, "max_mach_number": 0.8213037735828991, "out_of_rail_time": 0.36106938398938976, "apogee_y": 428.38772163821017, "out_of_rail_velocity": 25.421299853127383, "apogee_x": 323.6073090924291, "initial_stability_margin": 2.4712582424936613, "t_final": 302.6607656615321, "apogee_time": 25.883337399020476, "frontal_surface_wind": 0.9342529587731538, "y_impact": 354.2407272890566} -{"apogee": 2576.249414752377, "out_of_rail_stability_margin": 2.5731276188352905, "lateral_surface_wind": -3.0749853116932533, "impact_velocity": -5.3130166110682415, "x_impact": 644.3883990919212, "max_mach_number": 0.673293280143792, "out_of_rail_time": 0.393899033079845, "apogee_y": 376.0360479093312, "out_of_rail_velocity": 22.95241509783667, "apogee_x": 115.89500060525778, "initial_stability_margin": 2.4875120263969235, "t_final": 261.47726333840063, "apogee_time": 22.833424712260555, "frontal_surface_wind": 1.0100771644667013, "y_impact": 71.64832349877774} -{"apogee": 3558.432006294579, "out_of_rail_stability_margin": 2.7734491334562454, "lateral_surface_wind": -2.511414053424426, "impact_velocity": -5.60641190886192, "x_impact": 958.4486372018805, "max_mach_number": 0.8437629039521833, "out_of_rail_time": 0.3544382898962098, "apogee_y": 476.9879154844599, "out_of_rail_velocity": 25.98721349268621, "apogee_x": 287.5783249730784, "initial_stability_margin": 2.709917826576819, "t_final": 303.83027055107846, "apogee_time": 26.35646517241548, "frontal_surface_wind": 1.2498515948187388, "y_impact": 192.14587691092666} -{"apogee": 3217.914817062222, "out_of_rail_stability_margin": 2.641184743635764, "lateral_surface_wind": -0.3866420309300803, "impact_velocity": -5.326938590348197, "x_impact": 904.7789078368656, "max_mach_number": 0.7987349424490876, "out_of_rail_time": 0.3653887282483548, "apogee_y": 422.8988606335745, "out_of_rail_velocity": 25.065198797018496, "apogee_x": 593.9593231439668, "initial_stability_margin": 2.5630274378419777, "t_final": 286.78272463035836, "apogee_time": 25.114693655145075, "frontal_surface_wind": 0.2565207175018791, "y_impact": 659.7446839475299} -{"apogee": 3160.9728017279926, "out_of_rail_stability_margin": 2.5926127877263965, "lateral_surface_wind": -1.6450012866364858, "impact_velocity": -5.401378613669603, "x_impact": 786.3430807139141, "max_mach_number": 0.7803008844806056, "out_of_rail_time": 0.36801099119152575, "apogee_y": 375.4731391100842, "out_of_rail_velocity": 24.830115416537947, "apogee_x": 275.43429262562415, "initial_stability_margin": 2.5168528959557332, "t_final": 298.8811492440967, "apogee_time": 24.949652554172737, "frontal_surface_wind": 0.8472996959663995, "y_impact": 409.7668567028593} -{"apogee": 4292.244163915308, "out_of_rail_stability_margin": 2.6439253628857413, "lateral_surface_wind": -0.7359735558529944, "impact_velocity": -5.361750373230142, "x_impact": 1050.2411580609935, "max_mach_number": 1.0240237057761474, "out_of_rail_time": 0.3256519602839948, "apogee_y": 501.8538554597512, "out_of_rail_velocity": 28.90960444928032, "apogee_x": 508.0765793815755, "initial_stability_margin": 2.578836417334865, "t_final": 355.9872402389877, "apogee_time": 28.23728559712271, "frontal_surface_wind": 0.8413749200528488, "y_impact": 681.5430871521178} -{"apogee": 3775.3869553348063, "out_of_rail_stability_margin": 2.688148969853837, "lateral_surface_wind": -2.019450683461389, "impact_velocity": -5.3771609318653555, "x_impact": 1100.0704118134333, "max_mach_number": 0.908789642716552, "out_of_rail_time": 0.34445668723215445, "apogee_y": 532.4692196887568, "out_of_rail_velocity": 26.953838969912884, "apogee_x": 348.7279382058168, "initial_stability_margin": 2.619019716479909, "t_final": 323.4886363971425, "apogee_time": 26.808843181422095, "frontal_surface_wind": 0.6545011565133695, "y_impact": 302.2112354138526} -{"apogee": 2575.145591276273, "out_of_rail_stability_margin": 2.6631357087878884, "lateral_surface_wind": -1.140469375408416, "impact_velocity": -5.5438937614822965, "x_impact": 769.2330632371137, "max_mach_number": 0.6643465126320034, "out_of_rail_time": 0.3951620406794776, "apogee_y": 368.3425039140865, "out_of_rail_velocity": 22.80410620567366, "apogee_x": 357.66604641592835, "initial_stability_margin": 2.5796953257425255, "t_final": 244.33653975521796, "apogee_time": 22.942310125660008, "frontal_surface_wind": 1.2138828682653753, "y_impact": 455.94603831287424} -{"apogee": 3836.471711420181, "out_of_rail_stability_margin": 2.667017004003926, "lateral_surface_wind": -1.227206551568989, "impact_velocity": -5.45400182620283, "x_impact": 852.0505249060111, "max_mach_number": 0.9129994188764075, "out_of_rail_time": 0.3445150288991918, "apogee_y": 518.5972890181375, "out_of_rail_velocity": 26.927268210441213, "apogee_x": 444.6835911558654, "initial_stability_margin": 2.595487943157898, "t_final": 324.74443739740457, "apogee_time": 27.078574087092683, "frontal_surface_wind": 0.42541987518480734, "y_impact": 555.8878596877629} -{"apogee": 4010.6953384561725, "out_of_rail_stability_margin": 2.464002268484364, "lateral_surface_wind": -1.862714642424987, "impact_velocity": -5.462204288905229, "x_impact": 1244.5940820918663, "max_mach_number": 0.94998633725057, "out_of_rail_time": 0.33861111915851255, "apogee_y": 569.487978424713, "out_of_rail_velocity": 27.541827685671844, "apogee_x": 493.85137220657333, "initial_stability_margin": 2.3920292352734216, "t_final": 333.625375523468, "apogee_time": 27.557040498400674, "frontal_surface_wind": 1.3098613685497305, "y_impact": 393.35035849172044} -{"apogee": 3706.0307836704987, "out_of_rail_stability_margin": 2.583711578381615, "lateral_surface_wind": -2.11884346937633, "impact_velocity": -5.468123248368863, "x_impact": 1029.5829589489958, "max_mach_number": 0.8902943993549388, "out_of_rail_time": 0.3477805071939829, "apogee_y": 554.19638877184, "out_of_rail_velocity": 26.650864281323287, "apogee_x": 421.3271321586491, "initial_stability_margin": 2.512348243124956, "t_final": 321.2346146299329, "apogee_time": 26.635521161542556, "frontal_surface_wind": 1.303358317615031, "y_impact": 423.18853187179104} -{"apogee": 3203.704867085375, "out_of_rail_stability_margin": 2.6361896204999016, "lateral_surface_wind": -1.9934030527748021, "impact_velocity": -5.47152194655686, "x_impact": 844.5351001178825, "max_mach_number": 0.7862332296429411, "out_of_rail_time": 0.3670357325724536, "apogee_y": 461.25781993981195, "out_of_rail_velocity": 24.93916724852146, "apogee_x": 330.76550441408267, "initial_stability_margin": 2.5611345968738, "t_final": 283.638126107935, "apogee_time": 25.130055279450705, "frontal_surface_wind": 1.0592115087028824, "y_impact": 370.58497758277565} -{"apogee": 3675.154764325895, "out_of_rail_stability_margin": 2.6160898421107, "lateral_surface_wind": -2.5764920820866926, "impact_velocity": -5.462077453779953, "x_impact": 1002.8910801404562, "max_mach_number": 0.8727779187250618, "out_of_rail_time": 0.34999385782400594, "apogee_y": 456.9945307638198, "out_of_rail_velocity": 26.415135178050363, "apogee_x": 248.9792069020418, "initial_stability_margin": 2.548668440693104, "t_final": 315.11464935082284, "apogee_time": 26.6331511001645, "frontal_surface_wind": 1.0192701891003384, "y_impact": 164.14721073634925} -{"apogee": 2194.886872124929, "out_of_rail_stability_margin": 2.716358427725219, "lateral_surface_wind": -1.2152660600376608, "impact_velocity": -5.572000479215992, "x_impact": 292.364578853013, "max_mach_number": 0.5896269695564149, "out_of_rail_time": 0.41506175885659474, "apogee_y": 231.81715860283992, "out_of_rail_velocity": 21.495272185050144, "apogee_x": 159.7733139493084, "initial_stability_margin": 2.6332485270902626, "t_final": 228.22210696832633, "apogee_time": 21.40635712743192, "frontal_surface_wind": 0.45841727032982443, "y_impact": 181.87811170920733} -{"apogee": 3135.1392583668926, "out_of_rail_stability_margin": 2.6915235462778755, "lateral_surface_wind": -0.40493360073831985, "impact_velocity": -5.476949140814326, "x_impact": 710.5103488161922, "max_mach_number": 0.7736807941559469, "out_of_rail_time": 0.36947883927517544, "apogee_y": 365.2779218331211, "out_of_rail_velocity": 24.719065881605236, "apogee_x": 425.40404985419275, "initial_stability_margin": 2.6170791235599915, "t_final": 285.5717560439459, "apogee_time": 24.913980242729963, "frontal_surface_wind": 0.22654738485031103, "y_impact": 594.9951047634355} -{"apogee": 3791.719882381318, "out_of_rail_stability_margin": 2.648773809818473, "lateral_surface_wind": -3.0388732666029923, "impact_velocity": -5.446837376548123, "x_impact": 988.2765318138839, "max_mach_number": 0.9021661184594282, "out_of_rail_time": 0.34609138739572287, "apogee_y": 576.0897173862894, "out_of_rail_velocity": 26.838074971747993, "apogee_x": 285.8095083006327, "initial_stability_margin": 2.579900082544529, "t_final": 314.13482230530605, "apogee_time": 26.96002004103505, "frontal_surface_wind": 0.6054341093317155, "y_impact": 106.89605309908201} -{"apogee": 2798.0127270117473, "out_of_rail_stability_margin": 2.756797801133879, "lateral_surface_wind": -2.5919477886905247, "impact_velocity": -5.498226320398508, "x_impact": 773.4978468662532, "max_mach_number": 0.7081952161758411, "out_of_rail_time": 0.38303517372996365, "apogee_y": 411.45409838610755, "out_of_rail_velocity": 23.67770656787867, "apogee_x": 218.284575572573, "initial_stability_margin": 2.6820038298009528, "t_final": 264.72426812175337, "apogee_time": 23.737096796128892, "frontal_surface_wind": 0.9793006832155073, "y_impact": 142.5380853147192} -{"apogee": 3367.4761678329664, "out_of_rail_stability_margin": 2.611886018805678, "lateral_surface_wind": -1.2113748823847046, "impact_velocity": -5.364509556109337, "x_impact": 532.2067448012161, "max_mach_number": 0.8233360456515665, "out_of_rail_time": 0.3595149809595572, "apogee_y": 306.65528081005255, "out_of_rail_velocity": 25.57605365478949, "apogee_x": 226.2616149870987, "initial_stability_margin": 2.5402973819710253, "t_final": 308.54518315622926, "apogee_time": 25.58206175285571, "frontal_surface_wind": 0.46860312071469457, "y_impact": 298.00928463578794} -{"apogee": 4072.9085484059774, "out_of_rail_stability_margin": 2.5375138361193956, "lateral_surface_wind": -1.881011778279444, "impact_velocity": -5.368333072159793, "x_impact": 1214.5878508847884, "max_mach_number": 0.9738905145353529, "out_of_rail_time": 0.3337346658688247, "apogee_y": 595.6089681689843, "out_of_rail_velocity": 28.049293670116224, "apogee_x": 488.7940404275169, "initial_stability_margin": 2.4697101212903574, "t_final": 344.89958290757016, "apogee_time": 27.636768424912237, "frontal_surface_wind": 0.857796359028206, "y_impact": 523.8655675872477} -{"apogee": 2939.471569290083, "out_of_rail_stability_margin": 2.6727240335009443, "lateral_surface_wind": -1.283751273482823, "impact_velocity": -5.337621059781061, "x_impact": 773.1872879376474, "max_mach_number": 0.7455677247593013, "out_of_rail_time": 0.3764983907223822, "apogee_y": 420.09672229945977, "out_of_rail_velocity": 24.250620584033356, "apogee_x": 447.55090928880696, "initial_stability_margin": 2.5958976969907552, "t_final": 283.58714971747895, "apogee_time": 24.16870462885772, "frontal_surface_wind": 0.6043525725437426, "y_impact": 201.6719721256532} -{"apogee": 4020.518805996462, "out_of_rail_stability_margin": 2.7453109055853164, "lateral_surface_wind": -2.5903307153528816, "impact_velocity": -5.407023683214867, "x_impact": 1095.1805863572442, "max_mach_number": 0.947998475533285, "out_of_rail_time": 0.3379161878965995, "apogee_y": 492.5333936837019, "out_of_rail_velocity": 27.67245509738939, "apogee_x": 265.4726052345393, "initial_stability_margin": 2.680730085775842, "t_final": 338.3690586164794, "apogee_time": 27.581240171402605, "frontal_surface_wind": 0.9835700038855845, "y_impact": 190.81775548093114} -{"apogee": 3512.3119264647435, "out_of_rail_stability_margin": 2.702205723095602, "lateral_surface_wind": -2.1116562613726937, "impact_velocity": -5.497573897247264, "x_impact": 921.0166975938744, "max_mach_number": 0.8423911063756621, "out_of_rail_time": 0.35675877354821756, "apogee_y": 478.4769439186013, "out_of_rail_velocity": 25.85160324649022, "apogee_x": 350.15094725928816, "initial_stability_margin": 2.631158304720757, "t_final": 300.7368278382232, "apogee_time": 26.150024413941996, "frontal_surface_wind": 0.8714332713914815, "y_impact": 358.4596422435106} -{"apogee": 1834.082613220456, "out_of_rail_stability_margin": 2.7732213287317817, "lateral_surface_wind": -2.391865887393097, "impact_velocity": -5.486117325483615, "x_impact": 491.00991756383326, "max_mach_number": 0.5212084413713458, "out_of_rail_time": 0.43689114228476095, "apogee_y": 287.15884712605583, "out_of_rail_velocity": 20.241395196199992, "apogee_x": 123.78750449557056, "initial_stability_margin": 2.68586009661287, "t_final": 211.76889333045716, "apogee_time": 19.74365249418217, "frontal_surface_wind": 0.7765829401666986, "y_impact": 72.06423266089445} -{"apogee": 3464.139027004489, "out_of_rail_stability_margin": 2.7454788072525136, "lateral_surface_wind": -1.6357425432460948, "impact_velocity": -5.489878386593806, "x_impact": 828.5249541917354, "max_mach_number": 0.8302689317241937, "out_of_rail_time": 0.35740274272473826, "apogee_y": 386.679477345048, "out_of_rail_velocity": 25.76239460646717, "apogee_x": 284.46909562556107, "initial_stability_margin": 2.6785603503497866, "t_final": 301.6050892820968, "apogee_time": 25.999605362811693, "frontal_surface_wind": 0.8650389240000965, "y_impact": 436.0263549799323} -{"apogee": 4064.2892210843315, "out_of_rail_stability_margin": 2.642592303350885, "lateral_surface_wind": -2.1442864622832376, "impact_velocity": -5.3356998858613744, "x_impact": 1013.592636179674, "max_mach_number": 0.9639552273168975, "out_of_rail_time": 0.33475838853390505, "apogee_y": 514.1392835967266, "out_of_rail_velocity": 27.93199982017477, "apogee_x": 344.0135978821114, "initial_stability_margin": 2.5779837015235887, "t_final": 343.2717693061167, "apogee_time": 27.66117348945267, "frontal_surface_wind": 0.7877332545674322, "y_impact": 382.27590884402446} -{"apogee": 4224.931120348938, "out_of_rail_stability_margin": 2.711380617634405, "lateral_surface_wind": -1.9736641121400136, "impact_velocity": -5.581039407685125, "x_impact": 1422.0719009742777, "max_mach_number": 0.9880941861501542, "out_of_rail_time": 0.3317574439714744, "apogee_y": 611.7939437920024, "out_of_rail_velocity": 28.26488207705554, "apogee_x": 579.3695303690579, "initial_stability_margin": 2.6463739675266282, "t_final": 343.6708296447663, "apogee_time": 28.22986794426036, "frontal_surface_wind": 1.1835904687181795, "y_impact": 456.09895262404336} -{"apogee": 3899.135309128715, "out_of_rail_stability_margin": 2.651294263792947, "lateral_surface_wind": -2.664801826366607, "impact_velocity": -5.37853264060665, "x_impact": 906.8998539335148, "max_mach_number": 0.9305436905291278, "out_of_rail_time": 0.3407289917685865, "apogee_y": 546.6798722831969, "out_of_rail_velocity": 27.29208107813934, "apogee_x": 368.81247315628593, "initial_stability_margin": 2.583268766777855, "t_final": 323.1931523106591, "apogee_time": 27.202801924790293, "frontal_surface_wind": 0.3753719300325351, "y_impact": 114.63702726996426} -{"apogee": 4274.5882943441575, "out_of_rail_stability_margin": 2.699653033836876, "lateral_surface_wind": -1.2138293391177202, "impact_velocity": -5.445035635223834, "x_impact": 941.7263054088347, "max_mach_number": 1.0115008834922359, "out_of_rail_time": 0.3281332921148766, "apogee_y": 515.7522940144331, "out_of_rail_velocity": 28.646282031436645, "apogee_x": 469.7748330979421, "initial_stability_margin": 2.6336129561899386, "t_final": 350.2258462393184, "apogee_time": 28.265880937512712, "frontal_surface_wind": 0.4622080980609769, "y_impact": 557.432270141839} -{"apogee": 2593.066313381177, "out_of_rail_stability_margin": 2.8245879575298276, "lateral_surface_wind": -1.173479054299825, "impact_velocity": -5.411343950194062, "x_impact": 536.5517906972349, "max_mach_number": 0.6717727883961756, "out_of_rail_time": 0.39227085119423133, "apogee_y": 324.10072565498535, "out_of_rail_velocity": 23.02590400514625, "apogee_x": 255.43912522984954, "initial_stability_margin": 2.74726228480998, "t_final": 257.95711599974106, "apogee_time": 22.94111535755806, "frontal_surface_wind": 0.3710186352315778, "y_impact": 306.4718885803016} -{"apogee": 3825.2132597622353, "out_of_rail_stability_margin": 2.716235228539071, "lateral_surface_wind": -3.0356234662669213, "impact_velocity": -5.385936215293014, "x_impact": 865.4310945012924, "max_mach_number": 0.908525780140205, "out_of_rail_time": 0.3438150244875271, "apogee_y": 458.1313372942216, "out_of_rail_velocity": 27.01463293666919, "apogee_x": 157.9393547520087, "initial_stability_margin": 2.650831045300158, "t_final": 323.05269641706667, "apogee_time": 27.023102107263643, "frontal_surface_wind": 1.1228449208844224, "y_impact": 148.60072628652503} -{"apogee": 2344.478873992641, "out_of_rail_stability_margin": 2.5509189963742678, "lateral_surface_wind": -2.666758405364583, "impact_velocity": -5.356570140072527, "x_impact": 491.08137544329804, "max_mach_number": 0.6267611114003993, "out_of_rail_time": 0.4046975772448691, "apogee_y": 349.8230515307011, "out_of_rail_velocity": 22.158666722692743, "apogee_x": 182.9566006267157, "initial_stability_margin": 2.4669137128153555, "t_final": 247.05565862943124, "apogee_time": 21.947626628129584, "frontal_surface_wind": 0.361209727278351, "y_impact": -0.5590065910153666} -{"apogee": 3959.3853621640883, "out_of_rail_stability_margin": 2.6814632121202018, "lateral_surface_wind": -1.9636872487928323, "impact_velocity": -5.418747583374857, "x_impact": 1059.9470006982651, "max_mach_number": 0.9387576152255767, "out_of_rail_time": 0.33974747533082134, "apogee_y": 528.047512245953, "out_of_rail_velocity": 27.411597726809973, "apogee_x": 358.58831224801025, "initial_stability_margin": 2.6132742487632528, "t_final": 327.7212804803618, "apogee_time": 27.414713694916067, "frontal_surface_wind": 1.3269698703856596, "y_impact": 396.85944814924846} -{"apogee": 4603.613791984369, "out_of_rail_stability_margin": 2.82762718487379, "lateral_surface_wind": -1.6542048278181651, "impact_velocity": -5.523238864145965, "x_impact": 1302.1791618176687, "max_mach_number": 1.0885906708187634, "out_of_rail_time": 0.3166785671102777, "apogee_y": 557.3415849300007, "out_of_rail_velocity": 30.05267971004069, "apogee_x": 464.9271336151158, "initial_stability_margin": 2.765940511433404, "t_final": 366.51653142185967, "apogee_time": 29.105354636457825, "frontal_surface_wind": 0.8291877926281364, "y_impact": 622.9418848971602} -{"apogee": 3684.9264956800293, "out_of_rail_stability_margin": 2.5397044394451322, "lateral_surface_wind": -2.1494226690427922, "impact_velocity": -5.4667656380274, "x_impact": 961.1617250275284, "max_mach_number": 0.877545849135432, "out_of_rail_time": 0.35092380337121803, "apogee_y": 479.3823678395372, "out_of_rail_velocity": 26.37413989798366, "apogee_x": 289.482134208561, "initial_stability_margin": 2.4658052425475128, "t_final": 308.1689447023676, "apogee_time": 26.66073611243193, "frontal_surface_wind": 0.9096124875882192, "y_impact": 343.9698852626933} -{"apogee": 4053.237481535116, "out_of_rail_stability_margin": 2.6234773156226727, "lateral_surface_wind": -0.7135260811174567, "impact_velocity": -5.394787067720517, "x_impact": 977.6487086668315, "max_mach_number": 0.9617184741221224, "out_of_rail_time": 0.3354620840806093, "apogee_y": 452.7490959583756, "out_of_rail_velocity": 27.845987059690984, "apogee_x": 479.08774734073126, "initial_stability_margin": 2.557136322908565, "t_final": 341.91843261874976, "apogee_time": 27.641732920904175, "frontal_surface_wind": 0.860493673755945, "y_impact": 625.4979494320808} -{"apogee": 3616.2061407496353, "out_of_rail_stability_margin": 2.685538313527255, "lateral_surface_wind": -1.3088026994321773, "impact_velocity": -5.351404101886768, "x_impact": 930.3704987287088, "max_mach_number": 0.8765747870947974, "out_of_rail_time": 0.349500551210008, "apogee_y": 495.8573266347439, "out_of_rail_velocity": 26.476889879490088, "apogee_x": 490.0691833760109, "initial_stability_margin": 2.6184637608676558, "t_final": 308.93520230322264, "apogee_time": 26.354280392310997, "frontal_surface_wind": 0.5479916587577365, "y_impact": 218.18156199036565} -{"apogee": 2991.630651760935, "out_of_rail_stability_margin": 2.746524256903381, "lateral_surface_wind": -2.0324331690511963, "impact_velocity": -5.500776317586817, "x_impact": 638.8524165951823, "max_mach_number": 0.7412158780913247, "out_of_rail_time": 0.37720411079709676, "apogee_y": 308.87046115758244, "out_of_rail_velocity": 24.158872916482345, "apogee_x": 134.26304590882933, "initial_stability_margin": 2.67001239427207, "t_final": 276.4225225125675, "apogee_time": 24.450500502457363, "frontal_surface_wind": 1.07956094711251, "y_impact": 134.51485007277077} -{"apogee": 2851.9243813071653, "out_of_rail_stability_margin": 2.59976087262152, "lateral_surface_wind": -1.3572437791972902, "impact_velocity": -5.31653145907117, "x_impact": 762.3349287846627, "max_mach_number": 0.7275036527828402, "out_of_rail_time": 0.38004358831714063, "apogee_y": 433.01657921088264, "out_of_rail_velocity": 23.895297247637323, "apogee_x": 379.64991355335405, "initial_stability_margin": 2.51662989323688, "t_final": 275.35289181720805, "apogee_time": 23.837597684963296, "frontal_surface_wind": 0.6181460309035738, "y_impact": 373.10118729492143} -{"apogee": 4856.210250214594, "out_of_rail_stability_margin": 2.685890243066421, "lateral_surface_wind": -1.3860056450828928, "impact_velocity": -5.469264636824272, "x_impact": 869.170371413488, "max_mach_number": 1.1560310033758576, "out_of_rail_time": 0.30763135827798704, "apogee_y": 361.83887618637624, "out_of_rail_velocity": 31.17146384766309, "apogee_x": 242.41195385844927, "initial_stability_margin": 2.624392562501067, "t_final": 372.27524949111285, "apogee_time": 29.637595248619217, "frontal_surface_wind": 0.5687692006103227, "y_impact": 231.14722098522674} -{"apogee": 2154.4318336250412, "out_of_rail_stability_margin": 2.625607153285938, "lateral_surface_wind": -1.9881973934559225, "impact_velocity": -5.450276259652575, "x_impact": 441.9553454634601, "max_mach_number": 0.5850786697958235, "out_of_rail_time": 0.41641093218846115, "apogee_y": 241.71067359910697, "out_of_rail_velocity": 21.439819859331447, "apogee_x": 98.6618349830078, "initial_stability_margin": 2.541525654063902, "t_final": 230.34732309995326, "apogee_time": 21.177696706750293, "frontal_surface_wind": 0.6711838927740403, "y_impact": 131.84352120969083} -{"apogee": 4339.291126237013, "out_of_rail_stability_margin": 2.559763929607034, "lateral_surface_wind": -1.6767809727648997, "impact_velocity": -5.42882034175649, "x_impact": 1365.4141610008999, "max_mach_number": 1.0427445148398726, "out_of_rail_time": 0.3226959839136422, "apogee_y": 670.4785127620112, "out_of_rail_velocity": 29.22649927683705, "apogee_x": 585.6029104522135, "initial_stability_margin": 2.494009955576364, "t_final": 349.9834957329674, "apogee_time": 28.315770411478187, "frontal_surface_wind": 0.7825289625272948, "y_impact": 758.5658529970632} -{"apogee": 3521.6398439919762, "out_of_rail_stability_margin": 2.499373304144267, "lateral_surface_wind": -2.683970018970808, "impact_velocity": -5.387048734747211, "x_impact": 745.5032860444935, "max_mach_number": 0.8536802174648406, "out_of_rail_time": 0.35444368146294947, "apogee_y": 498.56603266451873, "out_of_rail_velocity": 26.001290773609096, "apogee_x": 261.4893888012929, "initial_stability_margin": 2.4259495218521843, "t_final": 312.6397837718973, "apogee_time": 26.09166095717891, "frontal_surface_wind": 0.19590251894499588, "y_impact": 68.83661173789875} -{"apogee": 2880.7846172394006, "out_of_rail_stability_margin": 2.5967372705988003, "lateral_surface_wind": -0.6710492870232632, "impact_velocity": -5.281901513898179, "x_impact": 661.8344090271298, "max_mach_number": 0.7337184999667207, "out_of_rail_time": 0.37842205664172757, "apogee_y": 298.186853134147, "out_of_rail_velocity": 24.003255348841865, "apogee_x": 335.27497062562594, "initial_stability_margin": 2.515847208510415, "t_final": 279.5902255114715, "apogee_time": 23.927193888265236, "frontal_surface_wind": 0.8940143653176991, "y_impact": 395.12669499560667} -{"apogee": 1764.2764729757328, "out_of_rail_stability_margin": 2.7426184189391063, "lateral_surface_wind": -1.2939668913821372, "impact_velocity": -5.2840239851705535, "x_impact": 322.19730867155675, "max_mach_number": 0.5113690836831931, "out_of_rail_time": 0.44244102175057426, "apogee_y": 198.00732139263104, "out_of_rail_velocity": 20.000291877162258, "apogee_x": 151.98824015344667, "initial_stability_margin": 2.6502713692002655, "t_final": 210.43003763938734, "apogee_time": 19.355298232828567, "frontal_surface_wind": 0.582158954337952, "y_impact": 83.4466441628377} -{"apogee": 3718.8617462771745, "out_of_rail_stability_margin": 2.598720578931538, "lateral_surface_wind": -0.7394072417925626, "impact_velocity": -5.41567022813812, "x_impact": 741.3157674213983, "max_mach_number": 0.8866884573628705, "out_of_rail_time": 0.34894303457393816, "apogee_y": 349.636553166904, "out_of_rail_velocity": 26.539915312863567, "apogee_x": 320.6180822994674, "initial_stability_margin": 2.5260429460829688, "t_final": 322.64089105653727, "apogee_time": 26.71917234156581, "frontal_surface_wind": 0.838358969531282, "y_impact": 496.8569828572925} -{"apogee": 3742.8004386989764, "out_of_rail_stability_margin": 2.5331598372821253, "lateral_surface_wind": -1.3838309619057445, "impact_velocity": -5.475902400412947, "x_impact": 962.0331646952008, "max_mach_number": 0.8945004527095729, "out_of_rail_time": 0.34669769889988716, "apogee_y": 513.3800141058401, "out_of_rail_velocity": 26.718185661786777, "apogee_x": 447.29863678146864, "initial_stability_margin": 2.4625401443365513, "t_final": 315.80411183418056, "apogee_time": 26.766117574806977, "frontal_surface_wind": 0.5740399991599654, "y_impact": 408.096978698402} -{"apogee": 3813.401641208358, "out_of_rail_stability_margin": 2.6795786628739537, "lateral_surface_wind": -2.008012425485061, "impact_velocity": -5.471059768624434, "x_impact": 951.7723127316474, "max_mach_number": 0.9086675068898541, "out_of_rail_time": 0.3441796896577286, "apogee_y": 506.7707187157223, "out_of_rail_velocity": 26.99870235043294, "apogee_x": 350.7538809761373, "initial_stability_margin": 2.6115647221682425, "t_final": 326.57436945640904, "apogee_time": 26.96733772950139, "frontal_surface_wind": 1.0312472303371965, "y_impact": 404.68013308979783} -{"apogee": 3529.0219569460487, "out_of_rail_stability_margin": 2.667439975483217, "lateral_surface_wind": -2.0806622772564953, "impact_velocity": -5.505478259278498, "x_impact": 927.1966065289909, "max_mach_number": 0.8438760815234632, "out_of_rail_time": 0.35514051984810446, "apogee_y": 466.0683571496514, "out_of_rail_velocity": 25.936724605710193, "apogee_x": 281.3405601270523, "initial_stability_margin": 2.5998406006883252, "t_final": 303.6985605210013, "apogee_time": 26.212301591247606, "frontal_surface_wind": 0.9834027217736202, "y_impact": 309.2324343013307} -{"apogee": 3621.3108792984876, "out_of_rail_stability_margin": 2.6633888927617133, "lateral_surface_wind": -1.3708967548273487, "impact_velocity": -5.2859106552848205, "x_impact": 886.540738113628, "max_mach_number": 0.8759561373921735, "out_of_rail_time": 0.3500279156374782, "apogee_y": 464.57855632341375, "out_of_rail_velocity": 26.44941873259063, "apogee_x": 377.05341452360494, "initial_stability_margin": 2.591589951353328, "t_final": 314.1438153921918, "apogee_time": 26.33510815973322, "frontal_surface_wind": 0.5872455017243029, "y_impact": 373.503368684767} -{"apogee": 3089.8888073481626, "out_of_rail_stability_margin": 2.5119622982561514, "lateral_surface_wind": -1.9850507839076705, "impact_velocity": -5.240432523836999, "x_impact": 829.2551511919291, "max_mach_number": 0.7743672024146715, "out_of_rail_time": 0.3690488383960625, "apogee_y": 411.39004904558436, "out_of_rail_velocity": 24.728018748034753, "apogee_x": 277.91158463111606, "initial_stability_margin": 2.43606675202208, "t_final": 295.9246680843515, "apogee_time": 24.64822269829161, "frontal_surface_wind": 0.6804337429697184, "y_impact": 296.3156830706664} -{"apogee": 4228.889987919939, "out_of_rail_stability_margin": 2.558600628377986, "lateral_surface_wind": -1.3625237813053834, "impact_velocity": -5.452780350642577, "x_impact": 1087.4610286646514, "max_mach_number": 0.9943815371454261, "out_of_rail_time": 0.33049933890995153, "apogee_y": 518.4143692604265, "out_of_rail_velocity": 28.395943452778653, "apogee_x": 487.7173663047379, "initial_stability_margin": 2.4920273607636263, "t_final": 346.3825947728589, "apogee_time": 28.163357284804007, "frontal_surface_wind": 0.6229277623784566, "y_impact": 397.42822488209805} -{"apogee": 3699.500141474413, "out_of_rail_stability_margin": 2.6704882324393604, "lateral_surface_wind": -1.9372720322075845, "impact_velocity": -5.489296206620254, "x_impact": 877.0149093278213, "max_mach_number": 0.8787032158278901, "out_of_rail_time": 0.3499356973196633, "apogee_y": 404.97020919015046, "out_of_rail_velocity": 26.421950903800457, "apogee_x": 230.50351089216406, "initial_stability_margin": 2.600565468025254, "t_final": 316.8403151894529, "apogee_time": 26.713643897475617, "frontal_surface_wind": 1.3652449308491104, "y_impact": 258.23373457570017} -{"apogee": 3938.781970634646, "out_of_rail_stability_margin": 2.6352372819657606, "lateral_surface_wind": -1.63809462360333, "impact_velocity": -5.356740780289704, "x_impact": 1248.1915544967749, "max_mach_number": 0.9417118585684756, "out_of_rail_time": 0.3389203078620311, "apogee_y": 618.3745587884989, "out_of_rail_velocity": 27.515731177442984, "apogee_x": 468.5820371221526, "initial_stability_margin": 2.567041272928623, "t_final": 335.73218639501437, "apogee_time": 27.283959555500218, "frontal_surface_wind": 1.2191843156675284, "y_impact": 654.4769069171763} -{"apogee": 3273.9526184348424, "out_of_rail_stability_margin": 2.6166472304723185, "lateral_surface_wind": -1.3426912123404748, "impact_velocity": -5.555171688409069, "x_impact": 537.3869649505231, "max_mach_number": 0.789883419884218, "out_of_rail_time": 0.365442864319717, "apogee_y": 251.38786616538454, "out_of_rail_velocity": 25.042290943164414, "apogee_x": 163.7618823614456, "initial_stability_margin": 2.5452793312165767, "t_final": 287.49536244451195, "apogee_time": 25.40991349059861, "frontal_surface_wind": 0.6645978935177403, "y_impact": 121.87983848137378} -{"apogee": 3376.360482661476, "out_of_rail_stability_margin": 2.646736647743358, "lateral_surface_wind": -2.1653507770864886, "impact_velocity": -5.2523255602554, "x_impact": 778.450483527979, "max_mach_number": 0.8291334520226921, "out_of_rail_time": 0.3584819835484606, "apogee_y": 415.6504045497342, "out_of_rail_velocity": 25.64928336254045, "apogee_x": 216.91633162781633, "initial_stability_margin": 2.572315461141533, "t_final": 306.64336289732023, "apogee_time": 25.560956185075163, "frontal_surface_wind": 1.2245393272516596, "y_impact": 274.0187927166239} -{"apogee": 3599.4420808291584, "out_of_rail_stability_margin": 2.698588255969904, "lateral_surface_wind": -2.0567152332245886, "impact_velocity": -5.45373004253867, "x_impact": 722.9511531307292, "max_mach_number": 0.8532113234522042, "out_of_rail_time": 0.35405238698437663, "apogee_y": 346.77466738502494, "out_of_rail_velocity": 26.029743718154673, "apogee_x": 174.27948916863315, "initial_stability_margin": 2.6277508663896465, "t_final": 305.05192979980825, "apogee_time": 26.43611093449556, "frontal_surface_wind": 1.3993437752164157, "y_impact": 200.78580665336992} -{"apogee": 2903.9137989221995, "out_of_rail_stability_margin": 2.660333943728882, "lateral_surface_wind": -1.5123230005920913, "impact_velocity": -5.293916375898851, "x_impact": 879.9133133519413, "max_mach_number": 0.7361598865622573, "out_of_rail_time": 0.37742318749083387, "apogee_y": 438.75455937284516, "out_of_rail_velocity": 24.085989246223033, "apogee_x": 393.8632973192256, "initial_stability_margin": 2.5811373254823144, "t_final": 281.9784734342244, "apogee_time": 24.039595428727125, "frontal_surface_wind": 1.1076502864509274, "y_impact": 439.62544195239593} -{"apogee": 2277.940749618492, "out_of_rail_stability_margin": 2.722043463451224, "lateral_surface_wind": -3.0540331912161496, "impact_velocity": -5.367251712086747, "x_impact": 611.8700325538169, "max_mach_number": 0.6122085934284285, "out_of_rail_time": 0.4090096239387575, "apogee_y": 409.7313684907511, "out_of_rail_velocity": 21.879840808795265, "apogee_x": 159.54337261147907, "initial_stability_margin": 2.6373270676539287, "t_final": 235.60838307981655, "apogee_time": 21.716232896552334, "frontal_surface_wind": 0.5236243483325893, "y_impact": 93.871711799895} -{"apogee": 3108.3206633536925, "out_of_rail_stability_margin": 2.757881625597688, "lateral_surface_wind": -1.905801285001051, "impact_velocity": -5.407711817217997, "x_impact": 846.4225795773299, "max_mach_number": 0.7703060255237133, "out_of_rail_time": 0.3701865602562255, "apogee_y": 418.18120683984984, "out_of_rail_velocity": 24.647103989313262, "apogee_x": 275.09090130520065, "initial_stability_margin": 2.6817231894654165, "t_final": 288.6764954143259, "apogee_time": 24.788089267426297, "frontal_surface_wind": 1.24634028499915, "y_impact": 278.67231607885526} -{"apogee": 3995.2161360232426, "out_of_rail_stability_margin": 2.7392845394140863, "lateral_surface_wind": -1.2327302844015653, "impact_velocity": -5.473118799363382, "x_impact": 796.6858749328783, "max_mach_number": 0.9386972469507718, "out_of_rail_time": 0.33938868090379193, "apogee_y": 473.57915694148414, "out_of_rail_velocity": 27.45212207019985, "apogee_x": 374.30787096150704, "initial_stability_margin": 2.673932828243699, "t_final": 336.8917928600454, "apogee_time": 27.575759847839112, "frontal_surface_wind": 0.40913816289285837, "y_impact": 505.23414682930445} -{"apogee": 3502.6728191796396, "out_of_rail_stability_margin": 2.8437012156506554, "lateral_surface_wind": -2.512941045670995, "impact_velocity": -5.576593464765187, "x_impact": 691.68865492189, "max_mach_number": 0.8312654211179118, "out_of_rail_time": 0.3576771256214957, "apogee_y": 324.7588370855261, "out_of_rail_velocity": 25.75636170145094, "apogee_x": 66.74813397043488, "initial_stability_margin": 2.7781194492497456, "t_final": 301.85724118483654, "apogee_time": 26.176265228336682, "frontal_surface_wind": 1.246778592128777, "y_impact": 15.22599468073265} -{"apogee": 4510.243970067053, "out_of_rail_stability_margin": 2.7574623543739265, "lateral_surface_wind": -1.9023452320638579, "impact_velocity": -5.6388483403895115, "x_impact": 1570.2050111540527, "max_mach_number": 1.0590763856649283, "out_of_rail_time": 0.32023334523497893, "apogee_y": 687.1651308640883, "out_of_rail_velocity": 29.532950835714185, "apogee_x": 773.368451631391, "initial_stability_margin": 2.697581858557568, "t_final": 347.863751469205, "apogee_time": 28.96534337186755, "frontal_surface_wind": 0.8857196572890008, "y_impact": 577.4416591937066} -{"apogee": 4007.331274870095, "out_of_rail_stability_margin": 2.5439241154812935, "lateral_surface_wind": -2.0652645489905366, "impact_velocity": -5.303018313901353, "x_impact": 773.4207666110756, "max_mach_number": 0.9550381021871299, "out_of_rail_time": 0.3380224180991855, "apogee_y": 366.9509313328047, "out_of_rail_velocity": 27.64416437634333, "apogee_x": 210.053728191089, "initial_stability_margin": 2.4712500424235904, "t_final": 340.99344534590705, "apogee_time": 27.448618007072948, "frontal_surface_wind": 0.963519945930798, "y_impact": -23.943336831330335} -{"apogee": 3863.2901125005924, "out_of_rail_stability_margin": 2.745020816688651, "lateral_surface_wind": -2.6866931656168402, "impact_velocity": -5.469590385999577, "x_impact": 1000.3989251404066, "max_mach_number": 0.9202547453793619, "out_of_rail_time": 0.3431380568311487, "apogee_y": 689.657369455619, "out_of_rail_velocity": 27.073607623912302, "apogee_x": 455.5861659780497, "initial_stability_margin": 2.6752205030578127, "t_final": 323.4118456917392, "apogee_time": 27.14959540403315, "frontal_surface_wind": 0.15411908866495128, "y_impact": 269.3205094319934} -{"apogee": 3493.287183534501, "out_of_rail_stability_margin": 2.7349074147030463, "lateral_surface_wind": -2.0601967971575963, "impact_velocity": -5.4578855959480235, "x_impact": 1091.1210191712041, "max_mach_number": 0.8464026573167808, "out_of_rail_time": 0.3544119605735438, "apogee_y": 595.189291242316, "out_of_rail_velocity": 25.979453836048084, "apogee_x": 498.6506341084387, "initial_stability_margin": 2.6672384548502786, "t_final": 295.5567814774382, "apogee_time": 26.034802214968963, "frontal_surface_wind": 0.4269658302796836, "y_impact": 317.55197956690034} -{"apogee": 4027.826563395859, "out_of_rail_stability_margin": 2.734850694702176, "lateral_surface_wind": -2.619491747619617, "impact_velocity": -5.345012816529854, "x_impact": 1221.6042153700819, "max_mach_number": 0.9670131782683766, "out_of_rail_time": 0.334874200191121, "apogee_y": 603.7339319314891, "out_of_rail_velocity": 27.928720191249443, "apogee_x": 383.2548580728232, "initial_stability_margin": 2.6664405059301703, "t_final": 334.6147665188012, "apogee_time": 27.47707527409068, "frontal_surface_wind": 0.9030427185890956, "y_impact": 324.35768812757277} -{"apogee": 2559.578315404973, "out_of_rail_stability_margin": 2.758630284491033, "lateral_surface_wind": -2.212654059889619, "impact_velocity": -5.530748487873761, "x_impact": 856.2455048119679, "max_mach_number": 0.664268550059202, "out_of_rail_time": 0.39368989421343153, "apogee_y": 531.8675963520407, "out_of_rail_velocity": 22.89976724947276, "apogee_x": 355.0170490920562, "initial_stability_margin": 2.6813115809428587, "t_final": 249.9174641646058, "apogee_time": 22.866025899341903, "frontal_surface_wind": 1.1368388465692898, "y_impact": 436.23803669889395} -{"apogee": 3046.6960043884847, "out_of_rail_stability_margin": 2.7795219987507016, "lateral_surface_wind": -2.0456983508910977, "impact_velocity": -5.574618431585261, "x_impact": 991.4505075172988, "max_mach_number": 0.7563953159893084, "out_of_rail_time": 0.37331369192755043, "apogee_y": 542.5027475626001, "out_of_rail_velocity": 24.479573229098886, "apogee_x": 431.9558063457601, "initial_stability_margin": 2.707156347251853, "t_final": 272.1743161039782, "apogee_time": 24.642608750810204, "frontal_surface_wind": 1.0542080830421439, "y_impact": 420.36673696944155} -{"apogee": 3140.4198776546828, "out_of_rail_stability_margin": 2.706008029587325, "lateral_surface_wind": -2.130749150522716, "impact_velocity": -5.450782796971454, "x_impact": 931.34103745656, "max_mach_number": 0.7773183424148018, "out_of_rail_time": 0.36815297666574837, "apogee_y": 507.67448648968644, "out_of_rail_velocity": 24.83077203842575, "apogee_x": 370.74182718169163, "initial_stability_margin": 2.6328057301719014, "t_final": 291.84817781530234, "apogee_time": 24.892425215315157, "frontal_surface_wind": 1.283802402771443, "y_impact": 385.629738034527} -{"apogee": 2722.161570599394, "out_of_rail_stability_margin": 2.7418546940297603, "lateral_surface_wind": -2.011556295326297, "impact_velocity": -5.422558561041635, "x_impact": 613.0178250902526, "max_mach_number": 0.6935381080666413, "out_of_rail_time": 0.386756274199704, "apogee_y": 341.8568010685201, "out_of_rail_velocity": 23.36312148294732, "apogee_x": 166.4692163960012, "initial_stability_margin": 2.665184321856081, "t_final": 264.991439166254, "apogee_time": 23.465264632279535, "frontal_surface_wind": 0.678376073828635, "y_impact": 182.49835759770096} -{"apogee": 3183.340059025833, "out_of_rail_stability_margin": 2.794204718870442, "lateral_surface_wind": -0.7221273753244036, "impact_velocity": -5.550080980553873, "x_impact": 878.0337774571399, "max_mach_number": 0.7823426162457727, "out_of_rail_time": 0.36781804763563763, "apogee_y": 475.4262915676097, "out_of_rail_velocity": 24.849097268938134, "apogee_x": 503.35086502092355, "initial_stability_margin": 2.7200628399883673, "t_final": 287.54875460603915, "apogee_time": 25.0973867389165, "frontal_surface_wind": 0.8532882776740379, "y_impact": 616.3946321519119} -{"apogee": 3594.3200797062004, "out_of_rail_stability_margin": 2.5946408033334043, "lateral_surface_wind": -3.105701102895761, "impact_velocity": -5.380223585442992, "x_impact": 915.2535129370343, "max_mach_number": 0.8656871445045999, "out_of_rail_time": 0.35176901142756467, "apogee_y": 541.465219790111, "out_of_rail_velocity": 26.24923389549288, "apogee_x": 226.44301823207397, "initial_stability_margin": 2.524455303579346, "t_final": 313.50289555993385, "apogee_time": 26.330251349199163, "frontal_surface_wind": 0.9112690079106156, "y_impact": 245.56746923938067} -{"apogee": 3239.2076082360713, "out_of_rail_stability_margin": 2.7004129697588106, "lateral_surface_wind": -2.161964119450741, "impact_velocity": -5.489083847767143, "x_impact": 763.9759728086062, "max_mach_number": 0.7940062275935367, "out_of_rail_time": 0.3654223520562388, "apogee_y": 434.74717742392244, "out_of_rail_velocity": 25.056695111209372, "apogee_x": 246.54794859663903, "initial_stability_margin": 2.6258921654574774, "t_final": 288.455384792025, "apogee_time": 25.232925268348144, "frontal_surface_wind": 0.7378341676082384, "y_impact": 310.7483978761633} -{"apogee": 3655.7390808580126, "out_of_rail_stability_margin": 2.658223100416956, "lateral_surface_wind": -1.8770808281299454, "impact_velocity": -5.448877055465822, "x_impact": 987.9295657566142, "max_mach_number": 0.8722452609133461, "out_of_rail_time": 0.3510747438812364, "apogee_y": 450.12514032776596, "out_of_rail_velocity": 26.31202729291646, "apogee_x": 320.90455155607026, "initial_stability_margin": 2.586342217197127, "t_final": 312.6702700880868, "apogee_time": 26.55824537464766, "frontal_surface_wind": 1.2891897488695827, "y_impact": 280.60242867759644} -{"apogee": 4586.870423210001, "out_of_rail_stability_margin": 2.657625501043153, "lateral_surface_wind": -1.6169705967715347, "impact_velocity": -5.433218666430613, "x_impact": 1108.5058144071459, "max_mach_number": 1.0927877302655467, "out_of_rail_time": 0.3152068897174053, "apogee_y": 390.8927190856965, "out_of_rail_velocity": 30.117883843037617, "apogee_x": 292.1257331788444, "initial_stability_margin": 2.5950834059304086, "t_final": 369.6104605281037, "apogee_time": 28.976441934839215, "frontal_surface_wind": 0.8996399818798373, "y_impact": 431.5424410339525} -{"apogee": 3748.3662592632504, "out_of_rail_stability_margin": 2.704766031070771, "lateral_surface_wind": -0.5842981274403755, "impact_velocity": -5.392756573432823, "x_impact": 852.6259671408487, "max_mach_number": 0.903126225789443, "out_of_rail_time": 0.3453896776923296, "apogee_y": 522.852422730774, "out_of_rail_velocity": 26.86171847569391, "apogee_x": 593.8774696347753, "initial_stability_margin": 2.6358454253251447, "t_final": 324.6581154003571, "apogee_time": 26.753331365424515, "frontal_surface_wind": -0.7495649518893118, "y_impact": 570.1894136848797} -{"apogee": 4113.629274904301, "out_of_rail_stability_margin": 2.645194233177836, "lateral_surface_wind": -2.132392891281473, "impact_velocity": -5.421957425282764, "x_impact": 1181.24573229057, "max_mach_number": 0.9719581579487587, "out_of_rail_time": 0.3349847722570978, "apogee_y": 583.8019402803566, "out_of_rail_velocity": 27.911202925265165, "apogee_x": 425.36196124216116, "initial_stability_margin": 2.575115787735248, "t_final": 333.4860975116697, "apogee_time": 27.8485391567907, "frontal_surface_wind": 0.9488483782900776, "y_impact": 445.89630785545387} -{"apogee": 2320.495204807458, "out_of_rail_stability_margin": 2.6797469324841257, "lateral_surface_wind": -1.2071703514911671, "impact_velocity": -5.417320338990017, "x_impact": 302.8707352050289, "max_mach_number": 0.6182095863207263, "out_of_rail_time": 0.40644435065576473, "apogee_y": 229.08268755449058, "out_of_rail_velocity": 22.039779873979185, "apogee_x": 161.02165874330225, "initial_stability_margin": 2.598708084085291, "t_final": 243.1848569243404, "apogee_time": 21.8695962955116, "frontal_surface_wind": 0.4793305048677779, "y_impact": 175.5456572033128} -{"apogee": 4201.455932311409, "out_of_rail_stability_margin": 2.5623792103510596, "lateral_surface_wind": -2.1054461572332595, "impact_velocity": -5.415037872668715, "x_impact": 987.0445134323459, "max_mach_number": 0.9961603880704216, "out_of_rail_time": 0.3298879153361057, "apogee_y": 528.130781953999, "out_of_rail_velocity": 28.45026367802673, "apogee_x": 391.8740101940051, "initial_stability_margin": 2.496292305140551, "t_final": 339.49200611892275, "apogee_time": 28.023871479434654, "frontal_surface_wind": 0.872229799144281, "y_impact": 162.13047193983874} -{"apogee": 3818.4631215816917, "out_of_rail_stability_margin": 2.615083008155687, "lateral_surface_wind": -2.687027385121832, "impact_velocity": -5.336585520874592, "x_impact": 1056.1496155569696, "max_mach_number": 0.9235665476352148, "out_of_rail_time": 0.3427790872050877, "apogee_y": 718.354521116023, "out_of_rail_velocity": 27.136970084120367, "apogee_x": 500.8283391133318, "initial_stability_margin": 2.5436377062762388, "t_final": 324.56299659699664, "apogee_time": 26.911347837566254, "frontal_surface_wind": 0.14817790411692155, "y_impact": 304.07356468977855} -{"apogee": 3656.9278797849424, "out_of_rail_stability_margin": 2.5518630386300187, "lateral_surface_wind": -1.8869970562432057, "impact_velocity": -5.44091435571479, "x_impact": 999.7279628834373, "max_mach_number": 0.8765411017679214, "out_of_rail_time": 0.3504638642432236, "apogee_y": 514.8284699746138, "out_of_rail_velocity": 26.371005484343428, "apogee_x": 383.09850205784545, "initial_stability_margin": 2.4786050289406973, "t_final": 308.97985910723014, "apogee_time": 26.53164608092003, "frontal_surface_wind": 0.8445484079184089, "y_impact": 455.3037813209298} -{"apogee": 3420.5791289948743, "out_of_rail_stability_margin": 2.6923600403192416, "lateral_surface_wind": -0.6191932096577974, "impact_velocity": -5.388459162491185, "x_impact": 668.1820168730206, "max_mach_number": 0.8304353014889272, "out_of_rail_time": 0.35866438122480687, "apogee_y": 397.7713947799084, "out_of_rail_velocity": 25.633120986666114, "apogee_x": 476.8798524825625, "initial_stability_margin": 2.6196434878799972, "t_final": 305.3392863875386, "apogee_time": 25.821738732329855, "frontal_surface_wind": -0.7210074118515222, "y_impact": 414.0826235887649} -{"apogee": 1605.6906866081192, "out_of_rail_stability_margin": 2.7419213149080783, "lateral_surface_wind": -3.0520577038891203, "impact_velocity": -5.493948749816164, "x_impact": 417.5012558572544, "max_mach_number": 0.47588238897942714, "out_of_rail_time": 0.4537467638940722, "apogee_y": 221.07753646578297, "out_of_rail_velocity": 19.390556365870612, "apogee_x": 21.352428846193238, "initial_stability_margin": 2.6558632321363858, "t_final": 195.08436644441875, "apogee_time": 18.582848729436652, "frontal_surface_wind": 1.0773738058062374, "y_impact": -58.970675196339414} -{"apogee": 2632.727755068725, "out_of_rail_stability_margin": 2.7148331281608318, "lateral_surface_wind": -1.1509143392144665, "impact_velocity": -5.493362364842304, "x_impact": 542.8015559701053, "max_mach_number": 0.6723972543888471, "out_of_rail_time": 0.3924089971775212, "apogee_y": 294.4878792572258, "out_of_rail_velocity": 23.04706273970486, "apogee_x": 255.1666444202811, "initial_stability_margin": 2.6387925009423903, "t_final": 261.65614715302786, "apogee_time": 23.170793928580515, "frontal_surface_wind": 0.43600929159828933, "y_impact": 272.8055540589916} -{"apogee": 3649.127773361607, "out_of_rail_stability_margin": 2.6292922401682675, "lateral_surface_wind": -0.3877605179275559, "impact_velocity": -5.5202866683607255, "x_impact": 789.4842685830341, "max_mach_number": 0.8678200071892556, "out_of_rail_time": 0.352098885489164, "apogee_y": 355.38990376792225, "out_of_rail_velocity": 26.212883427184554, "apogee_x": 477.8350308086392, "initial_stability_margin": 2.557055903449654, "t_final": 291.0935919830653, "apogee_time": 26.584384422267405, "frontal_surface_wind": 0.25482684184749765, "y_impact": 606.9280785190144} -{"apogee": 3465.356489732343, "out_of_rail_stability_margin": 2.6924071371349836, "lateral_surface_wind": -2.138973543653815, "impact_velocity": -5.4563396603977425, "x_impact": 713.997263987899, "max_mach_number": 0.8334166010628583, "out_of_rail_time": 0.3571714832373677, "apogee_y": 426.9767450873288, "out_of_rail_velocity": 25.72932441805324, "apogee_x": 233.55688844179005, "initial_stability_margin": 2.621785637891803, "t_final": 299.4633814110919, "apogee_time": 25.976893994332244, "frontal_surface_wind": 0.7864353266942004, "y_impact": 120.57877290765362} -{"apogee": 2853.181670531314, "out_of_rail_stability_margin": 2.7205524059465844, "lateral_surface_wind": -2.0691121433075317, "impact_velocity": -5.4734852217867305, "x_impact": 778.7557876946142, "max_mach_number": 0.7198976313919705, "out_of_rail_time": 0.38174667780183336, "apogee_y": 485.81737491497216, "out_of_rail_velocity": 23.81460707428031, "apogee_x": 354.6762377552628, "initial_stability_margin": 2.641708607027788, "t_final": 272.8681549593522, "apogee_time": 23.954857814701523, "frontal_surface_wind": 0.38142574855684563, "y_impact": 196.68609093935817} -{"apogee": 3982.6093905926878, "out_of_rail_stability_margin": 2.6422745540138997, "lateral_surface_wind": -2.607333613109623, "impact_velocity": -5.501094245723069, "x_impact": 935.8955194373541, "max_mach_number": 0.9377911435823189, "out_of_rail_time": 0.3396579659286093, "apogee_y": 485.66543119530803, "out_of_rail_velocity": 27.42126249244535, "apogee_x": 204.5058082996999, "initial_stability_margin": 2.574732570459648, "t_final": 328.3777269332792, "apogee_time": 27.5019623652741, "frontal_surface_wind": 1.0349594130966526, "y_impact": 164.68136938486947} -{"apogee": 4142.970392531185, "out_of_rail_stability_margin": 2.523767276436843, "lateral_surface_wind": -2.0868907089501976, "impact_velocity": -5.458575076538361, "x_impact": 907.6604968417544, "max_mach_number": 0.9798298161124407, "out_of_rail_time": 0.33307361498694965, "apogee_y": 448.8695905813917, "out_of_rail_velocity": 28.111958771359205, "apogee_x": 292.1974858761255, "initial_stability_margin": 2.4547281649718573, "t_final": 330.64651856075244, "apogee_time": 27.87682850503673, "frontal_surface_wind": 1.3539304711514355, "y_impact": 310.36265039447323} -{"apogee": 4124.0943034211205, "out_of_rail_stability_margin": 2.7406978994989197, "lateral_surface_wind": -1.8345176752469727, "impact_velocity": -5.415637493034078, "x_impact": 1217.2855948203098, "max_mach_number": 0.9780202006291113, "out_of_rail_time": 0.332302617845887, "apogee_y": 529.2943752394426, "out_of_rail_velocity": 28.204070509020788, "apogee_x": 461.52952145814805, "initial_stability_margin": 2.6778441342461106, "t_final": 339.0245430417837, "apogee_time": 27.825935813305172, "frontal_surface_wind": 1.3490691394920657, "y_impact": 335.9951744173058} -{"apogee": 4120.335403451117, "out_of_rail_stability_margin": 2.7380571042068444, "lateral_surface_wind": -2.154342173134993, "impact_velocity": -5.38048190021141, "x_impact": 1049.5447138002514, "max_mach_number": 0.9819958261278361, "out_of_rail_time": 0.33265987280829445, "apogee_y": 573.441362399828, "out_of_rail_velocity": 28.167784107541976, "apogee_x": 390.95519923435575, "initial_stability_margin": 2.669541586329511, "t_final": 351.2835559323133, "apogee_time": 27.773693842088658, "frontal_surface_wind": 1.2438047888905237, "y_impact": 431.7717713023727} -{"apogee": 2807.008166708147, "out_of_rail_stability_margin": 2.5763516906740738, "lateral_surface_wind": -2.056280316781139, "impact_velocity": -5.402271814919775, "x_impact": 848.941529207338, "max_mach_number": 0.7203050158897297, "out_of_rail_time": 0.3822305470791218, "apogee_y": 507.40855655264556, "out_of_rail_velocity": 23.722653224425393, "apogee_x": 423.40269593523504, "initial_stability_margin": 2.491851746727714, "t_final": 266.693046779791, "apogee_time": 23.699763446607676, "frontal_surface_wind": 0.44544575658916663, "y_impact": 236.61857818323332} -{"apogee": 4056.4419611272465, "out_of_rail_stability_margin": 2.7112197142263716, "lateral_surface_wind": -2.088237864664385, "impact_velocity": -5.49165046604659, "x_impact": 1020.3598648536052, "max_mach_number": 0.9495662359537788, "out_of_rail_time": 0.33851836793724444, "apogee_y": 523.1822378307007, "out_of_rail_velocity": 27.563017101181607, "apogee_x": 383.9963223512426, "initial_stability_margin": 2.640856616616065, "t_final": 339.15436547969813, "apogee_time": 27.749096985335377, "frontal_surface_wind": 1.3518517568124606, "y_impact": 383.3202969958211} -{"apogee": 3827.3425107107264, "out_of_rail_stability_margin": 2.635946070400641, "lateral_surface_wind": -1.85347314303849, "impact_velocity": -5.5333896741058295, "x_impact": 1199.7057673677023, "max_mach_number": 0.9064004133059694, "out_of_rail_time": 0.34530091861193213, "apogee_y": 589.7304891035421, "out_of_rail_velocity": 26.85401056823646, "apogee_x": 519.9609115178215, "initial_stability_margin": 2.5651717703033037, "t_final": 325.60065386534194, "apogee_time": 27.08769331428632, "frontal_surface_wind": 0.9157822948840321, "y_impact": 530.112265346282} -{"apogee": 4514.660974891763, "out_of_rail_stability_margin": 2.7298340413259714, "lateral_surface_wind": -2.6784139853596045, "impact_velocity": -5.620470855203404, "x_impact": 1055.8969524526806, "max_mach_number": 1.056083126711564, "out_of_rail_time": 0.3213434110434159, "apogee_y": 660.3119800101857, "out_of_rail_velocity": 29.43669216863993, "apogee_x": 448.26280771955714, "initial_stability_margin": 2.667459383638986, "t_final": 355.34339950657494, "apogee_time": 28.991961813947842, "frontal_surface_wind": 0.2610965007295847, "y_impact": 202.09490872111792} -{"apogee": 1938.59633975278, "out_of_rail_stability_margin": 2.7139942851907546, "lateral_surface_wind": -1.2005742238902555, "impact_velocity": -5.516118559899838, "x_impact": 486.2228440728635, "max_mach_number": 0.5472251581223524, "out_of_rail_time": 0.4287358537522432, "apogee_y": 335.8857851473184, "out_of_rail_velocity": 20.71565919886749, "apogee_x": 327.2927587944705, "initial_stability_margin": 2.627667469519909, "t_final": 218.20915699077966, "apogee_time": 20.224542320992175, "frontal_surface_wind": 0.4956203419417103, "y_impact": 300.0546179020999} -{"apogee": 2525.758116874563, "out_of_rail_stability_margin": 2.831253692637094, "lateral_surface_wind": -2.688066632894683, "impact_velocity": -5.553820197701529, "x_impact": 544.5758621626343, "max_mach_number": 0.6570253254726027, "out_of_rail_time": 0.3959680454469184, "apogee_y": 447.09265751204674, "out_of_rail_velocity": 22.746689736493348, "apogee_x": 224.50813382897596, "initial_stability_margin": 2.7539027269095104, "t_final": 245.44765696044178, "apogee_time": 22.73962253963631, "frontal_surface_wind": 0.1279477892790457, "y_impact": 120.10812385938682} -{"apogee": 3442.849674728397, "out_of_rail_stability_margin": 2.5919803788699585, "lateral_surface_wind": -2.1157275962522917, "impact_velocity": -5.387522204360692, "x_impact": 758.8399597662863, "max_mach_number": 0.8342055668948911, "out_of_rail_time": 0.35734575019372455, "apogee_y": 429.3283278259019, "out_of_rail_velocity": 25.759575804095046, "apogee_x": 267.76033058101154, "initial_stability_margin": 2.519955347793275, "t_final": 304.2292947766587, "apogee_time": 25.856401942917618, "frontal_surface_wind": 0.84698588062616, "y_impact": 112.9618995605387} -{"apogee": 4165.827898631601, "out_of_rail_stability_margin": 2.6356994306779886, "lateral_surface_wind": -0.5775583962706432, "impact_velocity": -5.422456396764236, "x_impact": 853.3810256908454, "max_mach_number": 0.986812818331228, "out_of_rail_time": 0.33219206465576256, "apogee_y": 508.4943646731854, "out_of_rail_velocity": 28.214947317435428, "apogee_x": 563.4674931995595, "initial_stability_margin": 2.567948160845157, "t_final": 331.3400296855168, "apogee_time": 27.970560411352437, "frontal_surface_wind": -0.7547703079271456, "y_impact": 559.9135553960313} -{"apogee": 4417.598642700022, "out_of_rail_stability_margin": 2.642896403171019, "lateral_surface_wind": -3.0573620893754123, "impact_velocity": -5.477706944082777, "x_impact": 1174.5006263966764, "max_mach_number": 1.0413468444884137, "out_of_rail_time": 0.32351599384480323, "apogee_y": 621.7519492567221, "out_of_rail_velocity": 29.16595271280187, "apogee_x": 341.4731125065638, "initial_stability_margin": 2.577605429611069, "t_final": 359.3882318853068, "apogee_time": 28.665683640439234, "frontal_surface_wind": 1.062227659099666, "y_impact": 311.5420960550797} -{"apogee": 3502.4485352140673, "out_of_rail_stability_margin": 2.6318208190880257, "lateral_surface_wind": -1.9704062459620757, "impact_velocity": -5.518874060263892, "x_impact": 986.7191526237043, "max_mach_number": 0.8371321651474564, "out_of_rail_time": 0.3572717455067731, "apogee_y": 458.435213268322, "out_of_rail_velocity": 25.762852151412698, "apogee_x": 329.0852038841442, "initial_stability_margin": 2.5610491565658635, "t_final": 297.73899257756153, "apogee_time": 26.161104799925806, "frontal_surface_wind": 0.7899696530143734, "y_impact": 258.21942764025226} -{"apogee": 3423.4608076423756, "out_of_rail_stability_margin": 2.605529648361771, "lateral_surface_wind": -2.1292799900742705, "impact_velocity": -5.5370731114746095, "x_impact": 637.9021601329043, "max_mach_number": 0.8209678166235083, "out_of_rail_time": 0.36048938868787156, "apogee_y": 317.7617445608233, "out_of_rail_velocity": 25.48242043902743, "apogee_x": 106.79553925640364, "initial_stability_margin": 2.5312330928662337, "t_final": 303.1409512058995, "apogee_time": 25.872980951523193, "frontal_surface_wind": 1.2862376435497143, "y_impact": 165.3299656476826} -{"apogee": 3563.6785040046657, "out_of_rail_stability_margin": 2.7610871349106736, "lateral_surface_wind": -1.3564759552196872, "impact_velocity": -5.579117882551926, "x_impact": 782.9871489771559, "max_mach_number": 0.8434793563730127, "out_of_rail_time": 0.35533114563202933, "apogee_y": 391.77842056698057, "out_of_rail_velocity": 25.90748664373011, "apogee_x": 303.531938453343, "initial_stability_margin": 2.6916930472490805, "t_final": 303.72236883639016, "apogee_time": 26.361103833210837, "frontal_surface_wind": 0.6198291495262394, "y_impact": 298.2810461297362} -{"apogee": 3104.2865949596967, "out_of_rail_stability_margin": 2.719763660777037, "lateral_surface_wind": -1.5500858289536457, "impact_velocity": -5.614463443380715, "x_impact": 853.5327841939192, "max_mach_number": 0.7588200745455654, "out_of_rail_time": 0.37145259570185213, "apogee_y": 388.73656643829446, "out_of_rail_velocity": 24.54777698487825, "apogee_x": 288.8811925070621, "initial_stability_margin": 2.6498599981442053, "t_final": 271.7108050204258, "apogee_time": 24.88238989110597, "frontal_surface_wind": 1.3292848883233883, "y_impact": 422.91675855297046} -{"apogee": 2834.5589815835015, "out_of_rail_stability_margin": 2.764986504468703, "lateral_surface_wind": -0.5955232587051549, "impact_velocity": -5.593547671637091, "x_impact": 648.8054691642308, "max_mach_number": 0.7176487255141675, "out_of_rail_time": 0.38205809777552713, "apogee_y": 458.63615406429403, "out_of_rail_velocity": 23.7397329976522, "apogee_x": 535.0447312184388, "initial_stability_margin": 2.687200194578485, "t_final": 259.8109186931802, "apogee_time": 23.907404693345846, "frontal_surface_wind": -0.7406780455584928, "y_impact": 466.97491509808407} -{"apogee": 4006.2499020263426, "out_of_rail_stability_margin": 2.6893126696633436, "lateral_surface_wind": -1.5228894994288702, "impact_velocity": -5.324762454388933, "x_impact": 1069.6505650601014, "max_mach_number": 0.9507309756734977, "out_of_rail_time": 0.3382798273023387, "apogee_y": 400.18282978659187, "out_of_rail_velocity": 27.62493765275891, "apogee_x": 300.5154136261459, "initial_stability_margin": 2.619843579857746, "t_final": 339.53976251554826, "apogee_time": 27.48902860328279, "frontal_surface_wind": 1.3603572927643384, "y_impact": 407.9512270516518} -{"apogee": 2983.653772087136, "out_of_rail_stability_margin": 2.6823269268775527, "lateral_surface_wind": -2.145439939677996, "impact_velocity": -5.324483840419802, "x_impact": 814.8484369750062, "max_mach_number": 0.7507837470541813, "out_of_rail_time": 0.37491526479048454, "apogee_y": 419.6824958278045, "out_of_rail_velocity": 24.314949514003803, "apogee_x": 248.19991510675447, "initial_stability_margin": 2.605070817226868, "t_final": 280.32118054843903, "apogee_time": 24.324818572325036, "frontal_surface_wind": 0.9189668944015044, "y_impact": 305.6305166721084} -{"apogee": 3795.7293192540715, "out_of_rail_stability_margin": 2.777693167720181, "lateral_surface_wind": -1.3318082094009718, "impact_velocity": -5.504347444323795, "x_impact": 906.5316376420909, "max_mach_number": 0.902240439472033, "out_of_rail_time": 0.34540602846021295, "apogee_y": 501.23261911381525, "out_of_rail_velocity": 26.854467847239953, "apogee_x": 436.85335610885045, "initial_stability_margin": 2.711160554839719, "t_final": 327.68658831414524, "apogee_time": 26.979608075025784, "frontal_surface_wind": 0.48943463044740443, "y_impact": 171.2102680807606} -{"apogee": 3330.5905560786982, "out_of_rail_stability_margin": 2.699066561265204, "lateral_surface_wind": -3.1001924180148785, "impact_velocity": -5.3547900896267855, "x_impact": 887.6175462531099, "max_mach_number": 0.8147912002556511, "out_of_rail_time": 0.3608639292126589, "apogee_y": 520.6072342250743, "out_of_rail_velocity": 25.41060667151038, "apogee_x": 216.66320935991308, "initial_stability_margin": 2.627226221319361, "t_final": 312.30023960086226, "apogee_time": 25.505390145542417, "frontal_surface_wind": 0.9298373602891015, "y_impact": 211.43173915730588} -{"apogee": 2496.303346128531, "out_of_rail_stability_margin": 2.6658033377456007, "lateral_surface_wind": -2.674730272997465, "impact_velocity": -5.536003806168939, "x_impact": 693.9774065486328, "max_mach_number": 0.6535340520669879, "out_of_rail_time": 0.39769985685325293, "apogee_y": 496.95679311184284, "out_of_rail_velocity": 22.633112981948752, "apogee_x": 351.27515832598164, "initial_stability_margin": 2.5846809763523426, "t_final": 247.3769326176034, "apogee_time": 22.626484551295054, "frontal_surface_wind": 0.2964638702676299, "y_impact": 172.75566860689793} -{"apogee": 4032.1614816059864, "out_of_rail_stability_margin": 2.5239345193986154, "lateral_surface_wind": -1.5464330159851805, "impact_velocity": -5.460978523123796, "x_impact": 819.8738960014254, "max_mach_number": 0.9442950837555322, "out_of_rail_time": 0.33849870347763067, "apogee_y": 333.77007109562675, "out_of_rail_velocity": 27.544141152738696, "apogee_x": 196.20537614123086, "initial_stability_margin": 2.455953904690064, "t_final": 340.88147152035236, "apogee_time": 27.64164001554401, "frontal_surface_wind": 1.0595069335618654, "y_impact": 306.7788212478851} -{"apogee": 4456.76962638192, "out_of_rail_stability_margin": 2.612657808277777, "lateral_surface_wind": -1.3391922507722427, "impact_velocity": -5.263820048729469, "x_impact": 1138.3981199044204, "max_mach_number": 1.0888216770890013, "out_of_rail_time": 0.31696543926120363, "apogee_y": 610.4671815669478, "out_of_rail_velocity": 30.05789846799408, "apogee_x": 559.3903699848856, "initial_stability_margin": 2.548402153216048, "t_final": 363.2840638630391, "apogee_time": 28.513479545380847, "frontal_surface_wind": 0.46885336682227635, "y_impact": 224.24820479942792} -{"apogee": 3238.2526192272376, "out_of_rail_stability_margin": 2.5593510111720987, "lateral_surface_wind": -0.4083902366136845, "impact_velocity": -5.345394676046651, "x_impact": 768.6225660139429, "max_mach_number": 0.8011121926604361, "out_of_rail_time": 0.3647620005723778, "apogee_y": 405.11746787999425, "out_of_rail_velocity": 25.11984391101251, "apogee_x": 461.9305924389689, "initial_stability_margin": 2.4817884864170616, "t_final": 299.5552105464926, "apogee_time": 25.178005877506713, "frontal_surface_wind": 0.2202552002292676, "y_impact": 660.1467087702274} -{"apogee": 3996.292003788015, "out_of_rail_stability_margin": 2.749704752005272, "lateral_surface_wind": -1.2910270788590836, "impact_velocity": -5.523401465731419, "x_impact": 1236.3057959175403, "max_mach_number": 0.9398929895774846, "out_of_rail_time": 0.3394632277074138, "apogee_y": 558.5070042555241, "out_of_rail_velocity": 27.418178379532375, "apogee_x": 648.4438270297834, "initial_stability_margin": 2.6805673803931573, "t_final": 326.85535002891197, "apogee_time": 27.5664229340932, "frontal_surface_wind": 0.7466353014318076, "y_impact": 464.4624692083545} -{"apogee": 3252.5357791235583, "out_of_rail_stability_margin": 2.577084923899416, "lateral_surface_wind": -1.580624484819916, "impact_velocity": -5.469319718597554, "x_impact": 1068.6009295330973, "max_mach_number": 0.797057168508243, "out_of_rail_time": 0.3642934448343886, "apogee_y": 527.2305232093486, "out_of_rail_velocity": 25.127731227207704, "apogee_x": 437.02300462038517, "initial_stability_margin": 2.50425452584908, "t_final": 287.4002378102633, "apogee_time": 25.28880682804008, "frontal_surface_wind": 1.2928227370508343, "y_impact": 575.6309637822491} -{"apogee": 4414.034960371694, "out_of_rail_stability_margin": 2.6502162512647245, "lateral_surface_wind": -1.9390710602234162, "impact_velocity": -5.49321491330136, "x_impact": 1439.5229437990527, "max_mach_number": 1.0424000604100578, "out_of_rail_time": 0.3227837745061974, "apogee_y": 599.1836232208595, "out_of_rail_velocity": 29.272488234212823, "apogee_x": 558.3391641768674, "initial_stability_margin": 2.5890949567746935, "t_final": 344.8531690002926, "apogee_time": 28.654122986087412, "frontal_surface_wind": 0.8640348663185099, "y_impact": 341.2303478960557} -{"apogee": 3731.501214367177, "out_of_rail_stability_margin": 2.761018704220127, "lateral_surface_wind": -2.087444507665992, "impact_velocity": -5.465513667536433, "x_impact": 890.9577977605127, "max_mach_number": 0.8848271113168379, "out_of_rail_time": 0.3483706804440272, "apogee_y": 485.8911804100415, "out_of_rail_velocity": 26.570836783397734, "apogee_x": 356.16491294542044, "initial_stability_margin": 2.6920156838944473, "t_final": 314.85108077227926, "apogee_time": 26.800313461914463, "frontal_surface_wind": 0.914474587366241, "y_impact": 159.8220221228998} -{"apogee": 3510.701985255898, "out_of_rail_stability_margin": 2.7110862938132305, "lateral_surface_wind": -1.1645792479175496, "impact_velocity": -5.525889052429058, "x_impact": 872.392531668856, "max_mach_number": 0.8422355323004072, "out_of_rail_time": 0.35542625736286443, "apogee_y": 461.7371849041339, "out_of_rail_velocity": 25.916949197781854, "apogee_x": 424.8281204845656, "initial_stability_margin": 2.643579552554801, "t_final": 303.3908109886069, "apogee_time": 26.142656555862683, "frontal_surface_wind": 0.39807423163187616, "y_impact": 482.17236997474987} -{"apogee": 3650.776570038754, "out_of_rail_stability_margin": 2.6961261883378174, "lateral_surface_wind": -1.505184593510348, "impact_velocity": -5.5067105145661825, "x_impact": 820.274849749355, "max_mach_number": 0.8650551278971261, "out_of_rail_time": 0.3519373882367376, "apogee_y": 355.80431643264, "out_of_rail_velocity": 26.247676173656505, "apogee_x": 258.765085605665, "initial_stability_margin": 2.625770590941065, "t_final": 308.6014036371419, "apogee_time": 26.573897745417266, "frontal_surface_wind": 1.1173313540099805, "y_impact": 340.1084439738716} -{"apogee": 3953.2711046058985, "out_of_rail_stability_margin": 2.581287933747567, "lateral_surface_wind": -3.0159539592586846, "impact_velocity": -5.338264591142877, "x_impact": 1326.6406668128348, "max_mach_number": 0.9570555353501108, "out_of_rail_time": 0.33794796131822674, "apogee_y": 724.3403112051167, "out_of_rail_velocity": 27.66278170019636, "apogee_x": 526.8174086376582, "initial_stability_margin": 2.509904913814886, "t_final": 336.986648535671, "apogee_time": 27.263390510456116, "frontal_surface_wind": 0.7108606803365143, "y_impact": 227.32074769932674} -{"apogee": 2575.244343021042, "out_of_rail_stability_margin": 2.624504053071045, "lateral_surface_wind": -2.134899932999538, "impact_velocity": -5.608569927499798, "x_impact": 633.0114087374023, "max_mach_number": 0.6621342284670833, "out_of_rail_time": 0.39522087693278685, "apogee_y": 366.20118670892015, "out_of_rail_velocity": 22.79322133285753, "apogee_x": 223.34524342428753, "initial_stability_margin": 2.5434732228317096, "t_final": 248.30981562062283, "apogee_time": 22.961283223671554, "frontal_surface_wind": 0.8128286343142256, "y_impact": 233.28447074125017} -{"apogee": 3179.378716432187, "out_of_rail_stability_margin": 2.622027592168603, "lateral_surface_wind": -2.1835621708986794, "impact_velocity": -5.436902750335183, "x_impact": 702.5591031909129, "max_mach_number": 0.779577102849213, "out_of_rail_time": 0.368047857024332, "apogee_y": 373.82580901419686, "out_of_rail_velocity": 24.84930373687392, "apogee_x": 170.9985139010129, "initial_stability_margin": 2.5485452199693963, "t_final": 285.54936704078517, "apogee_time": 25.05500657978672, "frontal_surface_wind": 0.925692471716516, "y_impact": 138.26653212490405} -{"apogee": 1848.050150638808, "out_of_rail_stability_margin": 2.699918325303497, "lateral_surface_wind": -1.8978225229848225, "impact_velocity": -5.349294189588904, "x_impact": 434.4398156437155, "max_mach_number": 0.5250744591911991, "out_of_rail_time": 0.4368017715380766, "apogee_y": 180.13930289122345, "out_of_rail_velocity": 20.280624309087575, "apogee_x": 51.068554411025936, "initial_stability_margin": 2.611512415066769, "t_final": 217.41091917102742, "apogee_time": 19.781460324772738, "frontal_surface_wind": 1.4195725832920343, "y_impact": 55.86890233843252} -{"apogee": 3440.1111619969233, "out_of_rail_stability_margin": 2.676391239734848, "lateral_surface_wind": -0.4190683215302228, "impact_velocity": -5.5523869770030725, "x_impact": 837.0729741137424, "max_mach_number": 0.8281238777967669, "out_of_rail_time": 0.3583503214934026, "apogee_y": 499.26978610068943, "out_of_rail_velocity": 25.647037425404214, "apogee_x": 519.7577832665985, "initial_stability_margin": 2.607447059931591, "t_final": 298.14317975050324, "apogee_time": 25.953806848491677, "frontal_surface_wind": 0.19919006119597882, "y_impact": 777.9887016011265} -{"apogee": 3476.787196241663, "out_of_rail_stability_margin": 2.663898723814673, "lateral_surface_wind": -1.8770260628155722, "impact_velocity": -5.453155238464021, "x_impact": 1029.1395847163826, "max_mach_number": 0.838988768492556, "out_of_rail_time": 0.3561360864769341, "apogee_y": 538.9426068035679, "out_of_rail_velocity": 25.83680395854392, "apogee_x": 431.2529229634045, "initial_stability_margin": 2.594172434195471, "t_final": 304.1282783317588, "apogee_time": 26.010997012970186, "frontal_surface_wind": 0.8664831580008439, "y_impact": 476.71246803734687} -{"apogee": 3549.4140746388184, "out_of_rail_stability_margin": 2.758703303630396, "lateral_surface_wind": -2.677210749298964, "impact_velocity": -5.573635261092017, "x_impact": 960.0274980686818, "max_mach_number": 0.852539669149905, "out_of_rail_time": 0.35461671595476263, "apogee_y": 636.8343531307909, "out_of_rail_velocity": 25.99602079627155, "apogee_x": 455.5543247265502, "initial_stability_margin": 2.6878182648468063, "t_final": 301.91689279305194, "apogee_time": 26.272188481923774, "frontal_surface_wind": 0.2731583121584158, "y_impact": 257.1435213238282} -{"apogee": 2623.0103152575102, "out_of_rail_stability_margin": 2.61568945573113, "lateral_surface_wind": -1.3265568165746084, "impact_velocity": -5.38132889012678, "x_impact": 490.98488930361907, "max_mach_number": 0.6735539040687365, "out_of_rail_time": 0.39294818253946395, "apogee_y": 252.56820408908735, "out_of_rail_velocity": 23.01657299765909, "apogee_x": 183.56465823386964, "initial_stability_margin": 2.5334532690175346, "t_final": 257.97455030091965, "apogee_time": 23.068249785690067, "frontal_surface_wind": 0.6815146396747653, "y_impact": 174.25011755561798} -{"apogee": 3656.6559767189847, "out_of_rail_stability_margin": 2.497846327850364, "lateral_surface_wind": -2.0699793299224285, "impact_velocity": -5.204159957266324, "x_impact": 1159.2713417148334, "max_mach_number": 0.8971822190760215, "out_of_rail_time": 0.3464429213084714, "apogee_y": 592.2549266733176, "out_of_rail_velocity": 26.746235128436652, "apogee_x": 471.4487421293097, "initial_stability_margin": 2.4250020878101743, "t_final": 335.7910052111877, "apogee_time": 26.350097384627844, "frontal_surface_wind": 0.376691169180713, "y_impact": 249.00623248944748} -{"apogee": 3207.593311237677, "out_of_rail_stability_margin": 2.58308740355505, "lateral_surface_wind": -2.0887236556168602, "impact_velocity": -5.469462782763986, "x_impact": 656.7145526306188, "max_mach_number": 0.7855524190350633, "out_of_rail_time": 0.3681398146859271, "apogee_y": 319.95026340727634, "out_of_rail_velocity": 24.851088242836614, "apogee_x": 110.35664582227356, "initial_stability_margin": 2.504369758439721, "t_final": 287.2799000175867, "apogee_time": 25.139236174109502, "frontal_surface_wind": 0.9661624685613123, "y_impact": 147.33016984463686} -{"apogee": 3662.39175929337, "out_of_rail_stability_margin": 2.745324785725856, "lateral_surface_wind": -1.6519900741639706, "impact_velocity": -5.449683569362654, "x_impact": 1056.2257128630838, "max_mach_number": 0.8735855773462383, "out_of_rail_time": 0.3513545150332488, "apogee_y": 513.3833996636072, "out_of_rail_velocity": 26.29389756272948, "apogee_x": 424.3203655605339, "initial_stability_margin": 2.671448634095128, "t_final": 326.4801039600619, "apogee_time": 26.590262291528727, "frontal_surface_wind": 0.8335915082845833, "y_impact": 592.1558553143528} -{"apogee": 4396.4937173407725, "out_of_rail_stability_margin": 2.5570619087667126, "lateral_surface_wind": -1.205362951011053, "impact_velocity": -5.328705168948533, "x_impact": 1288.4025055878112, "max_mach_number": 1.07302585266271, "out_of_rail_time": 0.31775439414353573, "apogee_y": 716.8927149212601, "out_of_rail_velocity": 29.835401220932617, "apogee_x": 766.0555156296972, "initial_stability_margin": 2.495357645286579, "t_final": 355.2146422666062, "apogee_time": 28.38456170281988, "frontal_surface_wind": 0.48385756865634777, "y_impact": 780.8491400575427} -{"apogee": 4340.317339131403, "out_of_rail_stability_margin": 2.5287407059272518, "lateral_surface_wind": -1.8429477582938458, "impact_velocity": -5.257034947109751, "x_impact": 1184.6352071158344, "max_mach_number": 1.0512507614139952, "out_of_rail_time": 0.32117366018380267, "apogee_y": 506.27076704618753, "out_of_rail_velocity": 29.45081768920201, "apogee_x": 424.2960489898819, "initial_stability_margin": 2.4636070381879476, "t_final": 359.93403160805286, "apogee_time": 28.232368809509897, "frontal_surface_wind": 0.9367835736111797, "y_impact": 416.73827886006245} -{"apogee": 4207.378074691176, "out_of_rail_stability_margin": 2.697279512990111, "lateral_surface_wind": -2.099981111370875, "impact_velocity": -5.465487156157773, "x_impact": 875.5247022284642, "max_mach_number": 0.9912817283324858, "out_of_rail_time": 0.33093431075004814, "apogee_y": 431.1787134937747, "out_of_rail_velocity": 28.353512607585674, "apogee_x": 248.2512801117469, "initial_stability_margin": 2.6307531278134713, "t_final": 342.75693138946593, "apogee_time": 28.06941502395305, "frontal_surface_wind": 1.333536607559219, "y_impact": 281.11111120992314} -{"apogee": 3034.903099076614, "out_of_rail_stability_margin": 2.6625796752985664, "lateral_surface_wind": -2.0523168133733476, "impact_velocity": -5.402789967721464, "x_impact": 842.9919210209121, "max_mach_number": 0.7595449393810717, "out_of_rail_time": 0.3723658260877705, "apogee_y": 438.61463797634406, "out_of_rail_velocity": 24.519615997665426, "apogee_x": 297.0366934894181, "initial_stability_margin": 2.589054070182786, "t_final": 279.3831332969569, "apogee_time": 24.513311663390397, "frontal_surface_wind": 1.0412646746793133, "y_impact": 286.79591307724485} -{"apogee": 2457.7235610460766, "out_of_rail_stability_margin": 2.6365464672164562, "lateral_surface_wind": -2.676730056388706, "impact_velocity": -5.450570375416887, "x_impact": 310.7431042065017, "max_mach_number": 0.6416723976059957, "out_of_rail_time": 0.4008864928034361, "apogee_y": 263.9080926659473, "out_of_rail_velocity": 22.418890637501395, "apogee_x": 29.896787125170405, "initial_stability_margin": 2.553507980599755, "t_final": 248.5925344451848, "apogee_time": 22.46095162869254, "frontal_surface_wind": 0.27782920092831964, "y_impact": -104.91107180304522} -{"apogee": 3810.0410470459415, "out_of_rail_stability_margin": 2.7095474691380215, "lateral_surface_wind": -1.897200287195484, "impact_velocity": -5.427620716258122, "x_impact": 1073.6973221732196, "max_mach_number": 0.9028089278277722, "out_of_rail_time": 0.3450597762523207, "apogee_y": 556.3399524759992, "out_of_rail_velocity": 26.90231599501796, "apogee_x": 412.4019940353305, "initial_stability_margin": 2.6430973293451623, "t_final": 324.6837227006856, "apogee_time": 27.02166631323955, "frontal_surface_wind": 0.821371398244069, "y_impact": 494.19026473272544} -{"apogee": 4237.073641282932, "out_of_rail_stability_margin": 2.7427501030965855, "lateral_surface_wind": -1.9275938430622626, "impact_velocity": -5.464746371030179, "x_impact": 1069.6752113791529, "max_mach_number": 0.998909444139322, "out_of_rail_time": 0.329268819069506, "apogee_y": 514.8060001356309, "out_of_rail_velocity": 28.53307633116796, "apogee_x": 436.0916575878288, "initial_stability_margin": 2.6788637905737915, "t_final": 335.72546045314584, "apogee_time": 28.161275867942756, "frontal_surface_wind": 1.174719850504363, "y_impact": 417.2037978418531} -{"apogee": 3975.9173591126537, "out_of_rail_stability_margin": 2.660890503005967, "lateral_surface_wind": -3.047424601742833, "impact_velocity": -5.418661076441967, "x_impact": 1187.5205860862304, "max_mach_number": 0.948175269089397, "out_of_rail_time": 0.3393406664049944, "apogee_y": 703.1543302481514, "out_of_rail_velocity": 27.488971266414183, "apogee_x": 416.2879444357191, "initial_stability_margin": 2.5889373766239925, "t_final": 333.03528117618947, "apogee_time": 27.436867005247834, "frontal_surface_wind": 0.5608069970222962, "y_impact": 203.47999106727923} -{"apogee": 3428.1720775320414, "out_of_rail_stability_margin": 2.6873435368796446, "lateral_surface_wind": -1.3741099550985945, "impact_velocity": -5.478618996085541, "x_impact": 661.3831887152548, "max_mach_number": 0.8251799645505903, "out_of_rail_time": 0.3582494947585515, "apogee_y": 326.46550901481714, "out_of_rail_velocity": 25.65615680767636, "apogee_x": 229.5097499565703, "initial_stability_margin": 2.6184682611851975, "t_final": 306.7604802744957, "apogee_time": 25.846792808018233, "frontal_surface_wind": 0.5969354094569109, "y_impact": 192.6496294647785} -{"apogee": 3998.4941126750514, "out_of_rail_stability_margin": 2.835114588957155, "lateral_surface_wind": -2.116605528600673, "impact_velocity": -5.540346657403265, "x_impact": 768.5262733294619, "max_mach_number": 0.9314587330377581, "out_of_rail_time": 0.34010506475592067, "apogee_y": 431.62490086854376, "out_of_rail_velocity": 27.37468671026672, "apogee_x": 236.17034151154675, "initial_stability_margin": 2.770464715382531, "t_final": 318.92664990277046, "apogee_time": 27.61611145956954, "frontal_surface_wind": 0.8447895476511523, "y_impact": 90.529784103166} -{"apogee": 3551.1547846759795, "out_of_rail_stability_margin": 2.748066381547824, "lateral_surface_wind": -2.6658588472678377, "impact_velocity": -5.496315479520978, "x_impact": 669.693788513035, "max_mach_number": 0.8488004833572879, "out_of_rail_time": 0.355436192778598, "apogee_y": 429.63099837944145, "out_of_rail_velocity": 25.968165153820866, "apogee_x": 202.04006616228358, "initial_stability_margin": 2.6785859740564146, "t_final": 306.4826335945922, "apogee_time": 26.2750152489907, "frontal_surface_wind": 0.36778997553895887, "y_impact": 4.821477113560182} -{"apogee": 3185.0974788502162, "out_of_rail_stability_margin": 2.7637849125154963, "lateral_surface_wind": -0.6870348481782038, "impact_velocity": -5.59532407150376, "x_impact": 821.8202324684098, "max_mach_number": 0.779077962814457, "out_of_rail_time": 0.36767374065097747, "apogee_y": 403.9548601973963, "out_of_rail_velocity": 24.84682349040826, "apogee_x": 457.56352629364955, "initial_stability_margin": 2.693170843964331, "t_final": 279.75499030266565, "apogee_time": 25.1266824507225, "frontal_surface_wind": 0.8817890611691611, "y_impact": 535.577221924628} -{"apogee": 3556.4595295696504, "out_of_rail_stability_margin": 2.689559438372978, "lateral_surface_wind": -1.8769177069602758, "impact_velocity": -5.511758659557698, "x_impact": 1083.6995636607396, "max_mach_number": 0.8526548662522592, "out_of_rail_time": 0.35432098645729015, "apogee_y": 511.2848327978661, "out_of_rail_velocity": 26.025430348169643, "apogee_x": 405.42627112629106, "initial_stability_margin": 2.618395938704764, "t_final": 313.836151797122, "apogee_time": 26.271636567301293, "frontal_surface_wind": 1.2894272237014386, "y_impact": 353.027395480414} -{"apogee": 3738.1629822670416, "out_of_rail_stability_margin": 2.648938094276036, "lateral_surface_wind": -1.2120062622974213, "impact_velocity": -5.337429134126408, "x_impact": 733.3093869522127, "max_mach_number": 0.8962128754543772, "out_of_rail_time": 0.3474613158270514, "apogee_y": 408.4356738355221, "out_of_rail_velocity": 26.680274766316533, "apogee_x": 345.02280247557627, "initial_stability_margin": 2.576411994760128, "t_final": 331.06312644455176, "apogee_time": 26.743276505660877, "frontal_surface_wind": 0.46696767614893975, "y_impact": 422.83673518469976} -{"apogee": 2804.9206505057828, "out_of_rail_stability_margin": 2.6054234206301405, "lateral_surface_wind": -1.2977846526471053, "impact_velocity": -5.358944831873192, "x_impact": 633.6578167641755, "max_mach_number": 0.7186393865305077, "out_of_rail_time": 0.38220681554604874, "apogee_y": 364.9863130491271, "out_of_rail_velocity": 23.737240622519227, "apogee_x": 347.14822874366445, "initial_stability_margin": 2.5241130392793187, "t_final": 273.5010350672718, "apogee_time": 23.690871100103443, "frontal_surface_wind": 0.5735977331393854, "y_impact": 161.83366601955115} -{"apogee": 3128.381428792398, "out_of_rail_stability_margin": 2.643921634027496, "lateral_surface_wind": -2.3291715810116442, "impact_velocity": -5.537005938838229, "x_impact": 763.4605951565599, "max_mach_number": 0.7662555378265006, "out_of_rail_time": 0.3714023476553864, "apogee_y": 360.04957807658997, "out_of_rail_velocity": 24.57531687250814, "apogee_x": 175.78425618027882, "initial_stability_margin": 2.566516398200769, "t_final": 286.68300578182993, "apogee_time": 24.916781587842426, "frontal_surface_wind": 0.9481894496567869, "y_impact": 87.30184176530192} -{"apogee": 3702.469682939077, "out_of_rail_stability_margin": 2.620012257666583, "lateral_surface_wind": -3.023853754558089, "impact_velocity": -5.307456379526827, "x_impact": 1080.888333856464, "max_mach_number": 0.8989252569518582, "out_of_rail_time": 0.34556387455057497, "apogee_y": 605.6680462830014, "out_of_rail_velocity": 26.834262590128724, "apogee_x": 365.7490655124262, "initial_stability_margin": 2.5527751016367217, "t_final": 315.9011803149699, "apogee_time": 26.561849091064666, "frontal_surface_wind": 0.6764685227426168, "y_impact": 134.38466666877483} -{"apogee": 4322.190299863172, "out_of_rail_stability_margin": 2.5448197510896713, "lateral_surface_wind": -0.5497457915740166, "impact_velocity": -5.364468755896273, "x_impact": 900.1910515609932, "max_mach_number": 1.0440428985212291, "out_of_rail_time": 0.3223186864372146, "apogee_y": 543.9517966503611, "out_of_rail_velocity": 29.31910861807239, "apogee_x": 570.745548134835, "initial_stability_margin": 2.4809736709477677, "t_final": 358.4855936230534, "apogee_time": 28.234267051420375, "frontal_surface_wind": -0.7752622030499188, "y_impact": 606.1595218022154} -{"apogee": 4072.7588053737677, "out_of_rail_stability_margin": 2.6782091334483487, "lateral_surface_wind": -3.0231746874119434, "impact_velocity": -5.4499058350045475, "x_impact": 1358.7854046621883, "max_mach_number": 0.9743611057482995, "out_of_rail_time": 0.33339593544675505, "apogee_y": 754.2972955636819, "out_of_rail_velocity": 28.067052496617634, "apogee_x": 543.2515402801081, "initial_stability_margin": 2.613632784713504, "t_final": 342.0894212019378, "apogee_time": 27.669729905493863, "frontal_surface_wind": 0.6794968731409459, "y_impact": 244.24599379104288} -{"apogee": 2161.7802926002287, "out_of_rail_stability_margin": 2.6906933920607536, "lateral_surface_wind": -1.4022545234363393, "impact_velocity": -5.446006273505972, "x_impact": 387.5466259605906, "max_mach_number": 0.5859855109339692, "out_of_rail_time": 0.415669534578086, "apogee_y": 275.35428140534606, "out_of_rail_velocity": 21.508308455405174, "apogee_x": 176.71386888375184, "initial_stability_margin": 2.6077930554010464, "t_final": 230.12681749195053, "apogee_time": 21.210645970520225, "frontal_surface_wind": 0.5274393835000157, "y_impact": 198.37366662959653} -{"apogee": 3236.2918655388657, "out_of_rail_stability_margin": 2.744736357009094, "lateral_surface_wind": -1.5092147702557392, "impact_velocity": -5.550986809788412, "x_impact": 764.1580035469311, "max_mach_number": 0.7849028293615001, "out_of_rail_time": 0.3673975390371415, "apogee_y": 292.90695797094105, "out_of_rail_velocity": 24.89871901447885, "apogee_x": 179.48347154235344, "initial_stability_margin": 2.669764454004975, "t_final": 286.16960482206645, "apogee_time": 25.285251123413325, "frontal_surface_wind": 1.3755126930311294, "y_impact": 308.28943180955656} -{"apogee": 3984.359967495045, "out_of_rail_stability_margin": 2.6501468379778235, "lateral_surface_wind": -1.9986323996962376, "impact_velocity": -5.374484293413484, "x_impact": 969.3672672929318, "max_mach_number": 0.9436057876665073, "out_of_rail_time": 0.33863374955332454, "apogee_y": 464.7288750706483, "out_of_rail_velocity": 27.507370753817852, "apogee_x": 288.6205465924435, "initial_stability_margin": 2.582397119417677, "t_final": 328.45261476635284, "apogee_time": 27.467275180510097, "frontal_surface_wind": 0.6394413375351157, "y_impact": 340.4402534160047} -{"apogee": 3681.5288243959412, "out_of_rail_stability_margin": 2.6970921818251643, "lateral_surface_wind": -2.1009403237662734, "impact_velocity": -5.471102238415585, "x_impact": 1081.5591316605507, "max_mach_number": 0.8764212503868396, "out_of_rail_time": 0.35115044631482095, "apogee_y": 508.27950606127183, "out_of_rail_velocity": 26.335425726131778, "apogee_x": 372.4450339305551, "initial_stability_margin": 2.623206323699162, "t_final": 319.0393383149801, "apogee_time": 26.66424064129367, "frontal_surface_wind": 1.0165935489389721, "y_impact": 367.10878215144277} -{"apogee": 2726.256131832448, "out_of_rail_stability_margin": 2.656711780096248, "lateral_surface_wind": -1.3705428243593096, "impact_velocity": -5.51050826466543, "x_impact": 516.901186411278, "max_mach_number": 0.6916154882644869, "out_of_rail_time": 0.3874439834414777, "apogee_y": 310.3178040157263, "out_of_rail_velocity": 23.35066993813454, "apogee_x": 232.0272768066901, "initial_stability_margin": 2.5781095290225164, "t_final": 262.3685323852395, "apogee_time": 23.48699495301132, "frontal_surface_wind": 0.6050805056864402, "y_impact": 213.3986908414944} -{"apogee": 2157.021685453306, "out_of_rail_stability_margin": 2.7120914637836084, "lateral_surface_wind": -1.1579108164799992, "impact_velocity": -5.456737412973397, "x_impact": 463.435854881682, "max_mach_number": 0.5869453544924452, "out_of_rail_time": 0.41612755188966116, "apogee_y": 274.97192620461306, "out_of_rail_velocity": 21.448406593948473, "apogee_x": 234.60510921715405, "initial_stability_margin": 2.6258637076591373, "t_final": 228.73545604790792, "apogee_time": 21.19059687882025, "frontal_surface_wind": 0.41707368611330065, "y_impact": 245.63328448526485} -{"apogee": 4465.610207427962, "out_of_rail_stability_margin": 2.5983877113659903, "lateral_surface_wind": -2.0574445218523176, "impact_velocity": -5.43494364087283, "x_impact": 992.3966765498228, "max_mach_number": 1.06400172613533, "out_of_rail_time": 0.3193781646274986, "apogee_y": 459.52863089380145, "out_of_rail_velocity": 29.66364927393739, "apogee_x": 327.18661951877664, "initial_stability_margin": 2.5346974486136262, "t_final": 354.5986600711306, "apogee_time": 28.672381336065133, "frontal_surface_wind": 1.3982712867376252, "y_impact": 308.0347947903882} -{"apogee": 3403.4597961016284, "out_of_rail_stability_margin": 2.747359242680176, "lateral_surface_wind": -3.0990960008675765, "impact_velocity": -5.430225980064759, "x_impact": 843.6168247398724, "max_mach_number": 0.8238856563784349, "out_of_rail_time": 0.3600820093439915, "apogee_y": 515.2772427510657, "out_of_rail_velocity": 25.529667013924477, "apogee_x": 198.08569233211605, "initial_stability_margin": 2.6740572088488817, "t_final": 298.8151044689206, "apogee_time": 25.78875025028586, "frontal_surface_wind": 0.9334851486300879, "y_impact": 226.13179704480586} -{"apogee": 4133.897010682191, "out_of_rail_stability_margin": 2.6349161950940347, "lateral_surface_wind": -1.210594274046985, "impact_velocity": -5.373854911691671, "x_impact": 937.4711595119296, "max_mach_number": 0.9868953903281668, "out_of_rail_time": 0.3317340661265924, "apogee_y": 520.2412797048461, "out_of_rail_velocity": 28.256408893845727, "apogee_x": 488.6554661076484, "initial_stability_margin": 2.5685828657496517, "t_final": 336.6050640521676, "apogee_time": 27.82552714617621, "frontal_surface_wind": 0.4706160792628743, "y_impact": 559.7015993016745} -{"apogee": 3135.801819780996, "out_of_rail_stability_margin": 2.7306159364585407, "lateral_surface_wind": -3.040166107172743, "impact_velocity": -5.4330695307091705, "x_impact": 894.6151999895586, "max_mach_number": 0.7780873199235733, "out_of_rail_time": 0.36928178303088344, "apogee_y": 550.258888825213, "out_of_rail_velocity": 24.74315393100348, "apogee_x": 283.41562336586117, "initial_stability_margin": 2.6541762434178686, "t_final": 287.45747199385517, "apogee_time": 24.88994469115797, "frontal_surface_wind": 0.5989083669600526, "y_impact": 148.55848011614694} -{"apogee": 3407.377465446408, "out_of_rail_stability_margin": 2.563984308290287, "lateral_surface_wind": -0.7411015071930224, "impact_velocity": -5.445771148231535, "x_impact": 669.5475974631042, "max_mach_number": 0.8224101054694901, "out_of_rail_time": 0.3606586332581472, "apogee_y": 332.13953179636513, "out_of_rail_velocity": 25.517942330228205, "apogee_x": 302.0972110667738, "initial_stability_margin": 2.4898873696770543, "t_final": 298.10205129117884, "apogee_time": 25.803669591486223, "frontal_surface_wind": 0.8368616295691116, "y_impact": 462.22666257988726} -{"apogee": 3983.0568251639947, "out_of_rail_stability_margin": 2.6942228931784973, "lateral_surface_wind": -1.5690723506411874, "impact_velocity": -5.532424545590278, "x_impact": 884.0943791776308, "max_mach_number": 0.9256135136509137, "out_of_rail_time": 0.34175149551599193, "apogee_y": 421.45814789224426, "out_of_rail_velocity": 27.19732513439289, "apogee_x": 280.7277166630195, "initial_stability_margin": 2.6257702840500334, "t_final": 324.06555266695904, "apogee_time": 27.598163253602337, "frontal_surface_wind": 1.0256812241861635, "y_impact": 412.2223603749113} -{"apogee": 4462.723990817371, "out_of_rail_stability_margin": 2.698312934579127, "lateral_surface_wind": -2.094624329900476, "impact_velocity": -5.538106227711797, "x_impact": 1198.4581971679174, "max_mach_number": 1.054527972519132, "out_of_rail_time": 0.32128238444503404, "apogee_y": 627.0055789329117, "out_of_rail_velocity": 29.40461751666752, "apogee_x": 519.086600494295, "initial_stability_margin": 2.633296963695565, "t_final": 348.6567059802729, "apogee_time": 28.75824814606502, "frontal_surface_wind": 1.3419349717493723, "y_impact": 500.8377861134759} -{"apogee": 3147.9107688877066, "out_of_rail_stability_margin": 2.6202498165470782, "lateral_surface_wind": -1.4982724914561971, "impact_velocity": -5.469087284048806, "x_impact": 785.6946337734986, "max_mach_number": 0.7737829019776397, "out_of_rail_time": 0.369195930992054, "apogee_y": 358.27174362047606, "out_of_rail_velocity": 24.737796741708312, "apogee_x": 286.97727367164515, "initial_stability_margin": 2.5449954441552745, "t_final": 288.91469390388653, "apogee_time": 24.94379272799145, "frontal_surface_wind": 1.1265831334350462, "y_impact": 347.0794681394072} -{"apogee": 3801.87195519979, "out_of_rail_stability_margin": 2.76566817713078, "lateral_surface_wind": -1.5024589155375354, "impact_velocity": -5.5106939017749745, "x_impact": 861.2433339504079, "max_mach_number": 0.8978474983500995, "out_of_rail_time": 0.346896535250737, "apogee_y": 376.9402033612629, "out_of_rail_velocity": 26.71054300692878, "apogee_x": 282.64519459680224, "initial_stability_margin": 2.693141143467217, "t_final": 312.16846468659276, "apogee_time": 26.99725676064384, "frontal_surface_wind": 1.1209938547184197, "y_impact": 365.49994324670257} -{"apogee": 3164.0827423346336, "out_of_rail_stability_margin": 2.8064076120589116, "lateral_surface_wind": -2.1046819193025246, "impact_velocity": -5.365069284844938, "x_impact": 963.6871841925565, "max_mach_number": 0.7856066807608304, "out_of_rail_time": 0.36729673566504667, "apogee_y": 470.26643645812845, "out_of_rail_velocity": 24.913079608170467, "apogee_x": 340.18208236492933, "initial_stability_margin": 2.730806518505269, "t_final": 293.4677769941122, "apogee_time": 24.940617090451333, "frontal_surface_wind": 1.0088244179898251, "y_impact": 355.011537414641} -{"apogee": 3836.310158687161, "out_of_rail_stability_margin": 2.705754611641561, "lateral_surface_wind": -2.1000558054948706, "impact_velocity": -5.473813548366356, "x_impact": 970.1399454117151, "max_mach_number": 0.9065820555876628, "out_of_rail_time": 0.3446414955020346, "apogee_y": 451.3990184565708, "out_of_rail_velocity": 26.88211618596119, "apogee_x": 314.97229659299484, "initial_stability_margin": 2.6365948011717175, "t_final": 324.783313159804, "apogee_time": 27.097965320198387, "frontal_surface_wind": 1.1020961483371936, "y_impact": 141.59062663973026} -{"apogee": 4146.191288026617, "out_of_rail_stability_margin": 2.7109228803045733, "lateral_surface_wind": -1.1646756963506315, "impact_velocity": -5.360132426946435, "x_impact": 1041.4611045267409, "max_mach_number": 0.9895574583485298, "out_of_rail_time": 0.33115855322500076, "apogee_y": 519.1311391381471, "out_of_rail_velocity": 28.318586811747434, "apogee_x": 489.04664129702627, "initial_stability_margin": 2.6442364162602265, "t_final": 331.16193583352515, "apogee_time": 27.84170822228904, "frontal_surface_wind": 0.3977919568061752, "y_impact": 548.4905672946153} -{"apogee": 2813.039458814013, "out_of_rail_stability_margin": 2.7226983920932946, "lateral_surface_wind": -0.62302221024699, "impact_velocity": -5.587246523361042, "x_impact": 484.67516798856855, "max_mach_number": 0.7106480617077988, "out_of_rail_time": 0.38312688359230884, "apogee_y": 332.3276472852437, "out_of_rail_velocity": 23.660309746416534, "apogee_x": 395.1879008255587, "initial_stability_margin": 2.64640311017261, "t_final": 264.15604472715097, "apogee_time": 23.824097473395792, "frontal_surface_wind": -0.7177013615495731, "y_impact": 320.30811890355227} -{"apogee": 4067.2546144328344, "out_of_rail_stability_margin": 2.7343270492665877, "lateral_surface_wind": -2.1442344140134773, "impact_velocity": -5.427940917185044, "x_impact": 1113.0167773920411, "max_mach_number": 0.9669495956526778, "out_of_rail_time": 0.3350781664549569, "apogee_y": 583.5734446004773, "out_of_rail_velocity": 27.901868030298857, "apogee_x": 428.49355875372, "initial_stability_margin": 2.6663623325656998, "t_final": 344.9534180440594, "apogee_time": 27.667820554548044, "frontal_surface_wind": 0.7878749205570892, "y_impact": 460.45993592730906} -{"apogee": 3277.0632657099054, "out_of_rail_stability_margin": 2.7678916507215816, "lateral_surface_wind": -1.3584040517687135, "impact_velocity": -5.463619127950107, "x_impact": 629.6576831909755, "max_mach_number": 0.7944920060312353, "out_of_rail_time": 0.3650022839773337, "apogee_y": 310.96442735686765, "out_of_rail_velocity": 25.118302428620346, "apogee_x": 206.82070898059487, "initial_stability_margin": 2.694951423024861, "t_final": 294.34130013883225, "apogee_time": 25.385690163158287, "frontal_surface_wind": 0.6155920920787783, "y_impact": 212.25914892435614} -{"apogee": 2522.0536040637603, "out_of_rail_stability_margin": 2.6880142910237956, "lateral_surface_wind": -1.3600539375875869, "impact_velocity": -5.489328858701227, "x_impact": 636.6713227430739, "max_mach_number": 0.6568192876756641, "out_of_rail_time": 0.39573474852559315, "apogee_y": 387.3180233055353, "out_of_rail_velocity": 22.760249189716713, "apogee_x": 355.1041494968662, "initial_stability_margin": 2.608890800736639, "t_final": 247.85195773977154, "apogee_time": 22.697095492029703, "frontal_surface_wind": 0.628301948601985, "y_impact": 319.90957710262376} -{"apogee": 2796.601749851403, "out_of_rail_stability_margin": 2.6316124832146803, "lateral_surface_wind": -2.1568719070527145, "impact_velocity": -5.326193106959522, "x_impact": 867.9858313223662, "max_mach_number": 0.7179149538853747, "out_of_rail_time": 0.3812277491247187, "apogee_y": 469.69386901422655, "out_of_rail_velocity": 23.7916320027303, "apogee_x": 310.95691791151364, "initial_stability_margin": 2.553587780661674, "t_final": 276.63559511905544, "apogee_time": 23.645435130615652, "frontal_surface_wind": 0.8918050596056608, "y_impact": 367.6282635426478} -{"apogee": 2170.916447390619, "out_of_rail_stability_margin": 2.6503670064760154, "lateral_surface_wind": -1.8662505652432273, "impact_velocity": -5.345686868987843, "x_impact": 474.10713394555563, "max_mach_number": 0.5896377041520776, "out_of_rail_time": 0.4144670366645525, "apogee_y": 258.9138634774745, "out_of_rail_velocity": 21.535989095234292, "apogee_x": 138.30162344398593, "initial_stability_margin": 2.5668663497670914, "t_final": 232.6780340400956, "apogee_time": 21.227362273248087, "frontal_surface_wind": 0.8894541760638248, "y_impact": 163.06879787209033} -{"apogee": 2609.4903671833104, "out_of_rail_stability_margin": 2.7386610784528496, "lateral_surface_wind": -1.9675327713042192, "impact_velocity": -5.481913798890872, "x_impact": 678.502439271531, "max_mach_number": 0.6723860446689757, "out_of_rail_time": 0.39235259090319613, "apogee_y": 364.5788231983942, "out_of_rail_velocity": 23.037724600143786, "apogee_x": 250.03065630542062, "initial_stability_margin": 2.6623712999406957, "t_final": 248.6811727098161, "apogee_time": 23.04758421039854, "frontal_surface_wind": 0.7295419707653411, "y_impact": 280.14570162077075} -{"apogee": 3729.252853085155, "out_of_rail_stability_margin": 2.7350304751867247, "lateral_surface_wind": -0.4014097482214125, "impact_velocity": -5.406382274513911, "x_impact": 1095.136361390486, "max_mach_number": 0.8981921258417648, "out_of_rail_time": 0.3463219368355455, "apogee_y": 577.4966301277414, "out_of_rail_velocity": 26.78218537692759, "apogee_x": 723.6934576824436, "initial_stability_margin": 2.6665498878669234, "t_final": 315.68207255941036, "apogee_time": 26.720941570880743, "frontal_surface_wind": 0.2327340813508803, "y_impact": 891.3908446272623} -{"apogee": 3781.7916183023112, "out_of_rail_stability_margin": 2.5510592255191096, "lateral_surface_wind": -2.6004452943989294, "impact_velocity": -5.246151149588254, "x_impact": 1319.370343051796, "max_mach_number": 0.9173615062797686, "out_of_rail_time": 0.3427632514493665, "apogee_y": 647.4603102205476, "out_of_rail_velocity": 27.141742209153364, "apogee_x": 490.6444508316383, "initial_stability_margin": 2.48215131702343, "t_final": 328.59502074326184, "apogee_time": 26.763090403126196, "frontal_surface_wind": 0.9565079394769933, "y_impact": 366.0046215047295} -{"apogee": 2994.5030618508617, "out_of_rail_stability_margin": 2.764730506630687, "lateral_surface_wind": -1.9652235022292244, "impact_velocity": -5.4726363149966675, "x_impact": 850.5897942635045, "max_mach_number": 0.7466198899690131, "out_of_rail_time": 0.3753172546357019, "apogee_y": 426.6310671736968, "out_of_rail_velocity": 24.295101356249493, "apogee_x": 310.5646620574168, "initial_stability_margin": 2.6916661783170577, "t_final": 280.3310474653499, "apogee_time": 24.440968021283666, "frontal_surface_wind": 0.8027760665938611, "y_impact": 254.42765820393532} -{"apogee": 3399.3072531305843, "out_of_rail_stability_margin": 2.674808606096017, "lateral_surface_wind": -2.6749777131997363, "impact_velocity": -5.5684240252824715, "x_impact": 865.2951629847743, "max_mach_number": 0.8211658312324825, "out_of_rail_time": 0.3608393002869218, "apogee_y": 577.0602147655344, "out_of_rail_velocity": 25.45107085291179, "apogee_x": 394.7706344582744, "initial_stability_margin": 2.6009106425516344, "t_final": 293.3019733230526, "apogee_time": 25.822983327423124, "frontal_surface_wind": 0.29422286374084505, "y_impact": 196.25717145711903} -{"apogee": 3634.791409418756, "out_of_rail_stability_margin": 2.68057439900698, "lateral_surface_wind": -2.9828956734423597, "impact_velocity": -5.3623882289462514, "x_impact": 1012.0196868112735, "max_mach_number": 0.8778278105038368, "out_of_rail_time": 0.3502091156990179, "apogee_y": 522.2828816251231, "out_of_rail_velocity": 26.401903079752227, "apogee_x": 302.01385213470104, "initial_stability_margin": 2.6089964630086477, "t_final": 319.19797194496965, "apogee_time": 26.42524423585448, "frontal_surface_wind": 0.8388292988299102, "y_impact": 33.99960913595452} -{"apogee": 4161.314472007369, "out_of_rail_stability_margin": 2.6142149512576545, "lateral_surface_wind": -1.3259042572245234, "impact_velocity": -5.478093610043111, "x_impact": 924.3214008105937, "max_mach_number": 0.9796960052330868, "out_of_rail_time": 0.33311398730028374, "apogee_y": 458.29034351054514, "out_of_rail_velocity": 28.09869421568271, "apogee_x": 396.2077650532992, "initial_stability_margin": 2.548066916227466, "t_final": 353.0218026870945, "apogee_time": 27.99879663008758, "frontal_surface_wind": 0.5052101194383324, "y_impact": 67.33292554892265} -{"apogee": 3726.4283236855317, "out_of_rail_stability_margin": 2.6413291005826722, "lateral_surface_wind": -2.147187942185932, "impact_velocity": -5.360352293969885, "x_impact": 939.9649330157287, "max_mach_number": 0.895467762551351, "out_of_rail_time": 0.3472570152742427, "apogee_y": 569.5697857055757, "out_of_rail_velocity": 26.698893551012908, "apogee_x": 391.1872531895077, "initial_stability_margin": 2.5684604409546052, "t_final": 320.8488053179028, "apogee_time": 26.686494548477324, "frontal_surface_wind": 0.7637226489079102, "y_impact": 245.45212745524825} -{"apogee": 3617.8873474955612, "out_of_rail_stability_margin": 2.81736397142028, "lateral_surface_wind": -2.043506174655085, "impact_velocity": -5.431688102989366, "x_impact": 1041.8125376116977, "max_mach_number": 0.8668742772536561, "out_of_rail_time": 0.35217210887338596, "apogee_y": 524.2639869064203, "out_of_rail_velocity": 26.217020785883207, "apogee_x": 432.0878923631003, "initial_stability_margin": 2.7448300695474472, "t_final": 302.8350292290109, "apogee_time": 26.443474805547737, "frontal_surface_wind": 0.5007925492570534, "y_impact": 225.47599516811482} -{"apogee": 3725.668916950127, "out_of_rail_stability_margin": 2.5914738391041325, "lateral_surface_wind": -1.3486907140181241, "impact_velocity": -5.32568806804298, "x_impact": 1051.1476213816031, "max_mach_number": 0.897842893405372, "out_of_rail_time": 0.3463732413230441, "apogee_y": 536.1487281540047, "out_of_rail_velocity": 26.78179099087123, "apogee_x": 507.6379619719872, "initial_stability_margin": 2.519866817045718, "t_final": 319.71021372177364, "apogee_time": 26.655164273904408, "frontal_surface_wind": 0.6365913521348422, "y_impact": 447.10587466595973} -{"apogee": 2960.208999147085, "out_of_rail_stability_margin": 2.5936119268068665, "lateral_surface_wind": -1.5082257265915044, "impact_velocity": -5.554398396217657, "x_impact": 876.1097269555772, "max_mach_number": 0.7394302255463262, "out_of_rail_time": 0.3776622776450934, "apogee_y": 441.27548483791895, "out_of_rail_velocity": 24.142213537291806, "apogee_x": 399.7090863019405, "initial_stability_margin": 2.5153033891944756, "t_final": 270.4873595946967, "apogee_time": 24.322886462723194, "frontal_surface_wind": 1.1132228765356094, "y_impact": 451.74158083488516} -{"apogee": 3530.72825642668, "out_of_rail_stability_margin": 2.7047597325320876, "lateral_surface_wind": -1.2037086889264712, "impact_velocity": -5.589910234081092, "x_impact": 1066.0141396558556, "max_mach_number": 0.8408281074992635, "out_of_rail_time": 0.3561686880976035, "apogee_y": 540.9808110110907, "out_of_rail_velocity": 25.86024033891004, "apogee_x": 490.7244950180162, "initial_stability_margin": 2.6353230489881896, "t_final": 299.0304728077151, "apogee_time": 26.26949435975381, "frontal_surface_wind": 1.1512025913433104, "y_impact": 705.4257336522646} -{"apogee": 3591.65520773521, "out_of_rail_stability_margin": 2.6283538524798717, "lateral_surface_wind": -1.8068375784127593, "impact_velocity": -5.625273127457115, "x_impact": 989.110585274033, "max_mach_number": 0.85090862441932, "out_of_rail_time": 0.35461797917899673, "apogee_y": 440.3567312350972, "out_of_rail_velocity": 26.0098936156996, "apogee_x": 375.41170866247, "initial_stability_margin": 2.5582919308241006, "t_final": 311.3700898639105, "apogee_time": 26.45207240471021, "frontal_surface_wind": 1.0046680391171796, "y_impact": 364.28621228293173} -{"apogee": 3322.2717025912384, "out_of_rail_stability_margin": 2.6567524973211363, "lateral_surface_wind": -2.146717658906056, "impact_velocity": -5.357003967663081, "x_impact": 845.2535279578717, "max_mach_number": 0.8127027281022686, "out_of_rail_time": 0.361457676075643, "apogee_y": 432.2178865131761, "out_of_rail_velocity": 25.368152388728504, "apogee_x": 269.0027615799483, "initial_stability_margin": 2.583372113645621, "t_final": 295.674813808139, "apogee_time": 25.46643116178481, "frontal_surface_wind": 1.0081932351058946, "y_impact": 186.7571310673987} -{"apogee": 2873.8582588632066, "out_of_rail_stability_margin": 2.7150795224053486, "lateral_surface_wind": -1.3682280390275232, "impact_velocity": -5.474032120563676, "x_impact": 641.6918488833916, "max_mach_number": 0.7228871922540175, "out_of_rail_time": 0.38043100766299454, "apogee_y": 373.0935159697251, "out_of_rail_velocity": 23.842375117677506, "apogee_x": 284.6705299031857, "initial_stability_margin": 2.6352707537737605, "t_final": 264.9043255641606, "apogee_time": 23.9949749913589, "frontal_surface_wind": 0.5934367909984035, "y_impact": 312.8147900338189} -{"apogee": 4112.635879123388, "out_of_rail_stability_margin": 2.647171838369194, "lateral_surface_wind": -2.123326408331342, "impact_velocity": -5.345613672261334, "x_impact": 1102.9918743156734, "max_mach_number": 0.984512177578156, "out_of_rail_time": 0.3324403711917252, "apogee_y": 524.1424172302184, "out_of_rail_velocity": 28.19208272685652, "apogee_x": 393.22270120215484, "initial_stability_margin": 2.5777121798617157, "t_final": 343.91256161391345, "apogee_time": 27.72211153096282, "frontal_surface_wind": 1.056567683612891, "y_impact": 190.4856112558415} -{"apogee": 1793.8965439806545, "out_of_rail_stability_margin": 2.6881965649855606, "lateral_surface_wind": -1.4987492614951137, "impact_velocity": -5.460383617635399, "x_impact": 617.7851533684967, "max_mach_number": 0.5165760153903325, "out_of_rail_time": 0.440059058988424, "apogee_y": 307.06132689530625, "out_of_rail_velocity": 20.121872631998432, "apogee_x": 276.4717522689542, "initial_stability_margin": 2.596109579417932, "t_final": 210.6376602945744, "apogee_time": 19.531966021898917, "frontal_surface_wind": 1.1259487849642804, "y_impact": 301.1643810823489} -{"apogee": 3869.265765463624, "out_of_rail_stability_margin": 2.6829801269628137, "lateral_surface_wind": -0.40598563044589664, "impact_velocity": -5.381210299236213, "x_impact": 604.1121402808504, "max_mach_number": 0.916815136258669, "out_of_rail_time": 0.34353033650372683, "apogee_y": 272.24806305538806, "out_of_rail_velocity": 27.091048678316575, "apogee_x": 290.78256682407005, "initial_stability_margin": 2.6155182486842903, "t_final": 323.41891006904905, "apogee_time": 27.141688526416118, "frontal_surface_wind": 0.2246566412569721, "y_impact": 548.2227316530713} -{"apogee": 2996.0575839629782, "out_of_rail_stability_margin": 2.921015151773172, "lateral_surface_wind": -2.1271233632438395, "impact_velocity": -5.55424184502566, "x_impact": 723.5734961551692, "max_mach_number": 0.7426763621623585, "out_of_rail_time": 0.37600593408274424, "apogee_y": 402.8010949992069, "out_of_rail_velocity": 24.24295826348498, "apogee_x": 246.15233214323604, "initial_stability_margin": 2.8486359400860457, "t_final": 274.7131613703199, "apogee_time": 24.475308759151986, "frontal_surface_wind": 0.8329671723572163, "y_impact": 273.98665243372733} -{"apogee": 4191.4153288781945, "out_of_rail_stability_margin": 2.749396737033161, "lateral_surface_wind": -3.075220408677242, "impact_velocity": -5.473250663431849, "x_impact": 1130.6469009440877, "max_mach_number": 0.986391876417744, "out_of_rail_time": 0.33107456588092016, "apogee_y": 634.1447603970468, "out_of_rail_velocity": 28.35304294400188, "apogee_x": 341.42058965498757, "initial_stability_margin": 2.688084295910633, "t_final": 342.4839075099012, "apogee_time": 28.075839277645567, "frontal_surface_wind": 1.0093611758737888, "y_impact": 339.7146426633115} -{"apogee": 2558.0243397596855, "out_of_rail_stability_margin": 2.7034482229933547, "lateral_surface_wind": -2.1205839451430366, "impact_velocity": -5.45155673594888, "x_impact": 649.8013557179542, "max_mach_number": 0.6637553793288717, "out_of_rail_time": 0.3945703734334349, "apogee_y": 364.3911718168291, "out_of_rail_velocity": 22.84090066592547, "apogee_x": 234.4807129509022, "initial_stability_margin": 2.622709634036918, "t_final": 249.80936265347142, "apogee_time": 22.834571038071324, "frontal_surface_wind": 0.8494773948046851, "y_impact": 227.41449733050362} -{"apogee": 2769.716524666348, "out_of_rail_stability_margin": 2.7174309553996343, "lateral_surface_wind": -1.6047042054659202, "impact_velocity": -5.393562251252151, "x_impact": 762.4009928009158, "max_mach_number": 0.7042809291066192, "out_of_rail_time": 0.3840512206285589, "apogee_y": 365.50638919404304, "out_of_rail_velocity": 23.56638204778035, "apogee_x": 316.07093355189215, "initial_stability_margin": 2.640193984569905, "t_final": 271.4219835394987, "apogee_time": 23.620142636210755, "frontal_surface_wind": 0.9213416417271266, "y_impact": 373.39668172231995} -{"apogee": 4158.700254643366, "out_of_rail_stability_margin": 2.6083634931051125, "lateral_surface_wind": -0.7034947726965202, "impact_velocity": -5.497146638539589, "x_impact": 748.9521547964614, "max_mach_number": 0.96850387146986, "out_of_rail_time": 0.3352333545191437, "apogee_y": 292.56440119876106, "out_of_rail_velocity": 27.91624326095534, "apogee_x": 277.70781954005946, "initial_stability_margin": 2.540877672237661, "t_final": 337.22433471379395, "apogee_time": 28.037219666952883, "frontal_surface_wind": 0.868713955106921, "y_impact": 440.3560567048843} -{"apogee": 3633.2417411226925, "out_of_rail_stability_margin": 2.694025210888181, "lateral_surface_wind": -1.173312690237045, "impact_velocity": -5.5094449963573595, "x_impact": 780.269782815304, "max_mach_number": 0.8643698015590311, "out_of_rail_time": 0.3520658717387804, "apogee_y": 394.5380010016601, "out_of_rail_velocity": 26.24387940377113, "apogee_x": 316.66263389465615, "initial_stability_margin": 2.624657607935988, "t_final": 317.3702830410045, "apogee_time": 26.51540855767373, "frontal_surface_wind": 0.37154441120574383, "y_impact": 406.45279246149454} -{"apogee": 3575.875668007658, "out_of_rail_stability_margin": 2.756487761823284, "lateral_surface_wind": -3.034914201379365, "impact_velocity": -5.3974640275963495, "x_impact": 1059.1658446330596, "max_mach_number": 0.8619692538230143, "out_of_rail_time": 0.35283781502816997, "apogee_y": 624.2554598889344, "out_of_rail_velocity": 26.182713110374646, "apogee_x": 360.13827491548983, "initial_stability_margin": 2.686883304404406, "t_final": 312.12001789775724, "apogee_time": 26.301916901161416, "frontal_surface_wind": 0.6249775847840298, "y_impact": 163.7626965773128} -{"apogee": 3933.7070551088586, "out_of_rail_stability_margin": 2.7310276596583383, "lateral_surface_wind": -2.1049538600748354, "impact_velocity": -5.417119344493658, "x_impact": 1317.249385263497, "max_mach_number": 0.9382714376063733, "out_of_rail_time": 0.3387513711529129, "apogee_y": 653.3625585992986, "out_of_rail_velocity": 27.521830368292516, "apogee_x": 602.043535143829, "initial_stability_margin": 2.667099763287679, "t_final": 334.0127104215851, "apogee_time": 27.3003050498051, "frontal_surface_wind": 1.0927120175638398, "y_impact": 351.8345952835482} -{"apogee": 4769.874178224256, "out_of_rail_stability_margin": 2.7122790166417063, "lateral_surface_wind": -1.3443242128207515, "impact_velocity": -5.541436520934885, "x_impact": 1260.2689361987846, "max_mach_number": 1.1425952399234922, "out_of_rail_time": 0.309949956620437, "apogee_y": 702.8087380699187, "out_of_rail_velocity": 30.841135277640202, "apogee_x": 643.7199539819132, "initial_stability_margin": 2.650197728329413, "t_final": 369.4246652987258, "apogee_time": 29.465123177387024, "frontal_surface_wind": 0.4539292620363625, "y_impact": 315.4388409739498} -{"apogee": 2568.4480097665382, "out_of_rail_stability_margin": 2.7966867639345088, "lateral_surface_wind": -2.1387751119699807, "impact_velocity": -5.4668654254196705, "x_impact": 652.8333332612206, "max_mach_number": 0.6637649944063031, "out_of_rail_time": 0.3942364524333866, "apogee_y": 353.27295146013535, "out_of_rail_velocity": 22.857766971324878, "apogee_x": 202.57214043057715, "initial_stability_margin": 2.717292620706771, "t_final": 252.21044310167355, "apogee_time": 22.88958054387211, "frontal_surface_wind": 1.024934791481967, "y_impact": 180.64475501049495} -{"apogee": 3618.5792979624694, "out_of_rail_stability_margin": 2.536902939233843, "lateral_surface_wind": -1.1527695664885838, "impact_velocity": -5.549447764785973, "x_impact": 867.8384207496396, "max_mach_number": 0.8603762563013989, "out_of_rail_time": 0.3533688150299525, "apogee_y": 420.2107819473202, "out_of_rail_velocity": 26.102597700528747, "apogee_x": 398.25242163519283, "initial_stability_margin": 2.4641234965506955, "t_final": 313.5524115630011, "apogee_time": 26.498151877375445, "frontal_surface_wind": 0.43108032331253215, "y_impact": 436.08520043295977} -{"apogee": 2876.1696342633163, "out_of_rail_stability_margin": 2.6273737354434474, "lateral_surface_wind": -1.3679812645777487, "impact_velocity": -5.40345094287487, "x_impact": 909.2420566150671, "max_mach_number": 0.731976761324282, "out_of_rail_time": 0.37831437902001774, "apogee_y": 548.1099072918973, "out_of_rail_velocity": 24.047269369844884, "apogee_x": 543.7363394848204, "initial_stability_margin": 2.5497384610172444, "t_final": 267.1489856259949, "apogee_time": 23.96204280877443, "frontal_surface_wind": 0.6108496636070246, "y_impact": 487.7785968891974} -{"apogee": 3514.1851816262956, "out_of_rail_stability_margin": 2.5401183559892084, "lateral_surface_wind": -1.508216304914279, "impact_velocity": -5.356126067450565, "x_impact": 1021.0001691136578, "max_mach_number": 0.8519960392286877, "out_of_rail_time": 0.35480377069110247, "apogee_y": 484.77159850712263, "out_of_rail_velocity": 26.05109780924695, "apogee_x": 445.28433942649946, "initial_stability_margin": 2.468368646010505, "t_final": 302.59953236619356, "apogee_time": 26.054439523282756, "frontal_surface_wind": 1.1132356411763895, "y_impact": 489.027799429296} -{"apogee": 4252.69834782323, "out_of_rail_stability_margin": 2.516930514235283, "lateral_surface_wind": -1.3324478367584904, "impact_velocity": -5.320512898763755, "x_impact": 889.7821753396402, "max_mach_number": 1.0219442846258027, "out_of_rail_time": 0.3266874953089428, "apogee_y": 449.39580841099036, "out_of_rail_velocity": 28.80674885902212, "apogee_x": 378.08573245974816, "initial_stability_margin": 2.4485784129646175, "t_final": 341.586535619415, "apogee_time": 28.082433916030944, "frontal_surface_wind": 0.4876906052269504, "y_impact": 88.78634602870386} -{"apogee": 3545.8503462059457, "out_of_rail_stability_margin": 2.79476565425183, "lateral_surface_wind": -2.200270629073347, "impact_velocity": -5.424727431016982, "x_impact": 863.3064451229483, "max_mach_number": 0.8499793279147341, "out_of_rail_time": 0.3548350760708775, "apogee_y": 535.802120719394, "out_of_rail_velocity": 25.979283009487332, "apogee_x": 297.0202522190197, "initial_stability_margin": 2.72339756546828, "t_final": 301.4426389701255, "apogee_time": 26.244335397778748, "frontal_surface_wind": 0.6142452861192668, "y_impact": 429.36037658368554} -{"apogee": 2179.6998619938254, "out_of_rail_stability_margin": 2.689977449190911, "lateral_surface_wind": -1.9448116046579638, "impact_velocity": -5.322051110490142, "x_impact": 446.2639272605247, "max_mach_number": 0.592704650670152, "out_of_rail_time": 0.41415197999793174, "apogee_y": 219.87451932741865, "out_of_rail_velocity": 21.556292032677185, "apogee_x": 91.10224791266724, "initial_stability_margin": 2.6046133989250215, "t_final": 238.79694035863818, "apogee_time": 21.244343875675202, "frontal_surface_wind": 0.7881145320649502, "y_impact": 97.77514613548547} -{"apogee": 2377.413611570715, "out_of_rail_stability_margin": 2.69185066438992, "lateral_surface_wind": -1.3561069956389227, "impact_velocity": -5.333509974517939, "x_impact": 675.9035316073529, "max_mach_number": 0.6348053945618459, "out_of_rail_time": 0.40224136666745186, "apogee_y": 410.50052804811446, "out_of_rail_velocity": 22.397459625711054, "apogee_x": 398.8995901171322, "initial_stability_margin": 2.609765271662973, "t_final": 247.40318678853077, "apogee_time": 22.068671796756135, "frontal_surface_wind": 0.6367761523045019, "y_impact": 343.70878997627017} -{"apogee": 2818.921991814375, "out_of_rail_stability_margin": 2.604855276620794, "lateral_surface_wind": -0.40490695454719083, "impact_velocity": -5.314477142743619, "x_impact": 699.0228900240476, "max_mach_number": 0.7252653229708812, "out_of_rail_time": 0.380398041210648, "apogee_y": 368.1967641814721, "out_of_rail_velocity": 23.866358817432197, "apogee_x": 434.069335431782, "initial_stability_margin": 2.523718976985802, "t_final": 267.29207002115425, "apogee_time": 23.695801827452122, "frontal_surface_wind": 0.22659500601013954, "y_impact": 562.4629054058936} -{"apogee": 3364.837879655626, "out_of_rail_stability_margin": 2.6218307448455196, "lateral_surface_wind": -1.5144339031201879, "impact_velocity": -5.378738824979213, "x_impact": 969.6937367715785, "max_mach_number": 0.8202624941012602, "out_of_rail_time": 0.3599925357168484, "apogee_y": 461.5131846242516, "out_of_rail_velocity": 25.522962488302774, "apogee_x": 407.69431667781424, "initial_stability_margin": 2.54923636113554, "t_final": 305.0907525227973, "apogee_time": 25.612225756918576, "frontal_surface_wind": 1.104762403539712, "y_impact": 458.67199629289286} -{"apogee": 3135.5856442498043, "out_of_rail_stability_margin": 2.6402906645788895, "lateral_surface_wind": -1.1573864529679172, "impact_velocity": -5.414788146581615, "x_impact": 841.0211666546297, "max_mach_number": 0.778761918622773, "out_of_rail_time": 0.3685408469455423, "apogee_y": 456.8927995499024, "out_of_rail_velocity": 24.79213842363273, "apogee_x": 447.0916930972839, "initial_stability_margin": 2.5644146023868277, "t_final": 285.9266626450564, "apogee_time": 24.8667918671325, "frontal_surface_wind": 0.41852660256650065, "y_impact": 473.78659309570486} -{"apogee": 3353.752079224192, "out_of_rail_stability_margin": 2.6593600483156212, "lateral_surface_wind": -0.6977211417327058, "impact_velocity": -5.358969482142454, "x_impact": 943.3191682313961, "max_mach_number": 0.8265799589432343, "out_of_rail_time": 0.3588762705933666, "apogee_y": 471.83083798833644, "out_of_rail_velocity": 25.629531087668525, "apogee_x": 534.7773811019074, "initial_stability_margin": 2.5873739312849566, "t_final": 307.07569716829374, "apogee_time": 25.520772958294728, "frontal_surface_wind": 0.8733579102453057, "y_impact": 621.2270983768188} -{"apogee": 3513.597674216388, "out_of_rail_stability_margin": 2.5436955015529836, "lateral_surface_wind": -1.9476850846325848, "impact_velocity": -5.522747400525035, "x_impact": 860.6086072564133, "max_mach_number": 0.8425304519941159, "out_of_rail_time": 0.3571652549862336, "apogee_y": 421.8089023199633, "out_of_rail_velocity": 25.756384517832853, "apogee_x": 254.34239509637675, "initial_stability_margin": 2.4680187173672694, "t_final": 298.0905201966639, "apogee_time": 26.159827888321384, "frontal_surface_wind": 1.3503479029800645, "y_impact": 294.8950658758638} -{"apogee": 3815.297581881627, "out_of_rail_stability_margin": 2.667587947116179, "lateral_surface_wind": -2.163047573936601, "impact_velocity": -5.484342223623769, "x_impact": 957.9255744144755, "max_mach_number": 0.9010942447839609, "out_of_rail_time": 0.34671386690743555, "apogee_y": 468.0225910885679, "out_of_rail_velocity": 26.72321319807944, "apogee_x": 250.21692641104207, "initial_stability_margin": 2.5949070131136387, "t_final": 325.549273624816, "apogee_time": 27.061598965817222, "frontal_surface_wind": 0.8767199556634109, "y_impact": 314.70952703443425} -{"apogee": 3438.653439917355, "out_of_rail_stability_margin": 2.6096773897310666, "lateral_surface_wind": -1.2645406865890942, "impact_velocity": -5.523676128815317, "x_impact": 933.8348887574945, "max_mach_number": 0.8297506796961346, "out_of_rail_time": 0.3587406552388544, "apogee_y": 505.38050965365534, "out_of_rail_velocity": 25.624721884252452, "apogee_x": 390.2081530519339, "initial_stability_margin": 2.535840742818204, "t_final": 294.0482200403205, "apogee_time": 25.90581689635419, "frontal_surface_wind": 1.0840289968785055, "y_impact": 658.9353302605443} -{"apogee": 2580.2318643583385, "out_of_rail_stability_margin": 2.693057565903503, "lateral_surface_wind": -2.3437647094733904, "impact_velocity": -5.588355035449433, "x_impact": 584.280257862454, "max_mach_number": 0.6611858928490363, "out_of_rail_time": 0.3956191437741083, "apogee_y": 310.82866765314225, "out_of_rail_velocity": 22.809056046149937, "apogee_x": 130.07192278374862, "initial_stability_margin": 2.61338711110442, "t_final": 249.9967763976654, "apogee_time": 22.970701020907462, "frontal_surface_wind": 0.9115209667691876, "y_impact": 62.63646568079152} -{"apogee": 3712.2589926471073, "out_of_rail_stability_margin": 2.817315734070351, "lateral_surface_wind": -2.5927733999974825, "impact_velocity": -5.45302776024591, "x_impact": 1026.1618981366219, "max_mach_number": 0.8874011783197828, "out_of_rail_time": 0.34781206089876626, "apogee_y": 570.4114717895948, "out_of_rail_velocity": 26.63015863311614, "apogee_x": 325.9244943971237, "initial_stability_margin": 2.749313159586482, "t_final": 310.5265961171639, "apogee_time": 26.698070706006135, "frontal_surface_wind": 1.0709134666601892, "y_impact": 287.5764742046797} -{"apogee": 2938.231224853095, "out_of_rail_stability_margin": 2.7632716693702983, "lateral_surface_wind": -2.1048202403624616, "impact_velocity": -5.4476091815555865, "x_impact": 813.716636767761, "max_mach_number": 0.738379182805148, "out_of_rail_time": 0.3777352922994397, "apogee_y": 433.3095030514861, "out_of_rail_velocity": 24.13164226025931, "apogee_x": 322.9641674190377, "initial_stability_margin": 2.6860668310996783, "t_final": 276.5225975796076, "apogee_time": 24.213846016801405, "frontal_surface_wind": 0.8878174747340081, "y_impact": 303.72991007241376} -{"apogee": 2390.457223991538, "out_of_rail_stability_margin": 2.726762797288864, "lateral_surface_wind": -1.5304548531093884, "impact_velocity": -5.340717590920271, "x_impact": 696.2525371096194, "max_mach_number": 0.6329143337966259, "out_of_rail_time": 0.4020095216046772, "apogee_y": 312.190305250211, "out_of_rail_velocity": 22.340104550277058, "apogee_x": 231.84623708316755, "initial_stability_margin": 2.646590565312698, "t_final": 244.16130777904345, "apogee_time": 22.141304833970068, "frontal_surface_wind": 1.3518403507965555, "y_impact": 337.392694841489} -{"apogee": 2730.518864499346, "out_of_rail_stability_margin": 2.5803027546025663, "lateral_surface_wind": -2.004596486756901, "impact_velocity": -5.407766859274673, "x_impact": 767.8289152762029, "max_mach_number": 0.7009870620131826, "out_of_rail_time": 0.3848258727358697, "apogee_y": 440.9424457833689, "out_of_rail_velocity": 23.506908438134165, "apogee_x": 303.0687745401323, "initial_stability_margin": 2.5036170676764704, "t_final": 261.33221507589434, "apogee_time": 23.450595445690666, "frontal_surface_wind": 0.6204914330964842, "y_impact": 356.27412767958106} -{"apogee": 2866.29200447246, "out_of_rail_stability_margin": 2.670721414053495, "lateral_surface_wind": -2.5594874235789, "impact_velocity": -5.526186720406701, "x_impact": 684.785749856856, "max_mach_number": 0.7177400399505517, "out_of_rail_time": 0.3811339812153938, "apogee_y": 371.7033424395439, "out_of_rail_velocity": 23.798730645069647, "apogee_x": 152.16634344653846, "initial_stability_margin": 2.5954831878455304, "t_final": 270.3648548760855, "apogee_time": 24.017670166285168, "frontal_surface_wind": 1.1481958392844378, "y_impact": 112.2733118651691} -{"apogee": 2886.009917241941, "out_of_rail_stability_margin": 2.729220378630836, "lateral_surface_wind": -1.091494304675936, "impact_velocity": -5.35117949706156, "x_impact": 736.9586235747271, "max_mach_number": 0.7262242726810563, "out_of_rail_time": 0.37836376924243265, "apogee_y": 298.6425152688729, "out_of_rail_velocity": 23.997878330221404, "apogee_x": 287.62839462691795, "initial_stability_margin": 2.6561387799444858, "t_final": 270.52113872936985, "apogee_time": 24.01685265122101, "frontal_surface_wind": 1.2581026178228196, "y_impact": 385.0833384440818} -{"apogee": 3598.2588715247934, "out_of_rail_stability_margin": 2.683574384759322, "lateral_surface_wind": -1.9591370560244032, "impact_velocity": -5.613518476936223, "x_impact": 805.7266652913834, "max_mach_number": 0.8494252997618481, "out_of_rail_time": 0.35545481975446935, "apogee_y": 381.8988641994662, "out_of_rail_velocity": 25.92206461798819, "apogee_x": 187.13124279599182, "initial_stability_margin": 2.6121145510672172, "t_final": 309.0412300117519, "apogee_time": 26.50360792800026, "frontal_surface_wind": 1.3336786133454082, "y_impact": 239.71253210746895} -{"apogee": 3284.2725202376187, "out_of_rail_stability_margin": 2.8625613168247463, "lateral_surface_wind": -1.13546142230316, "impact_velocity": -5.512621501415474, "x_impact": 708.3998513638761, "max_mach_number": 0.7976198123199858, "out_of_rail_time": 0.3644910388789633, "apogee_y": 281.76216674252873, "out_of_rail_velocity": 25.13207409620346, "apogee_x": 217.20876941470618, "initial_stability_margin": 2.789389268319242, "t_final": 287.23101968031364, "apogee_time": 25.39541283877019, "frontal_surface_wind": 1.2185685752447097, "y_impact": 390.0727036598098} -{"apogee": 3689.9228804983336, "out_of_rail_stability_margin": 2.681145985630792, "lateral_surface_wind": -2.6648837814589417, "impact_velocity": -5.4384139746957745, "x_impact": 847.471789297023, "max_mach_number": 0.8821408185665, "out_of_rail_time": 0.349153970634435, "apogee_y": 526.6151598393726, "out_of_rail_velocity": 26.510572504853556, "apogee_x": 345.3732111231174, "initial_stability_margin": 2.6119241422865467, "t_final": 307.7830786454339, "apogee_time": 26.651032010856444, "frontal_surface_wind": 0.3747896623177396, "y_impact": 114.99356889185805} -{"apogee": 3897.9659515497724, "out_of_rail_stability_margin": 2.8417415697597592, "lateral_surface_wind": -1.148506813272284, "impact_velocity": -5.510481950599732, "x_impact": 831.9609460086259, "max_mach_number": 0.9152748397974665, "out_of_rail_time": 0.34329831698101543, "apogee_y": 374.2505286270213, "out_of_rail_velocity": 27.105008369359226, "apogee_x": 334.39629923384257, "initial_stability_margin": 2.7770021955686803, "t_final": 322.5149766907276, "apogee_time": 27.299284315354065, "frontal_surface_wind": 0.44231212784260976, "y_impact": 385.4803089701574} -{"apogee": 3420.9239559198622, "out_of_rail_stability_margin": 2.4821391252447356, "lateral_surface_wind": -1.9367411305716313, "impact_velocity": -5.341144855011703, "x_impact": 1137.2216760540578, "max_mach_number": 0.8390622447687847, "out_of_rail_time": 0.357533723320088, "apogee_y": 533.6985469971266, "out_of_rail_velocity": 25.726947221010917, "apogee_x": 505.27205227556504, "initial_stability_margin": 2.405636778632817, "t_final": 301.6566431767077, "apogee_time": 25.749346933360826, "frontal_surface_wind": 0.8077440723498738, "y_impact": 436.5705174443919} -{"apogee": 3069.0910838128066, "out_of_rail_stability_margin": 2.5235998348250974, "lateral_surface_wind": -1.9355654221411147, "impact_velocity": -5.362251271424237, "x_impact": 813.6923779267415, "max_mach_number": 0.7647731739867464, "out_of_rail_time": 0.37287097140557657, "apogee_y": 404.0996860812279, "out_of_rail_velocity": 24.538637246402363, "apogee_x": 244.9831072740917, "initial_stability_margin": 2.4436857738417648, "t_final": 292.6051499979932, "apogee_time": 24.634508449209402, "frontal_surface_wind": 1.1995954070165107, "y_impact": 256.1971072148864} -{"apogee": 2917.027901696048, "out_of_rail_stability_margin": 2.661910404907422, "lateral_surface_wind": -2.0065205155712222, "impact_velocity": -5.390559699337108, "x_impact": 710.7041398288154, "max_mach_number": 0.7344575314502942, "out_of_rail_time": 0.3784288213403012, "apogee_y": 378.92462049763196, "out_of_rail_velocity": 24.057434383265573, "apogee_x": 210.543029342709, "initial_stability_margin": 2.585199371075563, "t_final": 274.8975272584895, "apogee_time": 24.12959816102479, "frontal_surface_wind": 0.6931293150645171, "y_impact": 209.43702473175443} -{"apogee": 3638.7429118634104, "out_of_rail_stability_margin": 2.7373192842018823, "lateral_surface_wind": -2.6394458271781227, "impact_velocity": -5.456348655719209, "x_impact": 1124.8779668771313, "max_mach_number": 0.873228641736863, "out_of_rail_time": 0.35007033254451847, "apogee_y": 596.3181753227084, "out_of_rail_velocity": 26.419155004210214, "apogee_x": 359.517221118185, "initial_stability_margin": 2.668947046063697, "t_final": 313.87917619873616, "apogee_time": 26.474744980121088, "frontal_surface_wind": 0.8429406223667579, "y_impact": 322.2331688688645} -{"apogee": 3649.144622540314, "out_of_rail_stability_margin": 2.597109340380024, "lateral_surface_wind": -0.41101933209479435, "impact_velocity": -5.486985714589715, "x_impact": 785.6614149450513, "max_mach_number": 0.8716399976876985, "out_of_rail_time": 0.35155234424737686, "apogee_y": 418.60877715299466, "out_of_rail_velocity": 26.281947843864316, "apogee_x": 461.82513083058234, "initial_stability_margin": 2.5244269537323603, "t_final": 312.0068411521053, "apogee_time": 26.550517078210913, "frontal_surface_wind": 0.215309189849772, "y_impact": 702.4851995284079} -{"apogee": 2790.0768950565143, "out_of_rail_stability_margin": 2.621166119528607, "lateral_surface_wind": -0.5691951709399923, "impact_velocity": -5.351289773246691, "x_impact": 656.2096274950306, "max_mach_number": 0.720932036251453, "out_of_rail_time": 0.38135375407270056, "apogee_y": 498.65760705687495, "out_of_rail_velocity": 23.763749845040483, "apogee_x": 552.0677238513837, "initial_stability_margin": 2.540494297511428, "t_final": 276.5028551049269, "apogee_time": 23.62234689174047, "frontal_surface_wind": -0.7610970872429802, "y_impact": 500.42521074713494} -{"apogee": 3801.862307552319, "out_of_rail_stability_margin": 2.635593259703619, "lateral_surface_wind": -1.854829941795528, "impact_velocity": -5.261775072217971, "x_impact": 1262.7606543422132, "max_mach_number": 0.917076506176905, "out_of_rail_time": 0.3435139921914212, "apogee_y": 565.6266427025943, "out_of_rail_velocity": 27.04648097540032, "apogee_x": 500.444842358989, "initial_stability_margin": 2.5637330168164483, "t_final": 342.69129740794824, "apogee_time": 26.86218731834336, "frontal_surface_wind": 1.3210028504671056, "y_impact": 377.40377102344434} -{"apogee": 2962.437347213997, "out_of_rail_stability_margin": 2.653793897149432, "lateral_surface_wind": -3.087255845707974, "impact_velocity": -5.451025355192062, "x_impact": 851.0411359632645, "max_mach_number": 0.7442257202080483, "out_of_rail_time": 0.37643416935873364, "apogee_y": 519.5658625150566, "out_of_rail_velocity": 24.223049541094607, "apogee_x": 256.8450493322501, "initial_stability_margin": 2.5772176538301372, "t_final": 278.32381889674224, "apogee_time": 24.297398514475404, "frontal_surface_wind": 0.9719268946007646, "y_impact": 236.3197059538422} -{"apogee": 4081.4368066507486, "out_of_rail_stability_margin": 2.588961872771133, "lateral_surface_wind": -0.6150290724803331, "impact_velocity": -5.2437823355919795, "x_impact": 995.3781260253263, "max_mach_number": 0.992972216812645, "out_of_rail_time": 0.3319917974329646, "apogee_y": 546.4014769291489, "out_of_rail_velocity": 28.249059906411293, "apogee_x": 677.5633596930794, "initial_stability_margin": 2.515878669723518, "t_final": 353.39770983735207, "apogee_time": 27.55842764899522, "frontal_surface_wind": -0.7245627363004096, "y_impact": 600.4544012379027} -{"apogee": 4241.389541950043, "out_of_rail_stability_margin": 2.6739114061662645, "lateral_surface_wind": -0.7010129276014506, "impact_velocity": -5.489494985499835, "x_impact": 863.5011704448792, "max_mach_number": 0.9931374823601086, "out_of_rail_time": 0.3311046646469712, "apogee_y": 365.1387696520698, "out_of_rail_velocity": 28.3330922971637, "apogee_x": 375.89313844665793, "initial_stability_margin": 2.607186712580982, "t_final": 332.42022985417043, "apogee_time": 28.226612659346316, "frontal_surface_wind": 0.870717925820114, "y_impact": 522.928724514854} -{"apogee": 3355.7200755358763, "out_of_rail_stability_margin": 2.581765701962146, "lateral_surface_wind": -2.0596245049156283, "impact_velocity": -5.43503204906211, "x_impact": 829.0778778254956, "max_mach_number": 0.815915238288982, "out_of_rail_time": 0.36119707359701536, "apogee_y": 426.9508192816501, "out_of_rail_velocity": 25.414252108058843, "apogee_x": 283.488435990146, "initial_stability_margin": 2.5082281305940337, "t_final": 301.0000232252327, "apogee_time": 25.610248784537063, "frontal_surface_wind": 0.4297180028761771, "y_impact": 104.44027971057652} -{"apogee": 3228.5372563190526, "out_of_rail_stability_margin": 2.7171866403556857, "lateral_surface_wind": -1.5601901047430362, "impact_velocity": -5.448166309187701, "x_impact": 762.731538809348, "max_mach_number": 0.7889677716801804, "out_of_rail_time": 0.3663206568557247, "apogee_y": 385.61540136958257, "out_of_rail_velocity": 24.97223110045118, "apogee_x": 266.5036687773182, "initial_stability_margin": 2.6421252851447807, "t_final": 284.23865646541583, "apogee_time": 25.211303872742715, "frontal_surface_wind": 1.0391423638061346, "y_impact": 384.63412882156575} -{"apogee": 4024.1530415016878, "out_of_rail_stability_margin": 2.7047776493934412, "lateral_surface_wind": -2.1810159691255997, "impact_velocity": -5.566175262656775, "x_impact": 975.1343452077119, "max_mach_number": 0.9416033570516215, "out_of_rail_time": 0.3391073914674987, "apogee_y": 545.0020100369467, "out_of_rail_velocity": 27.46310243505011, "apogee_x": 322.00519624282464, "initial_stability_margin": 2.6373285841999397, "t_final": 337.5030512307955, "apogee_time": 27.675515310391578, "frontal_surface_wind": 0.6794537917339799, "y_impact": 421.4497160437712} -{"apogee": 2621.8102193130844, "out_of_rail_stability_margin": 2.691201703390112, "lateral_surface_wind": -2.147813970765102, "impact_velocity": -5.5995586227985745, "x_impact": 512.4142839941536, "max_mach_number": 0.6689647554372592, "out_of_rail_time": 0.3934913900070178, "apogee_y": 296.3926861864803, "out_of_rail_velocity": 22.957362190749304, "apogee_x": 116.66286675374862, "initial_stability_margin": 2.6137331238265626, "t_final": 252.28429828602626, "apogee_time": 23.136609756909518, "frontal_surface_wind": 0.778063788945872, "y_impact": 148.73671454589768} -{"apogee": 4126.383132046367, "out_of_rail_stability_margin": 2.703999053194322, "lateral_surface_wind": -2.384770600266858, "impact_velocity": -5.632143217792388, "x_impact": 1073.236436987788, "max_mach_number": 0.9556099850640222, "out_of_rail_time": 0.33733061293913336, "apogee_y": 528.837721582456, "out_of_rail_velocity": 27.699371765134032, "apogee_x": 297.1580297375164, "initial_stability_margin": 2.6372290498118547, "t_final": 327.0738551167522, "apogee_time": 28.009041630453083, "frontal_surface_wind": 0.798105676170501, "y_impact": 274.41909781941155} -{"apogee": 3268.4538214881277, "out_of_rail_stability_margin": 2.694987335548009, "lateral_surface_wind": -2.0661443787974245, "impact_velocity": -5.447026102130845, "x_impact": 904.9242179902388, "max_mach_number": 0.8001331241197681, "out_of_rail_time": 0.36355069700208253, "apogee_y": 507.84925137937466, "out_of_rail_velocity": 25.222764247674867, "apogee_x": 376.34619990439853, "initial_stability_margin": 2.624713950931809, "t_final": 290.4731352639422, "apogee_time": 25.33815995390063, "frontal_surface_wind": 0.39718770022325944, "y_impact": 214.74141423972964} -{"apogee": 2935.5969990904564, "out_of_rail_stability_margin": 2.7011648495119016, "lateral_surface_wind": -2.0652590488887803, "impact_velocity": -5.5741069076772405, "x_impact": 724.8648166684628, "max_mach_number": 0.7313367378937008, "out_of_rail_time": 0.37844211982575676, "apogee_y": 386.3391348115891, "out_of_rail_velocity": 24.004698230380214, "apogee_x": 218.28542334407138, "initial_stability_margin": 2.6251134747399028, "t_final": 272.5769117891665, "apogee_time": 24.2656417749101, "frontal_surface_wind": 1.0153528875090467, "y_impact": 229.00923918196588} -{"apogee": 3156.8004557932654, "out_of_rail_stability_margin": 2.677183092127171, "lateral_surface_wind": -0.5585812313276975, "impact_velocity": -5.505083970229727, "x_impact": 727.1283274554074, "max_mach_number": 0.781480508488083, "out_of_rail_time": 0.3684159593142737, "apogee_y": 526.9846524389195, "out_of_rail_velocity": 24.778996494798317, "apogee_x": 565.8588290197247, "initial_stability_margin": 2.6007582234572273, "t_final": 284.7435341679092, "apogee_time": 24.990484312577312, "frontal_surface_wind": -0.7689206245377924, "y_impact": 553.557191847108} -{"apogee": 3710.8195508398453, "out_of_rail_stability_margin": 2.7245842878873052, "lateral_surface_wind": -1.5800244798223675, "impact_velocity": -5.490034268871658, "x_impact": 1143.2659638978332, "max_mach_number": 0.8803111838935022, "out_of_rail_time": 0.34898210551876496, "apogee_y": 529.2901494208348, "out_of_rail_velocity": 26.524050444056112, "apogee_x": 422.121203813233, "initial_stability_margin": 2.656794555525259, "t_final": 317.04890035000903, "apogee_time": 26.75584428758437, "frontal_surface_wind": 1.2935559650088164, "y_impact": 564.4164681672809} -{"apogee": 3533.1195128194236, "out_of_rail_stability_margin": 2.7325266850974774, "lateral_surface_wind": -1.5028595428195461, "impact_velocity": -5.450139071440096, "x_impact": 1133.2999204001324, "max_mach_number": 0.8498236769265107, "out_of_rail_time": 0.3542882582403334, "apogee_y": 493.2035341926044, "out_of_rail_velocity": 26.0204487727693, "apogee_x": 453.5366296879469, "initial_stability_margin": 2.662583704716383, "t_final": 299.183253787933, "apogee_time": 26.177575894174137, "frontal_surface_wind": 1.3824534661260968, "y_impact": 533.7395631217447} -{"apogee": 2855.94913733069, "out_of_rail_stability_margin": 2.645751681768175, "lateral_surface_wind": -0.41045918644875645, "impact_velocity": -5.497479228296477, "x_impact": 614.5166658078832, "max_mach_number": 0.7184401955401032, "out_of_rail_time": 0.3820349197984258, "apogee_y": 330.7517792169124, "out_of_rail_velocity": 23.730569027024785, "apogee_x": 362.5627421727885, "initial_stability_margin": 2.5656143415815618, "t_final": 266.5972936843462, "apogee_time": 23.974556373454547, "frontal_surface_wind": 0.21637512530150269, "y_impact": 522.1401767268362} -{"apogee": 2380.712773773789, "out_of_rail_stability_margin": 2.615355638579167, "lateral_surface_wind": -2.132028835351532, "impact_velocity": -5.366567739601684, "x_impact": 801.3074177412311, "max_mach_number": 0.6343184913606748, "out_of_rail_time": 0.4020256870605707, "apogee_y": 430.1546604570724, "out_of_rail_velocity": 22.340241767077607, "apogee_x": 311.3266609143213, "initial_stability_margin": 2.5344172303453854, "t_final": 250.48760860071775, "apogee_time": 22.10825833165739, "frontal_surface_wind": 0.9496661165910147, "y_impact": 342.6576980591195} -{"apogee": 3141.5671392672043, "out_of_rail_stability_margin": 2.6402315808329027, "lateral_surface_wind": -1.3468265802997248, "impact_velocity": -5.313079821446954, "x_impact": 799.1799967471218, "max_mach_number": 0.7806714509971734, "out_of_rail_time": 0.36694902191350376, "apogee_y": 417.28627934484166, "out_of_rail_velocity": 24.909885093161776, "apogee_x": 368.3307866133723, "initial_stability_margin": 2.567327853921682, "t_final": 290.82811285046506, "apogee_time": 24.84033041149685, "frontal_surface_wind": 0.6405258420155528, "y_impact": 340.24883732834996} -{"apogee": 3335.7435767979277, "out_of_rail_stability_margin": 2.612149960285969, "lateral_surface_wind": -2.1125026102620366, "impact_velocity": -5.369387536747855, "x_impact": 848.2014625770321, "max_mach_number": 0.8159298714536724, "out_of_rail_time": 0.36160992232605993, "apogee_y": 445.2873053872865, "out_of_rail_velocity": 25.377044790296775, "apogee_x": 315.2768669985228, "initial_stability_margin": 2.5362519460590986, "t_final": 286.9030770893785, "apogee_time": 25.513500411897127, "frontal_surface_wind": 0.8693795686112277, "y_impact": 321.8322437672946} -{"apogee": 3130.8115848248653, "out_of_rail_stability_margin": 2.699706996185371, "lateral_surface_wind": -2.087132128718648, "impact_velocity": -5.554861091622466, "x_impact": 734.8456439157525, "max_mach_number": 0.7658901749552199, "out_of_rail_time": 0.3702220962156555, "apogee_y": 370.3592488038768, "out_of_rail_velocity": 24.647910127281907, "apogee_x": 240.02685697007246, "initial_stability_margin": 2.6294288965110253, "t_final": 280.5446875928043, "apogee_time": 24.947777953135624, "frontal_surface_wind": 0.9286374911411472, "y_impact": 236.03211539060985} -{"apogee": 2365.8948406618165, "out_of_rail_stability_margin": 2.763046812364605, "lateral_surface_wind": -2.1136208802202807, "impact_velocity": -5.478493254310692, "x_impact": 615.0396716243197, "max_mach_number": 0.6283175939486094, "out_of_rail_time": 0.4036779311670982, "apogee_y": 379.71482683967747, "out_of_rail_velocity": 22.229218675068847, "apogee_x": 204.12676259360578, "initial_stability_margin": 2.6821833588252946, "t_final": 241.63030369742944, "apogee_time": 22.06508865511412, "frontal_surface_wind": 0.9104082600058022, "y_impact": 239.06571801467342} -{"apogee": 2837.4797309952774, "out_of_rail_stability_margin": 2.74631895692892, "lateral_surface_wind": -2.6803315074224328, "impact_velocity": -5.518210129459777, "x_impact": 655.687379303453, "max_mach_number": 0.7187745787908975, "out_of_rail_time": 0.38059837751025316, "apogee_y": 480.94399816185546, "out_of_rail_velocity": 23.845244975985963, "apogee_x": 284.4748916110657, "initial_stability_margin": 2.6732815215972656, "t_final": 266.8723844609809, "apogee_time": 23.875664863421424, "frontal_surface_wind": 0.24061560627220713, "y_impact": 127.56405687927742} -{"apogee": 3456.772446707142, "out_of_rail_stability_margin": 2.56287293364971, "lateral_surface_wind": -2.380767283452351, "impact_velocity": -5.402493410266057, "x_impact": 834.8020062233578, "max_mach_number": 0.8361999267397803, "out_of_rail_time": 0.3576245798311491, "apogee_y": 405.18009739738363, "out_of_rail_velocity": 25.742569216773713, "apogee_x": 182.78972029568772, "initial_stability_margin": 2.4878040193231725, "t_final": 299.50025550649013, "apogee_time": 25.896620932838463, "frontal_surface_wind": 0.8099695230535737, "y_impact": 140.57426763716964} -{"apogee": 4407.028968884865, "out_of_rail_stability_margin": 2.653553143654051, "lateral_surface_wind": -1.4872009517209608, "impact_velocity": -5.57849028984798, "x_impact": 1314.0267492610294, "max_mach_number": 1.0293979658881347, "out_of_rail_time": 0.3249178806640626, "apogee_y": 517.280993334132, "out_of_rail_velocity": 28.996544162605986, "apogee_x": 486.92822781994334, "initial_stability_margin": 2.58987065722109, "t_final": 346.782282092232, "apogee_time": 28.69168041958203, "frontal_surface_wind": 1.399284717506806, "y_impact": 528.9234921036052} -{"apogee": 3853.944469303101, "out_of_rail_stability_margin": 2.724459694763767, "lateral_surface_wind": -2.078456194404187, "impact_velocity": -5.598269536555618, "x_impact": 1160.4807037186308, "max_mach_number": 0.9064541209466916, "out_of_rail_time": 0.34447756802547647, "apogee_y": 637.534497430277, "out_of_rail_velocity": 26.930334444186855, "apogee_x": 475.3233695032059, "initial_stability_margin": 2.6585683826082667, "t_final": 321.58200518958296, "apogee_time": 27.216782328916498, "frontal_surface_wind": 0.3266963593119786, "y_impact": 331.3869984000403} -{"apogee": 3410.2525914779135, "out_of_rail_stability_margin": 2.620229620183474, "lateral_surface_wind": -3.0589066182738076, "impact_velocity": -5.450589156441615, "x_impact": 922.5959831230674, "max_mach_number": 0.8296173850311117, "out_of_rail_time": 0.3592263798711273, "apogee_y": 572.3588278170477, "out_of_rail_velocity": 25.609526194707392, "apogee_x": 266.4711612120052, "initial_stability_margin": 2.5466306754288284, "t_final": 302.59147603089303, "apogee_time": 25.785129510779225, "frontal_surface_wind": 0.4943596786726494, "y_impact": 133.98877351300732} -{"apogee": 3633.531138079957, "out_of_rail_stability_margin": 2.7129774320783784, "lateral_surface_wind": -2.0563571754405263, "impact_velocity": -5.356803503359881, "x_impact": 984.0151946945082, "max_mach_number": 0.8740859046051201, "out_of_rail_time": 0.351266619129096, "apogee_y": 499.9755387701261, "out_of_rail_velocity": 26.325434791727698, "apogee_x": 371.9617494703925, "initial_stability_margin": 2.639045714382996, "t_final": 308.1940641027161, "apogee_time": 26.443089214086505, "frontal_surface_wind": 0.4450908112499038, "y_impact": 190.7738813384676} -{"apogee": 4008.0732684240174, "out_of_rail_stability_margin": 2.695917394849146, "lateral_surface_wind": -2.5985202974327555, "impact_velocity": -5.519772484773604, "x_impact": 1227.4389588668075, "max_mach_number": 0.9405012594629998, "out_of_rail_time": 0.3396674380288135, "apogee_y": 589.1453419206332, "out_of_rail_velocity": 27.394516608778513, "apogee_x": 382.7704426724652, "initial_stability_margin": 2.625896605368465, "t_final": 337.088346801233, "apogee_time": 27.614361162862977, "frontal_surface_wind": 0.9617252368915158, "y_impact": 304.62813917220456} -{"apogee": 3199.9699061097863, "out_of_rail_stability_margin": 2.6144914422803884, "lateral_surface_wind": -1.5459135653346114, "impact_velocity": -5.439959575049549, "x_impact": 822.9167424448999, "max_mach_number": 0.7836628519658609, "out_of_rail_time": 0.36691420701042904, "apogee_y": 410.06538618253387, "out_of_rail_velocity": 24.90777453493071, "apogee_x": 314.2461122907287, "initial_stability_margin": 2.540823752356084, "t_final": 288.9355562825536, "apogee_time": 25.124225046559197, "frontal_surface_wind": 1.0602647139790695, "y_impact": 407.9544441256625} -{"apogee": 2426.796514229452, "out_of_rail_stability_margin": 2.64886563311776, "lateral_surface_wind": -1.3445837744492715, "impact_velocity": -5.378993922279323, "x_impact": 666.9434489074517, "max_mach_number": 0.6407565183513333, "out_of_rail_time": 0.39884395433221015, "apogee_y": 381.9174953028707, "out_of_rail_velocity": 22.51376542433304, "apogee_x": 348.20867137126413, "initial_stability_margin": 2.5720632626259916, "t_final": 251.6771656942767, "apogee_time": 22.290729226468677, "frontal_surface_wind": 0.6452206329460766, "y_impact": 332.18830343566947} -{"apogee": 4153.22262828122, "out_of_rail_stability_margin": 2.693250451285225, "lateral_surface_wind": -2.074162033208954, "impact_velocity": -5.365507129813085, "x_impact": 1155.7462073838392, "max_mach_number": 0.9961781300741347, "out_of_rail_time": 0.33049403956672707, "apogee_y": 520.2533652969464, "out_of_rail_velocity": 28.39461950008958, "apogee_x": 443.5407093144624, "initial_stability_margin": 2.6242268431208786, "t_final": 342.10410867413293, "apogee_time": 27.81657760400642, "frontal_surface_wind": 1.1500878950614544, "y_impact": 184.05727450407065} -{"apogee": 3991.9166896964366, "out_of_rail_stability_margin": 2.6151975444081965, "lateral_surface_wind": -1.5005843515504618, "impact_velocity": -5.30775893876865, "x_impact": 1032.9572889460937, "max_mach_number": 0.947992838522552, "out_of_rail_time": 0.33863859703747284, "apogee_y": 373.9093128609355, "out_of_rail_velocity": 27.596378835298058, "apogee_x": 283.8400142697832, "initial_stability_margin": 2.5459636974631774, "t_final": 332.3617350422223, "apogee_time": 27.440807378679335, "frontal_surface_wind": 1.3849227398413657, "y_impact": 381.7412193385061} -{"apogee": 3884.2537101392463, "out_of_rail_stability_margin": 2.5399065717911444, "lateral_surface_wind": -3.0497061284249343, "impact_velocity": -5.348380340727745, "x_impact": 1248.5179326516657, "max_mach_number": 0.9346110674913563, "out_of_rail_time": 0.341413841910412, "apogee_y": 735.2364507970153, "out_of_rail_velocity": 27.248176070521115, "apogee_x": 463.7268135826709, "initial_stability_margin": 2.466843967634856, "t_final": 338.28896856502774, "apogee_time": 27.132488144565684, "frontal_surface_wind": 0.5482642806749536, "y_impact": 225.01783110252953} -{"apogee": 1941.1055124600418, "out_of_rail_stability_margin": 2.7254882366355973, "lateral_surface_wind": -1.843704160459428, "impact_velocity": -5.343939015685781, "x_impact": 540.277071556407, "max_mach_number": 0.5443936416214007, "out_of_rail_time": 0.4290252225452086, "apogee_y": 250.68088727568716, "out_of_rail_velocity": 20.672541645986605, "apogee_x": 153.56974213733886, "initial_stability_margin": 2.6384382707824714, "t_final": 222.81519546473555, "apogee_time": 20.217171200173304, "frontal_surface_wind": 1.3364870416985029, "y_impact": 149.8071651321746} -{"apogee": 2805.8838199586917, "out_of_rail_stability_margin": 2.7378907758430344, "lateral_surface_wind": -2.042127531814634, "impact_velocity": -5.490756522505748, "x_impact": 746.6032671816229, "max_mach_number": 0.7100709995797708, "out_of_rail_time": 0.3823546216645556, "apogee_y": 391.5617330647076, "out_of_rail_velocity": 23.70860510433473, "apogee_x": 252.12341880209243, "initial_stability_margin": 2.664629517033485, "t_final": 269.5454433754539, "apogee_time": 23.76877479404535, "frontal_surface_wind": 1.0611086508904823, "y_impact": 232.8169132135172} -{"apogee": 2113.348774093708, "out_of_rail_stability_margin": 2.6520958176080955, "lateral_surface_wind": -1.4629447061466985, "impact_velocity": -5.3647971717551615, "x_impact": 679.1815182403647, "max_mach_number": 0.579064300917959, "out_of_rail_time": 0.41844730070691905, "apogee_y": 279.74339331846136, "out_of_rail_velocity": 21.29887247028504, "apogee_x": 238.83602241240425, "initial_stability_margin": 2.5642568582733154, "t_final": 234.4747840426264, "apogee_time": 20.98892079236056, "frontal_surface_wind": 1.424625276416639, "y_impact": 295.8396156376291} -{"apogee": 3980.8971498931583, "out_of_rail_stability_margin": 2.662663266255282, "lateral_surface_wind": -1.9991273391515159, "impact_velocity": -5.370463368943317, "x_impact": 983.0574882908682, "max_mach_number": 0.9479582124910665, "out_of_rail_time": 0.3382014096659549, "apogee_y": 503.80586157164726, "out_of_rail_velocity": 27.61224606059232, "apogee_x": 352.7224586348442, "initial_stability_margin": 2.595031870182615, "t_final": 342.7444678039875, "apogee_time": 27.404255289289544, "frontal_surface_wind": 1.0483676038668477, "y_impact": 393.5778163085447} -{"apogee": 3664.81178651672, "out_of_rail_stability_margin": 2.710184468268172, "lateral_surface_wind": -1.5383505189047346, "impact_velocity": -5.415261089352306, "x_impact": 1019.9846255172527, "max_mach_number": 0.8775214161033354, "out_of_rail_time": 0.3502745110204942, "apogee_y": 502.41167066548377, "out_of_rail_velocity": 26.388748152627326, "apogee_x": 422.36594648135645, "initial_stability_margin": 2.6368326503206383, "t_final": 313.69260526306175, "apogee_time": 26.552580684493027, "frontal_surface_wind": 1.0712085213347686, "y_impact": 506.33033993861477} -{"apogee": 3741.6508946871745, "out_of_rail_stability_margin": 2.7007055278072962, "lateral_surface_wind": -3.14147575276955, "impact_velocity": -5.5037478416243735, "x_impact": 1035.1374198511326, "max_mach_number": 0.8923810495259631, "out_of_rail_time": 0.3473873170314159, "apogee_y": 684.9900419851161, "out_of_rail_velocity": 26.647549142402458, "apogee_x": 333.24702198875445, "initial_stability_margin": 2.631137217588944, "t_final": 308.75177252760886, "apogee_time": 26.815387440137737, "frontal_surface_wind": 0.7790511151826507, "y_impact": 426.3422606673938} -{"apogee": 2987.6305502556397, "out_of_rail_stability_margin": 2.742558131607557, "lateral_surface_wind": -1.9583525627271894, "impact_velocity": -5.421961894616326, "x_impact": 746.765745439412, "max_mach_number": 0.744946500463146, "out_of_rail_time": 0.375077863352486, "apogee_y": 366.06737026180406, "out_of_rail_velocity": 24.315075534354623, "apogee_x": 243.48153425505595, "initial_stability_margin": 2.6713054856732756, "t_final": 277.93971914117355, "apogee_time": 24.39888484677726, "frontal_surface_wind": 0.7538381346974222, "y_impact": 258.5262401505769} -{"apogee": 1925.0871310233686, "out_of_rail_stability_margin": 2.745695130060335, "lateral_surface_wind": -2.69006329959954, "impact_velocity": -5.477568375675701, "x_impact": 419.2298854370586, "max_mach_number": 0.5427335167745908, "out_of_rail_time": 0.4296521517715491, "apogee_y": 348.6360023546628, "out_of_rail_velocity": 20.65350049090298, "apogee_x": 149.78153597952476, "initial_stability_margin": 2.661271933797032, "t_final": 217.77306420767187, "apogee_time": 20.16121630216042, "frontal_surface_wind": 0.07504867627606893, "y_impact": 38.05455792667313} -{"apogee": 2219.3993716453056, "out_of_rail_stability_margin": 2.736873651870737, "lateral_surface_wind": -1.8608058670580183, "impact_velocity": -5.459316979733399, "x_impact": 506.41665554098125, "max_mach_number": 0.5969478858112819, "out_of_rail_time": 0.41145134071663203, "apogee_y": 277.362207652133, "out_of_rail_velocity": 21.69846707314342, "apogee_x": 161.15956597876888, "initial_stability_margin": 2.657344469723188, "t_final": 238.29593140482615, "apogee_time": 21.464505056958945, "frontal_surface_wind": 0.9007893364769035, "y_impact": 181.0473147380468} -{"apogee": 4137.985636947571, "out_of_rail_stability_margin": 2.590982393524773, "lateral_surface_wind": -0.6129079381228933, "impact_velocity": -5.357592269661504, "x_impact": 858.2395171406118, "max_mach_number": 0.9906047991457767, "out_of_rail_time": 0.33156401278324005, "apogee_y": 472.06378500695286, "out_of_rail_velocity": 28.31137443918714, "apogee_x": 569.0469366058829, "initial_stability_margin": 2.5227387342394745, "t_final": 334.16716729760765, "apogee_time": 27.813301930166638, "frontal_surface_wind": -0.7263578857678211, "y_impact": 515.4473907309468} -{"apogee": 3369.5982834364827, "out_of_rail_stability_margin": 2.757550560382672, "lateral_surface_wind": -1.164108561168731, "impact_velocity": -5.535427145600435, "x_impact": 940.6835509415573, "max_mach_number": 0.8150936460516552, "out_of_rail_time": 0.3615917246394253, "apogee_y": 518.5307908175901, "out_of_rail_velocity": 25.498134580894924, "apogee_x": 499.44568462739363, "initial_stability_margin": 2.687359950034286, "t_final": 299.2780397502789, "apogee_time": 25.721347932734226, "frontal_surface_wind": 0.3994485904133112, "y_impact": 547.1293951889863} -{"apogee": 3910.277130401501, "out_of_rail_stability_margin": 2.6147995231811487, "lateral_surface_wind": -2.1619310777599225, "impact_velocity": -5.3664804623260824, "x_impact": 1051.4750085070095, "max_mach_number": 0.9367773049182828, "out_of_rail_time": 0.3394146634627727, "apogee_y": 527.2775301685015, "out_of_rail_velocity": 27.460979478026314, "apogee_x": 361.12448958205186, "initial_stability_margin": 2.547409164962053, "t_final": 339.39738314563255, "apogee_time": 27.1785585374359, "frontal_surface_wind": 0.975143231216937, "y_impact": 199.64710690324958} -{"apogee": 3262.3010736164647, "out_of_rail_stability_margin": 2.6945058567644464, "lateral_surface_wind": -1.6131276749100192, "impact_velocity": -5.367068761844121, "x_impact": 763.1782893996455, "max_mach_number": 0.7984641440809286, "out_of_rail_time": 0.3647246455882674, "apogee_y": 342.742124656138, "out_of_rail_velocity": 25.2438658518385, "apogee_x": 253.7382717356918, "initial_stability_margin": 2.622154451436854, "t_final": 294.8480458800191, "apogee_time": 25.28190843044717, "frontal_surface_wind": 0.9065126100942236, "y_impact": 374.3893992262901} -{"apogee": 2477.3154506531137, "out_of_rail_stability_margin": 2.672298890361999, "lateral_surface_wind": -1.9718104417608342, "impact_velocity": -5.546023285728327, "x_impact": 515.1722656136893, "max_mach_number": 0.6415417684361119, "out_of_rail_time": 0.3999247140120769, "apogee_y": 268.4935678632591, "out_of_rail_velocity": 22.472351797858547, "apogee_x": 123.60652406589253, "initial_stability_margin": 2.592623306579277, "t_final": 243.27815511333233, "apogee_time": 22.56727189867145, "frontal_surface_wind": 1.098885040731504, "y_impact": 160.61657235777923} -{"apogee": 1623.1071293911457, "out_of_rail_stability_margin": 2.6516973982433587, "lateral_surface_wind": -3.140190180636317, "impact_velocity": -5.389183842635851, "x_impact": 594.3964968278431, "max_mach_number": 0.48425605611558553, "out_of_rail_time": 0.4515252943415447, "apogee_y": 362.4405077372779, "out_of_rail_velocity": 19.50861159430205, "apogee_x": 152.08834652335736, "initial_stability_margin": 2.5610653396101704, "t_final": 200.9802857556637, "apogee_time": 18.664106760502804, "frontal_surface_wind": 0.7842169181684346, "y_impact": 106.80817365143632} -{"apogee": 4360.818962476907, "out_of_rail_stability_margin": 2.697361838681382, "lateral_surface_wind": -2.122404382602161, "impact_velocity": -5.356444131426408, "x_impact": 1404.5532936294933, "max_mach_number": 1.060858150770724, "out_of_rail_time": 0.3200796941947534, "apogee_y": 680.084741552098, "out_of_rail_velocity": 29.575098283330778, "apogee_x": 571.9245968327, "initial_stability_margin": 2.632313119231787, "t_final": 360.32290710066246, "apogee_time": 28.28894754627333, "frontal_surface_wind": 0.9709852339158457, "y_impact": 534.0807078701274} -{"apogee": 2855.013734113695, "out_of_rail_stability_margin": 2.8345430525478044, "lateral_surface_wind": -2.0389372024641776, "impact_velocity": -5.539272186436701, "x_impact": 649.6169197592716, "max_mach_number": 0.7148708955870036, "out_of_rail_time": 0.38168340403656, "apogee_y": 336.7602883148489, "out_of_rail_velocity": 23.74667219350781, "apogee_x": 172.56744321981304, "initial_stability_margin": 2.759641156631348, "t_final": 264.828319374814, "apogee_time": 23.983530269958052, "frontal_surface_wind": 1.067226081764075, "y_impact": 175.8046513405625} -{"apogee": 3052.774231390744, "out_of_rail_stability_margin": 2.588246267221958, "lateral_surface_wind": -1.9676689920790162, "impact_velocity": -5.426512211257566, "x_impact": 894.1748765302593, "max_mach_number": 0.7622186300758688, "out_of_rail_time": 0.3727628126587821, "apogee_y": 449.1135113863674, "out_of_rail_velocity": 24.54737736059071, "apogee_x": 342.5201186092052, "initial_stability_margin": 2.5126765444253913, "t_final": 277.93110704197954, "apogee_time": 24.596842960418453, "frontal_surface_wind": 0.7967631796341736, "y_impact": 281.41579460335544} -{"apogee": 4005.706540223787, "out_of_rail_stability_margin": 2.773797623888925, "lateral_surface_wind": -2.3119052389391292, "impact_velocity": -5.565332302694923, "x_impact": 1136.129311283896, "max_mach_number": 0.9296195551299987, "out_of_rail_time": 0.34098464172597853, "apogee_y": 531.9168995331692, "out_of_rail_velocity": 27.268925659078675, "apogee_x": 393.5069227819314, "initial_stability_margin": 2.7064757127810553, "t_final": 309.1615697864319, "apogee_time": 27.68632930505004, "frontal_surface_wind": 0.9895441639454648, "y_impact": 296.573192552805} -{"apogee": 3540.8578838784856, "out_of_rail_stability_margin": 2.669889581204897, "lateral_surface_wind": -1.975526455749813, "impact_velocity": -5.480768458311963, "x_impact": 863.4088199669948, "max_mach_number": 0.8500849602349826, "out_of_rail_time": 0.3555023752882661, "apogee_y": 406.04223006871166, "out_of_rail_velocity": 25.975210045642854, "apogee_x": 254.60713576359248, "initial_stability_margin": 2.5983623781675713, "t_final": 306.1428584695507, "apogee_time": 26.204583792529448, "frontal_surface_wind": 0.7076100026828498, "y_impact": 289.9208156773005} -{"apogee": 3559.969834782471, "out_of_rail_stability_margin": 2.6615828360298237, "lateral_surface_wind": -1.3388263476910773, "impact_velocity": -5.420735678180272, "x_impact": 929.3568659955704, "max_mach_number": 0.8547177926487959, "out_of_rail_time": 0.35377762346447805, "apogee_y": 460.92202232075533, "out_of_rail_velocity": 26.05243228159549, "apogee_x": 425.4500094151094, "initial_stability_margin": 2.5892318357346342, "t_final": 307.44211593176277, "apogee_time": 26.248031096221688, "frontal_surface_wind": 0.6570838625470534, "y_impact": 374.0575031335873} -{"apogee": 3148.5273208839326, "out_of_rail_stability_margin": 2.650890803492598, "lateral_surface_wind": -1.3106454151520697, "impact_velocity": -5.515502961863122, "x_impact": 708.8908527475216, "max_mach_number": 0.7715893701487584, "out_of_rail_time": 0.3693128774969573, "apogee_y": 329.0887039899094, "out_of_rail_velocity": 24.725684844258975, "apogee_x": 292.33020839528484, "initial_stability_margin": 2.576818762865113, "t_final": 289.046379708874, "apogee_time": 24.961404928982663, "frontal_surface_wind": 0.7116345884177098, "y_impact": 239.4123860569268} -{"apogee": 4448.65813721427, "out_of_rail_stability_margin": 2.754331356544128, "lateral_surface_wind": -0.4153667811187587, "impact_velocity": -5.31358962880727, "x_impact": 850.9999179761315, "max_mach_number": 1.0728674671590614, "out_of_rail_time": 0.31776699036038947, "apogee_y": 438.5364920507392, "out_of_rail_velocity": 29.85767199456012, "apogee_x": 460.7348690901767, "initial_stability_margin": 2.692961566988108, "t_final": 362.349800272577, "apogee_time": 28.553684309840836, "frontal_surface_wind": 0.2067979103677241, "y_impact": 780.346543498549} -{"apogee": 4285.439443050085, "out_of_rail_stability_margin": 2.6458825068772978, "lateral_surface_wind": -1.548318481237448, "impact_velocity": -5.370115657763583, "x_impact": 1087.2157641044628, "max_mach_number": 1.0234029497803414, "out_of_rail_time": 0.32578515048359535, "apogee_y": 518.4175151055543, "out_of_rail_velocity": 28.920622883628887, "apogee_x": 426.2513843819252, "initial_stability_margin": 2.5793721982975986, "t_final": 341.12857001574235, "apogee_time": 28.18964054992437, "frontal_surface_wind": 1.0567496845768396, "y_impact": 520.4185776366088} -{"apogee": 3368.257174773562, "out_of_rail_stability_margin": 2.683939979135493, "lateral_surface_wind": -1.3577761890738511, "impact_velocity": -5.60817748140325, "x_impact": 1002.8715790852663, "max_mach_number": 0.8127887387690838, "out_of_rail_time": 0.36255444566317113, "apogee_y": 546.6641230248042, "out_of_rail_velocity": 25.333749553096194, "apogee_x": 544.8972129718005, "initial_stability_margin": 2.608116034412463, "t_final": 294.5807152332198, "apogee_time": 25.736453528548545, "frontal_surface_wind": 0.6332091851423516, "y_impact": 455.8682888342899} -{"apogee": 2828.6354035876902, "out_of_rail_stability_margin": 2.808238743400042, "lateral_surface_wind": -2.0634098146837028, "impact_velocity": -5.567905603648548, "x_impact": 769.434319804787, "max_mach_number": 0.7114708681409014, "out_of_rail_time": 0.3833205126017338, "apogee_y": 429.35609381730933, "out_of_rail_velocity": 23.64458112054772, "apogee_x": 275.1517015610671, "initial_stability_margin": 2.7299783640912407, "t_final": 265.56721411805114, "apogee_time": 23.898667627552825, "frontal_surface_wind": 1.019105667660089, "y_impact": 282.87123727607417} -{"apogee": 1689.5312963153187, "out_of_rail_stability_margin": 2.6162360906138917, "lateral_surface_wind": -2.022085438538437, "impact_velocity": -5.290667654289098, "x_impact": 551.3810876932796, "max_mach_number": 0.4971913467510078, "out_of_rail_time": 0.4468018078810458, "apogee_y": 278.8899888056294, "out_of_rail_velocity": 19.723537822985563, "apogee_x": 191.41704198507855, "initial_stability_margin": 2.5225440946289774, "t_final": 210.32108735244563, "apogee_time": 18.987856642259672, "frontal_surface_wind": 1.0988206880291091, "y_impact": 131.83541148485955} -{"apogee": 3898.1856711290393, "out_of_rail_stability_margin": 2.738297223973321, "lateral_surface_wind": -1.9603419281474712, "impact_velocity": -5.452522660773887, "x_impact": 939.2201380589789, "max_mach_number": 0.9176869851325982, "out_of_rail_time": 0.34309051719970085, "apogee_y": 473.30746667249923, "out_of_rail_velocity": 27.090200573643642, "apogee_x": 345.72275889533955, "initial_stability_margin": 2.6695445356904726, "t_final": 321.0737582630801, "apogee_time": 27.284880735890404, "frontal_surface_wind": 1.1192159200652885, "y_impact": 371.6903828589332} -{"apogee": 2545.597272266798, "out_of_rail_stability_margin": 2.5936547106326096, "lateral_surface_wind": -2.1470126937909795, "impact_velocity": -5.460167199848418, "x_impact": 523.2709917541407, "max_mach_number": 0.6589761918058021, "out_of_rail_time": 0.39592219371346893, "apogee_y": 336.9014742253007, "out_of_rail_velocity": 22.747010045818488, "apogee_x": 162.58820336572103, "initial_stability_margin": 2.51162494413283, "t_final": 247.86085391319014, "apogee_time": 22.796788462954172, "frontal_surface_wind": 0.7642151766511659, "y_impact": 117.235070217734} -{"apogee": 4247.58510922875, "out_of_rail_stability_margin": 2.719181900724874, "lateral_surface_wind": -1.8815423640547972, "impact_velocity": -5.52762002592922, "x_impact": 1331.5814692644915, "max_mach_number": 0.9970401540096806, "out_of_rail_time": 0.32971794498799467, "apogee_y": 625.3756634852316, "out_of_rail_velocity": 28.48762135764693, "apogee_x": 560.9535726762861, "initial_stability_margin": 2.65769566227108, "t_final": 342.49053191786317, "apogee_time": 28.267519676546314, "frontal_surface_wind": 1.441081184475733, "y_impact": 497.34116790597733} -{"apogee": 3593.8190167787825, "out_of_rail_stability_margin": 2.6562626354612338, "lateral_surface_wind": -1.1689485281525485, "impact_velocity": -5.430128457777857, "x_impact": 793.0096162748874, "max_mach_number": 0.861714171347402, "out_of_rail_time": 0.3518879914087634, "apogee_y": 408.0080699199983, "out_of_rail_velocity": 26.225325965560383, "apogee_x": 346.1690162913249, "initial_stability_margin": 2.588164826519348, "t_final": 306.17943081603977, "apogee_time": 26.348042248530728, "frontal_surface_wind": 0.3850548754392092, "y_impact": 424.26969448655234} -{"apogee": 3202.5650783672777, "out_of_rail_stability_margin": 2.681787957159926, "lateral_surface_wind": -2.165015171321274, "impact_velocity": -5.38866424259569, "x_impact": 921.2882499714752, "max_mach_number": 0.7899530995704113, "out_of_rail_time": 0.366285449313436, "apogee_y": 528.5027956896879, "out_of_rail_velocity": 25.023675142429518, "apogee_x": 362.52597428799334, "initial_stability_margin": 2.607005031074798, "t_final": 289.0301341479176, "apogee_time": 25.09156143067873, "frontal_surface_wind": 1.225132588646519, "y_impact": 416.62399458625504} -{"apogee": 3341.0079583128513, "out_of_rail_stability_margin": 2.6354190521373746, "lateral_surface_wind": -1.331929094475306, "impact_velocity": -5.52349266101934, "x_impact": 1093.1864398359326, "max_mach_number": 0.8143862254636218, "out_of_rail_time": 0.3611329563702655, "apogee_y": 558.4680829253987, "out_of_rail_velocity": 25.415478822331966, "apogee_x": 624.008134437007, "initial_stability_margin": 2.562949037139671, "t_final": 296.48348185720283, "apogee_time": 25.584764365317035, "frontal_surface_wind": 0.685911757483966, "y_impact": 467.5947941216456} -{"apogee": 3820.9000524444946, "out_of_rail_stability_margin": 2.8211159176617664, "lateral_surface_wind": -2.572979932204274, "impact_velocity": -5.523172525519872, "x_impact": 778.5377025535231, "max_mach_number": 0.8975093027817836, "out_of_rail_time": 0.34611745354737483, "apogee_y": 384.6854579114046, "out_of_rail_velocity": 26.80703338216043, "apogee_x": 99.9060696032324, "initial_stability_margin": 2.7547208407374173, "t_final": 315.93209157895325, "apogee_time": 27.09462089817345, "frontal_surface_wind": 1.117633135372579, "y_impact": 68.0955291058321} -{"apogee": 4125.1986363336, "out_of_rail_stability_margin": 2.683874385350031, "lateral_surface_wind": -1.8722217965778594, "impact_velocity": -5.416293049728316, "x_impact": 1058.0726471894598, "max_mach_number": 0.9798737519662635, "out_of_rail_time": 0.332684784479959, "apogee_y": 474.29782174343813, "out_of_rail_velocity": 28.160890786111768, "apogee_x": 335.3158472379283, "initial_stability_margin": 2.616989116633655, "t_final": 350.09930286426953, "apogee_time": 27.80347896727852, "frontal_surface_wind": 0.8768155153775596, "y_impact": 393.9863001080231} -{"apogee": 2861.277601391302, "out_of_rail_stability_margin": 2.713177897520222, "lateral_surface_wind": -2.6857683492519984, "impact_velocity": -5.407553456639238, "x_impact": 623.2925534536986, "max_mach_number": 0.7256920280248006, "out_of_rail_time": 0.3801340752577253, "apogee_y": 473.53000513355784, "out_of_rail_velocity": 23.87455330021063, "apogee_x": 249.168857564186, "initial_stability_margin": 2.634516547069334, "t_final": 271.65569654731723, "apogee_time": 23.933729861801925, "frontal_surface_wind": 0.1694734015099395, "y_impact": 112.2263479385908} -{"apogee": 3523.672539987149, "out_of_rail_stability_margin": 2.6601862223873782, "lateral_surface_wind": -2.0670646173091076, "impact_velocity": -5.4724554263305345, "x_impact": 1166.8015057753464, "max_mach_number": 0.8538247221881361, "out_of_rail_time": 0.35410828417012363, "apogee_y": 626.6813636633699, "out_of_rail_velocity": 26.037246184769415, "apogee_x": 497.16078502544093, "initial_stability_margin": 2.5888379741919225, "t_final": 297.0669913205143, "apogee_time": 26.12448439756604, "frontal_surface_wind": 1.0116720284057972, "y_impact": 506.38036011440727} -{"apogee": 3474.3827144107604, "out_of_rail_stability_margin": 2.60584525988293, "lateral_surface_wind": -2.1252531832518993, "impact_velocity": -5.497495311213048, "x_impact": 813.680667231632, "max_mach_number": 0.833345319263606, "out_of_rail_time": 0.3581641571058688, "apogee_y": 474.02573687782353, "out_of_rail_velocity": 25.672907491382606, "apogee_x": 308.745934263514, "initial_stability_margin": 2.531935191072445, "t_final": 309.52899231883345, "apogee_time": 26.037540119440187, "frontal_surface_wind": 0.822792349624886, "y_impact": 155.9829717655707} -{"apogee": 3559.087171898728, "out_of_rail_stability_margin": 2.5695845306007046, "lateral_surface_wind": -3.02046687716824, "impact_velocity": -5.347678289657837, "x_impact": 915.2858990140993, "max_mach_number": 0.8651681178528579, "out_of_rail_time": 0.3523785595620869, "apogee_y": 504.7762290788307, "out_of_rail_velocity": 26.196735405564578, "apogee_x": 240.71970445899805, "initial_stability_margin": 2.4970507840650784, "t_final": 309.65007606632605, "apogee_time": 26.168741112640397, "frontal_surface_wind": 0.6914340425132135, "y_impact": 34.40272845202964} -{"apogee": 2418.127710370384, "out_of_rail_stability_margin": 2.720688372416886, "lateral_surface_wind": -1.3678543917081, "impact_velocity": -5.399172270610558, "x_impact": 412.81872402627334, "max_mach_number": 0.6351439041220825, "out_of_rail_time": 0.4018518567227868, "apogee_y": 239.45556904555482, "out_of_rail_velocity": 22.35604617465805, "apogee_x": 137.8408438061648, "initial_stability_margin": 2.637992448864335, "t_final": 249.91987986131895, "apogee_time": 22.257564145130814, "frontal_surface_wind": 0.5942975305151856, "y_impact": 164.3725922366006} -{"apogee": 2776.5511854250803, "out_of_rail_stability_margin": 2.7963876822910585, "lateral_surface_wind": -3.0249831712736865, "impact_velocity": -5.469878181747177, "x_impact": 681.3624217365702, "max_mach_number": 0.7034502872801799, "out_of_rail_time": 0.3853184285482109, "apogee_y": 413.8318613426058, "out_of_rail_velocity": 23.558380101295857, "apogee_x": 152.2908092412926, "initial_stability_margin": 2.7215964601644744, "t_final": 268.5140514293825, "apogee_time": 23.689035410932707, "frontal_surface_wind": 0.6714000333092185, "y_impact": 36.862433694096325} -{"apogee": 3331.792186701868, "out_of_rail_stability_margin": 2.7010043621274513, "lateral_surface_wind": -2.436343122738747, "impact_velocity": -5.506708745387351, "x_impact": 932.7392214325947, "max_mach_number": 0.8035057407131676, "out_of_rail_time": 0.3636682973582044, "apogee_y": 434.4886670178964, "out_of_rail_velocity": 25.21930922596897, "apogee_x": 297.7601612211681, "initial_stability_margin": 2.62842239563496, "t_final": 292.2201884948352, "apogee_time": 25.622277545085357, "frontal_surface_wind": 1.3905257081738043, "y_impact": 156.23806756916386} -{"apogee": 3031.540892647876, "out_of_rail_stability_margin": 2.5793998127490205, "lateral_surface_wind": -1.1701805390691877, "impact_velocity": -5.390083098322648, "x_impact": 762.66401106591, "max_mach_number": 0.758785248122875, "out_of_rail_time": 0.3728407414117612, "apogee_y": 438.35391607391927, "out_of_rail_velocity": 24.513027655377606, "apogee_x": 395.4996582835774, "initial_stability_margin": 2.5047230511965486, "t_final": 280.2186439507021, "apogee_time": 24.510122895400116, "frontal_surface_wind": 0.38129440666401004, "y_impact": 449.06709042749594} -{"apogee": 3256.938071750059, "out_of_rail_stability_margin": 2.627212884691932, "lateral_surface_wind": -1.2204600753655717, "impact_velocity": -5.3388438824416795, "x_impact": 611.8157817588417, "max_mach_number": 0.8002624857639506, "out_of_rail_time": 0.3647852367736302, "apogee_y": 385.1582847516098, "out_of_rail_velocity": 25.128346732386326, "apogee_x": 311.4594910067343, "initial_stability_margin": 2.5516710999348815, "t_final": 302.53372336781575, "apogee_time": 25.27340379666956, "frontal_surface_wind": 0.44440431462213625, "y_impact": 384.8758663919793} -{"apogee": 3471.443625377764, "out_of_rail_stability_margin": 2.7081407423851593, "lateral_surface_wind": -0.40959199562549586, "impact_velocity": -5.524346818142526, "x_impact": 743.4390369941515, "max_mach_number": 0.836849276411486, "out_of_rail_time": 0.3577808730898191, "apogee_y": 389.2249237713262, "out_of_rail_velocity": 25.703217818596954, "apogee_x": 432.2044127534955, "initial_stability_margin": 2.6342413949541705, "t_final": 303.9710764055277, "apogee_time": 26.006283361795976, "frontal_surface_wind": 0.2180122375210617, "y_impact": 658.8897149657995} -{"apogee": 3976.541673191493, "out_of_rail_stability_margin": 2.646611029236945, "lateral_surface_wind": -1.9098855052869737, "impact_velocity": -5.521197649484851, "x_impact": 1008.027849038856, "max_mach_number": 0.9343866730391358, "out_of_rail_time": 0.3410142544507153, "apogee_y": 470.25438719447607, "out_of_rail_velocity": 27.29604032325099, "apogee_x": 326.2150331781349, "initial_stability_margin": 2.5767740251577496, "t_final": 320.26148664877155, "apogee_time": 27.528395764430222, "frontal_surface_wind": 1.4033011097685404, "y_impact": 337.2518677572759} -{"apogee": 3950.887051528585, "out_of_rail_stability_margin": 2.676490259913469, "lateral_surface_wind": -1.3497089262882116, "impact_velocity": -5.409474084183738, "x_impact": 1060.3487384434911, "max_mach_number": 0.9348988785795844, "out_of_rail_time": 0.3403956645231419, "apogee_y": 504.8346986201463, "out_of_rail_velocity": 27.361792646592612, "apogee_x": 494.4212430277881, "initial_stability_margin": 2.6065664394891352, "t_final": 333.0047622005517, "apogee_time": 27.384889246315105, "frontal_surface_wind": 0.6502275494490177, "y_impact": 389.3552584335773} -{"apogee": 4075.8476127024555, "out_of_rail_stability_margin": 2.5632435410811385, "lateral_surface_wind": -1.970230493484907, "impact_velocity": -5.236216193871332, "x_impact": 1225.3833338795905, "max_mach_number": 0.9839386824891406, "out_of_rail_time": 0.33328995701865227, "apogee_y": 521.6560132680573, "out_of_rail_velocity": 28.103915511132378, "apogee_x": 407.5772873041362, "initial_stability_margin": 2.4905268941123686, "t_final": 338.05557825430037, "apogee_time": 27.579332371868663, "frontal_surface_wind": 0.7904078879617973, "y_impact": 266.542139743861} -{"apogee": 3992.9136423286664, "out_of_rail_stability_margin": 2.7483218976914072, "lateral_surface_wind": -2.120799833888805, "impact_velocity": -5.407168047864143, "x_impact": 1034.0451698452903, "max_mach_number": 0.951387732791105, "out_of_rail_time": 0.33783023752334046, "apogee_y": 589.8681089308811, "out_of_rail_velocity": 27.709470139531575, "apogee_x": 447.9110640427834, "initial_stability_margin": 2.681282058938404, "t_final": 335.00798971065774, "apogee_time": 27.441537511155627, "frontal_surface_wind": 0.834204056631703, "y_impact": 236.00254064069424} -{"apogee": 4073.7244980197856, "out_of_rail_stability_margin": 2.6688302934742314, "lateral_surface_wind": -1.472870975381053, "impact_velocity": -5.443155285290442, "x_impact": 1348.8473869850418, "max_mach_number": 0.9720004891951646, "out_of_rail_time": 0.3339981226945084, "apogee_y": 618.5572528242935, "out_of_rail_velocity": 28.048058914110516, "apogee_x": 664.7109290459294, "initial_stability_margin": 2.60285719214182, "t_final": 338.3039517156543, "apogee_time": 27.66059894929053, "frontal_surface_wind": 1.1595952332925281, "y_impact": 627.1941887424942} -{"apogee": 2404.0036043137206, "out_of_rail_stability_margin": 2.787118361792035, "lateral_surface_wind": -1.363387226051071, "impact_velocity": -5.570552748454834, "x_impact": 546.383070580478, "max_mach_number": 0.629508326889098, "out_of_rail_time": 0.40205224206856793, "apogee_y": 331.6757795122793, "out_of_rail_velocity": 22.34200295054467, "apogee_x": 256.5318972259464, "initial_stability_margin": 2.711610408789742, "t_final": 241.46689515623757, "apogee_time": 22.265147332498206, "frontal_surface_wind": 0.6044753622211169, "y_impact": 280.00175733284215} -{"apogee": 3453.8642575510667, "out_of_rail_stability_margin": 2.6621990609459067, "lateral_surface_wind": -1.5071721242238258, "impact_velocity": -5.501620214180985, "x_impact": 900.956708463199, "max_mach_number": 0.8311375030652263, "out_of_rail_time": 0.3580200034386159, "apogee_y": 420.8534646790696, "out_of_rail_velocity": 25.70891349646937, "apogee_x": 354.47981817598037, "initial_stability_margin": 2.590788978672665, "t_final": 297.0275473384422, "apogee_time": 25.94666166809135, "frontal_surface_wind": 1.1146489147517835, "y_impact": 416.2371970805001} -{"apogee": 3498.2719642022034, "out_of_rail_stability_margin": 2.6988479576388698, "lateral_surface_wind": -1.5552967784575031, "impact_velocity": -5.4056449123587225, "x_impact": 858.4834494889972, "max_mach_number": 0.8403531184422747, "out_of_rail_time": 0.35685591649535925, "apogee_y": 355.3669664100164, "out_of_rail_velocity": 25.898512695422074, "apogee_x": 231.5232123297862, "initial_stability_margin": 2.629052244926846, "t_final": 293.4588706408347, "apogee_time": 26.063902655330267, "frontal_surface_wind": 1.3231841604128831, "y_impact": 377.16767536411476} -{"apogee": 3647.583617846942, "out_of_rail_stability_margin": 2.6908787955957085, "lateral_surface_wind": -2.1218397556034647, "impact_velocity": -5.560172453810034, "x_impact": 1172.3078470161863, "max_mach_number": 0.8707257225094772, "out_of_rail_time": 0.3513025198418496, "apogee_y": 636.3460832142171, "out_of_rail_velocity": 26.29510336187643, "apogee_x": 550.8314012137067, "initial_stability_margin": 2.620199871911173, "t_final": 306.6064395843279, "apogee_time": 26.572658509538492, "frontal_surface_wind": 0.8463357278427934, "y_impact": 544.4808259222317} -{"apogee": 3334.033753592041, "out_of_rail_stability_margin": 2.7336935548178483, "lateral_surface_wind": -1.957983668345367, "impact_velocity": -5.498173518283715, "x_impact": 971.0953796306155, "max_mach_number": 0.8120626280035194, "out_of_rail_time": 0.3621511981945813, "apogee_y": 513.0019692112069, "out_of_rail_velocity": 25.348396266018693, "apogee_x": 363.9025761868693, "initial_stability_margin": 2.6609797664991857, "t_final": 294.3928315329472, "apogee_time": 25.570478270719516, "frontal_surface_wind": 1.3353713350509344, "y_impact": 399.24793814811636} -{"apogee": 3291.4993544343815, "out_of_rail_stability_margin": 2.6358369550529765, "lateral_surface_wind": -1.3431822223158933, "impact_velocity": -5.444507852751604, "x_impact": 726.0148373193022, "max_mach_number": 0.8013261377083566, "out_of_rail_time": 0.36428412257615195, "apogee_y": 358.1083415114602, "out_of_rail_velocity": 25.205109221758978, "apogee_x": 314.29803852239934, "initial_stability_margin": 2.5610565786726607, "t_final": 294.361782815288, "apogee_time": 25.40822947901003, "frontal_surface_wind": 0.6636049799535035, "y_impact": 242.36204364776387} -{"apogee": 3549.7275246813247, "out_of_rail_stability_margin": 2.714927559967605, "lateral_surface_wind": -1.5441864254617275, "impact_velocity": -5.481025151929868, "x_impact": 766.6856893743042, "max_mach_number": 0.8447359175202848, "out_of_rail_time": 0.3551549829575075, "apogee_y": 335.1825178972687, "out_of_rail_velocity": 25.944396995234214, "apogee_x": 205.94514521697374, "initial_stability_margin": 2.645485589033166, "t_final": 316.60127142986573, "apogee_time": 26.267477213877587, "frontal_surface_wind": 1.062778574593231, "y_impact": 309.8444222078585} -{"apogee": 4146.591243543063, "out_of_rail_stability_margin": 2.680958531957909, "lateral_surface_wind": -1.9514666141031172, "impact_velocity": -5.4721809239138945, "x_impact": 1166.1326875088953, "max_mach_number": 0.9758259587126437, "out_of_rail_time": 0.33349387921762763, "apogee_y": 468.4653139771099, "out_of_rail_velocity": 28.114669477495795, "apogee_x": 351.4567772198871, "initial_stability_margin": 2.6163389313241736, "t_final": 336.34415506618853, "apogee_time": 27.950974075706533, "frontal_surface_wind": 0.8356619417269912, "y_impact": 206.30265576468145} -{"apogee": 3768.9835802943408, "out_of_rail_stability_margin": 2.7294243875093143, "lateral_surface_wind": -2.10519611570672, "impact_velocity": -5.48575334951366, "x_impact": 988.7944313158976, "max_mach_number": 0.8969457652300687, "out_of_rail_time": 0.3454430591036133, "apogee_y": 473.67440975022555, "out_of_rail_velocity": 26.839008733215437, "apogee_x": 348.3244624390222, "initial_stability_margin": 2.6644386754272174, "t_final": 314.30585918877307, "apogee_time": 26.86520700292216, "frontal_surface_wind": 1.0922452200791382, "y_impact": 189.35685683068692} -{"apogee": 3368.94117889009, "out_of_rail_stability_margin": 2.638301960662999, "lateral_surface_wind": -1.3500936988842587, "impact_velocity": -5.501291626841378, "x_impact": 780.6450764235434, "max_mach_number": 0.8112023631220168, "out_of_rail_time": 0.3616803986724358, "apogee_y": 383.50143767370105, "out_of_rail_velocity": 25.358574235191302, "apogee_x": 337.6663477251827, "initial_stability_margin": 2.5660185403091265, "t_final": 307.4064542390471, "apogee_time": 25.71171295975251, "frontal_surface_wind": 0.6494282531562453, "y_impact": 260.112322768645} -{"apogee": 3166.5029731470713, "out_of_rail_stability_margin": 2.549425430133702, "lateral_surface_wind": -1.2715162167138787, "impact_velocity": -5.218288818607014, "x_impact": 646.1099660873924, "max_mach_number": 0.7911722979363425, "out_of_rail_time": 0.36670697471575403, "apogee_y": 315.5616796668278, "out_of_rail_velocity": 24.975653378117535, "apogee_x": 306.5816426023576, "initial_stability_margin": 2.471748880405915, "t_final": 290.4607550334828, "apogee_time": 24.884632861903917, "frontal_surface_wind": 0.6296871244853544, "y_impact": 63.345857389207715} -{"apogee": 4093.6389688360823, "out_of_rail_stability_margin": 2.545057317952824, "lateral_surface_wind": -1.5314332261548371, "impact_velocity": -5.235955367798134, "x_impact": 1010.4495739688581, "max_mach_number": 0.9836756048263174, "out_of_rail_time": 0.3318943643887957, "apogee_y": 427.23605848476404, "out_of_rail_velocity": 28.248748176211794, "apogee_x": 333.61818889390855, "initial_stability_margin": 2.4770069598561664, "t_final": 358.1162170809263, "apogee_time": 27.61499306553977, "frontal_surface_wind": 1.0810745991945587, "y_impact": 406.43786484636337} -{"apogee": 3961.354222888397, "out_of_rail_stability_margin": 2.7327950891050916, "lateral_surface_wind": -2.059017913628862, "impact_velocity": -5.43860245603618, "x_impact": 1280.1482881873246, "max_mach_number": 0.9418888854033137, "out_of_rail_time": 0.33875292928336254, "apogee_y": 615.8401644766445, "out_of_rail_velocity": 27.517427320438376, "apogee_x": 478.5477283847017, "initial_stability_margin": 2.666605833367372, "t_final": 342.0772671091236, "apogee_time": 27.399636949087938, "frontal_surface_wind": 1.0279502208499172, "y_impact": 453.62551600553286} -{"apogee": 3029.037081512865, "out_of_rail_stability_margin": 2.5717883834968687, "lateral_surface_wind": -1.3076018801004328, "impact_velocity": -5.423090593327646, "x_impact": 680.6340861109111, "max_mach_number": 0.7576249507834755, "out_of_rail_time": 0.372849043923345, "apogee_y": 389.4633193691384, "out_of_rail_velocity": 24.51822329275259, "apogee_x": 361.33722920599683, "initial_stability_margin": 2.4999126706234147, "t_final": 280.15852794020606, "apogee_time": 24.51575063579049, "frontal_surface_wind": 0.5508508757066863, "y_impact": 164.6512033462513} -{"apogee": 3025.4424825373458, "out_of_rail_stability_margin": 2.5497638882245943, "lateral_surface_wind": -2.3708402594921023, "impact_velocity": -5.453333644981515, "x_impact": 833.1851174210708, "max_mach_number": 0.7520524768818242, "out_of_rail_time": 0.37407895301866795, "apogee_y": 432.89462246631854, "out_of_rail_velocity": 24.39199534656444, "apogee_x": 252.19745422655419, "initial_stability_margin": 2.474555242675254, "t_final": 282.93794575670614, "apogee_time": 24.525224258648215, "frontal_surface_wind": 0.8385821070140616, "y_impact": 172.8091166040188} -{"apogee": 3821.809528928632, "out_of_rail_stability_margin": 2.7393547359714456, "lateral_surface_wind": -2.162003413964109, "impact_velocity": -5.524318423680389, "x_impact": 1040.9601755274405, "max_mach_number": 0.902687211771451, "out_of_rail_time": 0.3453668787222801, "apogee_y": 559.45314457087, "out_of_rail_velocity": 26.85466796326748, "apogee_x": 392.4659626568485, "initial_stability_margin": 2.671597954760999, "t_final": 314.9177698804005, "apogee_time": 27.08017779113902, "frontal_surface_wind": 0.9749828431208036, "y_impact": 284.1781100672287} -{"apogee": 3762.120103479749, "out_of_rail_stability_margin": 2.6169988491827456, "lateral_surface_wind": -2.0698372639223352, "impact_velocity": -5.25319591186953, "x_impact": 1094.1289909858906, "max_mach_number": 0.9095391936049582, "out_of_rail_time": 0.3451006229621943, "apogee_y": 456.7007297755797, "out_of_rail_velocity": 26.931634661990607, "apogee_x": 341.73262205464573, "initial_stability_margin": 2.544947454786085, "t_final": 340.2419315911097, "apogee_time": 26.725759182434807, "frontal_surface_wind": 1.0785111907856908, "y_impact": 286.3398075158919} -{"apogee": 3154.4579679697026, "out_of_rail_stability_margin": 2.671415539303322, "lateral_surface_wind": -0.6883056874435934, "impact_velocity": -5.545724422935012, "x_impact": 702.18527015918, "max_mach_number": 0.7731160641600802, "out_of_rail_time": 0.3694093775938214, "apogee_y": 329.76648700606233, "out_of_rail_velocity": 24.7020249898866, "apogee_x": 355.3198784403999, "initial_stability_margin": 2.5973674980759385, "t_final": 283.64170979545383, "apogee_time": 25.00860849396219, "frontal_surface_wind": 0.8807974294022662, "y_impact": 446.3601487859147} -{"apogee": 3187.798641860969, "out_of_rail_stability_margin": 2.593868358361955, "lateral_surface_wind": -1.6693582833291654, "impact_velocity": -5.265867602729936, "x_impact": 953.4870783652926, "max_mach_number": 0.7952838990817801, "out_of_rail_time": 0.3648928081113438, "apogee_y": 509.67011196086406, "out_of_rail_velocity": 25.108986275623288, "apogee_x": 422.3285712142321, "initial_stability_margin": 2.519048236945028, "t_final": 294.9013021758304, "apogee_time": 24.963031112516724, "frontal_surface_wind": 0.7982411475868364, "y_impact": 561.663306930599} -{"apogee": 4279.587968492307, "out_of_rail_stability_margin": 2.570562394474211, "lateral_surface_wind": -1.479621911450877, "impact_velocity": -5.322294091366221, "x_impact": 893.6588200285727, "max_mach_number": 1.0213530009424674, "out_of_rail_time": 0.32651439241561375, "apogee_y": 342.23826976480944, "out_of_rail_velocity": 28.862590797354073, "apogee_x": 254.7548575680001, "initial_stability_margin": 2.5020291661159066, "t_final": 343.1379245867622, "apogee_time": 28.14982843267938, "frontal_surface_wind": 1.150968728658229, "y_impact": 317.50728232533464} -{"apogee": 2903.607573973826, "out_of_rail_stability_margin": 2.7521687910828967, "lateral_surface_wind": -1.9902027360108385, "impact_velocity": -5.596035666594215, "x_impact": 902.0381594687926, "max_mach_number": 0.7282286820142269, "out_of_rail_time": 0.3792217785395838, "apogee_y": 511.81091542563894, "out_of_rail_velocity": 23.950693142589895, "apogee_x": 396.66590534386023, "initial_stability_margin": 2.676488393389238, "t_final": 270.29633090009594, "apogee_time": 24.158981223494884, "frontal_surface_wind": 0.6652140729413434, "y_impact": 427.12994762205443} -{"apogee": 4038.947278370836, "out_of_rail_stability_margin": 2.8540371126282666, "lateral_surface_wind": -1.92499746464269, "impact_velocity": -5.2810757115737665, "x_impact": 923.6380048976723, "max_mach_number": 0.9672791641448367, "out_of_rail_time": 0.333491391204993, "apogee_y": 408.09826843284804, "out_of_rail_velocity": 28.06791166350747, "apogee_x": 285.200686999508, "initial_stability_margin": 2.7908586753512363, "t_final": 352.4326836730741, "apogee_time": 27.48815328839818, "frontal_surface_wind": 1.1789696824345193, "y_impact": 279.93413021084706} -{"apogee": 3051.8050452206803, "out_of_rail_stability_margin": 2.732727378826837, "lateral_surface_wind": -0.41285969697929914, "impact_velocity": -5.404606133142853, "x_impact": 686.6801630599423, "max_mach_number": 0.7602206560877327, "out_of_rail_time": 0.37288706602692895, "apogee_y": 378.8171751909518, "out_of_rail_velocity": 24.499809678885626, "apogee_x": 410.2213913337072, "initial_stability_margin": 2.657460007506862, "t_final": 282.77124222794737, "apogee_time": 24.60872679597574, "frontal_surface_wind": 0.21175884680356877, "y_impact": 601.233028634416} -{"apogee": 3916.6066237021805, "out_of_rail_stability_margin": 2.7480850757568973, "lateral_surface_wind": -1.3278976645292584, "impact_velocity": -5.435301090640901, "x_impact": 1042.5603788197477, "max_mach_number": 0.9370774030674192, "out_of_rail_time": 0.341595708641779, "apogee_y": 582.3915772454558, "out_of_rail_velocity": 27.28063377295897, "apogee_x": 546.5982577926313, "initial_stability_margin": 2.6756000565631335, "t_final": 327.44542685965115, "apogee_time": 27.25586157765954, "frontal_surface_wind": 0.4999471538540356, "y_impact": 266.8357009721353} -{"apogee": 3409.455015276776, "out_of_rail_stability_margin": 2.6296260157777356, "lateral_surface_wind": -1.8992315008626446, "impact_velocity": -5.4125853706262665, "x_impact": 809.4347118717212, "max_mach_number": 0.8247215829959658, "out_of_rail_time": 0.35972584886778075, "apogee_y": 405.05994794501515, "out_of_rail_velocity": 25.543933226457213, "apogee_x": 237.237728374405, "initial_stability_margin": 2.5551448997538393, "t_final": 309.86119203472055, "apogee_time": 25.785332967280528, "frontal_surface_wind": 0.8166637066253587, "y_impact": 320.8589433631122} -{"apogee": 3840.5035473929347, "out_of_rail_stability_margin": 2.7591773607223655, "lateral_surface_wind": -1.3449813834373723, "impact_velocity": -5.435277472723758, "x_impact": 637.7555615446701, "max_mach_number": 0.9028426481675283, "out_of_rail_time": 0.3448199737029528, "apogee_y": 253.11627400822672, "out_of_rail_velocity": 26.927122764175817, "apogee_x": 148.09705039769145, "initial_stability_margin": 2.6926382872420795, "t_final": 325.5985986658571, "apogee_time": 27.09992712319191, "frontal_surface_wind": 0.6599508542091925, "y_impact": 99.71959669128239} -{"apogee": 2377.148845398722, "out_of_rail_stability_margin": 2.6182134495997698, "lateral_surface_wind": -0.5680218132931438, "impact_velocity": -5.44359770737933, "x_impact": 457.98942879323545, "max_mach_number": 0.6347338067927053, "out_of_rail_time": 0.40384026268376494, "apogee_y": 385.6069974586889, "out_of_rail_velocity": 22.274181016528114, "apogee_x": 415.0890441425651, "initial_stability_margin": 2.5314307005404117, "t_final": 244.07454875291106, "apogee_time": 22.102758641334518, "frontal_surface_wind": -0.761973187490429, "y_impact": 360.958113877794} -{"apogee": 3550.484315095726, "out_of_rail_stability_margin": 2.69700973725644, "lateral_surface_wind": -1.488825333445308, "impact_velocity": -5.460453730290766, "x_impact": 965.9854216818727, "max_mach_number": 0.8483175385947841, "out_of_rail_time": 0.35580956699208904, "apogee_y": 377.0967895269846, "out_of_rail_velocity": 25.92936833739789, "apogee_x": 301.3346468069597, "initial_stability_margin": 2.6244223956485166, "t_final": 303.30536410613786, "apogee_time": 26.25852675203121, "frontal_surface_wind": 1.3975562664663277, "y_impact": 399.1370455483171} -{"apogee": 4013.6594804661263, "out_of_rail_stability_margin": 2.63182138399526, "lateral_surface_wind": -2.06098477234384, "impact_velocity": -5.543195893040703, "x_impact": 910.1357922408224, "max_mach_number": 0.9403073628518988, "out_of_rail_time": 0.33924301928233, "apogee_y": 523.3798616619946, "out_of_rail_velocity": 27.466479489196047, "apogee_x": 305.72450860321226, "initial_stability_margin": 2.564172597052929, "t_final": 331.9473704856077, "apogee_time": 27.624636545745247, "frontal_surface_wind": 0.92082925623991, "y_impact": 425.4723295889562} -{"apogee": 3554.657703119344, "out_of_rail_stability_margin": 2.6114349747316026, "lateral_surface_wind": -1.8476020788180714, "impact_velocity": -5.534333935404359, "x_impact": 824.1634370945753, "max_mach_number": 0.8466887675090464, "out_of_rail_time": 0.35462380359822454, "apogee_y": 340.17986246690407, "out_of_rail_velocity": 25.99655567181917, "apogee_x": 198.75188017094476, "initial_stability_margin": 2.5439620717397107, "t_final": 304.68043568036467, "apogee_time": 26.284714954072232, "frontal_surface_wind": 1.3310932357541907, "y_impact": 165.0764163628918} -{"apogee": 3065.4706190304673, "out_of_rail_stability_margin": 2.6822350184395685, "lateral_surface_wind": -2.388128597177672, "impact_velocity": -5.402915425023876, "x_impact": 957.85763816933, "max_mach_number": 0.7637263777907914, "out_of_rail_time": 0.3710493511269083, "apogee_y": 534.5832120623813, "out_of_rail_velocity": 24.583633665187246, "apogee_x": 353.1503831013889, "initial_stability_margin": 2.607548717589502, "t_final": 283.16458518980534, "apogee_time": 24.6379438142611, "frontal_surface_wind": 0.7880008182577777, "y_impact": 295.7338680912383} -{"apogee": 3740.773376454201, "out_of_rail_stability_margin": 2.614833150751816, "lateral_surface_wind": -2.604935537931792, "impact_velocity": -5.356064450660584, "x_impact": 1136.956193038001, "max_mach_number": 0.8946029089433923, "out_of_rail_time": 0.34743218354647026, "apogee_y": 547.2469000009612, "out_of_rail_velocity": 26.660874014424557, "apogee_x": 338.75639923423694, "initial_stability_margin": 2.5420184152339296, "t_final": 325.8468353410219, "apogee_time": 26.76416638325859, "frontal_surface_wind": 0.9442107871995884, "y_impact": 256.48569318905135} -{"apogee": 4614.77840506252, "out_of_rail_stability_margin": 2.5710827480624343, "lateral_surface_wind": -0.6475197641063852, "impact_velocity": -5.397681851326915, "x_impact": 1347.8219609466646, "max_mach_number": 1.1172018690253989, "out_of_rail_time": 0.31239723131595254, "apogee_y": 547.1766815278803, "out_of_rail_velocity": 30.512065520739874, "apogee_x": 720.9779824636643, "initial_stability_margin": 2.50823214245503, "t_final": 368.7074650019319, "apogee_time": 28.978263311694498, "frontal_surface_wind": 0.9112008483865943, "y_impact": 735.5003957883612} -{"apogee": 3556.163538383546, "out_of_rail_stability_margin": 2.6790192053358637, "lateral_surface_wind": -1.872409337654167, "impact_velocity": -5.464042000767745, "x_impact": 1044.9282028499417, "max_mach_number": 0.8553521281601786, "out_of_rail_time": 0.3532295867786729, "apogee_y": 526.099788737046, "out_of_rail_velocity": 26.114464799447628, "apogee_x": 418.09724363662286, "initial_stability_margin": 2.610131150137364, "t_final": 317.2065016671652, "apogee_time": 26.241157119995492, "frontal_surface_wind": 0.8764149564296173, "y_impact": 456.0097511985204} -{"apogee": 3270.2055550064038, "out_of_rail_stability_margin": 2.7953263981274734, "lateral_surface_wind": -3.021696075211745, "impact_velocity": -5.539188857027905, "x_impact": 747.2875066403365, "max_mach_number": 0.7944156847919277, "out_of_rail_time": 0.3648318035683452, "apogee_y": 446.26111407482983, "out_of_rail_velocity": 25.092501607604753, "apogee_x": 161.21884806622933, "initial_stability_margin": 2.7255152397046074, "t_final": 282.3908427541965, "apogee_time": 25.406093314416278, "frontal_surface_wind": 0.686042287520648, "y_impact": 31.744330660289968} -{"apogee": 3630.492313640795, "out_of_rail_stability_margin": 2.765007120002182, "lateral_surface_wind": -1.530269475682028, "impact_velocity": -5.486018001143176, "x_impact": 874.3680791987564, "max_mach_number": 0.8622141792206337, "out_of_rail_time": 0.35199395970668373, "apogee_y": 406.9348248816557, "out_of_rail_velocity": 26.234383408960053, "apogee_x": 306.1505055442053, "initial_stability_margin": 2.696690656543718, "t_final": 309.126541470713, "apogee_time": 26.510329109769454, "frontal_surface_wind": 1.082721269298123, "y_impact": 396.242935744395} -{"apogee": 2236.149441294479, "out_of_rail_stability_margin": 2.7269235837281998, "lateral_surface_wind": -1.3413514163302596, "impact_velocity": -5.497123809531847, "x_impact": 573.6910182349309, "max_mach_number": 0.6006503914611535, "out_of_rail_time": 0.4116385196819839, "apogee_y": 333.7049883461304, "out_of_rail_velocity": 21.725985055375446, "apogee_x": 292.02472546921814, "initial_stability_margin": 2.642224552001707, "t_final": 233.36613669326223, "apogee_time": 21.549489691555927, "frontal_surface_wind": 0.6519137746668584, "y_impact": 285.13519743971244} -{"apogee": 4125.223072329455, "out_of_rail_stability_margin": 2.7113355128478216, "lateral_surface_wind": -1.9135877538128363, "impact_velocity": -5.442948021180766, "x_impact": 1096.30664993458, "max_mach_number": 0.9767463248930547, "out_of_rail_time": 0.3329654737799353, "apogee_y": 568.8867710201666, "out_of_rail_velocity": 28.117219691011407, "apogee_x": 397.67571861626806, "initial_stability_margin": 2.6457865958334565, "t_final": 335.48803734114256, "apogee_time": 27.841842382234884, "frontal_surface_wind": 0.782433263636962, "y_impact": 505.78039055142443} -{"apogee": 2664.015194454955, "out_of_rail_stability_margin": 2.658632368406553, "lateral_surface_wind": -1.8681000251573112, "impact_velocity": -5.42368377074628, "x_impact": 861.7171102317375, "max_mach_number": 0.6893676695181041, "out_of_rail_time": 0.3879278744711798, "apogee_y": 489.2953563776542, "out_of_rail_velocity": 23.302179177927673, "apogee_x": 414.4106163316938, "initial_stability_margin": 2.5797915668767915, "t_final": 256.31808121515695, "apogee_time": 23.205560707069182, "frontal_surface_wind": 0.8855632103894658, "y_impact": 436.1383924933127} -{"apogee": 2831.330406462913, "out_of_rail_stability_margin": 2.749371916046417, "lateral_surface_wind": -2.4725768112600237, "impact_velocity": -5.462599732955324, "x_impact": 662.8089150052248, "max_mach_number": 0.7105770936027285, "out_of_rail_time": 0.3831989453425273, "apogee_y": 333.32852907178386, "out_of_rail_velocity": 23.679598380618952, "apogee_x": 146.7734358481769, "initial_stability_margin": 2.672852571811509, "t_final": 261.5116254581253, "apogee_time": 23.893144329687363, "frontal_surface_wind": 1.3250258371925667, "y_impact": 81.89235724342788} -{"apogee": 2936.178918840175, "out_of_rail_stability_margin": 2.6229905235231983, "lateral_surface_wind": -2.1823077511722744, "impact_velocity": -5.3637624262431824, "x_impact": 741.1438943719868, "max_mach_number": 0.7405048124955776, "out_of_rail_time": 0.3777870255257391, "apogee_y": 449.8245984757434, "out_of_rail_velocity": 24.145162702136567, "apogee_x": 259.97641839413603, "initial_stability_margin": 2.5437101257114945, "t_final": 277.80402256364033, "apogee_time": 24.177603029016613, "frontal_surface_wind": 0.6752932635943965, "y_impact": 319.67372761829046} -{"apogee": 3555.234354370959, "out_of_rail_stability_margin": 2.699692994037163, "lateral_surface_wind": -1.368066177326328, "impact_velocity": -5.463258046697586, "x_impact": 887.2143615050109, "max_mach_number": 0.8507569233475036, "out_of_rail_time": 0.3541265422988251, "apogee_y": 458.30798912539245, "out_of_rail_velocity": 26.0506848899116, "apogee_x": 405.3354271208788, "initial_stability_margin": 2.630131944555318, "t_final": 311.8449841795181, "apogee_time": 26.263003239186055, "frontal_surface_wind": 0.6106594682965947, "y_impact": 341.64418440614577} -{"apogee": 3520.307668493114, "out_of_rail_stability_margin": 2.5367272493156534, "lateral_surface_wind": -1.2136026818022962, "impact_velocity": -5.351639117048294, "x_impact": 831.6580043677092, "max_mach_number": 0.8600253950369405, "out_of_rail_time": 0.35390641132848827, "apogee_y": 494.4508993783254, "out_of_rail_velocity": 26.071610675699986, "apogee_x": 459.6960903048986, "initial_stability_margin": 2.461342847889687, "t_final": 320.1561504956162, "apogee_time": 26.043509951660187, "frontal_surface_wind": 0.46280289664000696, "y_impact": 517.1518790782055} -{"apogee": 3822.4495690967383, "out_of_rail_stability_margin": 2.746011336567882, "lateral_surface_wind": -2.1693789710565046, "impact_velocity": -5.391270635495803, "x_impact": 979.3364013532829, "max_mach_number": 0.9108781447686574, "out_of_rail_time": 0.34365818603346227, "apogee_y": 566.4057220612476, "out_of_rail_velocity": 27.039547195142447, "apogee_x": 376.5424175376555, "initial_stability_margin": 2.6787582230599525, "t_final": 317.49019312325254, "apogee_time": 26.995443223188424, "frontal_surface_wind": 1.2173887759269122, "y_impact": 447.4223960513402} -{"apogee": 4198.372620006922, "out_of_rail_stability_margin": 2.7874153176847263, "lateral_surface_wind": -1.3711492946925432, "impact_velocity": -5.488116945378111, "x_impact": 1028.7258092797213, "max_mach_number": 0.9832760865142728, "out_of_rail_time": 0.3323107334412362, "apogee_y": 495.03271868325385, "out_of_rail_velocity": 28.180046849066414, "apogee_x": 432.6292296679903, "initial_stability_margin": 2.7205138241272553, "t_final": 347.39437331779743, "apogee_time": 28.1083738464997, "frontal_surface_wind": 0.6037049473283225, "y_impact": 373.36036684818845} -{"apogee": 3478.0913629760585, "out_of_rail_stability_margin": 2.7375144989546727, "lateral_surface_wind": -1.1020710385185841, "impact_velocity": -5.5049049145227755, "x_impact": 772.8272185185857, "max_mach_number": 0.831123756848037, "out_of_rail_time": 0.3580744243177268, "apogee_y": 280.7568597737092, "out_of_rail_velocity": 25.704240354989345, "apogee_x": 234.75921566275534, "initial_stability_margin": 2.666568983403132, "t_final": 304.3114247436755, "apogee_time": 26.0453982930373, "frontal_surface_wind": 1.2488480452686013, "y_impact": 401.8951076093333} -{"apogee": 4241.5339014564015, "out_of_rail_stability_margin": 2.5984374773493717, "lateral_surface_wind": -2.6897099029724503, "impact_velocity": -5.342497986135427, "x_impact": 978.8881570296264, "max_mach_number": 1.0167842153970537, "out_of_rail_time": 0.32806030441017103, "apogee_y": 665.8232865750255, "out_of_rail_velocity": 28.75861588233955, "apogee_x": 398.6487696253411, "initial_stability_margin": 2.5313703909432657, "t_final": 343.45046794057873, "apogee_time": 28.084094715888337, "frontal_surface_wind": 0.08679572290778448, "y_impact": 218.28001348111465} -{"apogee": 4041.692808566425, "out_of_rail_stability_margin": 2.6045344211904715, "lateral_surface_wind": -1.3538134486904039, "impact_velocity": -5.463565450498164, "x_impact": 1031.7176502631123, "max_mach_number": 0.9545967551983606, "out_of_rail_time": 0.3380613031360666, "apogee_y": 480.5755939495838, "out_of_rail_velocity": 27.636465173993027, "apogee_x": 453.1754323375618, "initial_stability_margin": 2.5333649399809524, "t_final": 341.32543212267825, "apogee_time": 27.63435149558141, "frontal_surface_wind": 0.6416379024882697, "y_impact": 354.66430706074686} -{"apogee": 3296.825213929523, "out_of_rail_stability_margin": 2.5561348692003008, "lateral_surface_wind": -1.8772113848203746, "impact_velocity": -5.49022452937603, "x_impact": 1064.4370876958055, "max_mach_number": 0.8065803938771784, "out_of_rail_time": 0.362860977323191, "apogee_y": 581.5800282089556, "out_of_rail_velocity": 25.271014565587056, "apogee_x": 496.6228854958497, "initial_stability_margin": 2.4829939616263004, "t_final": 289.6142189105826, "apogee_time": 25.43800125522342, "frontal_surface_wind": 0.8660815898567612, "y_impact": 533.5535816081498} -{"apogee": 4713.967666889731, "out_of_rail_stability_margin": 2.7245448775108505, "lateral_surface_wind": -1.6029069870400652, "impact_velocity": -5.454241829854374, "x_impact": 1431.5159138164656, "max_mach_number": 1.131855647369276, "out_of_rail_time": 0.31031014881017727, "apogee_y": 636.7723210308981, "out_of_rail_velocity": 30.790065844262266, "apogee_x": 519.5177083449887, "initial_stability_margin": 2.6633777221158814, "t_final": 378.4551732696825, "apogee_time": 29.265910215574042, "frontal_surface_wind": 1.265090345527138, "y_impact": 642.9329453618863} -{"apogee": 2862.817807814093, "out_of_rail_stability_margin": 2.7277405996898954, "lateral_surface_wind": -1.5504693328923045, "impact_velocity": -5.519130340978794, "x_impact": 714.3396591440294, "max_mach_number": 0.7184452232779291, "out_of_rail_time": 0.380743296627238, "apogee_y": 375.2217404390195, "out_of_rail_velocity": 23.82963472621861, "apogee_x": 274.79530796947495, "initial_stability_margin": 2.652017091984286, "t_final": 264.93208276932336, "apogee_time": 23.984258345638533, "frontal_surface_wind": 1.0535914117698475, "y_impact": 377.86726224608685} -{"apogee": 2150.8511111111825, "out_of_rail_stability_margin": 2.689931301319191, "lateral_surface_wind": -1.9062950641893912, "impact_velocity": -5.540949578734715, "x_impact": 518.6066631054429, "max_mach_number": 0.581676547940301, "out_of_rail_time": 0.41597871431916067, "apogee_y": 264.660782514907, "out_of_rail_velocity": 21.432611700700118, "apogee_x": 132.83450751566434, "initial_stability_margin": 2.611572870136946, "t_final": 225.30363843075168, "apogee_time": 21.19586694496017, "frontal_surface_wind": 1.2455849116662356, "y_impact": 167.92711595219123} -{"apogee": 2212.0402924841815, "out_of_rail_stability_margin": 2.6670072909578364, "lateral_surface_wind": -1.354653881999196, "impact_velocity": -5.4407548844619, "x_impact": 563.6712126033549, "max_mach_number": 0.5977123171944111, "out_of_rail_time": 0.4129201901228797, "apogee_y": 347.3789027100298, "out_of_rail_velocity": 21.63164842863781, "apogee_x": 320.35469889629087, "initial_stability_margin": 2.5796799018827112, "t_final": 237.91904420490144, "apogee_time": 21.437577405725747, "frontal_surface_wind": 0.6398616348469877, "y_impact": 274.3180676502589} -{"apogee": 2691.824871198749, "out_of_rail_stability_margin": 2.73381091558349, "lateral_surface_wind": -1.5733351841059495, "impact_velocity": -5.490416111145496, "x_impact": 738.008945457949, "max_mach_number": 0.6869551797817445, "out_of_rail_time": 0.38967801973319594, "apogee_y": 337.32333639914305, "out_of_rail_velocity": 23.179709090540364, "apogee_x": 222.05289093558278, "initial_stability_margin": 2.6499718757517328, "t_final": 267.6448931539939, "apogee_time": 23.35505517929117, "frontal_surface_wind": 1.3016838287011683, "y_impact": 365.741998420452} -{"apogee": 2549.0668570681414, "out_of_rail_stability_margin": 2.662501290166825, "lateral_surface_wind": -1.9440655306569137, "impact_velocity": -5.606468009585578, "x_impact": 775.2995916795923, "max_mach_number": 0.660401051810783, "out_of_rail_time": 0.39562571192564644, "apogee_y": 417.04584150539, "out_of_rail_velocity": 22.719177849935054, "apogee_x": 293.13009751845397, "initial_stability_margin": 2.5807162625473308, "t_final": 250.32624000412824, "apogee_time": 22.849183334424243, "frontal_surface_wind": 1.35555370992615, "y_impact": 319.07494611969724} -{"apogee": 2632.445025551186, "out_of_rail_stability_margin": 2.6818101341517497, "lateral_surface_wind": -2.3273020323594533, "impact_velocity": -5.536089867749372, "x_impact": 610.4706479917869, "max_mach_number": 0.6736830961302022, "out_of_rail_time": 0.39171855652222454, "apogee_y": 312.3559619458211, "out_of_rail_velocity": 23.080730766818824, "apogee_x": 143.08795652931323, "initial_stability_margin": 2.6058492342992223, "t_final": 253.41389574462193, "apogee_time": 23.133610481511358, "frontal_surface_wind": 0.9527689837564399, "y_impact": 62.101108491983} -{"apogee": 3161.7499620226167, "out_of_rail_stability_margin": 2.6710893560299467, "lateral_surface_wind": -0.4038821798527631, "impact_velocity": -5.4407933762061536, "x_impact": 734.1034550173905, "max_mach_number": 0.778919694136355, "out_of_rail_time": 0.367723880031883, "apogee_y": 373.6692598053632, "out_of_rail_velocity": 24.844767338407152, "apogee_x": 441.136441430957, "initial_stability_margin": 2.5997223546863273, "t_final": 289.1774982584013, "apogee_time": 25.000035202336537, "frontal_surface_wind": 0.22841655672651284, "y_impact": 610.457989132366} -{"apogee": 3898.3769496223426, "out_of_rail_stability_margin": 2.6716676351406425, "lateral_surface_wind": -2.1333890356729635, "impact_velocity": -5.517726317411774, "x_impact": 1250.5880437113742, "max_mach_number": 0.9210129063570066, "out_of_rail_time": 0.34229664636466905, "apogee_y": 658.2671511717124, "out_of_rail_velocity": 27.166540197937458, "apogee_x": 563.3405217506422, "initial_stability_margin": 2.6052370934229843, "t_final": 321.5925422835423, "apogee_time": 27.29192099285146, "frontal_surface_wind": 1.0360991887086732, "y_impact": 381.40839468052815} -{"apogee": 3948.642331453505, "out_of_rail_stability_margin": 2.585548725658691, "lateral_surface_wind": -0.4008897816632472, "impact_velocity": -5.381293557743283, "x_impact": 979.2717664647516, "max_mach_number": 0.94468142817498, "out_of_rail_time": 0.3388716393596264, "apogee_y": 496.73218100887334, "out_of_rail_velocity": 27.497379552553888, "apogee_x": 614.8739271897323, "initial_stability_margin": 2.515766893456006, "t_final": 328.18568322010395, "apogee_time": 27.322904884880092, "frontal_surface_wind": 0.23362859745204567, "y_impact": 808.3840046974407} -{"apogee": 3026.233899953657, "out_of_rail_stability_margin": 2.6387780857510332, "lateral_surface_wind": -1.509867740125916, "impact_velocity": -5.441090083691349, "x_impact": 766.1014662779955, "max_mach_number": 0.7500889191476383, "out_of_rail_time": 0.37444596384990075, "apogee_y": 367.86023349509793, "out_of_rail_velocity": 24.372846327356115, "apogee_x": 295.219743438451, "initial_stability_margin": 2.5645572599281645, "t_final": 275.84553697564587, "apogee_time": 24.544128032090224, "frontal_surface_wind": 1.1109947896015295, "y_impact": 362.4811006945441} -{"apogee": 3729.8476395372904, "out_of_rail_stability_margin": 2.692819583419051, "lateral_surface_wind": -2.106794717452509, "impact_velocity": -5.274865361849164, "x_impact": 832.5201906303239, "max_mach_number": 0.8925983400596621, "out_of_rail_time": 0.34716829575544267, "apogee_y": 341.92833515304415, "out_of_rail_velocity": 26.7120962323013, "apogee_x": 144.21439120241632, "initial_stability_margin": 2.623413811290145, "t_final": 325.8395733309746, "apogee_time": 26.70039425650888, "frontal_surface_wind": 1.0044046526603077, "y_impact": 168.7882963383812} -{"apogee": 3000.216224311908, "out_of_rail_stability_margin": 2.5568909235835404, "lateral_surface_wind": -1.3619687703387215, "impact_velocity": -5.394584429233708, "x_impact": 626.3618165226331, "max_mach_number": 0.7493613317716623, "out_of_rail_time": 0.37483663833388414, "apogee_y": 333.03260092900877, "out_of_rail_velocity": 24.346691620361547, "apogee_x": 244.78319114818265, "initial_stability_margin": 2.479914920441492, "t_final": 281.9267569871621, "apogee_time": 24.392790836499568, "frontal_surface_wind": 0.6076645952444617, "y_impact": 251.26863390572686} -{"apogee": 4041.1927852896756, "out_of_rail_stability_margin": 2.6615426120812664, "lateral_surface_wind": -2.143938980593039, "impact_velocity": -5.30634209601582, "x_impact": 927.5797408707961, "max_mach_number": 0.9655367485395375, "out_of_rail_time": 0.3350706371608789, "apogee_y": 465.3591839474919, "out_of_rail_velocity": 27.883604024934705, "apogee_x": 279.35812150886767, "initial_stability_margin": 2.592979289777478, "t_final": 338.41241193808577, "apogee_time": 27.537423049376528, "frontal_surface_wind": 0.7886784897385261, "y_impact": 324.5182629610446} -{"apogee": 3813.1793123826974, "out_of_rail_stability_margin": 2.6329178794708152, "lateral_surface_wind": -1.1967286141601843, "impact_velocity": -5.42482748755987, "x_impact": 977.4485447686839, "max_mach_number": 0.9115442144839583, "out_of_rail_time": 0.34464439290566884, "apogee_y": 542.9511545513461, "out_of_rail_velocity": 26.992052656599938, "apogee_x": 559.0826875270395, "initial_stability_margin": 2.5644450660250033, "t_final": 319.14244971604063, "apogee_time": 26.99053153258662, "frontal_surface_wind": 0.5048352349691447, "y_impact": 584.0415713265319} -{"apogee": 3397.493740947152, "out_of_rail_stability_margin": 2.5890413913297334, "lateral_surface_wind": -2.1350153820887994, "impact_velocity": -5.285068002765507, "x_impact": 832.2706943985229, "max_mach_number": 0.8291281913352924, "out_of_rail_time": 0.3584300580788087, "apogee_y": 393.5149792859172, "out_of_rail_velocity": 25.66325126132216, "apogee_x": 228.6620470560181, "initial_stability_margin": 2.5163998757532893, "t_final": 312.39681351645714, "apogee_time": 25.67606323560012, "frontal_surface_wind": 1.0327437361788283, "y_impact": 111.7613879044781} -{"apogee": 2945.2329301907416, "out_of_rail_stability_margin": 2.7302925790154204, "lateral_surface_wind": -2.677291392758402, "impact_velocity": -5.381536591047408, "x_impact": 694.3584992287327, "max_mach_number": 0.742814901169815, "out_of_rail_time": 0.37613026163479446, "apogee_y": 490.8981179802731, "out_of_rail_velocity": 24.261529219353694, "apogee_x": 302.7588937456154, "initial_stability_margin": 2.657345180358227, "t_final": 270.2030057606287, "apogee_time": 24.217162019447063, "frontal_surface_wind": 0.2723667709632125, "y_impact": 135.96083283662477} -{"apogee": 2598.2160916448533, "out_of_rail_stability_margin": 2.7510661065186803, "lateral_surface_wind": -2.130179505699296, "impact_velocity": -5.5673803153652575, "x_impact": 600.3010652761332, "max_mach_number": 0.6682449029848977, "out_of_rail_time": 0.3925571768866691, "apogee_y": 379.97042730760205, "out_of_rail_velocity": 22.957080135448127, "apogee_x": 223.76449224063734, "initial_stability_margin": 2.673843565917519, "t_final": 252.60772274719707, "apogee_time": 23.01545409948795, "frontal_surface_wind": 0.8099528486413732, "y_impact": 160.75005164819402} -{"apogee": 3821.2734139746167, "out_of_rail_stability_margin": 2.7207611856468192, "lateral_surface_wind": -2.6828246537561524, "impact_velocity": -5.456683783723146, "x_impact": 1022.9340829414314, "max_mach_number": 0.911510639337895, "out_of_rail_time": 0.34422940675831487, "apogee_y": 679.0982633835652, "out_of_rail_velocity": 26.948821227227505, "apogee_x": 472.87724959323714, "initial_stability_margin": 2.6518335989791675, "t_final": 325.57544987504866, "apogee_time": 27.03041775425449, "frontal_surface_wind": 0.2110088549358371, "y_impact": 255.5449108104052} -{"apogee": 3722.949263895635, "out_of_rail_stability_margin": 2.7307623442004836, "lateral_surface_wind": -1.5021271908755498, "impact_velocity": -5.536900386005045, "x_impact": 869.0739086266801, "max_mach_number": 0.8780302911929327, "out_of_rail_time": 0.3495325516187616, "apogee_y": 377.8564829803594, "out_of_rail_velocity": 26.47453350718528, "apogee_x": 288.7206202476882, "initial_stability_margin": 2.661697590824992, "t_final": 315.5092031335167, "apogee_time": 26.80411925445562, "frontal_surface_wind": 1.1214383253781801, "y_impact": 359.9802257996408} -{"apogee": 2372.274427370158, "out_of_rail_stability_margin": 2.7243875539337243, "lateral_surface_wind": -2.356363986739698, "impact_velocity": -5.432542033500375, "x_impact": 570.9836671746745, "max_mach_number": 0.6260677906052265, "out_of_rail_time": 0.4038707454264905, "apogee_y": 311.33100722771815, "out_of_rail_velocity": 22.223206139128518, "apogee_x": 138.14728024259523, "initial_stability_margin": 2.644421805572307, "t_final": 243.2511428239322, "apogee_time": 22.097877802115477, "frontal_surface_wind": 0.8784373900449131, "y_impact": 66.7311502055185} -{"apogee": 3079.7351424464537, "out_of_rail_stability_margin": 2.6886616162649513, "lateral_surface_wind": -0.5804645736280514, "impact_velocity": -5.4861634731942495, "x_impact": 622.6630917193868, "max_mach_number": 0.7662710271069813, "out_of_rail_time": 0.371052437711574, "apogee_y": 435.86026346745666, "out_of_rail_velocity": 24.64545445407017, "apogee_x": 482.9214257779257, "initial_stability_margin": 2.615857897865247, "t_final": 283.9065998127717, "apogee_time": 24.71465045378027, "frontal_surface_wind": -0.7525375722141454, "y_impact": 448.0304764197942} -{"apogee": 3361.2390633704176, "out_of_rail_stability_margin": 2.722706168176345, "lateral_surface_wind": -0.41302325010648444, "impact_velocity": -5.422366985539326, "x_impact": 804.2286942949866, "max_mach_number": 0.8188093534848, "out_of_rail_time": 0.3603341431280564, "apogee_y": 445.6696051613822, "out_of_rail_velocity": 25.518183333625714, "apogee_x": 488.5620269480197, "initial_stability_margin": 2.65238200426066, "t_final": 304.2515090408721, "apogee_time": 25.635699142456723, "frontal_surface_wind": 0.21143966860760155, "y_impact": 717.1723186101628} -{"apogee": 3699.7719802291936, "out_of_rail_stability_margin": 2.8007066929736943, "lateral_surface_wind": -1.9554543030866745, "impact_velocity": -5.422091923864036, "x_impact": 1197.4009226988758, "max_mach_number": 0.8868636638838089, "out_of_rail_time": 0.34733336660029646, "apogee_y": 526.0277836650138, "out_of_rail_velocity": 26.66330662453477, "apogee_x": 435.3858841388607, "initial_stability_margin": 2.7354719105643697, "t_final": 324.8835633074413, "apogee_time": 26.65354308586347, "frontal_surface_wind": 0.826287658960134, "y_impact": 295.56010581561884} -{"apogee": 4230.910073074847, "out_of_rail_stability_margin": 2.660192807552653, "lateral_surface_wind": -2.110687626362988, "impact_velocity": -5.4325224139559545, "x_impact": 1285.058149205201, "max_mach_number": 1.007166743021104, "out_of_rail_time": 0.3288308321686685, "apogee_y": 607.580120251334, "out_of_rail_velocity": 28.592469575022992, "apogee_x": 488.4348106690704, "initial_stability_margin": 2.5932634679252784, "t_final": 349.21758609843096, "apogee_time": 28.10141591010921, "frontal_surface_wind": 0.9961979881979499, "y_impact": 456.2645810939735} -{"apogee": 3379.354348833038, "out_of_rail_stability_margin": 2.735047144249993, "lateral_surface_wind": -2.133997459136638, "impact_velocity": -5.536251823738928, "x_impact": 992.1330336811624, "max_mach_number": 0.8192075038499165, "out_of_rail_time": 0.3602047705420821, "apogee_y": 548.6599257078049, "out_of_rail_velocity": 25.521412568991753, "apogee_x": 423.7167071538675, "initial_stability_margin": 2.6651876381977706, "t_final": 295.6368216499709, "apogee_time": 25.723341959415734, "frontal_surface_wind": 0.8151950423554692, "y_impact": 443.52809424470587} -{"apogee": 4180.805844088064, "out_of_rail_stability_margin": 2.7730327497330864, "lateral_surface_wind": -1.8586142055244546, "impact_velocity": -5.55416920611489, "x_impact": 1171.5900043876215, "max_mach_number": 0.9739271754241957, "out_of_rail_time": 0.334010550822163, "apogee_y": 557.1044823293698, "out_of_rail_velocity": 28.017776701971822, "apogee_x": 452.52964710634524, "initial_stability_margin": 2.7070961267972, "t_final": 340.1375809858812, "apogee_time": 28.122897983179946, "frontal_surface_wind": 0.9053027883590906, "y_impact": 489.4388520125981} -{"apogee": 2905.819960025521, "out_of_rail_stability_margin": 2.6657666813796532, "lateral_surface_wind": -1.4636328727252947, "impact_velocity": -5.481646185636024, "x_impact": 939.7093141253376, "max_mach_number": 0.7292410466201615, "out_of_rail_time": 0.3788226758303556, "apogee_y": 400.88143209602805, "out_of_rail_velocity": 24.005356756006737, "apogee_x": 379.56900909490236, "initial_stability_margin": 2.589229459952729, "t_final": 268.0783591809859, "apogee_time": 24.12766500064157, "frontal_surface_wind": 1.423918257950833, "y_impact": 437.248375790161} -{"apogee": 2613.6055137867093, "out_of_rail_stability_margin": 2.598114147796972, "lateral_surface_wind": -1.5046476893455814, "impact_velocity": -5.451155784069131, "x_impact": 673.059077382795, "max_mach_number": 0.6736754523645876, "out_of_rail_time": 0.3911574026186339, "apogee_y": 325.35354558613193, "out_of_rail_velocity": 23.067624328131227, "apogee_x": 259.0527343586022, "initial_stability_margin": 2.520472900899163, "t_final": 260.14236666431174, "apogee_time": 23.031764656265644, "frontal_surface_wind": 1.118054267977047, "y_impact": 318.56938839350255} -{"apogee": 3926.3364325435714, "out_of_rail_stability_margin": 2.8413505545271467, "lateral_surface_wind": -2.667329774013396, "impact_velocity": -5.558498608692584, "x_impact": 848.0875026629477, "max_mach_number": 0.9219439307061363, "out_of_rail_time": 0.34200669316759236, "apogee_y": 531.2999984035536, "out_of_rail_velocity": 27.168135567697572, "apogee_x": 322.1271239454931, "initial_stability_margin": 2.775999060567987, "t_final": 320.6030717623125, "apogee_time": 27.403837337334178, "frontal_surface_wind": 0.35696601564406416, "y_impact": 101.86529324433735} -{"apogee": 3060.4697163248898, "out_of_rail_stability_margin": 2.613372677356425, "lateral_surface_wind": -1.3239071816196029, "impact_velocity": -5.558875711821858, "x_impact": 797.8826165007, "max_mach_number": 0.7560290243787304, "out_of_rail_time": 0.3737993327433218, "apogee_y": 410.3938998560267, "out_of_rail_velocity": 24.41922908082818, "apogee_x": 393.7555171282612, "initial_stability_margin": 2.5362893139721674, "t_final": 272.1877537461862, "apogee_time": 24.681092684864876, "frontal_surface_wind": 0.6866476288079821, "y_impact": 347.9924223494645} -{"apogee": 1874.3626196494297, "out_of_rail_stability_margin": 2.5750249862996726, "lateral_surface_wind": -1.9721486091825464, "impact_velocity": -5.309380798404541, "x_impact": 481.91157223855714, "max_mach_number": 0.5340177643138372, "out_of_rail_time": 0.4348636971146891, "apogee_y": 224.21109673850336, "out_of_rail_velocity": 20.35153329206349, "apogee_x": 84.10090828308105, "initial_stability_margin": 2.477771103819576, "t_final": 222.14061740778394, "apogee_time": 19.874451381627726, "frontal_surface_wind": 1.3143616364160382, "y_impact": 104.49260801119003} -{"apogee": 3065.538405188763, "out_of_rail_stability_margin": 2.8027261664402663, "lateral_surface_wind": -1.9737625223186757, "impact_velocity": -5.469682117796842, "x_impact": 883.7141864361478, "max_mach_number": 0.7624327235331747, "out_of_rail_time": 0.3721856957516121, "apogee_y": 454.4833753589113, "out_of_rail_velocity": 24.541945022870706, "apogee_x": 338.2340752194017, "initial_stability_margin": 2.7284337485814554, "t_final": 287.3288270182174, "apogee_time": 24.65983814228817, "frontal_surface_wind": 0.7125154024682268, "y_impact": 359.61026894385174} -{"apogee": 2472.549653821581, "out_of_rail_stability_margin": 2.6662832007790094, "lateral_surface_wind": -1.9819068216341587, "impact_velocity": -5.35910262573331, "x_impact": 513.8956956813635, "max_mach_number": 0.6470090357522573, "out_of_rail_time": 0.3989497352240653, "apogee_y": 270.2012258245078, "out_of_rail_velocity": 22.543123007744505, "apogee_x": 118.8344741636687, "initial_stability_margin": 2.5851362310403387, "t_final": 251.3337279462521, "apogee_time": 22.482611509467525, "frontal_surface_wind": 0.6895375578053935, "y_impact": 156.74857820189553} -{"apogee": 2611.25991698869, "out_of_rail_stability_margin": 2.7431092780945745, "lateral_surface_wind": -1.2247421214357153, "impact_velocity": -5.4953646169433865, "x_impact": 441.3833990749369, "max_mach_number": 0.6730921165578363, "out_of_rail_time": 0.39176975978545453, "apogee_y": 331.66069656019476, "out_of_rail_velocity": 23.005995124560357, "apogee_x": 255.51714045875826, "initial_stability_margin": 2.665860192114058, "t_final": 254.3171882034214, "apogee_time": 23.053960832645224, "frontal_surface_wind": 0.43246355499307776, "y_impact": 306.79682454721296} -{"apogee": 4315.456205585827, "out_of_rail_stability_margin": 2.6844463704382022, "lateral_surface_wind": -2.3520491978934928, "impact_velocity": -5.415474215609466, "x_impact": 1173.0023350185488, "max_mach_number": 1.0238215469640901, "out_of_rail_time": 0.3259081699105389, "apogee_y": 535.3232337425533, "out_of_rail_velocity": 28.880376065428333, "apogee_x": 352.80998705985286, "initial_stability_margin": 2.617454986778507, "t_final": 339.8174913708149, "apogee_time": 28.318250297752346, "frontal_surface_wind": 0.8899258715877968, "y_impact": 275.2121234000944} -{"apogee": 3331.5868049219753, "out_of_rail_stability_margin": 2.6198331492877025, "lateral_surface_wind": -2.065340173212437, "impact_velocity": -5.477172119068606, "x_impact": 1042.9994837609024, "max_mach_number": 0.8152610768366907, "out_of_rail_time": 0.36043894394468834, "apogee_y": 582.6699675264254, "out_of_rail_velocity": 25.491032358240723, "apogee_x": 477.0947778915799, "initial_stability_margin": 2.5509295895139177, "t_final": 297.0889597621583, "apogee_time": 25.52505922885439, "frontal_surface_wind": 0.40134851707669084, "y_impact": 287.7535384721953} -{"apogee": 1824.5400711734283, "out_of_rail_stability_margin": 2.68733232693638, "lateral_surface_wind": -0.6880253740234069, "impact_velocity": -5.580223612035758, "x_impact": 408.65804604803384, "max_mach_number": 0.5180721233271333, "out_of_rail_time": 0.4388980262869007, "apogee_y": 191.71491590007818, "out_of_rail_velocity": 20.181216056614694, "apogee_x": 194.6420116073247, "initial_stability_margin": 2.6005712014691906, "t_final": 208.31085538623708, "apogee_time": 19.71308651955487, "frontal_surface_wind": 0.8810164105785937, "y_impact": 232.24216999038777} -{"apogee": 3047.4093585233263, "out_of_rail_stability_margin": 2.659321386895362, "lateral_surface_wind": -3.108513593043864, "impact_velocity": -5.339729959941968, "x_impact": 828.0672747034604, "max_mach_number": 0.7652948892847606, "out_of_rail_time": 0.37099118045282464, "apogee_y": 507.1494900476033, "out_of_rail_velocity": 24.62659073727734, "apogee_x": 216.96048161331072, "initial_stability_margin": 2.5849643073139768, "t_final": 287.54853917755565, "apogee_time": 24.525307327947115, "frontal_surface_wind": 0.9016284085851951, "y_impact": 216.72645647374813} -{"apogee": 2788.6727500804873, "out_of_rail_stability_margin": 2.707602625796159, "lateral_surface_wind": -2.0602045216644624, "impact_velocity": -5.527921412541834, "x_impact": 735.3196593471948, "max_mach_number": 0.7042769994785902, "out_of_rail_time": 0.38429188641525597, "apogee_y": 340.4868863968898, "out_of_rail_velocity": 23.577388553012696, "apogee_x": 217.72264761102582, "initial_stability_margin": 2.6319107649636284, "t_final": 264.7344851829001, "apogee_time": 23.7290004438867, "frontal_surface_wind": 1.0967998981969194, "y_impact": 227.35500030453917} -{"apogee": 3453.2947708172114, "out_of_rail_stability_margin": 2.770683151794806, "lateral_surface_wind": -1.500676898126572, "impact_velocity": -5.566073379508379, "x_impact": 794.5610567291696, "max_mach_number": 0.8252559090495348, "out_of_rail_time": 0.3588285432028244, "apogee_y": 353.36214157799037, "out_of_rail_velocity": 25.635063033638346, "apogee_x": 263.0894997640178, "initial_stability_margin": 2.7010878182833395, "t_final": 297.06763529792914, "apogee_time": 25.986632059075784, "frontal_surface_wind": 1.123378325687254, "y_impact": 340.33710513749526} -{"apogee": 2812.725665504451, "out_of_rail_stability_margin": 2.6042362234320526, "lateral_surface_wind": -2.5878013308903958, "impact_velocity": -5.362834645678197, "x_impact": 1029.9030938584044, "max_mach_number": 0.7225407887227774, "out_of_rail_time": 0.3803117875379881, "apogee_y": 549.0645879414159, "out_of_rail_velocity": 23.849211619564237, "apogee_x": 420.95456541196774, "initial_stability_margin": 2.525200497911549, "t_final": 271.6999805421182, "apogee_time": 23.701930003289146, "frontal_surface_wind": 0.9902057560355605, "y_impact": 294.60656464910204} -{"apogee": 3944.1242800947757, "out_of_rail_stability_margin": 2.6994310434137976, "lateral_surface_wind": -1.357024895676627, "impact_velocity": -5.491735461816964, "x_impact": 750.7510102029838, "max_mach_number": 0.9215063815545614, "out_of_rail_time": 0.34308224921350305, "apogee_y": 323.5495060734167, "out_of_rail_velocity": 27.10613587283466, "apogee_x": 230.08926092385443, "initial_stability_margin": 2.6283123444123935, "t_final": 330.94842498699927, "apogee_time": 27.43646730327751, "frontal_surface_wind": 0.6348176779819472, "y_impact": 180.68067239943178} -{"apogee": 3797.721090731263, "out_of_rail_stability_margin": 2.5847120301157247, "lateral_surface_wind": -0.7279394004415294, "impact_velocity": -5.28364973992441, "x_impact": 791.9084346232369, "max_mach_number": 0.911427367175241, "out_of_rail_time": 0.3437513447804606, "apogee_y": 373.8547138328554, "out_of_rail_velocity": 27.016780997402474, "apogee_x": 363.7504120748722, "initial_stability_margin": 2.5159471018195347, "t_final": 318.0099487642051, "apogee_time": 26.866004279350165, "frontal_surface_wind": 0.8483354644795095, "y_impact": 523.712861106362} -{"apogee": 3919.647322201462, "out_of_rail_stability_margin": 2.658809052214164, "lateral_surface_wind": -1.2071800823506715, "impact_velocity": -5.44395580373634, "x_impact": 879.8135168249422, "max_mach_number": 0.9224286117075432, "out_of_rail_time": 0.3427721429938949, "apogee_y": 350.65365356031026, "out_of_rail_velocity": 27.163215799639797, "apogee_x": 249.9889990451678, "initial_stability_margin": 2.5900606560030526, "t_final": 335.5312112285631, "apogee_time": 27.32156530460889, "frontal_surface_wind": 1.1475618775858942, "y_impact": 505.225218937756} -{"apogee": 2666.0871340587064, "out_of_rail_stability_margin": 2.8028788389579864, "lateral_surface_wind": -2.0931930856764276, "impact_velocity": -5.5145780584564985, "x_impact": 744.8148001232688, "max_mach_number": 0.6837903159498533, "out_of_rail_time": 0.38964472228984015, "apogee_y": 444.9556138097596, "out_of_rail_velocity": 23.183855904997294, "apogee_x": 277.39672448372033, "initial_stability_margin": 2.7238432071106544, "t_final": 256.34632875258126, "apogee_time": 23.26972701746226, "frontal_surface_wind": 0.9564408665810674, "y_impact": 310.1308786090893} -{"apogee": 3428.3632197758384, "out_of_rail_stability_margin": 2.7314631977153585, "lateral_surface_wind": -1.9840771762804912, "impact_velocity": -5.5989066055523455, "x_impact": 1113.2381213805493, "max_mach_number": 0.8267843795103641, "out_of_rail_time": 0.35939564291882314, "apogee_y": 622.4045975944347, "out_of_rail_velocity": 25.57549443187006, "apogee_x": 540.3031056215524, "initial_stability_margin": 2.6582022668557346, "t_final": 297.1840674361374, "apogee_time": 25.908481772874072, "frontal_surface_wind": 1.0765790772364878, "y_impact": 549.2941651246641} -{"apogee": 3233.6623076062306, "out_of_rail_stability_margin": 2.8286671936620005, "lateral_surface_wind": -1.1692954899944987, "impact_velocity": -5.509393993310972, "x_impact": 808.9102702715459, "max_mach_number": 0.7912204798803272, "out_of_rail_time": 0.3657471936410373, "apogee_y": 456.6087302576858, "out_of_rail_velocity": 25.031065229868652, "apogee_x": 408.5553154335982, "initial_stability_margin": 2.756172840855572, "t_final": 290.10037343620564, "apogee_time": 25.249274007604946, "frontal_surface_wind": 0.38399996829171723, "y_impact": 472.6776571246722} -{"apogee": 2542.942931729609, "out_of_rail_stability_margin": 2.785555832910475, "lateral_surface_wind": -2.0956764797106278, "impact_velocity": -5.562605517240253, "x_impact": 641.8753570300275, "max_mach_number": 0.6554644413891965, "out_of_rail_time": 0.39548008628637343, "apogee_y": 322.76894225948746, "out_of_rail_velocity": 22.778016362887826, "apogee_x": 178.62395647581525, "initial_stability_margin": 2.7110505024336486, "t_final": 245.2495941113692, "apogee_time": 22.813716017131195, "frontal_surface_wind": 1.34029125349779, "y_impact": 196.43895436335086} -{"apogee": 3655.5763190598373, "out_of_rail_stability_margin": 2.6070518403259433, "lateral_surface_wind": -1.297757272687055, "impact_velocity": -5.375300312601425, "x_impact": 956.6089302250037, "max_mach_number": 0.8831001511721265, "out_of_rail_time": 0.34917402156135163, "apogee_y": 493.45481436307847, "out_of_rail_velocity": 26.505562915161796, "apogee_x": 511.05786869411634, "initial_stability_margin": 2.536533371352268, "t_final": 308.0392262777912, "apogee_time": 26.49087882238314, "frontal_surface_wind": 0.5736596772450246, "y_impact": 213.19143076523946} -{"apogee": 3747.600058629104, "out_of_rail_stability_margin": 2.57188626538338, "lateral_surface_wind": -2.538755777236762, "impact_velocity": -5.421354209077349, "x_impact": 936.745904829919, "max_mach_number": 0.8916620796922388, "out_of_rail_time": 0.347492690182819, "apogee_y": 447.62396007833183, "out_of_rail_velocity": 26.63663677944418, "apogee_x": 223.7336973707156, "initial_stability_margin": 2.5008772541678135, "t_final": 323.41587075229234, "apogee_time": 26.812270130121625, "frontal_surface_wind": 1.193335099775254, "y_impact": 126.98796243883976} -{"apogee": 2908.4743202521117, "out_of_rail_stability_margin": 2.5350703322158363, "lateral_surface_wind": -1.1992031066523554, "impact_velocity": -5.443059730576826, "x_impact": 515.2114474965185, "max_mach_number": 0.7316977358297716, "out_of_rail_time": 0.37825214134154134, "apogee_y": 326.4745213148839, "out_of_rail_velocity": 24.00959820421546, "apogee_x": 283.73272628868006, "initial_stability_margin": 2.4589748858836065, "t_final": 279.3224984123026, "apogee_time": 24.11392210747988, "frontal_surface_wind": 0.4989287518388236, "y_impact": 304.96554205107304} -{"apogee": 3740.0610401111066, "out_of_rail_stability_margin": 2.7133614747683024, "lateral_surface_wind": -0.394141697439383, "impact_velocity": -5.519745565394913, "x_impact": 710.7646197602256, "max_mach_number": 0.8802288636417835, "out_of_rail_time": 0.3491146124952132, "apogee_y": 317.5896283830932, "out_of_rail_velocity": 26.49346440256766, "apogee_x": 393.64901168814646, "initial_stability_margin": 2.6461171109034063, "t_final": 310.7101085620471, "apogee_time": 26.88968620619199, "frontal_surface_wind": 0.24484129743370062, "y_impact": 588.4824465336042} -{"apogee": 3613.568987472297, "out_of_rail_stability_margin": 2.70778917398016, "lateral_surface_wind": -1.4747633353571126, "impact_velocity": -5.471089894595522, "x_impact": 1095.0027405264252, "max_mach_number": 0.8679668049563317, "out_of_rail_time": 0.3513791473379696, "apogee_y": 501.6718482082923, "out_of_rail_velocity": 26.287581947939657, "apogee_x": 498.18563294035255, "initial_stability_margin": 2.636666358538817, "t_final": 307.3349722498085, "apogee_time": 26.39790590101161, "frontal_surface_wind": 1.1571875906183287, "y_impact": 507.18652897895095} -{"apogee": 3634.795542891604, "out_of_rail_stability_margin": 2.7118271436572905, "lateral_surface_wind": -2.0364189618099227, "impact_velocity": -5.381690895238613, "x_impact": 809.5638008710031, "max_mach_number": 0.867939894404467, "out_of_rail_time": 0.3512699987356104, "apogee_y": 378.2701659672021, "out_of_rail_velocity": 26.308350321440674, "apogee_x": 235.37031599956129, "initial_stability_margin": 2.641536589411011, "t_final": 314.5066031873318, "apogee_time": 26.469151275748963, "frontal_surface_wind": 1.4287191339784042, "y_impact": 228.60565840320518} -{"apogee": 3128.706043146353, "out_of_rail_stability_margin": 2.542136164624562, "lateral_surface_wind": -1.4820738387088257, "impact_velocity": -5.469263068660707, "x_impact": 911.4348239875475, "max_mach_number": 0.7701383740662259, "out_of_rail_time": 0.37043174377655746, "apogee_y": 364.5626220072443, "out_of_rail_velocity": 24.653806261492736, "apogee_x": 307.80102506224534, "initial_stability_margin": 2.4656600499878487, "t_final": 288.3802644728616, "apogee_time": 24.891577925359194, "frontal_surface_wind": 1.404714037825037, "y_impact": 391.9002916184385} -{"apogee": 4120.5798857903765, "out_of_rail_stability_margin": 2.5607659132248304, "lateral_surface_wind": -2.118288494660059, "impact_velocity": -5.293978031958845, "x_impact": 801.0597693366985, "max_mach_number": 0.9860942023852503, "out_of_rail_time": 0.3322984297763215, "apogee_y": 406.5052682875598, "out_of_rail_velocity": 28.172824975645405, "apogee_x": 215.52460132637316, "initial_stability_margin": 2.489311965400019, "t_final": 351.68729005176874, "apogee_time": 27.71943949478184, "frontal_surface_wind": 0.840560644400149, "y_impact": 3.178364151838965} -{"apogee": 2756.448543823613, "out_of_rail_stability_margin": 2.7558943486697243, "lateral_surface_wind": -0.6200229166203068, "impact_velocity": -5.379235779364538, "x_impact": 467.4642094672304, "max_mach_number": 0.7066615920194715, "out_of_rail_time": 0.38368249824288403, "apogee_y": 328.8089115694829, "out_of_rail_velocity": 23.632059345304743, "apogee_x": 387.84070958742245, "initial_stability_margin": 2.6805120512732215, "t_final": 265.74445500128314, "apogee_time": 23.536351969076204, "frontal_surface_wind": -0.7202940383598934, "y_impact": 309.81430673012744} -{"apogee": 4057.541933002318, "out_of_rail_stability_margin": 2.7536186255674013, "lateral_surface_wind": -0.7653867011818187, "impact_velocity": -5.413926018807813, "x_impact": 864.6879075116556, "max_mach_number": 0.9508688862093544, "out_of_rail_time": 0.3378073468821316, "apogee_y": 440.38305631906303, "out_of_rail_velocity": 27.666448587989596, "apogee_x": 393.6611652085692, "initial_stability_margin": 2.6889198152125977, "t_final": 331.6419618798349, "apogee_time": 27.744871441301527, "frontal_surface_wind": 0.8147097818627511, "y_impact": 606.8918881910637} -{"apogee": 3206.76001055247, "out_of_rail_stability_margin": 2.5582205113278698, "lateral_surface_wind": -2.100506873186617, "impact_velocity": -5.381605191289117, "x_impact": 710.5234024868598, "max_mach_number": 0.7860604825217448, "out_of_rail_time": 0.3670812146704684, "apogee_y": 344.87974927850524, "out_of_rail_velocity": 24.91079237480498, "apogee_x": 190.7698646648567, "initial_stability_margin": 2.482796758714356, "t_final": 296.9345506025765, "apogee_time": 25.12926069678161, "frontal_surface_wind": 0.8979749375001186, "y_impact": 196.46208515048133} -{"apogee": 3098.3775044226445, "out_of_rail_stability_margin": 2.6434703389771683, "lateral_surface_wind": -3.053265284562128, "impact_velocity": -5.50402920730056, "x_impact": 838.7242855081204, "max_mach_number": 0.7647720840763179, "out_of_rail_time": 0.3705051593993379, "apogee_y": 494.1853093163261, "out_of_rail_velocity": 24.627835358592716, "apogee_x": 246.2024352935948, "initial_stability_margin": 2.5725682931067055, "t_final": 273.3058571320892, "apogee_time": 24.80914770557869, "frontal_surface_wind": 1.0739467618993461, "y_impact": 226.80354093742483} -{"apogee": 3912.4845854222694, "out_of_rail_stability_margin": 2.6509170336256136, "lateral_surface_wind": -2.076857045700425, "impact_velocity": -5.364071093619719, "x_impact": 973.7343648618037, "max_mach_number": 0.927188287352965, "out_of_rail_time": 0.34256761612388803, "apogee_y": 425.0586087752505, "out_of_rail_velocity": 27.175463717014136, "apogee_x": 220.50781886440978, "initial_stability_margin": 2.5799238650843033, "t_final": 339.33583928957677, "apogee_time": 27.267861062728212, "frontal_surface_wind": 0.9914137566699637, "y_impact": 238.72662684676257} -{"apogee": 3763.8584476030283, "out_of_rail_stability_margin": 2.6372911626567137, "lateral_surface_wind": -2.083205955294617, "impact_velocity": -5.546518941598808, "x_impact": 1028.1204998101293, "max_mach_number": 0.8900315109834307, "out_of_rail_time": 0.3476875026795719, "apogee_y": 581.6208184621873, "out_of_rail_velocity": 26.647300534940467, "apogee_x": 396.27952632964184, "initial_stability_margin": 2.5688386675825523, "t_final": 307.664242073447, "apogee_time": 26.93223160825572, "frontal_surface_wind": 0.29489593260992475, "y_impact": 290.7392075603762} -{"apogee": 3660.4290067232782, "out_of_rail_stability_margin": 2.563778154023582, "lateral_surface_wind": -2.3529445874397803, "impact_velocity": -5.3201582133731895, "x_impact": 1065.2773019709987, "max_mach_number": 0.8804916625798787, "out_of_rail_time": 0.349127866595582, "apogee_y": 488.5088441853758, "out_of_rail_velocity": 26.503368762824486, "apogee_x": 314.88691340915926, "initial_stability_margin": 2.4924197766771052, "t_final": 325.27191383637603, "apogee_time": 26.489420140879684, "frontal_surface_wind": 0.8875557755265658, "y_impact": 208.04790556453145} -{"apogee": 3782.131644303643, "out_of_rail_stability_margin": 2.6064434705729567, "lateral_surface_wind": -2.170587853963005, "impact_velocity": -5.44436361377989, "x_impact": 855.2532005799543, "max_mach_number": 0.9001431697737288, "out_of_rail_time": 0.3467607164881511, "apogee_y": 457.93474525057957, "out_of_rail_velocity": 26.74475841245714, "apogee_x": 243.90274394406936, "initial_stability_margin": 2.533442043611445, "t_final": 324.81141101362095, "apogee_time": 26.90205222624798, "frontal_surface_wind": 0.7120649414982018, "y_impact": 330.17316981731983} -{"apogee": 4181.309663757778, "out_of_rail_stability_margin": 2.810229674916861, "lateral_surface_wind": -2.131227381364705, "impact_velocity": -5.543163581931334, "x_impact": 1205.9015337221733, "max_mach_number": 0.9791616248567048, "out_of_rail_time": 0.33292917264947786, "apogee_y": 598.6912504184303, "out_of_rail_velocity": 28.12598547418, "apogee_x": 438.0538838012674, "initial_stability_margin": 2.7456032806003465, "t_final": 337.473082924706, "apogee_time": 28.09221676444356, "frontal_surface_wind": 0.9514633659226248, "y_impact": 462.622031685397} -{"apogee": 4014.857032848313, "out_of_rail_stability_margin": 2.663959045324188, "lateral_surface_wind": -2.1323715230635227, "impact_velocity": -5.488156966989488, "x_impact": 887.1994932534368, "max_mach_number": 0.9443473038145671, "out_of_rail_time": 0.3387544529421715, "apogee_y": 509.22334919802466, "out_of_rail_velocity": 27.498385211859333, "apogee_x": 325.3266171047213, "initial_stability_margin": 2.5946485089503617, "t_final": 328.4521428972208, "apogee_time": 27.59545593248029, "frontal_surface_wind": 0.8041641817137362, "y_impact": 162.83271739637232} -{"apogee": 2913.555035302141, "out_of_rail_stability_margin": 2.7189994131453004, "lateral_surface_wind": -2.0621952616545176, "impact_velocity": -5.441674645004166, "x_impact": 797.4279682739934, "max_mach_number": 0.7282542106472822, "out_of_rail_time": 0.37851821736926444, "apogee_y": 375.6254637350796, "out_of_rail_velocity": 24.017397274485347, "apogee_x": 278.7670978136738, "initial_stability_margin": 2.645501025435102, "t_final": 276.8632433626736, "apogee_time": 24.171323364227394, "frontal_surface_wind": 1.1714098382641498, "y_impact": 161.81938865472804} -{"apogee": 3714.587169026433, "out_of_rail_stability_margin": 2.723583340293458, "lateral_surface_wind": -1.9718591017543932, "impact_velocity": -5.4451991879374235, "x_impact": 1110.936907640598, "max_mach_number": 0.884297829202097, "out_of_rail_time": 0.3487581184465334, "apogee_y": 500.0784555602497, "out_of_rail_velocity": 26.53342987080683, "apogee_x": 374.2880242887086, "initial_stability_margin": 2.6544672557184277, "t_final": 317.9909612707442, "apogee_time": 26.748799860116527, "frontal_surface_wind": 0.786336130187573, "y_impact": 276.2661416855143} -{"apogee": 2676.6511196590222, "out_of_rail_stability_margin": 2.6748510377937054, "lateral_surface_wind": -2.6895768092934382, "impact_velocity": -5.392778533180245, "x_impact": 580.0540879006286, "max_mach_number": 0.6925076201095517, "out_of_rail_time": 0.3879503530737197, "apogee_y": 463.6489541877968, "out_of_rail_velocity": 23.28858576099575, "apogee_x": 229.52216589707405, "initial_stability_margin": 2.5932273044537832, "t_final": 266.95381371706117, "apogee_time": 23.2386633361006, "frontal_surface_wind": 0.09082646406241146, "y_impact": 106.15464613789408} -{"apogee": 3966.0521155122274, "out_of_rail_stability_margin": 2.5887631576139123, "lateral_surface_wind": -2.117673555705557, "impact_velocity": -5.3708986840972335, "x_impact": 963.1684679750884, "max_mach_number": 0.9381890066319275, "out_of_rail_time": 0.3402269177339349, "apogee_y": 460.22491852769275, "out_of_rail_velocity": 27.39431186230886, "apogee_x": 311.62147446419453, "initial_stability_margin": 2.5181836256663, "t_final": 321.74183368121805, "apogee_time": 27.424225129429423, "frontal_surface_wind": 1.0678525262590202, "y_impact": 156.2264367734611} -{"apogee": 3839.562387753292, "out_of_rail_stability_margin": 2.763125068189099, "lateral_surface_wind": -1.1966108320052455, "impact_velocity": -5.493885920889369, "x_impact": 1086.233971350381, "max_mach_number": 0.9082083017101763, "out_of_rail_time": 0.34496866432376044, "apogee_y": 522.3823461528009, "out_of_rail_velocity": 26.975687984794046, "apogee_x": 468.9378271721844, "initial_stability_margin": 2.6941050003515805, "t_final": 314.1375384683178, "apogee_time": 27.112560104569127, "frontal_surface_wind": 1.1585786683865498, "y_impact": 691.7377167995387} -{"apogee": 3465.5554529486117, "out_of_rail_stability_margin": 2.8861522552910444, "lateral_surface_wind": -2.1432420431482755, "impact_velocity": -5.515089733548691, "x_impact": 742.1580867952885, "max_mach_number": 0.82788918282897, "out_of_rail_time": 0.35803926257300644, "apogee_y": 357.6765371657845, "out_of_rail_velocity": 25.67510071894329, "apogee_x": 139.57773967177008, "initial_stability_margin": 2.819141119208585, "t_final": 292.51532203919817, "apogee_time": 26.034813577004478, "frontal_surface_wind": 0.9240812909333649, "y_impact": 217.65982541383556} -{"apogee": 4045.002755808986, "out_of_rail_stability_margin": 2.6763262014302147, "lateral_surface_wind": -0.41425175882765436, "impact_velocity": -5.212834149463454, "x_impact": 971.002872093136, "max_mach_number": 0.981831608048224, "out_of_rail_time": 0.3319928784895605, "apogee_y": 536.766676466227, "out_of_rail_velocity": 28.23076433140315, "apogee_x": 588.0379057354737, "initial_stability_margin": 2.6104017374015616, "t_final": 349.8185146176733, "apogee_time": 27.454576723749398, "frontal_surface_wind": 0.20902253203329754, "y_impact": 876.5939418944029} -{"apogee": 4587.770357150757, "out_of_rail_stability_margin": 2.7458395599029757, "lateral_surface_wind": -2.1065062817032363, "impact_velocity": -5.541826097457801, "x_impact": 1242.4429777341868, "max_mach_number": 1.0822335753829566, "out_of_rail_time": 0.31714795284931463, "apogee_y": 668.6199242221737, "out_of_rail_velocity": 29.95220592485992, "apogee_x": 560.2081202906404, "initial_stability_margin": 2.685358586254762, "t_final": 343.20993529206663, "apogee_time": 29.095161861456226, "frontal_surface_wind": 1.323205137898055, "y_impact": 555.083019010887} -{"apogee": 4198.55933446848, "out_of_rail_stability_margin": 2.6186601746673817, "lateral_surface_wind": -2.687263259625106, "impact_velocity": -5.475707628178716, "x_impact": 894.9877420929126, "max_mach_number": 0.9903038673135356, "out_of_rail_time": 0.3317773213399271, "apogee_y": 611.6574807505029, "out_of_rail_velocity": 28.277443111085365, "apogee_x": 348.97019640143117, "initial_stability_margin": 2.551381770607264, "t_final": 326.3336182044195, "apogee_time": 28.08942220078982, "frontal_surface_wind": 0.1438368281498248, "y_impact": 188.7478145864594} -{"apogee": 3512.6046730547464, "out_of_rail_stability_margin": 2.746615436097706, "lateral_surface_wind": -2.0287446952936876, "impact_velocity": -5.473703661005273, "x_impact": 967.6459490771346, "max_mach_number": 0.8434060093748716, "out_of_rail_time": 0.35657394799207015, "apogee_y": 455.9569127131789, "out_of_rail_velocity": 25.916568866157352, "apogee_x": 372.43473246377016, "initial_stability_margin": 2.6760842491641146, "t_final": 306.43428594190266, "apogee_time": 26.1376844160626, "frontal_surface_wind": 0.5575891180453213, "y_impact": 136.87339170425741} -{"apogee": 2913.0765515318926, "out_of_rail_stability_margin": 2.678279020784752, "lateral_surface_wind": -1.1393892849887668, "impact_velocity": -5.627609567300215, "x_impact": 703.996845448959, "max_mach_number": 0.7229180639521916, "out_of_rail_time": 0.38044215452351327, "apogee_y": 306.36740809152184, "out_of_rail_velocity": 23.912669400846106, "apogee_x": 263.2631661206734, "initial_stability_margin": 2.6022728577622414, "t_final": 267.831987634345, "apogee_time": 24.21309492672316, "frontal_surface_wind": 1.2148967327988927, "y_impact": 397.478317159272} -{"apogee": 4369.335451547129, "out_of_rail_stability_margin": 2.7001921662856114, "lateral_surface_wind": -1.3250353273211664, "impact_velocity": -5.444812106170817, "x_impact": 1033.6379067102023, "max_mach_number": 1.0345890952704386, "out_of_rail_time": 0.32376484414382256, "apogee_y": 452.4654514139837, "out_of_rail_velocity": 29.142215327939766, "apogee_x": 426.2159940064487, "initial_stability_margin": 2.635826927763012, "t_final": 355.7587126242915, "apogee_time": 28.464145310836628, "frontal_surface_wind": 0.6844680949777526, "y_impact": 320.1779393439666} -{"apogee": 3370.9940239053335, "out_of_rail_stability_margin": 2.6029228535969327, "lateral_surface_wind": -1.3049871273442477, "impact_velocity": -5.341661237835438, "x_impact": 852.7402918834177, "max_mach_number": 0.8314974456716406, "out_of_rail_time": 0.3581542139708882, "apogee_y": 456.04600686727224, "out_of_rail_velocity": 25.674759727172553, "apogee_x": 449.6335055656365, "initial_stability_margin": 2.530311382647872, "t_final": 305.5043635315399, "apogee_time": 25.56195558154859, "frontal_surface_wind": 0.55701702090225, "y_impact": 184.36789090599652} -{"apogee": 2138.4674993287963, "out_of_rail_stability_margin": 2.6383819446298458, "lateral_surface_wind": -3.022991202654895, "impact_velocity": -5.475648918347943, "x_impact": 657.0397786013625, "max_mach_number": 0.5855222057306972, "out_of_rail_time": 0.4174493534828465, "apogee_y": 407.70276568863756, "out_of_rail_velocity": 21.38555939670497, "apogee_x": 208.8450611548564, "initial_stability_margin": 2.550550040832468, "t_final": 230.3252953231821, "apogee_time": 21.129729170007884, "frontal_surface_wind": 0.680312707427797, "y_impact": 98.18768128898381} -{"apogee": 2496.503539103429, "out_of_rail_stability_margin": 2.639237737446081, "lateral_surface_wind": -1.160134939258648, "impact_velocity": -5.499683001642745, "x_impact": 512.6282227770205, "max_mach_number": 0.6513166663536853, "out_of_rail_time": 0.397467416224041, "apogee_y": 295.5592226816766, "out_of_rail_velocity": 22.643945978247004, "apogee_x": 248.1927507654294, "initial_stability_margin": 2.559346919148469, "t_final": 247.06328422493337, "apogee_time": 22.590020170427206, "frontal_surface_wind": 0.4108464935725358, "y_impact": 275.13552027883077} -{"apogee": 4247.442183918494, "out_of_rail_stability_margin": 2.7766555166836167, "lateral_surface_wind": -1.7983328402777827, "impact_velocity": -5.515208038738545, "x_impact": 1242.6627665372503, "max_mach_number": 0.9994333239250417, "out_of_rail_time": 0.32924207341825124, "apogee_y": 513.994602067876, "out_of_rail_velocity": 28.531651692617654, "apogee_x": 483.4589227794703, "initial_stability_margin": 2.7147764763064015, "t_final": 341.29445776309205, "apogee_time": 28.23251860076335, "frontal_surface_wind": 1.5436695383278567, "y_impact": 373.5298751719856} -{"apogee": 3345.002975074845, "out_of_rail_stability_margin": 2.5681394213806366, "lateral_surface_wind": -2.0213845627990135, "impact_velocity": -5.405460935128741, "x_impact": 964.5330022840494, "max_mach_number": 0.8167648501277908, "out_of_rail_time": 0.36171024972296123, "apogee_y": 455.9342385601019, "out_of_rail_velocity": 25.393997544697015, "apogee_x": 401.31107566886135, "initial_stability_margin": 2.4919013803370227, "t_final": 301.3313502685036, "apogee_time": 25.563461017697072, "frontal_surface_wind": 0.5837080713187696, "y_impact": 133.59915485859258} -{"apogee": 3798.175189799888, "out_of_rail_stability_margin": 2.7129970366477774, "lateral_surface_wind": -2.6744299457207577, "impact_velocity": -5.519206909118112, "x_impact": 1026.572838574478, "max_mach_number": 0.9034306734993793, "out_of_rail_time": 0.3455067795083156, "apogee_y": 653.0510247233819, "out_of_rail_velocity": 26.868881296324798, "apogee_x": 484.0729841379134, "initial_stability_margin": 2.6455768011221, "t_final": 319.23908628800456, "apogee_time": 26.993225970165398, "frontal_surface_wind": 0.29916103538933436, "y_impact": 239.244843814749} -{"apogee": 3963.15243118075, "out_of_rail_stability_margin": 2.620448517000208, "lateral_surface_wind": -2.3470447587361907, "impact_velocity": -5.422282876256424, "x_impact": 1178.8942811420707, "max_mach_number": 0.9382911333495935, "out_of_rail_time": 0.3401661820986562, "apogee_y": 553.7343817337068, "out_of_rail_velocity": 27.35648947028641, "apogee_x": 391.5519932643189, "initial_stability_margin": 2.5484723283768247, "t_final": 328.3725295279237, "apogee_time": 27.415615901030794, "frontal_surface_wind": 0.9030417414060652, "y_impact": 294.1317776853488} -{"apogee": 4446.423056251363, "out_of_rail_stability_margin": 2.6581682638923105, "lateral_surface_wind": -2.563771875467401, "impact_velocity": -5.502612111588141, "x_impact": 1071.7414726663721, "max_mach_number": 1.0500764864959293, "out_of_rail_time": 0.3216664715711451, "apogee_y": 507.14295153203904, "out_of_rail_velocity": 29.401900409825764, "apogee_x": 262.4533903490379, "initial_stability_margin": 2.595315850668522, "t_final": 352.0875384875201, "apogee_time": 28.70379517559521, "frontal_surface_wind": 1.1385970873715665, "y_impact": 155.2652275245839} -{"apogee": 2910.1231031861666, "out_of_rail_stability_margin": 2.705981282012123, "lateral_surface_wind": -3.06956062522387, "impact_velocity": -5.497352279626085, "x_impact": 799.2833036532094, "max_mach_number": 0.731104620424633, "out_of_rail_time": 0.3781214840443986, "apogee_y": 479.80651311674745, "out_of_rail_velocity": 24.040892434242874, "apogee_x": 223.05645457563725, "initial_stability_margin": 2.6315237226751247, "t_final": 272.74413338639266, "apogee_time": 24.139730426106805, "frontal_surface_wind": 1.0264444034537816, "y_impact": 197.00535643683511} -{"apogee": 3975.014704619329, "out_of_rail_stability_margin": 2.739517628719157, "lateral_surface_wind": -1.9684757623758122, "impact_velocity": -5.510205403398462, "x_impact": 1071.0277763744143, "max_mach_number": 0.9332128885053718, "out_of_rail_time": 0.34040326686739136, "apogee_y": 553.2633119592905, "out_of_rail_velocity": 27.35207209666714, "apogee_x": 445.5702368381031, "initial_stability_margin": 2.672035739024184, "t_final": 331.2255856159194, "apogee_time": 27.517044492040565, "frontal_surface_wind": 1.1048474663588181, "y_impact": 459.9840148575562} -{"apogee": 3247.9376752327576, "out_of_rail_stability_margin": 2.750759769628689, "lateral_surface_wind": -1.2936345345963154, "impact_velocity": -5.6698565740680005, "x_impact": 780.3229438635639, "max_mach_number": 0.787024350785691, "out_of_rail_time": 0.36685699705950625, "apogee_y": 424.77390149183833, "out_of_rail_velocity": 24.977301603269108, "apogee_x": 422.7830703083938, "initial_stability_margin": 2.6808158546186784, "t_final": 281.44372045543145, "apogee_time": 25.388287592666924, "frontal_surface_wind": 0.5828971221483119, "y_impact": 186.01695285266197} -{"apogee": 2636.4554457206996, "out_of_rail_stability_margin": 2.626595830005104, "lateral_surface_wind": -1.2374226088017743, "impact_velocity": -5.3754608802545585, "x_impact": 519.8423810112669, "max_mach_number": 0.682467876894493, "out_of_rail_time": 0.39050791337962476, "apogee_y": 403.5832073925596, "out_of_rail_velocity": 23.130433581668374, "apogee_x": 318.3406208323281, "initial_stability_margin": 2.5451122588577535, "t_final": 262.6200244757638, "apogee_time": 23.118040364393313, "frontal_surface_wind": 0.3947192390070671, "y_impact": 387.2001825821124} -{"apogee": 3981.576042664405, "out_of_rail_stability_margin": 2.755922731426992, "lateral_surface_wind": -0.6036075175828453, "impact_velocity": -5.486122787238852, "x_impact": 574.9876553888763, "max_mach_number": 0.937564741596654, "out_of_rail_time": 0.33934212492020954, "apogee_y": 315.80390434712655, "out_of_rail_velocity": 27.440742488708295, "apogee_x": 338.5443180757521, "initial_stability_margin": 2.690140586507456, "t_final": 322.1322146126273, "apogee_time": 27.49484102313478, "frontal_surface_wind": -0.7341048178214271, "y_impact": 336.1835705445154} -{"apogee": 2512.898853604744, "out_of_rail_stability_margin": 2.7979936796991436, "lateral_surface_wind": -2.008034706338774, "impact_velocity": -5.441959739852218, "x_impact": 644.9000996190256, "max_mach_number": 0.6566765451836416, "out_of_rail_time": 0.3955212253992538, "apogee_y": 377.0537206568189, "out_of_rail_velocity": 22.725101174038485, "apogee_x": 223.8835691144578, "initial_stability_margin": 2.719773256681535, "t_final": 252.47094737668786, "apogee_time": 22.644929203211138, "frontal_surface_wind": 0.6092727725766135, "y_impact": 288.1448578871239} -{"apogee": 3815.870518848379, "out_of_rail_stability_margin": 2.723181598812849, "lateral_surface_wind": -0.4064018343054856, "impact_velocity": -5.46933439065665, "x_impact": 861.408912132752, "max_mach_number": 0.9042653145238155, "out_of_rail_time": 0.3449076411563016, "apogee_y": 447.0515525899215, "out_of_rail_velocity": 26.933175371485802, "apogee_x": 518.7691408118327, "initial_stability_margin": 2.6584490925575897, "t_final": 317.19854134699625, "apogee_time": 27.04519922511947, "frontal_surface_wind": 0.22390285318091113, "y_impact": 744.8141571822301} -{"apogee": 3351.7688942190202, "out_of_rail_stability_margin": 2.7089890461415247, "lateral_surface_wind": -1.3590934183151964, "impact_velocity": -5.508362144012719, "x_impact": 849.2124219240155, "max_mach_number": 0.8095672756871295, "out_of_rail_time": 0.36210372933344753, "apogee_y": 453.28345895553036, "out_of_rail_velocity": 25.346931108487965, "apogee_x": 417.5817464744552, "initial_stability_margin": 2.636809182443331, "t_final": 289.42537063851944, "apogee_time": 25.65662520379675, "frontal_surface_wind": 0.6303769761475002, "y_impact": 357.7785569892825} -{"apogee": 4086.710877367726, "out_of_rail_stability_margin": 2.5994128946045514, "lateral_surface_wind": -1.5422426380590535, "impact_velocity": -5.43618225947005, "x_impact": 1078.6271743588843, "max_mach_number": 0.9613917955938396, "out_of_rail_time": 0.3356823042741007, "apogee_y": 422.35465085555643, "out_of_rail_velocity": 27.830779324011083, "apogee_x": 315.34384372368214, "initial_stability_margin": 2.53207886560118, "t_final": 334.68341872975583, "apogee_time": 27.77221517059099, "frontal_surface_wind": 1.3383766423546422, "y_impact": 433.2405475707031} -{"apogee": 2525.06419871818, "out_of_rail_stability_margin": 2.6211870390693104, "lateral_surface_wind": -1.17914509556783, "impact_velocity": -5.471398772708978, "x_impact": 571.0836129249789, "max_mach_number": 0.6598660426440326, "out_of_rail_time": 0.3952728573324602, "apogee_y": 358.2126069361786, "out_of_rail_velocity": 22.778396062451115, "apogee_x": 373.30482241547827, "initial_stability_margin": 2.542678735213599, "t_final": 253.2161393622375, "apogee_time": 22.707629662416867, "frontal_surface_wind": 0.5446419319281615, "y_impact": 331.85694370046525} -{"apogee": 4223.582136382742, "out_of_rail_stability_margin": 2.818624986927677, "lateral_surface_wind": -1.9928833934961854, "impact_velocity": -5.489071942229711, "x_impact": 1524.0963746527525, "max_mach_number": 1.0074472333132307, "out_of_rail_time": 0.32808413510091966, "apogee_y": 836.4738560384011, "out_of_rail_velocity": 28.67199349167925, "apogee_x": 762.332155451731, "initial_stability_margin": 2.7566485566247896, "t_final": 333.64117744081756, "apogee_time": 28.103383009177833, "frontal_surface_wind": 0.6571396146872954, "y_impact": 753.9475110918044} -{"apogee": 4258.299356693901, "out_of_rail_stability_margin": 2.6758377566592073, "lateral_surface_wind": -2.189619959741934, "impact_velocity": -5.401855346918781, "x_impact": 950.0468065945449, "max_mach_number": 1.0092033769163058, "out_of_rail_time": 0.32791496467871467, "apogee_y": 470.6496408456338, "out_of_rail_velocity": 28.69577918847811, "apogee_x": 249.92273755854512, "initial_stability_margin": 2.6111862248068634, "t_final": 351.2209701265785, "apogee_time": 28.170449310244766, "frontal_surface_wind": 0.9112709466849692, "y_impact": 107.32487983153963} -{"apogee": 2802.626892638656, "out_of_rail_stability_margin": 2.6490599472837237, "lateral_surface_wind": -2.073356202479875, "impact_velocity": -5.497842749659103, "x_impact": 709.963811330709, "max_mach_number": 0.706803136065073, "out_of_rail_time": 0.3835281430171383, "apogee_y": 346.60117218956, "out_of_rail_velocity": 23.610079185965585, "apogee_x": 212.27763807530692, "initial_stability_margin": 2.571988432397691, "t_final": 266.0945871941377, "apogee_time": 23.765870037353153, "frontal_surface_wind": 1.3745670625521467, "y_impact": 210.33545508745985} -{"apogee": 2828.506078539351, "out_of_rail_stability_margin": 2.552876850650316, "lateral_surface_wind": -2.0646654869299446, "impact_velocity": -5.477986472016406, "x_impact": 592.5374052889672, "max_mach_number": 0.7147556279708587, "out_of_rail_time": 0.3820250120491868, "apogee_y": 355.52592425791414, "out_of_rail_velocity": 23.734179531426484, "apogee_x": 205.3756189280564, "initial_stability_margin": 2.4752739914780015, "t_final": 267.5118982331506, "apogee_time": 23.834008634797037, "frontal_surface_wind": 0.4048050028410871, "y_impact": 55.06893669468584} -{"apogee": 4333.345920483403, "out_of_rail_stability_margin": 2.6798882198094898, "lateral_surface_wind": -1.2100178996899746, "impact_velocity": -5.300247965040543, "x_impact": 733.4016443985031, "max_mach_number": 1.04243096458089, "out_of_rail_time": 0.32335942493761843, "apogee_y": 355.0454475055449, "out_of_rail_velocity": 29.198437012868304, "apogee_x": 273.5727592720117, "initial_stability_margin": 2.612587410886851, "t_final": 361.12957981293266, "apogee_time": 28.264259023333754, "frontal_surface_wind": 0.47209604197236144, "y_impact": 372.6697227912691} -{"apogee": 3792.7506674963365, "out_of_rail_stability_margin": 2.5584051292327343, "lateral_surface_wind": -1.3173627038960425, "impact_velocity": -5.410629289755902, "x_impact": 1034.3169066780272, "max_mach_number": 0.9039392717722888, "out_of_rail_time": 0.34510979673133857, "apogee_y": 465.56186882443495, "out_of_rail_velocity": 26.8879811658017, "apogee_x": 468.3636990597036, "initial_stability_margin": 2.488517991157564, "t_final": 333.8749040864471, "apogee_time": 26.91052217036792, "frontal_surface_wind": 0.6991213757819823, "y_impact": 355.82519441924074} -{"apogee": 2583.13707566595, "out_of_rail_stability_margin": 2.7080472902868737, "lateral_surface_wind": -0.694196742169304, "impact_velocity": -5.433401669842729, "x_impact": 695.2631817026248, "max_mach_number": 0.671481267478601, "out_of_rail_time": 0.39268166741473975, "apogee_y": 352.46424826148086, "out_of_rail_velocity": 22.95154906822439, "apogee_x": 390.361224814743, "initial_stability_margin": 2.627050673742346, "t_final": 251.08010077961288, "apogee_time": 22.915779343587356, "frontal_surface_wind": 0.876161922346756, "y_impact": 449.1431867397622} -{"apogee": 4201.816699453897, "out_of_rail_stability_margin": 2.7955149055682034, "lateral_surface_wind": -1.3136591058583287, "impact_velocity": -5.56023444933577, "x_impact": 839.5583681749447, "max_mach_number": 0.9664210916648327, "out_of_rail_time": 0.33426946102885735, "apogee_y": 355.22296506092385, "out_of_rail_velocity": 27.97038641400336, "apogee_x": 297.1213539596261, "initial_stability_margin": 2.7329397884789266, "t_final": 329.1082004336769, "apogee_time": 28.231795492710045, "frontal_surface_wind": 0.706055908046297, "y_impact": 231.12314518813955} -{"apogee": 3421.0858235524424, "out_of_rail_stability_margin": 2.6622064280977003, "lateral_surface_wind": -2.5232176516615548, "impact_velocity": -5.343976942030808, "x_impact": 868.6180192860653, "max_mach_number": 0.8322125593886693, "out_of_rail_time": 0.357706901638519, "apogee_y": 413.24831068719953, "out_of_rail_velocity": 25.714782063434615, "apogee_x": 202.24813348098377, "initial_stability_margin": 2.590539355216596, "t_final": 312.21180463578094, "apogee_time": 25.768061555863298, "frontal_surface_wind": 1.2258475595081955, "y_impact": 103.03903413274948} -{"apogee": 2921.882101081461, "out_of_rail_stability_margin": 2.653458806905994, "lateral_surface_wind": -2.1382870240154563, "impact_velocity": -5.282420937158165, "x_impact": 730.4802407575647, "max_mach_number": 0.7395005061571082, "out_of_rail_time": 0.3772936283058403, "apogee_y": 449.3590213819074, "out_of_rail_velocity": 24.173077277091963, "apogee_x": 290.0009484733682, "initial_stability_margin": 2.5755461621953524, "t_final": 286.9685716243937, "apogee_time": 24.09599777466489, "frontal_surface_wind": 0.7883000358053365, "y_impact": 173.8873014882682} -{"apogee": 2767.806226664744, "out_of_rail_stability_margin": 2.657343830378815, "lateral_surface_wind": -2.112822739402934, "impact_velocity": -5.54774311904049, "x_impact": 711.2496206165014, "max_mach_number": 0.6993816552720871, "out_of_rail_time": 0.38549225542868937, "apogee_y": 387.4524842402292, "out_of_rail_velocity": 23.477165741539867, "apogee_x": 262.60398061650926, "initial_stability_margin": 2.581035473056345, "t_final": 263.6259099405506, "apogee_time": 23.673076465971207, "frontal_surface_wind": 0.8686012805335045, "y_impact": 252.36593421315146} -{"apogee": 4304.728940154721, "out_of_rail_stability_margin": 2.648273239071765, "lateral_surface_wind": -2.6232573438818725, "impact_velocity": -5.449759519530391, "x_impact": 1333.229619531942, "max_mach_number": 1.0214451465920742, "out_of_rail_time": 0.3259774379902666, "apogee_y": 657.2713013817164, "out_of_rail_velocity": 28.887697871861278, "apogee_x": 442.272979954932, "initial_stability_margin": 2.5837014201758444, "t_final": 350.72738282375514, "apogee_time": 28.307964913285883, "frontal_surface_wind": 0.8920448840803266, "y_impact": 376.7973152447873} -{"apogee": 3544.9174387028347, "out_of_rail_stability_margin": 2.613623197751054, "lateral_surface_wind": -1.9526060268732683, "impact_velocity": -5.432635731825116, "x_impact": 1082.8303605351555, "max_mach_number": 0.8589172567443658, "out_of_rail_time": 0.3538127032673245, "apogee_y": 473.9507425649251, "out_of_rail_velocity": 26.069916750319113, "apogee_x": 374.911309614484, "initial_stability_margin": 2.5393415667550907, "t_final": 313.83446601310555, "apogee_time": 26.1605864619661, "frontal_surface_wind": 0.8329961168145977, "y_impact": 252.0832366507979} -{"apogee": 4890.622537698279, "out_of_rail_stability_margin": 2.5925056363047476, "lateral_surface_wind": -3.057636986315307, "impact_velocity": -5.541197665171192, "x_impact": 1349.1211021805707, "max_mach_number": 1.179867170636958, "out_of_rail_time": 0.30527999859537863, "apogee_y": 750.5206643681954, "out_of_rail_velocity": 31.45626301051621, "apogee_x": 443.625942301498, "initial_stability_margin": 2.5303719732474783, "t_final": 375.8270207040898, "apogee_time": 29.685797848175582, "frontal_surface_wind": 0.5021526173717272, "y_impact": 180.4413557513263} -{"apogee": 4029.3391395041017, "out_of_rail_stability_margin": 2.662295845403526, "lateral_surface_wind": -1.1772498978259027, "impact_velocity": -5.45982190001469, "x_impact": 949.1113394426294, "max_mach_number": 0.9517173338852636, "out_of_rail_time": 0.3379137467528446, "apogee_y": 480.9307439665134, "out_of_rail_velocity": 27.598909610067555, "apogee_x": 514.1988012065068, "initial_stability_margin": 2.593620809448727, "t_final": 326.67993092767733, "apogee_time": 27.63854785388406, "frontal_surface_wind": 0.5487264058572434, "y_impact": 514.0674915023321} -{"apogee": 3629.1162874257316, "out_of_rail_stability_margin": 2.670440579739362, "lateral_surface_wind": -1.838276928806545, "impact_velocity": -5.400928413268438, "x_impact": 1091.734091051842, "max_mach_number": 0.8770386162700257, "out_of_rail_time": 0.3495848005131098, "apogee_y": 528.5678690299168, "out_of_rail_velocity": 26.46835680512374, "apogee_x": 467.86828111437336, "initial_stability_margin": 2.600741611265771, "t_final": 308.03861587633014, "apogee_time": 26.39276510056047, "frontal_surface_wind": 0.9459164004316767, "y_impact": 464.2174414303689} -{"apogee": 3073.3041400605525, "out_of_rail_stability_margin": 2.7105290398551083, "lateral_surface_wind": -3.041028827930265, "impact_velocity": -5.379184463951601, "x_impact": 1034.1278954319885, "max_mach_number": 0.7733458655264904, "out_of_rail_time": 0.3702233519108638, "apogee_y": 644.9963701841638, "out_of_rail_velocity": 24.65472389477533, "apogee_x": 408.09272165067387, "initial_stability_margin": 2.633149689873733, "t_final": 287.7535534148067, "apogee_time": 24.625568744326934, "frontal_surface_wind": 0.5945122865960846, "y_impact": 249.62380280226435} -{"apogee": 4010.3630872440394, "out_of_rail_stability_margin": 2.7666839147834317, "lateral_surface_wind": -1.819332938178047, "impact_velocity": -5.504391873860962, "x_impact": 1285.7947976662322, "max_mach_number": 0.9437231394559954, "out_of_rail_time": 0.3388581733439083, "apogee_y": 584.0968016320189, "out_of_rail_velocity": 27.500901114082776, "apogee_x": 551.5999428589582, "initial_stability_margin": 2.699233214087992, "t_final": 321.2878467046565, "apogee_time": 27.607699149044436, "frontal_surface_wind": 1.369478113729407, "y_impact": 424.8156952481302} -{"apogee": 3074.319267380874, "out_of_rail_stability_margin": 2.7603713182908844, "lateral_surface_wind": -2.0091162310598705, "impact_velocity": -5.480084088767719, "x_impact": 644.1308160332729, "max_mach_number": 0.7589929383369515, "out_of_rail_time": 0.3731969528876204, "apogee_y": 333.6209799163875, "out_of_rail_velocity": 24.48030578029379, "apogee_x": 141.29489385066822, "initial_stability_margin": 2.685360006820363, "t_final": 271.1686134980979, "apogee_time": 24.718995347455017, "frontal_surface_wind": 0.685568958531372, "y_impact": 158.32816031917966} -{"apogee": 1899.574231780775, "out_of_rail_stability_margin": 2.7179706227817673, "lateral_surface_wind": -2.0016657755402454, "impact_velocity": -5.521599916419188, "x_impact": 494.2355984088603, "max_mach_number": 0.5350056983226011, "out_of_rail_time": 0.4333866984519238, "apogee_y": 252.43951311185373, "out_of_rail_velocity": 20.45966588927, "apogee_x": 144.1092873870576, "initial_stability_margin": 2.6271002775180343, "t_final": 216.598750374306, "apogee_time": 20.050012551205082, "frontal_surface_wind": 1.1355925978187846, "y_impact": 98.76001104942353} -{"apogee": 2953.925650132159, "out_of_rail_stability_margin": 2.7192523133270283, "lateral_surface_wind": -3.032633204452882, "impact_velocity": -5.4057338936879935, "x_impact": 821.9183071371556, "max_mach_number": 0.7435545882881311, "out_of_rail_time": 0.37527018326549816, "apogee_y": 494.2457508627383, "out_of_rail_velocity": 24.294842061998022, "apogee_x": 244.7252868623307, "initial_stability_margin": 2.649300989111447, "t_final": 279.8471461652462, "apogee_time": 24.257301263408404, "frontal_surface_wind": 0.6359536449038352, "y_impact": 98.60135226883473} -{"apogee": 3415.3586596141176, "out_of_rail_stability_margin": 2.7588033949208968, "lateral_surface_wind": -2.5654905393617513, "impact_velocity": -5.347347307579207, "x_impact": 814.2987173434686, "max_mach_number": 0.8317580854261214, "out_of_rail_time": 0.3582035341971817, "apogee_y": 425.3920625506093, "out_of_rail_velocity": 25.69976524332572, "apogee_x": 183.4333824761396, "initial_stability_margin": 2.686150393840845, "t_final": 296.3606578526134, "apogee_time": 25.745311106130394, "frontal_surface_wind": 1.1347192821372158, "y_impact": 138.32512047588054} -{"apogee": 2458.2341142538307, "out_of_rail_stability_margin": 2.703126200672568, "lateral_surface_wind": -1.1709833100030322, "impact_velocity": -5.550089434384142, "x_impact": 604.972023751365, "max_mach_number": 0.6449739981652356, "out_of_rail_time": 0.39889761037993243, "apogee_y": 376.1929698390225, "out_of_rail_velocity": 22.570918909799364, "apogee_x": 330.61511155529746, "initial_stability_margin": 2.625450224624395, "t_final": 246.19460151941513, "apogee_time": 22.453857680320507, "frontal_surface_wind": 0.37882186613744606, "y_impact": 366.54534145514594} -{"apogee": 3667.5691873683736, "out_of_rail_stability_margin": 2.791159463406018, "lateral_surface_wind": -1.9888729397963876, "impact_velocity": -5.392306836261575, "x_impact": 978.0093561845196, "max_mach_number": 0.8806515579671704, "out_of_rail_time": 0.34852102563369897, "apogee_y": 477.62541335918326, "out_of_rail_velocity": 26.559240217725936, "apogee_x": 326.1017846409673, "initial_stability_margin": 2.724952093885288, "t_final": 317.65774857740746, "apogee_time": 26.53721318556517, "frontal_surface_wind": 0.6691794397692695, "y_impact": 363.8507854410912} -{"apogee": 3366.5319864526246, "out_of_rail_stability_margin": 2.600097403122591, "lateral_surface_wind": -2.529958536206631, "impact_velocity": -5.323372032046901, "x_impact": 1184.1026720748027, "max_mach_number": 0.832036336861752, "out_of_rail_time": 0.3586255544878971, "apogee_y": 626.248761867123, "out_of_rail_velocity": 25.660327838964328, "apogee_x": 498.95168563408544, "initial_stability_margin": 2.5245529079525384, "t_final": 300.4499402118704, "apogee_time": 25.54236502722519, "frontal_surface_wind": 1.21187431769299, "y_impact": 357.0596010219091} -{"apogee": 3053.970198954957, "out_of_rail_stability_margin": 2.6828683828167073, "lateral_surface_wind": -1.8335785252673984, "impact_velocity": -5.357929816199519, "x_impact": 846.4706701378066, "max_mach_number": 0.7602842480344517, "out_of_rail_time": 0.3722159917517896, "apogee_y": 417.82150415847434, "out_of_rail_velocity": 24.531332482851905, "apogee_x": 337.0007069808114, "initial_stability_margin": 2.6087148602844317, "t_final": 285.39599191398037, "apogee_time": 24.602665880771706, "frontal_surface_wind": 0.9549919870167894, "y_impact": 343.62895932523486} -{"apogee": 2520.260407480161, "out_of_rail_stability_margin": 2.701942653818591, "lateral_surface_wind": -2.108512825499086, "impact_velocity": -5.375272036482846, "x_impact": 851.8984579193042, "max_mach_number": 0.6632441995733811, "out_of_rail_time": 0.3944673603836903, "apogee_y": 447.4933910983615, "out_of_rail_velocity": 22.818288207474254, "apogee_x": 367.3165771534423, "initial_stability_margin": 2.6207076769507585, "t_final": 255.87502883887922, "apogee_time": 22.63244056874623, "frontal_surface_wind": 1.0858287024564457, "y_impact": 282.7538262461393} -{"apogee": 3465.0911278892127, "out_of_rail_stability_margin": 2.7470889362828554, "lateral_surface_wind": -2.6634452332402256, "impact_velocity": -5.517935089630679, "x_impact": 920.1811653030076, "max_mach_number": 0.8385805161493483, "out_of_rail_time": 0.35690598581549426, "apogee_y": 576.6201714892355, "out_of_rail_velocity": 25.775996377029205, "apogee_x": 431.6454524566273, "initial_stability_margin": 2.675880988068838, "t_final": 298.18354184676065, "apogee_time": 25.97862133380081, "frontal_surface_wind": 0.3848796554678813, "y_impact": 187.46720892505692} -{"apogee": 3211.2462725113, "out_of_rail_stability_margin": 2.7520135319593666, "lateral_surface_wind": -1.3637802247167976, "impact_velocity": -5.418552734952326, "x_impact": 776.684922383888, "max_mach_number": 0.7877628196168154, "out_of_rail_time": 0.36637654698263866, "apogee_y": 425.92327594756864, "out_of_rail_velocity": 24.984344131087944, "apogee_x": 346.2169956363475, "initial_stability_margin": 2.67766360873496, "t_final": 286.6922011888287, "apogee_time": 25.138881526860168, "frontal_surface_wind": 0.6035881794427269, "y_impact": 355.0948666424778} -{"apogee": 3534.729664674606, "out_of_rail_stability_margin": 2.761419872232697, "lateral_surface_wind": -1.8528090212517387, "impact_velocity": -5.449823031483754, "x_impact": 990.5364105145553, "max_mach_number": 0.8549983890164498, "out_of_rail_time": 0.35353881547456195, "apogee_y": 440.1960031638276, "out_of_rail_velocity": 26.081714367521386, "apogee_x": 346.06848208667776, "initial_stability_margin": 2.691673951389007, "t_final": 310.535482467738, "apogee_time": 26.14092225090222, "frontal_surface_wind": 1.4778414592746647, "y_impact": 300.99177272065396} -{"apogee": 3220.5053932586497, "out_of_rail_stability_margin": 2.7074120131547956, "lateral_surface_wind": -1.2065004481651882, "impact_velocity": -5.466579189376504, "x_impact": 573.7855107786492, "max_mach_number": 0.7876541266116919, "out_of_rail_time": 0.3659045780831624, "apogee_y": 349.5161772992669, "out_of_rail_velocity": 25.003196648625305, "apogee_x": 290.43667343190674, "initial_stability_margin": 2.6376875749637265, "t_final": 291.3721849041147, "apogee_time": 25.204012574927955, "frontal_surface_wind": 0.48101419832818515, "y_impact": 344.29251981208057} -{"apogee": 2600.584393091702, "out_of_rail_stability_margin": 2.6909710330278647, "lateral_surface_wind": -2.064022974916969, "impact_velocity": -5.53756130070785, "x_impact": 592.7974210229935, "max_mach_number": 0.6679764515477712, "out_of_rail_time": 0.3946881610332154, "apogee_y": 384.5806013936265, "out_of_rail_velocity": 22.928161514343774, "apogee_x": 248.88556066144585, "initial_stability_margin": 2.610411324662353, "t_final": 249.28609651128284, "apogee_time": 23.049187213308205, "frontal_surface_wind": 0.40806840389785315, "y_impact": 115.52638431398317} -{"apogee": 4244.414882677423, "out_of_rail_stability_margin": 2.7982608245125653, "lateral_surface_wind": -0.3996685281024014, "impact_velocity": -5.435748362227257, "x_impact": 1060.9066369807842, "max_mach_number": 1.0082969193845295, "out_of_rail_time": 0.3273833037155576, "apogee_y": 534.2105318210521, "out_of_rail_velocity": 28.696482660856176, "apogee_x": 670.9290915760938, "initial_stability_margin": 2.7369782354864727, "t_final": 330.48862228278983, "apogee_time": 28.15494875563339, "frontal_surface_wind": 0.23571170152089607, "y_impact": 861.0761400255273} -{"apogee": 2765.18919769062, "out_of_rail_stability_margin": 2.714437665424004, "lateral_surface_wind": -1.9572705110101258, "impact_velocity": -5.41809056287953, "x_impact": 981.9476305985921, "max_mach_number": 0.7119815243879597, "out_of_rail_time": 0.3826896006152952, "apogee_y": 523.8466264627876, "out_of_rail_velocity": 23.750652815642624, "apogee_x": 471.6095199183589, "initial_stability_margin": 2.640896605449084, "t_final": 265.71695844313064, "apogee_time": 23.559758163131093, "frontal_surface_wind": 0.8219762609346878, "y_impact": 388.6375002466277} -{"apogee": 4005.6216079402675, "out_of_rail_stability_margin": 2.6604344115027327, "lateral_surface_wind": -3.0952276151716833, "impact_velocity": -5.536269887899569, "x_impact": 957.4567539808146, "max_mach_number": 0.9373788710186537, "out_of_rail_time": 0.34032342138807015, "apogee_y": 555.212940169742, "out_of_rail_velocity": 27.40485815320194, "apogee_x": 220.690743935636, "initial_stability_margin": 2.5922421156405804, "t_final": 329.7895610732409, "apogee_time": 27.630842235730842, "frontal_surface_wind": 0.9462328231386596, "y_impact": 261.18901582111016} -{"apogee": 3911.3258425053914, "out_of_rail_stability_margin": 2.6216978729247056, "lateral_surface_wind": -1.1511859950340086, "impact_velocity": -5.420828351834063, "x_impact": 1118.778510343653, "max_mach_number": 0.9310713093770451, "out_of_rail_time": 0.34176164156342637, "apogee_y": 480.62988659605077, "out_of_rail_velocity": 27.260560403143916, "apogee_x": 466.64970877039457, "initial_stability_margin": 2.550497905905279, "t_final": 330.4511949592902, "apogee_time": 27.239244807693172, "frontal_surface_wind": 1.2037245610812286, "y_impact": 650.1916366533721} -{"apogee": 4209.296754123735, "out_of_rail_stability_margin": 2.7166746230508365, "lateral_surface_wind": -2.092541728068311, "impact_velocity": -5.443855634625353, "x_impact": 1082.3243105923455, "max_mach_number": 0.9940867454664478, "out_of_rail_time": 0.33023375928353405, "apogee_y": 503.5184343798311, "out_of_rail_velocity": 28.41026461215038, "apogee_x": 389.1494139609639, "initial_stability_margin": 2.6520229773452155, "t_final": 351.0245176153184, "apogee_time": 28.081383352726693, "frontal_surface_wind": 0.9163826869684126, "y_impact": 365.28093194206014} -{"apogee": 3868.3173837786135, "out_of_rail_stability_margin": 2.728356248309309, "lateral_surface_wind": -1.3226244461405257, "impact_velocity": -5.43796774897156, "x_impact": 937.6939409102963, "max_mach_number": 0.9187064978210595, "out_of_rail_time": 0.3423147678051324, "apogee_y": 495.49837526470077, "out_of_rail_velocity": 27.16549139268801, "apogee_x": 452.18387657704415, "initial_stability_margin": 2.6641450439049676, "t_final": 334.33147825585036, "apogee_time": 27.169768985158314, "frontal_surface_wind": 0.5137352806460511, "y_impact": 149.5407030806018} -{"apogee": 3416.8028633325557, "out_of_rail_stability_margin": 2.548701746251886, "lateral_surface_wind": -2.5743152453687577, "impact_velocity": -5.313896088765532, "x_impact": 1064.323040445133, "max_mach_number": 0.8357054964694817, "out_of_rail_time": 0.3576185012704158, "apogee_y": 577.5688767817937, "out_of_rail_velocity": 25.743483148734907, "apogee_x": 382.4732017105565, "initial_stability_margin": 2.4751639102999947, "t_final": 305.4609227969883, "apogee_time": 25.746437772250303, "frontal_surface_wind": 1.1145539799716482, "y_impact": 299.291491934451} -{"apogee": 3286.0026447200157, "out_of_rail_stability_margin": 2.6355562889885893, "lateral_surface_wind": -1.9004167886919792, "impact_velocity": -5.600167829758633, "x_impact": 745.6484739212075, "max_mach_number": 0.7941442398858114, "out_of_rail_time": 0.36522652712997966, "apogee_y": 401.48577759702306, "out_of_rail_velocity": 25.05858073022822, "apogee_x": 235.52971352650968, "initial_stability_margin": 2.5624071923595184, "t_final": 282.4567540383362, "apogee_time": 25.46886161249185, "frontal_surface_wind": 0.8139016727134237, "y_impact": 332.0158297179396} -{"apogee": 3210.7823586902173, "out_of_rail_stability_margin": 2.5153562916168517, "lateral_surface_wind": -3.0073188061578024, "impact_velocity": -5.295459857840073, "x_impact": 887.0225530109651, "max_mach_number": 0.800420234722546, "out_of_rail_time": 0.36585367624282955, "apogee_y": 488.64221523504017, "out_of_rail_velocity": 25.018088035865496, "apogee_x": 255.346569481558, "initial_stability_margin": 2.4332546613428456, "t_final": 297.6436151640576, "apogee_time": 25.045393293185132, "frontal_surface_wind": 0.746548584719197, "y_impact": 46.507155603276246} -{"apogee": 3402.503067255444, "out_of_rail_stability_margin": 2.6399378636859607, "lateral_surface_wind": -1.9208938791046413, "impact_velocity": -5.364671302563372, "x_impact": 859.8336737022645, "max_mach_number": 0.8288637005835416, "out_of_rail_time": 0.35792896057531465, "apogee_y": 402.2724859526648, "out_of_rail_velocity": 25.676091944769052, "apogee_x": 239.53783693847436, "initial_stability_margin": 2.5692821611528323, "t_final": 303.25840958769055, "apogee_time": 25.704458203681163, "frontal_surface_wind": 1.222951082072273, "y_impact": 240.80101904266263} -{"apogee": 3619.0635920518544, "out_of_rail_stability_margin": 2.7803684559121455, "lateral_surface_wind": -1.161447977507446, "impact_velocity": -5.503188272931705, "x_impact": 905.6519148595945, "max_mach_number": 0.8639001805338673, "out_of_rail_time": 0.35111651557822676, "apogee_y": 466.73230499882095, "out_of_rail_velocity": 26.294699651618338, "apogee_x": 436.22306908262254, "initial_stability_margin": 2.7149992477238913, "t_final": 310.79834072289987, "apogee_time": 26.465002475084834, "frontal_surface_wind": 0.4071197785828853, "y_impact": 487.6877811247642} -{"apogee": 3666.3407530189834, "out_of_rail_stability_margin": 2.6246088671196492, "lateral_surface_wind": -1.8956864860507598, "impact_velocity": -5.425926845243272, "x_impact": 1038.2266916041697, "max_mach_number": 0.8809799593120672, "out_of_rail_time": 0.3491623565082528, "apogee_y": 559.5740751804573, "out_of_rail_velocity": 26.49977793973791, "apogee_x": 426.3847738960512, "initial_stability_margin": 2.553990345509004, "t_final": 303.44856424776486, "apogee_time": 26.538328665521522, "frontal_surface_wind": 0.82485916991482, "y_impact": 505.494080390255} -{"apogee": 2960.5773321473844, "out_of_rail_stability_margin": 2.6660420403781067, "lateral_surface_wind": -0.39098002713438373, "impact_velocity": -5.489430603517767, "x_impact": 727.9514284009722, "max_mach_number": 0.7417786278447775, "out_of_rail_time": 0.37731980985950003, "apogee_y": 339.4120776126007, "out_of_rail_velocity": 24.16366650553355, "apogee_x": 449.11264740669696, "initial_stability_margin": 2.5886137144589747, "t_final": 277.56220415432404, "apogee_time": 24.311616497484213, "frontal_surface_wind": 0.24985907422267578, "y_impact": 547.8547150868859} -{"apogee": 3127.2561552005427, "out_of_rail_stability_margin": 2.7521451021301315, "lateral_surface_wind": -2.018039674671432, "impact_velocity": -5.454120449442662, "x_impact": 694.1257878290552, "max_mach_number": 0.7711947515303755, "out_of_rail_time": 0.37049850979372995, "apogee_y": 360.8162459823918, "out_of_rail_velocity": 24.64933646641013, "apogee_x": 148.77255999602366, "initial_stability_margin": 2.67605226785939, "t_final": 287.07873267187114, "apogee_time": 24.881124314431304, "frontal_surface_wind": 1.2427519943395455, "y_impact": 229.5214138179944} -{"apogee": 2508.3336405387145, "out_of_rail_stability_margin": 2.6414380243128686, "lateral_surface_wind": -1.3559700281097984, "impact_velocity": -5.339826640664327, "x_impact": 641.3499428543084, "max_mach_number": 0.658793184498457, "out_of_rail_time": 0.3954362457333868, "apogee_y": 383.2819067360244, "out_of_rail_velocity": 22.790896468087357, "apogee_x": 357.81838790179626, "initial_stability_margin": 2.5605924371460036, "t_final": 256.2197249901854, "apogee_time": 22.588046639028633, "frontal_surface_wind": 0.6370677629832353, "y_impact": 303.9151392760956} -{"apogee": 4090.508470150774, "out_of_rail_stability_margin": 2.704442851880287, "lateral_surface_wind": -2.0652318602209094, "impact_velocity": -5.426934766024563, "x_impact": 1074.0475712625082, "max_mach_number": 0.9684039619225443, "out_of_rail_time": 0.3347597109118059, "apogee_y": 487.83677890417897, "out_of_rail_velocity": 27.932580677024518, "apogee_x": 305.4785955684401, "initial_stability_margin": 2.6371628199074038, "t_final": 334.2469308384642, "apogee_time": 27.747702033486462, "frontal_surface_wind": 1.0154081882269956, "y_impact": 322.2583606539736} -{"apogee": 3959.505563251044, "out_of_rail_stability_margin": 2.6272026702317124, "lateral_surface_wind": -1.1573102893878733, "impact_velocity": -5.480934794109653, "x_impact": 1325.948240965487, "max_mach_number": 0.9398940208557119, "out_of_rail_time": 0.33928564504991976, "apogee_y": 613.5950058380537, "out_of_rail_velocity": 27.44148644555112, "apogee_x": 635.5330167112561, "initial_stability_margin": 2.5584800628997932, "t_final": 338.0764304377342, "apogee_time": 27.412012569422572, "frontal_surface_wind": 1.1978375967507424, "y_impact": 801.848707666412} -{"apogee": 2996.3246351142675, "out_of_rail_stability_margin": 2.6391922285179907, "lateral_surface_wind": -1.5126013988705216, "impact_velocity": -5.524070196451983, "x_impact": 903.0058130023765, "max_mach_number": 0.7445724660112696, "out_of_rail_time": 0.37627730165386075, "apogee_y": 399.3967238029707, "out_of_rail_velocity": 24.286600035540374, "apogee_x": 336.6535728853785, "initial_stability_margin": 2.5636805240646763, "t_final": 271.6847512387105, "apogee_time": 24.457173149870535, "frontal_surface_wind": 1.3717876656329782, "y_impact": 437.36185334230544} -{"apogee": 2907.5279775652343, "out_of_rail_stability_margin": 2.7020309955865716, "lateral_surface_wind": -1.96776070930675, "impact_velocity": -5.575373227554662, "x_impact": 967.1931038178628, "max_mach_number": 0.7325650607486544, "out_of_rail_time": 0.37745649183310803, "apogee_y": 522.6377997923423, "out_of_rail_velocity": 24.068527288881693, "apogee_x": 444.4612335932379, "initial_stability_margin": 2.629494712017553, "t_final": 263.2028687613468, "apogee_time": 24.13928076258642, "frontal_surface_wind": 0.7965366392819642, "y_impact": 390.66914201271953} +{"lateral_surface_wind": 3.4352381563986514, "apogee_x": 673.5271529627216, "y_impact": 2680.784556613392, "max_mach_number": 0.9753279208174392, "impact_velocity": -5.4684460982072975, "apogee_y": 81.36171661065696, "frontal_surface_wind": 1.9037970749068487, "apogee_time": 27.754328829938135, "initial_stability_margin": 2.5955188838053798, "out_of_rail_stability_margin": 2.6623586933505528, "apogee": 4070.8666150987456, "out_of_rail_velocity": 27.845659074691607, "out_of_rail_time": 0.3357534579757257, "t_final": 328.88325123479234, "x_impact": 1332.9982275955579} +{"lateral_surface_wind": 3.690215853361773, "apogee_x": 403.7867865917502, "y_impact": 1997.235761576972, "max_mach_number": 0.8227214488170699, "impact_velocity": -5.445779813933677, "apogee_y": -121.93457164362484, "frontal_surface_wind": 2.236811702174497, "apogee_time": 25.51366957270713, "initial_stability_margin": 2.6087103963260785, "out_of_rail_stability_margin": 2.6817150544556987, "apogee": 3325.3221637674133, "out_of_rail_velocity": 25.336544546887925, "out_of_rail_time": 0.36193528380251205, "t_final": 299.18819994345563, "x_impact": 951.3332312469937} +{"lateral_surface_wind": 3.143212000951681, "apogee_x": 301.7307087558367, "y_impact": 1826.6617446867833, "max_mach_number": 0.721380390242538, "impact_velocity": -5.261909924989396, "apogee_y": -121.74906880751946, "frontal_surface_wind": 3.7903991594520248, "apogee_time": 23.558827394978167, "initial_stability_margin": 2.654710144896568, "out_of_rail_stability_margin": 2.7362555499901484, "apogee": 2770.48793708984, "out_of_rail_velocity": 23.609402002647936, "out_of_rail_time": 0.38353173949257613, "t_final": 272.39865847590335, "x_impact": 1235.263628129898} +{"lateral_surface_wind": 4.689360482030009, "apogee_x": 348.2357114298018, "y_impact": 3100.5862770341614, "max_mach_number": 0.892686954670728, "impact_velocity": -5.418101693775622, "apogee_y": -291.5240492268038, "frontal_surface_wind": 5.134976037079742, "apogee_time": 26.45717271406127, "initial_stability_margin": 2.642309633512919, "out_of_rail_stability_margin": 2.712195805769374, "apogee": 3643.412160885312, "out_of_rail_velocity": 26.439527500851348, "out_of_rail_time": 0.3496204270667777, "t_final": 308.96813824938545, "x_impact": 1371.2479754240699} +{"lateral_surface_wind": 3.7235706282272334, "apogee_x": 497.6616827081154, "y_impact": 1809.7242595169537, "max_mach_number": 0.6853338004644952, "impact_velocity": -5.454238401108432, "apogee_y": -45.485538129346516, "frontal_surface_wind": 3.153425647931175, "apogee_time": 22.986105856253758, "initial_stability_margin": 2.707363327526045, "out_of_rail_stability_margin": 2.783116392489924, "apogee": 2602.2016461834564, "out_of_rail_velocity": 23.082308248365308, "out_of_rail_time": 0.3902459209554818, "t_final": 257.0104676644512, "x_impact": 1132.4539578122203} +{"lateral_surface_wind": 2.6229371332246654, "apogee_x": 420.65457276958904, "y_impact": 2345.5893693567646, "max_mach_number": 0.8557550428109535, "impact_velocity": -5.341082579396885, "apogee_y": 8.889159859936287, "frontal_surface_wind": 3.669439701534296, "apogee_time": 25.913770183003905, "initial_stability_margin": 2.463547492564566, "out_of_rail_stability_margin": 2.539048073140648, "apogee": 3469.0281733302377, "out_of_rail_velocity": 25.828009465215985, "out_of_rail_time": 0.35707930363518114, "t_final": 307.69734241994473, "x_impact": 1659.5178238158912} +{"lateral_surface_wind": 1.7793691406941026, "apogee_x": 412.6992373970285, "y_impact": 2315.028196786336, "max_mach_number": 0.8599213248452253, "impact_velocity": -5.446574433418457, "apogee_y": 101.88990284995279, "frontal_surface_wind": 3.271081609510013, "apogee_time": 26.218166635270006, "initial_stability_margin": 2.6840926691193703, "out_of_rail_stability_margin": 2.754784658832633, "apogee": 3540.0157464069125, "out_of_rail_velocity": 25.955379259474256, "out_of_rail_time": 0.35477880691861946, "t_final": 317.2682579248075, "x_impact": 1586.1440807117576} +{"lateral_surface_wind": 3.053034427702749, "apogee_x": 385.3735361453235, "y_impact": 2049.1281873157127, "max_mach_number": 0.8177359736360765, "impact_velocity": -5.36280188928111, "apogee_y": -64.81476028770204, "frontal_surface_wind": 2.5500443586526145, "apogee_time": 25.33394728857539, "initial_stability_margin": 2.5615166419752886, "out_of_rail_stability_margin": 2.6361587861186617, "apogee": 3282.719595078805, "out_of_rail_velocity": 25.250598852933546, "out_of_rail_time": 0.36312241021224195, "t_final": 299.0785843372746, "x_impact": 1202.7984944066975} +{"lateral_surface_wind": 4.8839343235268675, "apogee_x": 358.51272488481715, "y_impact": 2782.439106586879, "max_mach_number": 0.9252996463900482, "impact_velocity": -5.291350765259613, "apogee_y": -325.2882891723661, "frontal_surface_wind": 4.068337706725039, "apogee_time": 26.77622419907484, "initial_stability_margin": 2.5763181021714403, "out_of_rail_stability_margin": 2.645750514265077, "apogee": 3774.7905206505898, "out_of_rail_velocity": 27.015998190520857, "out_of_rail_time": 0.3437518141260958, "t_final": 319.0374884461224, "x_impact": 1355.9240418087252} +{"lateral_surface_wind": 3.804397436191633, "apogee_x": 511.5538135253276, "y_impact": 2313.4012239052972, "max_mach_number": 0.8080990083137589, "impact_velocity": -5.357038256876263, "apogee_y": -29.31377816496097, "frontal_surface_wind": 2.903898394331221, "apogee_time": 25.064306969052293, "initial_stability_margin": 2.5208048978631483, "out_of_rail_stability_margin": 2.595012761555149, "apogee": 3209.9124696444555, "out_of_rail_velocity": 25.111825883429447, "out_of_rail_time": 0.364460498812807, "t_final": 295.5515985337027, "x_impact": 1054.3044416485568} +{"lateral_surface_wind": 3.0328614391114734, "apogee_x": 568.4777289061868, "y_impact": 2689.75245163555, "max_mach_number": 0.9617347352532547, "impact_velocity": -5.411808799952941, "apogee_y": 39.54231447021103, "frontal_surface_wind": 2.574004067398682, "apogee_time": 27.546620604638, "initial_stability_margin": 2.7430601496353915, "out_of_rail_stability_margin": 2.8103225269252174, "apogee": 4005.0082533644572, "out_of_rail_velocity": 27.628871097923593, "out_of_rail_time": 0.3384749437963044, "t_final": 333.71749368396866, "x_impact": 1735.7855963911566} +{"lateral_surface_wind": 3.1963242984286095, "apogee_x": 424.0377989940418, "y_impact": 2018.5850463739912, "max_mach_number": 0.7783227306795284, "impact_velocity": -5.480680375212572, "apogee_y": -36.50778044172973, "frontal_surface_wind": 3.2561772380536658, "apogee_time": 24.795286309971207, "initial_stability_margin": 2.699795913386653, "out_of_rail_stability_margin": 2.773068860950835, "apogee": 3102.7127342672475, "out_of_rail_velocity": 24.652577541145092, "out_of_rail_time": 0.37057371489051444, "t_final": 279.4818844175166, "x_impact": 1144.5004371208363} +{"lateral_surface_wind": 1.077191778903836, "apogee_x": 226.62660479394881, "y_impact": 975.6986660322793, "max_mach_number": 0.6225769577612924, "impact_velocity": -5.458887822721164, "apogee_y": 69.45690870084862, "frontal_surface_wind": 2.64214405468893, "apogee_time": 21.873566040177906, "initial_stability_margin": 2.679626161587471, "out_of_rail_stability_margin": 2.761385030407061, "apogee": 2316.0359367795154, "out_of_rail_velocity": 21.99262389488657, "out_of_rail_time": 0.40778129561481247, "t_final": 238.36736940122807, "x_impact": 783.6628839075361} +{"lateral_surface_wind": 4.346477876297891, "apogee_x": 228.61537912232154, "y_impact": 1577.6734917607896, "max_mach_number": 0.4927315136706775, "impact_velocity": -5.270555652715334, "apogee_y": -143.26882879320712, "frontal_surface_wind": 5.606246813762699, "apogee_time": 18.61512613953435, "initial_stability_margin": 2.5905552125615015, "out_of_rail_stability_margin": 2.684954903618019, "apogee": 1620.043097641226, "out_of_rail_velocity": 19.50097830990938, "out_of_rail_time": 0.4516913062565873, "t_final": 206.51952447996135, "x_impact": 633.6387974668238} +{"lateral_surface_wind": 2.0440876340915803, "apogee_x": 543.1244304962958, "y_impact": 2161.86851401327, "max_mach_number": 0.7877229042094234, "impact_velocity": -5.3022814783405705, "apogee_y": 210.5717428097469, "frontal_surface_wind": 2.9609046593093415, "apogee_time": 24.8046697813905, "initial_stability_margin": 2.5995234277545856, "out_of_rail_stability_margin": 2.6736489711302487, "apogee": 3121.9900648419907, "out_of_rail_velocity": 24.809587814601546, "out_of_rail_time": 0.36841420253798896, "t_final": 289.7901208438484, "x_impact": 1538.031107035009} +{"lateral_surface_wind": 3.724783478787054, "apogee_x": 515.2797541417447, "y_impact": 2380.2837834009233, "max_mach_number": 0.9043192334326157, "impact_velocity": -5.295676580845021, "apogee_y": -56.989982828819535, "frontal_surface_wind": 1.9211616866992087, "apogee_time": 26.595498090097877, "initial_stability_margin": 2.623310124062403, "out_of_rail_stability_margin": 2.6945990588242883, "apogee": 3697.605050413802, "out_of_rail_velocity": 26.659356949581525, "out_of_rail_time": 0.34764359171287307, "t_final": 317.7705982731791, "x_impact": 1174.5562535633792} +{"lateral_surface_wind": 3.293943392368039, "apogee_x": 287.0590517276665, "y_impact": 1939.6252779554077, "max_mach_number": 0.7956928379177346, "impact_velocity": -5.55234812069479, "apogee_y": -170.39151545700918, "frontal_surface_wind": 3.157390719283705, "apogee_time": 25.296304334621354, "initial_stability_margin": 2.732613594436838, "out_of_rail_stability_margin": 2.8054313148524774, "apogee": 3231.1767276434466, "out_of_rail_velocity": 24.887489692739372, "out_of_rail_time": 0.3671989324909629, "t_final": 283.9967831644889, "x_impact": 1022.1883305097799} +{"lateral_surface_wind": 3.064811105663594, "apogee_x": 444.5867631955397, "y_impact": 2428.252814029577, "max_mach_number": 0.9046911303649551, "impact_velocity": -5.4431449031198085, "apogee_y": -49.08908630587659, "frontal_surface_wind": 2.5358782175876216, "apogee_time": 26.778982455255715, "initial_stability_margin": 2.5850163803410626, "out_of_rail_stability_margin": 2.657108359270729, "apogee": 3737.910703364733, "out_of_rail_velocity": 26.62157850911501, "out_of_rail_time": 0.3477800223481826, "t_final": 323.6614809167092, "x_impact": 1491.2022531381792} +{"lateral_surface_wind": 4.810637374587351, "apogee_x": 720.2578114207511, "y_impact": 3136.864244463159, "max_mach_number": 0.9014782657997248, "impact_velocity": -5.426084518280461, "apogee_y": -45.60633181853528, "frontal_surface_wind": 2.827958665462187, "apogee_time": 26.659803913311343, "initial_stability_margin": 2.5740457939714574, "out_of_rail_stability_margin": 2.6481485409893115, "apogee": 3696.0599904510577, "out_of_rail_velocity": 26.49679278243331, "out_of_rail_time": 0.34902499316311697, "t_final": 311.7526077920194, "x_impact": 1527.9715059598632} +{"lateral_surface_wind": 2.6021732063828145, "apogee_x": 209.0868639328848, "y_impact": 1698.5528156948537, "max_mach_number": 0.6716263373753772, "impact_velocity": -5.286513515304463, "apogee_y": -92.77309541448115, "frontal_surface_wind": 4.302253417342667, "apogee_time": 22.685810896160984, "initial_stability_margin": 2.571456974437044, "out_of_rail_stability_margin": 2.652128200451397, "apogee": 2531.0142459802996, "out_of_rail_velocity": 22.79807949126405, "out_of_rail_time": 0.3949551145423285, "t_final": 251.8055222150705, "x_impact": 861.4167847447278} +{"lateral_surface_wind": 3.320083721956793, "apogee_x": 636.4549036197461, "y_impact": 2908.763969354525, "max_mach_number": 0.9661671912461548, "impact_velocity": -5.318364190222081, "apogee_y": 98.06514821364351, "frontal_surface_wind": 2.774282680509313, "apogee_time": 27.325188231777425, "initial_stability_margin": 2.533134617505619, "out_of_rail_stability_margin": 2.6011205748030504, "apogee": 3964.689315500927, "out_of_rail_velocity": 27.73622101718812, "out_of_rail_time": 0.33748985877282534, "t_final": 330.9252109869228, "x_impact": 1789.4591177521943} +{"lateral_surface_wind": 3.7614827618364512, "apogee_x": 657.4560789802315, "y_impact": 2886.4698666265863, "max_mach_number": 1.011400867304178, "impact_velocity": -5.382908239152257, "apogee_y": 30.322139412139318, "frontal_surface_wind": 1.848275310307736, "apogee_time": 27.900707882672748, "initial_stability_margin": 2.531248042123991, "out_of_rail_stability_margin": 2.5969519329562645, "apogee": 4165.21823882592, "out_of_rail_velocity": 28.480921264091435, "out_of_rail_time": 0.32954130591479414, "t_final": 340.4693123512487, "x_impact": 1547.2711352263775} +{"lateral_surface_wind": 3.451469165935835, "apogee_x": 603.3650799007221, "y_impact": 3084.363301088253, "max_mach_number": 0.980014637617982, "impact_velocity": -5.325890162401328, "apogee_y": 25.87733977787354, "frontal_surface_wind": 3.449120487460666, "apogee_time": 27.48847484943858, "initial_stability_margin": 2.616253406665781, "out_of_rail_stability_margin": 2.6859743028054313, "apogee": 4022.756172767729, "out_of_rail_velocity": 27.89920933249427, "out_of_rail_time": 0.33517231508106127, "t_final": 345.02801524336604, "x_impact": 1934.4250053838027} +{"lateral_surface_wind": 3.2495801694158537, "apogee_x": 311.8611368552889, "y_impact": 1758.8050550601588, "max_mach_number": 0.7310219163564162, "impact_velocity": -5.346749631422949, "apogee_y": -114.75642829936876, "frontal_surface_wind": 2.9736218765587976, "apogee_time": 23.86410230228988, "initial_stability_margin": 2.629345407634656, "out_of_rail_stability_margin": 2.7052078071100953, "apogee": 2845.572704975353, "out_of_rail_velocity": 23.874632231571283, "out_of_rail_time": 0.38041188381251206, "t_final": 276.2701424186058, "x_impact": 919.746532013587} +{"lateral_surface_wind": 3.7790073025352933, "apogee_x": 394.24078788215263, "y_impact": 2148.678018550654, "max_mach_number": 0.7885455470221404, "impact_velocity": -5.440450469187194, "apogee_y": -119.66241854277035, "frontal_surface_wind": 2.9368638961459963, "apogee_time": 24.963312533636632, "initial_stability_margin": 2.548578052410425, "out_of_rail_stability_margin": 2.6238654591684196, "apogee": 3153.2199121352514, "out_of_rail_velocity": 24.768598553055806, "out_of_rail_time": 0.36891454848791666, "t_final": 290.5509004909272, "x_impact": 899.7005077013251} +{"lateral_surface_wind": 3.4374175114889787, "apogee_x": 674.2217694762319, "y_impact": 3173.4686889593886, "max_mach_number": 1.0048128018662088, "impact_velocity": -5.375279923296024, "apogee_y": 80.27263627273297, "frontal_surface_wind": 2.33806913307105, "apogee_time": 27.9097337630225, "initial_stability_margin": 2.6396900199569915, "out_of_rail_stability_margin": 2.7043640069190027, "apogee": 4156.477938406896, "out_of_rail_velocity": 28.380458605091388, "out_of_rail_time": 0.33031793215992633, "t_final": 340.9793413941703, "x_impact": 1692.8404685610365} +{"lateral_surface_wind": 1.7263614159297047, "apogee_x": 438.3743553903118, "y_impact": 2555.8914076848405, "max_mach_number": 0.9482795166953546, "impact_velocity": -5.175442648348837, "apogee_y": 142.1767318772813, "frontal_surface_wind": 3.29936443826963, "apogee_time": 26.955676048193443, "initial_stability_margin": 2.4992968987845257, "out_of_rail_stability_margin": 2.5690572672243235, "apogee": 3860.060181477205, "out_of_rail_velocity": 27.42297884510783, "out_of_rail_time": 0.3397788488046896, "t_final": 332.27182629131676, "x_impact": 1724.3199986834904} +{"lateral_surface_wind": 1.191500395087412, "apogee_x": 537.0128629269444, "y_impact": 1699.1851135977433, "max_mach_number": 0.8185621803899926, "impact_velocity": -5.371215318176953, "apogee_y": 246.89404849390507, "frontal_surface_wind": 2.5926037380927713, "apogee_time": 25.372719840928262, "initial_stability_margin": 2.5783350260954823, "out_of_rail_stability_margin": 2.64792896831953, "apogee": 3291.689525245351, "out_of_rail_velocity": 25.368332878569067, "out_of_rail_time": 0.3616815056528857, "t_final": 298.5548597013627, "x_impact": 1490.4219699774012} +{"lateral_surface_wind": 1.7897480459559016, "apogee_x": 335.6735990789774, "y_impact": 1801.8140979436037, "max_mach_number": 0.7716107126008042, "impact_velocity": -5.504470164972867, "apogee_y": 52.2319146007707, "frontal_surface_wind": 3.2654144249889816, "apogee_time": 24.760061248461838, "initial_stability_margin": 2.6483473053007667, "out_of_rail_stability_margin": 2.725041681696143, "apogee": 3086.1603501090317, "out_of_rail_velocity": 24.496901569018757, "out_of_rail_time": 0.3730483886299955, "t_final": 280.4354876297736, "x_impact": 1247.338734585037} +{"lateral_surface_wind": 4.534327699205334, "apogee_x": 563.4578277056635, "y_impact": 2324.394629783131, "max_mach_number": 0.8157821817949886, "impact_velocity": -5.176707795435217, "apogee_y": -104.73680268680644, "frontal_surface_wind": 2.3465348978715173, "apogee_time": 24.961883981559218, "initial_stability_margin": 2.38843557032065, "out_of_rail_stability_margin": 2.467968873035487, "apogee": 3202.4711039163644, "out_of_rail_velocity": 25.16736833109597, "out_of_rail_time": 0.3642651527354418, "t_final": 296.2776452839245, "x_impact": 1100.115714909916} +{"lateral_surface_wind": 2.876128600525232, "apogee_x": 610.6881626073957, "y_impact": 3673.980378904992, "max_mach_number": 1.1136825713124963, "impact_velocity": -5.3580134565768285, "apogee_y": 112.15107014914219, "frontal_surface_wind": 4.124145261298885, "apogee_time": 28.88313633823805, "initial_stability_margin": 2.4693900320134023, "out_of_rail_stability_margin": 2.5363052434626594, "apogee": 4558.027038689741, "out_of_rail_velocity": 30.12441310501321, "out_of_rail_time": 0.31552312921382164, "t_final": 359.7769557715303, "x_impact": 2099.830090636177} +{"lateral_surface_wind": 3.292311678196636, "apogee_x": 488.5208363843262, "y_impact": 2073.3013213324302, "max_mach_number": 0.7406037676388655, "impact_velocity": -5.459116016982411, "apogee_y": 20.82187778313673, "frontal_surface_wind": 3.3532090445499496, "apogee_time": 24.066616206338463, "initial_stability_margin": 2.4805151797525316, "out_of_rail_stability_margin": 2.5552000374996386, "apogee": 2894.5478018904205, "out_of_rail_velocity": 24.028039025446084, "out_of_rail_time": 0.3781077560591893, "t_final": 276.29513515666594, "x_impact": 1268.3698416348911} +{"lateral_surface_wind": 3.6178081238112143, "apogee_x": 346.85125489796036, "y_impact": 2012.1358104508745, "max_mach_number": 0.8223538142540433, "impact_velocity": -5.348547646635903, "apogee_y": -147.99312121156467, "frontal_surface_wind": 2.3521232992071033, "apogee_time": 25.453283332635163, "initial_stability_margin": 2.606661135687776, "out_of_rail_stability_margin": 2.678239391757895, "apogee": 3314.1740109358702, "out_of_rail_velocity": 25.356315127540686, "out_of_rail_time": 0.361682015290687, "t_final": 304.8563285998057, "x_impact": 891.4253325477639} +{"lateral_surface_wind": 2.399274065455111, "apogee_x": 409.2149271122406, "y_impact": 3149.6442049820234, "max_mach_number": 0.9731073993107512, "impact_velocity": -5.320843804870858, "apogee_y": 38.01169061674401, "frontal_surface_wind": 4.58978962927415, "apogee_time": 27.570793465622295, "initial_stability_margin": 2.6215277337146827, "out_of_rail_stability_margin": 2.6883353684519946, "apogee": 4034.361329447925, "out_of_rail_velocity": 27.84557479118799, "out_of_rail_time": 0.3357561506576034, "t_final": 340.8689627601989, "x_impact": 1810.2135195245942} +{"lateral_surface_wind": 3.3874165366114255, "apogee_x": 411.19871955468267, "y_impact": 2008.7926742268376, "max_mach_number": 0.8228918643779783, "impact_velocity": -5.371946078483994, "apogee_y": -101.95347947868486, "frontal_surface_wind": 2.815600744015616, "apogee_time": 25.410727607961537, "initial_stability_margin": 2.5792620004040034, "out_of_rail_stability_margin": 2.653860216792058, "apogee": 3307.995074289651, "out_of_rail_velocity": 25.346086800824153, "out_of_rail_time": 0.3621837245834073, "t_final": 298.05230653325145, "x_impact": 1197.168102473886} +{"lateral_surface_wind": 3.3337911388026895, "apogee_x": 826.964640366654, "y_impact": 3538.4748255272857, "max_mach_number": 1.1572249696640615, "impact_velocity": -5.274008101664532, "apogee_y": 197.76624626245106, "frontal_surface_wind": 3.1152874456756967, "apogee_time": 28.91182648183232, "initial_stability_margin": 2.4995156513675836, "out_of_rail_stability_margin": 2.5636052864476038, "apogee": 4634.844313384708, "out_of_rail_velocity": 30.934870959471546, "out_of_rail_time": 0.3098056084299284, "t_final": 362.32286770937026, "x_impact": 2165.810862248889} +{"lateral_surface_wind": 4.6535601765404, "apogee_x": 587.1977590415535, "y_impact": 3149.6473846931794, "max_mach_number": 1.0623810955526394, "impact_velocity": -5.26756175879117, "apogee_y": -128.98794152768028, "frontal_surface_wind": 4.303525405289108, "apogee_time": 28.13081337394555, "initial_stability_margin": 2.478588704216161, "out_of_rail_stability_margin": 2.5436535888873983, "apogee": 4300.862170063575, "out_of_rail_velocity": 29.403562905604723, "out_of_rail_time": 0.3215391760763605, "t_final": 343.0475280833906, "x_impact": 1825.1378495871118} +{"lateral_surface_wind": 3.391572487299715, "apogee_x": 458.8382809542454, "y_impact": 1956.0578291153327, "max_mach_number": 0.7304284372680707, "impact_velocity": -5.4275136526499965, "apogee_y": -32.25412465523834, "frontal_surface_wind": 3.2527777585062836, "apogee_time": 23.955602704836004, "initial_stability_margin": 2.6490234667389156, "out_of_rail_stability_margin": 2.723737548587345, "apogee": 2855.1841204962748, "out_of_rail_velocity": 23.846916015325103, "out_of_rail_time": 0.3804927954033358, "t_final": 272.23132892226266, "x_impact": 1204.6228539745487} +{"lateral_surface_wind": 3.2860704832378476, "apogee_x": 356.8281335910374, "y_impact": 2099.3590538885705, "max_mach_number": 0.7820798732025673, "impact_velocity": -5.406765696909784, "apogee_y": -80.41936239511188, "frontal_surface_wind": 2.5463988686974544, "apogee_time": 24.793725433015744, "initial_stability_margin": 2.532376961226685, "out_of_rail_stability_margin": 2.609443780616507, "apogee": 3110.226976418585, "out_of_rail_velocity": 24.62648853548356, "out_of_rail_time": 0.37031987535175387, "t_final": 290.0592948796669, "x_impact": 866.9628200916858} +{"lateral_surface_wind": 2.6901665393909457, "apogee_x": 169.14890539634956, "y_impact": 1691.814946538379, "max_mach_number": 0.6773980767498231, "impact_velocity": -5.296068529144486, "apogee_y": -135.44899902622385, "frontal_surface_wind": 4.247786935969673, "apogee_time": 22.785762566391046, "initial_stability_margin": 2.4796619686410257, "out_of_rail_stability_margin": 2.5620111161016124, "apogee": 2557.656930017927, "out_of_rail_velocity": 22.877097427638788, "out_of_rail_time": 0.3939691584874095, "t_final": 255.26653795858618, "x_impact": 827.7317407225135} +{"lateral_surface_wind": 2.517903746050303, "apogee_x": 245.69224472592953, "y_impact": 1799.1654598629088, "max_mach_number": 0.7034519662579701, "impact_velocity": -5.322475707092687, "apogee_y": -67.57656152296599, "frontal_surface_wind": 4.5257977868861845, "apogee_time": 23.296525872603286, "initial_stability_margin": 2.540122372332938, "out_of_rail_stability_margin": 2.6192756756900484, "apogee": 2695.2325994933185, "out_of_rail_velocity": 23.374644822503317, "out_of_rail_time": 0.3870210370075857, "t_final": 262.2725793867613, "x_impact": 1102.2138675237168} +{"lateral_surface_wind": 2.665756579806064, "apogee_x": 198.15267051463763, "y_impact": 1497.315293113028, "max_mach_number": 0.5840017176692665, "impact_velocity": -5.298698103067759, "apogee_y": -80.76014043459564, "frontal_surface_wind": 4.263148099734978, "apogee_time": 20.806078260348446, "initial_stability_margin": 2.606181782542355, "out_of_rail_stability_margin": 2.691741926773294, "apogee": 2079.7650229499736, "out_of_rail_velocity": 21.25828896296637, "out_of_rail_time": 0.4193033296966766, "t_final": 235.17446837953432, "x_impact": 756.903139723779} +{"lateral_surface_wind": 3.583270325669713, "apogee_x": 406.63760895914004, "y_impact": 2327.8443440650963, "max_mach_number": 0.8439265390114404, "impact_velocity": -5.3666036547634, "apogee_y": -128.17669426174817, "frontal_surface_wind": 2.4248245473335337, "apogee_time": 25.764631760757116, "initial_stability_margin": 2.5928663484766012, "out_of_rail_stability_margin": 2.6631924707405643, "apogee": 3417.189745126115, "out_of_rail_velocity": 25.74013878227221, "out_of_rail_time": 0.357582781509937, "t_final": 313.05188553037, "x_impact": 1291.633754977749} +{"lateral_surface_wind": 3.3231893593531434, "apogee_x": 422.4035977242945, "y_impact": 1797.934893591688, "max_mach_number": 0.7289768550832556, "impact_velocity": -5.505513674740886, "apogee_y": -45.25828816119074, "frontal_surface_wind": 3.3226103540324408, "apogee_time": 23.969888993697744, "initial_stability_margin": 2.570040978398113, "out_of_rail_stability_margin": 2.6505486060153705, "apogee": 2854.4910322767046, "out_of_rail_velocity": 23.731395088299408, "out_of_rail_time": 0.38227240567556914, "t_final": 258.1210985811768, "x_impact": 1111.5442460901497} +{"lateral_surface_wind": 3.1592563899516133, "apogee_x": 481.7213151549439, "y_impact": 2905.8944039074718, "max_mach_number": 0.9788862300594763, "impact_velocity": -5.351735680026463, "apogee_y": -17.31421486319497, "frontal_surface_wind": 3.292154049994295, "apogee_time": 27.65135502532717, "initial_stability_margin": 2.6856521776825804, "out_of_rail_stability_margin": 2.7517144102850244, "apogee": 4059.4814892112745, "out_of_rail_velocity": 27.930728138775613, "out_of_rail_time": 0.33474584949085084, "t_final": 339.7294081125496, "x_impact": 1593.6984787140184} +{"lateral_surface_wind": 3.8937605663086905, "apogee_x": 452.09899391736536, "y_impact": 2582.430220512083, "max_mach_number": 0.8882611072661685, "impact_velocity": -5.458129240246306, "apogee_y": -131.79061787417498, "frontal_surface_wind": 2.78292910246746, "apogee_time": 26.61053713376978, "initial_stability_margin": 2.607449668298194, "out_of_rail_stability_margin": 2.6757246613981076, "apogee": 3670.9465406502068, "out_of_rail_velocity": 26.43252860532334, "out_of_rail_time": 0.349797663817658, "t_final": 321.14626105972104, "x_impact": 1142.1172412253825} +{"lateral_surface_wind": 3.2986132587773884, "apogee_x": 463.90684689901536, "y_impact": 3005.3882513190156, "max_mach_number": 0.9943988135688572, "impact_velocity": -5.4749026878380445, "apogee_y": -108.75856134019963, "frontal_surface_wind": 3.655961985568135, "apogee_time": 28.008865848997324, "initial_stability_margin": 2.6968414450904645, "out_of_rail_stability_margin": 2.7619632576427233, "apogee": 4161.902406120479, "out_of_rail_velocity": 28.163644086134187, "out_of_rail_time": 0.33246820408441, "t_final": 341.8892643486682, "x_impact": 2102.3279823718926} +{"lateral_surface_wind": 4.103102095110424, "apogee_x": 481.9125452580569, "y_impact": 2468.3001395868055, "max_mach_number": 0.8064268731490934, "impact_velocity": -5.3618210076055375, "apogee_y": -100.78592150878505, "frontal_surface_wind": 2.448467479317716, "apogee_time": 25.17237121962619, "initial_stability_margin": 2.5689855623378923, "out_of_rail_stability_margin": 2.645865843105697, "apogee": 3225.250925785179, "out_of_rail_velocity": 25.012521240609964, "out_of_rail_time": 0.36579428677232617, "t_final": 300.5331742415222, "x_impact": 1199.4342734620127} +{"lateral_surface_wind": 3.3306164088511774, "apogee_x": 579.3782706241308, "y_impact": 2884.6647652455263, "max_mach_number": 1.0113253135498703, "impact_velocity": -5.185369141773102, "apogee_y": 75.83046954524264, "frontal_surface_wind": 2.0814175051373915, "apogee_time": 27.494669769703492, "initial_stability_margin": 2.4295281030302167, "out_of_rail_stability_margin": 2.50000694954183, "apogee": 4078.0267110576756, "out_of_rail_velocity": 28.452233589824772, "out_of_rail_time": 0.3300645217559236, "t_final": 350.3056650029557, "x_impact": 1268.3274525855204} +{"lateral_surface_wind": 4.981138545950718, "apogee_x": 311.24118936074353, "y_impact": 2321.8649428688495, "max_mach_number": 0.7499005698162894, "impact_velocity": -5.38706532303402, "apogee_y": -306.3518020709545, "frontal_surface_wind": 5.050755592187708, "apogee_time": 24.091709935213117, "initial_stability_margin": 2.746055902270965, "out_of_rail_stability_margin": 2.8176657652158053, "apogee": 2915.1850977507115, "out_of_rail_velocity": 24.265325904477912, "out_of_rail_time": 0.37746628678950966, "t_final": 274.5372342109835, "x_impact": 1102.161478223764} +{"lateral_surface_wind": 4.117343260127688, "apogee_x": 703.9942853661728, "y_impact": 3556.697646265601, "max_mach_number": 1.073338810652523, "impact_velocity": -5.396638974286179, "apogee_y": 23.12182932023245, "frontal_surface_wind": 2.4244430862482838, "apogee_time": 28.46530363668273, "initial_stability_margin": 2.662744078017102, "out_of_rail_stability_margin": 2.727077629951238, "apogee": 4392.938762748852, "out_of_rail_velocity": 29.553325537562078, "out_of_rail_time": 0.3203168429662609, "t_final": 354.0242500145313, "x_impact": 2000.0820670398882} +{"lateral_surface_wind": 2.5327287879275877, "apogee_x": 281.0891654866362, "y_impact": 1536.4698667807368, "max_mach_number": 0.658017588340777, "impact_velocity": -5.4178871499386565, "apogee_y": -39.34623306809892, "frontal_surface_wind": 3.7322743488183963, "apogee_time": 22.514431449722288, "initial_stability_margin": 2.6691051931524283, "out_of_rail_stability_margin": 2.75131287023316, "apogee": 2478.632689993236, "out_of_rail_velocity": 22.56874128754912, "out_of_rail_time": 0.39872299321205373, "t_final": 250.40020724624665, "x_impact": 1015.791231885703} +{"lateral_surface_wind": 2.50084313541256, "apogee_x": 301.54242881488943, "y_impact": 2147.810759929662, "max_mach_number": 0.7580858444232706, "impact_velocity": -5.3256809459756616, "apogee_y": -23.869538632504124, "frontal_surface_wind": 4.241779235528549, "apogee_time": 24.34051148331902, "initial_stability_margin": 2.6022822322102406, "out_of_rail_stability_margin": 2.678465357117374, "apogee": 2981.1190511162717, "out_of_rail_velocity": 24.30459240503742, "out_of_rail_time": 0.3758281999761992, "t_final": 286.78426278836463, "x_impact": 1348.4138507396797} +{"lateral_surface_wind": 2.4566627302429476, "apogee_x": 425.6385891359867, "y_impact": 1674.4980918397075, "max_mach_number": 0.7339403987809462, "impact_velocity": -5.425818403281598, "apogee_y": 53.6346722834239, "frontal_surface_wind": 3.0221796920671267, "apogee_time": 23.973675154269483, "initial_stability_margin": 2.541822705678143, "out_of_rail_stability_margin": 2.6209586086351946, "apogee": 2868.0154288009567, "out_of_rail_velocity": 23.85875862381521, "out_of_rail_time": 0.38034978011437026, "t_final": 263.8183367765413, "x_impact": 1094.0899644169567} +{"lateral_surface_wind": 1.828883672989792, "apogee_x": 286.2671660391724, "y_impact": 2303.1896170039063, "max_mach_number": 0.9153282333038331, "impact_velocity": -5.312237591905942, "apogee_y": -1.18409702434419, "frontal_surface_wind": 3.2436574951126476, "apogee_time": 26.82532413766752, "initial_stability_margin": 2.584961882292783, "out_of_rail_stability_margin": 2.6557792143153525, "apogee": 3772.2532024188686, "out_of_rail_velocity": 26.836152641231493, "out_of_rail_time": 0.3456046000506651, "t_final": 323.7569825991623, "x_impact": 1500.2533696345963} +{"lateral_surface_wind": 3.005472492222026, "apogee_x": 524.1800656943783, "y_impact": 2923.5768223317186, "max_mach_number": 0.9170947028813832, "impact_velocity": -5.222978300455379, "apogee_y": 21.73098302579413, "frontal_surface_wind": 4.030859084804379, "apogee_time": 26.593821845694755, "initial_stability_margin": 2.5182448749664954, "out_of_rail_stability_margin": 2.5914233994150724, "apogee": 3720.5763780586212, "out_of_rail_velocity": 26.83680725376419, "out_of_rail_time": 0.3458409495027032, "t_final": 325.4183594710639, "x_impact": 1685.6054507329488} +{"lateral_surface_wind": 4.107024339024003, "apogee_x": 505.38556401672827, "y_impact": 2317.7821490295373, "max_mach_number": 0.8103443491704154, "impact_velocity": -5.399773401180638, "apogee_y": -89.83313117344352, "frontal_surface_wind": 2.441882650505641, "apogee_time": 25.313699596137585, "initial_stability_margin": 2.6905953774104683, "out_of_rail_stability_margin": 2.7633286002272883, "apogee": 3259.936877637531, "out_of_rail_velocity": 25.142562176094437, "out_of_rail_time": 0.36431805786210064, "t_final": 286.59458920375016, "x_impact": 1178.712819910413} +{"lateral_surface_wind": 3.357902114892155, "apogee_x": 741.2075506396278, "y_impact": 3268.3983509406335, "max_mach_number": 1.0419745641257439, "impact_velocity": -5.194370451134824, "apogee_y": 146.57747274986886, "frontal_surface_wind": 3.287524976276885, "apogee_time": 27.817477204268762, "initial_stability_margin": 2.4329028292607946, "out_of_rail_stability_margin": 2.5004363127296787, "apogee": 4194.888015320841, "out_of_rail_velocity": 29.16620461134761, "out_of_rail_time": 0.32584999343354754, "t_final": 347.147912107254, "x_impact": 2178.8814007748856} +{"lateral_surface_wind": 2.882578932372268, "apogee_x": 411.8486519056296, "y_impact": 1946.1006313494943, "max_mach_number": 0.7182268553401251, "impact_velocity": -5.446443052469335, "apogee_y": 1.1805286056658042, "frontal_surface_wind": 3.992198162609772, "apogee_time": 23.71700169339687, "initial_stability_margin": 2.6062975034286895, "out_of_rail_stability_margin": 2.680354670460217, "apogee": 2791.621538035003, "out_of_rail_velocity": 23.649291209385183, "out_of_rail_time": 0.38292175029661085, "t_final": 267.57816092762687, "x_impact": 1358.8215894616758} +{"lateral_surface_wind": 2.408997314912274, "apogee_x": 274.9971781845439, "y_impact": 1393.8378284154835, "max_mach_number": 0.66709702553836, "impact_velocity": -5.286619966969048, "apogee_y": -53.32809447473997, "frontal_surface_wind": 2.672448801027129, "apogee_time": 22.586632362337223, "initial_stability_margin": 2.647108483842762, "out_of_rail_stability_margin": 2.728466265670414, "apogee": 2508.379786991929, "out_of_rail_velocity": 22.72529345534747, "out_of_rail_time": 0.39595135838742845, "t_final": 257.76256699900006, "x_impact": 926.0063018526512} +{"lateral_surface_wind": 4.156557629892163, "apogee_x": 510.5811314522363, "y_impact": 3270.135379941679, "max_mach_number": 1.0096247297954588, "impact_velocity": -5.261376257170051, "apogee_y": -138.8961924500014, "frontal_surface_wind": 3.0685890793174604, "apogee_time": 27.72810156001345, "initial_stability_margin": 2.5485480838031798, "out_of_rail_stability_margin": 2.616098265003115, "apogee": 4126.679559853218, "out_of_rail_velocity": 28.434582997189445, "out_of_rail_time": 0.33007358815949195, "t_final": 350.7249945285567, "x_impact": 1804.784259174804} +{"lateral_surface_wind": 4.3832403640771425, "apogee_x": 335.423964840184, "y_impact": 2126.0220057062265, "max_mach_number": 0.7496905891679869, "impact_velocity": -5.3869328312943985, "apogee_y": -225.0371618126434, "frontal_surface_wind": 4.578554044824236, "apogee_time": 24.206455858039767, "initial_stability_margin": 2.795547270800649, "out_of_rail_stability_margin": 2.867647088581412, "apogee": 2937.999255538821, "out_of_rail_velocity": 24.206011137079937, "out_of_rail_time": 0.3766798753412357, "t_final": 278.5781757661606, "x_impact": 1012.6112648910571} +{"lateral_surface_wind": 3.7458173788306572, "apogee_x": 305.54728222919425, "y_impact": 1578.6455877476303, "max_mach_number": 0.704222055510142, "impact_velocity": -5.317935986701402, "apogee_y": -158.7896204830518, "frontal_surface_wind": 2.14239860899823, "apogee_time": 23.269217462578528, "initial_stability_margin": 2.6118535672850482, "out_of_rail_stability_margin": 2.6894161742766984, "apogee": 2689.105171006423, "out_of_rail_velocity": 23.394410699840073, "out_of_rail_time": 0.38669842866167115, "t_final": 267.76662696642, "x_impact": 635.0199597503783} +{"lateral_surface_wind": 3.4095654200580245, "apogee_x": 288.63608957066594, "y_impact": 1804.512970702509, "max_mach_number": 0.7414159867066029, "impact_velocity": -5.493530242248617, "apogee_y": -165.2778943603819, "frontal_surface_wind": 3.0321680152472563, "apogee_time": 24.084774111603345, "initial_stability_margin": 2.750818644593079, "out_of_rail_stability_margin": 2.826803995146907, "apogee": 2902.4879893319717, "out_of_rail_velocity": 24.00576506429002, "out_of_rail_time": 0.3784561294578009, "t_final": 276.76038774510346, "x_impact": 942.7436099453965} +{"lateral_surface_wind": 3.841104318637715, "apogee_x": 598.3616816111758, "y_impact": 2451.9465564313473, "max_mach_number": 0.9008502832119146, "impact_velocity": -5.399165157794171, "apogee_y": -38.01092458983806, "frontal_surface_wind": 1.6765416200108574, "apogee_time": 26.575808432715835, "initial_stability_margin": 2.5298024462062356, "out_of_rail_stability_margin": 2.6012460389028944, "apogee": 3684.7643350861053, "out_of_rail_velocity": 26.60544595206543, "out_of_rail_time": 0.3483017315697322, "t_final": 321.5207082053691, "x_impact": 1296.8850856425402} +{"lateral_surface_wind": 3.055037453327742, "apogee_x": 569.9978519044769, "y_impact": 2529.645617695715, "max_mach_number": 0.9124753758760679, "impact_velocity": -5.260943066697736, "apogee_y": 54.87566031155431, "frontal_surface_wind": 2.547644324979258, "apogee_time": 26.551214954428243, "initial_stability_margin": 2.5659318562293993, "out_of_rail_stability_margin": 2.636815271721948, "apogee": 3704.864631761447, "out_of_rail_velocity": 26.837220800690474, "out_of_rail_time": 0.3460256090826892, "t_final": 324.85944619032335, "x_impact": 1616.0690747094584} +{"lateral_surface_wind": 4.8805782557295085, "apogee_x": 601.6019329736064, "y_impact": 4049.618868324138, "max_mach_number": 1.0357349389764325, "impact_velocity": -5.362883282858806, "apogee_y": -144.72335276392317, "frontal_surface_wind": 4.953588247069815, "apogee_time": 27.989041101639963, "initial_stability_margin": 2.6191102643654753, "out_of_rail_stability_margin": 2.6817186667138615, "apogee": 4221.827309673529, "out_of_rail_velocity": 28.937119684221887, "out_of_rail_time": 0.3253529875945894, "t_final": 351.0482943484249, "x_impact": 1926.04196912951} +{"lateral_surface_wind": 4.1841656901017386, "apogee_x": 361.8837498140955, "y_impact": 2760.529236368429, "max_mach_number": 0.9047541129300652, "impact_velocity": -5.402655525393697, "apogee_y": -233.53037006824084, "frontal_surface_wind": 4.308115904686599, "apogee_time": 26.66279833960692, "initial_stability_margin": 2.613998255508118, "out_of_rail_stability_margin": 2.684848298163639, "apogee": 3711.9868066619683, "out_of_rail_velocity": 26.64050670484264, "out_of_rail_time": 0.3475991740369896, "t_final": 314.0896684893968, "x_impact": 1470.5438683246878} +{"lateral_surface_wind": 3.3860884910955242, "apogee_x": 565.9289602461141, "y_impact": 2683.2705129528704, "max_mach_number": 0.9184629043301824, "impact_velocity": -5.404803255267701, "apogee_y": 19.0500187016699, "frontal_surface_wind": 3.5133283750451145, "apogee_time": 26.942006951131052, "initial_stability_margin": 2.662440557736874, "out_of_rail_stability_margin": 2.7302906976735786, "apogee": 3796.361592176397, "out_of_rail_velocity": 26.92265937981885, "out_of_rail_time": 0.3447127677391657, "t_final": 315.0538803583529, "x_impact": 1695.344923658756} +{"lateral_surface_wind": 4.24748222121485, "apogee_x": 334.0381097966368, "y_impact": 1569.7540172644606, "max_mach_number": 0.6069160589374626, "impact_velocity": -5.311359497058255, "apogee_y": -129.71126731585025, "frontal_surface_wind": 2.9755507625097763, "apogee_time": 21.320815257662076, "initial_stability_margin": 2.6061450891181757, "out_of_rail_stability_margin": 2.6912635340174527, "apogee": 2195.4863513151845, "out_of_rail_velocity": 21.687045327703558, "out_of_rail_time": 0.4128133662629373, "t_final": 237.1119602053065, "x_impact": 474.8382993003292} +{"lateral_surface_wind": 4.391851730737694, "apogee_x": 485.68987323457594, "y_impact": 2158.8579782566717, "max_mach_number": 0.7641230790431506, "impact_velocity": -5.266791342048005, "apogee_y": -108.79779192804196, "frontal_surface_wind": 2.7580148540254568, "apogee_time": 24.2595974014487, "initial_stability_margin": 2.546931728904129, "out_of_rail_stability_margin": 2.622020711953962, "apogee": 2976.3778456068444, "out_of_rail_velocity": 24.426735492448092, "out_of_rail_time": 0.3737048779719823, "t_final": 282.4608072960785, "x_impact": 818.5105822041702} +{"lateral_surface_wind": 3.5032188997229294, "apogee_x": 723.1819990633484, "y_impact": 2807.0381426358053, "max_mach_number": 0.9390683057463519, "impact_velocity": -5.4752743488336355, "apogee_y": 77.26021832244125, "frontal_surface_wind": 2.5391056797227787, "apogee_time": 27.301109549296488, "initial_stability_margin": 2.6835330973969174, "out_of_rail_stability_margin": 2.751257825353437, "apogee": 3907.308540201185, "out_of_rail_velocity": 27.246960208067843, "out_of_rail_time": 0.3422546673261769, "t_final": 324.09749112889807, "x_impact": 1853.767801006389} +{"lateral_surface_wind": 4.793983255350961, "apogee_x": 527.8971610834718, "y_impact": 2555.972802857947, "max_mach_number": 0.8192823352508984, "impact_velocity": -5.384146262020255, "apogee_y": -146.18949369623803, "frontal_surface_wind": 2.856099912600042, "apogee_time": 25.32350588042839, "initial_stability_margin": 2.666971633318473, "out_of_rail_stability_margin": 2.7359534401762686, "apogee": 3277.0697131219736, "out_of_rail_velocity": 25.326998469924444, "out_of_rail_time": 0.36190664274360973, "t_final": 288.33489087914757, "x_impact": 1100.9369456267286} +{"lateral_surface_wind": 4.395752496820581, "apogee_x": 500.34583613847155, "y_impact": 2957.488739688041, "max_mach_number": 0.9600855123305866, "impact_velocity": -5.2580297628188015, "apogee_y": -150.82517986259344, "frontal_surface_wind": 2.596866130050847, "apogee_time": 27.176116439135445, "initial_stability_margin": 2.5586581136479127, "out_of_rail_stability_margin": 2.6251966369610606, "apogee": 3922.7710771094075, "out_of_rail_velocity": 27.640815991306116, "out_of_rail_time": 0.33808430179969634, "t_final": 337.54728516178943, "x_impact": 1347.0200741250715} +{"lateral_surface_wind": 4.382136058866077, "apogee_x": 676.7684590410067, "y_impact": 3518.9906421561923, "max_mach_number": 1.0779292243028364, "impact_velocity": -5.233269017752341, "apogee_y": -23.08855372640445, "frontal_surface_wind": 2.6197780960026593, "apogee_time": 28.21245426571759, "initial_stability_margin": 2.5706436872543947, "out_of_rail_stability_margin": 2.6384709474334023, "apogee": 4343.126407159068, "out_of_rail_velocity": 29.59174654994978, "out_of_rail_time": 0.32058082470524674, "t_final": 360.69649882673986, "x_impact": 1753.3300328420798} +{"lateral_surface_wind": 2.2331786281838406, "apogee_x": 354.6997707121263, "y_impact": 1547.099271095307, "max_mach_number": 0.6997729346874864, "impact_velocity": -5.360864299591949, "apogee_y": 27.5954542748232, "frontal_surface_wind": 2.8210217780068314, "apogee_time": 23.277851674373746, "initial_stability_margin": 2.6790974231479607, "out_of_rail_stability_margin": 2.7558764858533373, "apogee": 2684.6135495711383, "out_of_rail_velocity": 23.3400722787271, "out_of_rail_time": 0.38744182086271495, "t_final": 259.4334565348795, "x_impact": 1070.8868339712023} +{"lateral_surface_wind": 3.367281543114839, "apogee_x": 400.0379069090871, "y_impact": 1743.665026164808, "max_mach_number": 0.7079143434391794, "impact_velocity": -5.38990155188932, "apogee_y": -67.73487586433312, "frontal_surface_wind": 3.0790573615543586, "apogee_time": 23.45806994811322, "initial_stability_margin": 2.6592168192396755, "out_of_rail_stability_margin": 2.7376068928266464, "apogee": 2727.345834517149, "out_of_rail_velocity": 23.440109406112356, "out_of_rail_time": 0.38610066738359045, "t_final": 263.9552192503064, "x_impact": 999.8792640224984} +{"lateral_surface_wind": 4.869463629730057, "apogee_x": 510.68388500741827, "y_impact": 3130.9551110138564, "max_mach_number": 0.9457041918274163, "impact_velocity": -5.373239878782099, "apogee_y": -214.5817556696197, "frontal_surface_wind": 2.7254185223696448, "apogee_time": 27.19490847520661, "initial_stability_margin": 2.5145661640886305, "out_of_rail_stability_margin": 2.5850443293551217, "apogee": 3896.382315657902, "out_of_rail_velocity": 27.263738073889968, "out_of_rail_time": 0.3410841428576487, "t_final": 321.5614629753856, "x_impact": 1368.3636181673828} +{"lateral_surface_wind": 3.136634119838157, "apogee_x": 489.99273555715564, "y_impact": 2011.0309907809492, "max_mach_number": 0.7933427982016503, "impact_velocity": -5.301908778158279, "apogee_y": -7.574242991833585, "frontal_surface_wind": 2.446481523760477, "apogee_time": 24.801824122297255, "initial_stability_margin": 2.587646163093979, "out_of_rail_stability_margin": 2.6657538898666124, "apogee": 3132.236330355684, "out_of_rail_velocity": 24.82034297492074, "out_of_rail_time": 0.3681539056550735, "t_final": 292.8066727228686, "x_impact": 1263.2613332705525} +{"lateral_surface_wind": 3.567348166439082, "apogee_x": 555.7062867819941, "y_impact": 2409.9271304501904, "max_mach_number": 0.9048506292528993, "impact_velocity": -5.307616344943904, "apogee_y": 19.216314685662066, "frontal_surface_wind": 2.427971724462837, "apogee_time": 26.623023665974483, "initial_stability_margin": 2.6126222509729375, "out_of_rail_stability_margin": 2.6821684897256843, "apogee": 3704.611027490641, "out_of_rail_velocity": 26.70588256239582, "out_of_rail_time": 0.34712760277431015, "t_final": 320.5249637158541, "x_impact": 1257.9503615670649} +{"lateral_surface_wind": 2.235098669861116, "apogee_x": 440.78331172866075, "y_impact": 2669.640196769678, "max_mach_number": 0.9478173973994737, "impact_velocity": -5.424017144676834, "apogee_y": 51.95152891687927, "frontal_surface_wind": 2.8195007702341477, "apogee_time": 27.429370612146144, "initial_stability_margin": 2.513720748640086, "out_of_rail_stability_margin": 2.5829390915549033, "apogee": 3957.1403499400944, "out_of_rail_velocity": 27.347587009313663, "out_of_rail_time": 0.3402734934932416, "t_final": 330.4906356263811, "x_impact": 1847.329742953589} +{"lateral_surface_wind": 3.4872823512853106, "apogee_x": 679.5364432176953, "y_impact": 2785.1263099809817, "max_mach_number": 0.9275480561077308, "impact_velocity": -5.4148061006824255, "apogee_y": 63.77197557149773, "frontal_surface_wind": 2.56094945568834, "apogee_time": 27.08785967682538, "initial_stability_margin": 2.499868687290631, "out_of_rail_stability_margin": 2.5698917101697525, "apogee": 3841.6274236892214, "out_of_rail_velocity": 27.026126052651602, "out_of_rail_time": 0.34377063763355087, "t_final": 325.16627820494017, "x_impact": 1785.1249091349987} +{"lateral_surface_wind": 1.1219856911971664, "apogee_x": 540.7494135566033, "y_impact": 2270.9204444050833, "max_mach_number": 1.0160964173428806, "impact_velocity": -5.420859071714401, "apogee_y": 267.5586612047858, "frontal_surface_wind": 2.623435808823019, "apogee_time": 28.086941102300422, "initial_stability_margin": 2.6831320661228872, "out_of_rail_stability_margin": 2.747875124600046, "apogee": 4221.342639727712, "out_of_rail_velocity": 28.606750135295794, "out_of_rail_time": 0.3287350780279572, "t_final": 345.5776765812673, "x_impact": 1853.4401731232097} +{"lateral_surface_wind": 3.2358281010356853, "apogee_x": 370.04245984008315, "y_impact": 1939.30334962296, "max_mach_number": 0.7338238565263087, "impact_velocity": -5.394468475654431, "apogee_y": -61.237365183310835, "frontal_surface_wind": 3.4077475821118757, "apogee_time": 23.927692811611983, "initial_stability_margin": 2.6326657068493455, "out_of_rail_stability_margin": 2.705919406967075, "apogee": 2859.314058021499, "out_of_rail_velocity": 23.938181130124867, "out_of_rail_time": 0.37955050809282925, "t_final": 274.05992612040615, "x_impact": 1106.6295465177525} +{"lateral_surface_wind": 3.2257762450538214, "apogee_x": 389.07926884258626, "y_impact": 1961.2294267264667, "max_mach_number": 0.7598878429078331, "impact_velocity": -5.463330149959884, "apogee_y": -38.213795554264635, "frontal_surface_wind": 2.8833952086078787, "apogee_time": 24.467998758532797, "initial_stability_margin": 2.5608947476555466, "out_of_rail_stability_margin": 2.6359125172340616, "apogee": 3007.5248083093943, "out_of_rail_velocity": 24.312340332620327, "out_of_rail_time": 0.3747945258956137, "t_final": 277.59805888357806, "x_impact": 1027.9873042298311} +{"lateral_surface_wind": 2.51491619510928, "apogee_x": 150.09668450678072, "y_impact": 1472.8070381291773, "max_mach_number": 0.6274944711238956, "impact_velocity": -5.456216699530415, "apogee_y": -124.22961257888034, "frontal_surface_wind": 4.527458604309386, "apogee_time": 21.95372503254444, "initial_stability_margin": 2.703619301195482, "out_of_rail_stability_margin": 2.782056591463416, "apogee": 2333.681365575393, "out_of_rail_velocity": 22.086002322005132, "out_of_rail_time": 0.40566638301731756, "t_final": 242.12739771673958, "x_impact": 880.3778809683224} +{"lateral_surface_wind": 4.45719234565643, "apogee_x": 698.7164458112469, "y_impact": 2990.6159893563663, "max_mach_number": 0.9313662720129219, "impact_velocity": -5.365415085541408, "apogee_y": -38.481391150156476, "frontal_surface_wind": 2.4899377712166566, "apogee_time": 27.01722634424946, "initial_stability_margin": 2.5774441789943023, "out_of_rail_stability_margin": 2.6474009423097296, "apogee": 3832.1532071789575, "out_of_rail_velocity": 27.090492840830912, "out_of_rail_time": 0.3431739124609625, "t_final": 330.37364768776035, "x_impact": 1536.148310096144} +{"lateral_surface_wind": 3.118474385244569, "apogee_x": 724.9572957477266, "y_impact": 3241.5332992678645, "max_mach_number": 1.0069333026336487, "impact_velocity": -5.378656607135337, "apogee_y": 112.9765869451438, "frontal_surface_wind": 3.8107774770346787, "apogee_time": 27.819419397961802, "initial_stability_margin": 2.4592325699164883, "out_of_rail_stability_margin": 2.5246746932674387, "apogee": 4137.541399397002, "out_of_rail_velocity": 28.444583249456844, "out_of_rail_time": 0.33013065706785577, "t_final": 342.2506370116156, "x_impact": 2391.182442025015} +{"lateral_surface_wind": 2.891791428616467, "apogee_x": 560.2303747313689, "y_impact": 3263.6745135596775, "max_mach_number": 1.017577410306555, "impact_velocity": -5.335714984478858, "apogee_y": 61.27138133724486, "frontal_surface_wind": 3.9855300531148448, "apogee_time": 27.905664004291204, "initial_stability_margin": 2.5182074594412853, "out_of_rail_stability_margin": 2.5878959739471465, "apogee": 4176.946069492105, "out_of_rail_velocity": 28.51697905592634, "out_of_rail_time": 0.32951645451132916, "t_final": 348.5843259802393, "x_impact": 2247.6097992397413} +{"lateral_surface_wind": 4.00762798365737, "apogee_x": 555.1730973785585, "y_impact": 3288.8246792345535, "max_mach_number": 0.9884555145819991, "impact_velocity": -5.332352708616912, "apogee_y": -68.80153738320617, "frontal_surface_wind": 3.2606944372215407, "apogee_time": 27.637581464109555, "initial_stability_margin": 2.4523800341242414, "out_of_rail_stability_margin": 2.5214772258754348, "apogee": 4070.266674112451, "out_of_rail_velocity": 28.042873368272996, "out_of_rail_time": 0.33374403055521984, "t_final": 346.4038427789517, "x_impact": 1829.7681266190486} +{"lateral_surface_wind": 4.550993436270626, "apogee_x": 711.7274771926841, "y_impact": 2853.12517099446, "max_mach_number": 0.9547926108767886, "impact_velocity": -5.516057154113286, "apogee_y": -77.4877302562918, "frontal_surface_wind": 2.3140467699965166, "apogee_time": 27.48670619734073, "initial_stability_margin": 2.618702667743277, "out_of_rail_stability_margin": 2.6869481845323078, "apogee": 3974.4399866739095, "out_of_rail_velocity": 27.476754967395948, "out_of_rail_time": 0.33920959087116187, "t_final": 319.21741093205884, "x_impact": 1552.5195745262208} +{"lateral_surface_wind": 3.5440532402898475, "apogee_x": 438.76817777016703, "y_impact": 3325.550716993955, "max_mach_number": 1.0815099128106447, "impact_velocity": -5.210394792163969, "apogee_y": -107.74774605719189, "frontal_surface_wind": 3.3539168401166033, "apogee_time": 28.280708100257115, "initial_stability_margin": 2.581275420179921, "out_of_rail_stability_margin": 2.645258363201329, "apogee": 4369.89607250131, "out_of_rail_velocity": 29.732736707685692, "out_of_rail_time": 0.3185447288724258, "t_final": 372.21826752220096, "x_impact": 1948.8687433181717} +{"lateral_surface_wind": 4.798496644453496, "apogee_x": 475.7389196346581, "y_impact": 3093.0749419189383, "max_mach_number": 0.8873043807724779, "impact_velocity": -5.25223777980654, "apogee_y": -201.22346902434222, "frontal_surface_wind": 5.224586416085007, "apogee_time": 26.14050486312357, "initial_stability_margin": 2.6177532550017424, "out_of_rail_stability_margin": 2.688868278077244, "apogee": 3569.0629184574354, "out_of_rail_velocity": 26.395942046006635, "out_of_rail_time": 0.35029485681118944, "t_final": 317.25964956538127, "x_impact": 1611.885466887896} +{"lateral_surface_wind": 0.9715006262557172, "apogee_x": 447.5713081508192, "y_impact": 1997.257807030643, "max_mach_number": 0.9135772328752096, "impact_velocity": -5.3566652556211585, "apogee_y": 254.23664823434277, "frontal_surface_wind": 2.6828070872596896, "apogee_time": 26.832217975027323, "initial_stability_margin": 2.468107080378401, "out_of_rail_stability_margin": 2.5395461795243164, "apogee": 3770.43796987364, "out_of_rail_velocity": 26.812582468608596, "out_of_rail_time": 0.3459881532300668, "t_final": 326.0559358727326, "x_impact": 1577.0170806227457} +{"lateral_surface_wind": 2.2957794689108812, "apogee_x": 381.3272850956231, "y_impact": 2436.3796458500447, "max_mach_number": 0.9452759811295488, "impact_velocity": -5.332199924527603, "apogee_y": 27.103959265237588, "frontal_surface_wind": 3.146133895980106, "apogee_time": 27.15925638065519, "initial_stability_margin": 2.571929377472179, "out_of_rail_stability_margin": 2.642463559685537, "apogee": 3896.3826348935804, "out_of_rail_velocity": 27.326438778553694, "out_of_rail_time": 0.3406684953288571, "t_final": 326.64986666549913, "x_impact": 1443.6346232902938} +{"lateral_surface_wind": 3.8939933200534735, "apogee_x": 574.628066116948, "y_impact": 2888.6225920506695, "max_mach_number": 0.8690720939109038, "impact_velocity": -5.251984041395453, "apogee_y": -6.999357207945527, "frontal_surface_wind": 3.395589240720978, "apogee_time": 25.96447039185168, "initial_stability_margin": 2.6133711264662756, "out_of_rail_stability_margin": 2.6867560960242978, "apogee": 3501.3185078075135, "out_of_rail_velocity": 26.1020827933096, "out_of_rail_time": 0.3537118818000513, "t_final": 320.0063692755332, "x_impact": 1588.5365761985909} +{"lateral_surface_wind": 4.4555107945617305, "apogee_x": 409.6095655144679, "y_impact": 1736.8807402551597, "max_mach_number": 0.6802346800790487, "impact_velocity": -5.463196301363889, "apogee_y": -156.496022809787, "frontal_surface_wind": 2.653946329403186, "apogee_time": 22.877936524269774, "initial_stability_margin": 2.662853138554725, "out_of_rail_stability_margin": 2.743539009865305, "apogee": 2576.2834141302296, "out_of_rail_velocity": 22.9503094165435, "out_of_rail_time": 0.3929182405350229, "t_final": 252.02140589513033, "x_impact": 632.631941818189} +{"lateral_surface_wind": 3.9661542406564436, "apogee_x": 445.12233427541724, "y_impact": 2410.873811131766, "max_mach_number": 0.8259571776075341, "impact_velocity": -5.194202071305762, "apogee_y": -111.54956972067176, "frontal_surface_wind": 3.311016582206143, "apogee_time": 25.273408015598488, "initial_stability_margin": 2.6305070165302338, "out_of_rail_stability_margin": 2.703480734991984, "apogee": 3285.5404136996876, "out_of_rail_velocity": 25.415036551037243, "out_of_rail_time": 0.3610022753131358, "t_final": 296.4428928132526, "x_impact": 1273.4870179298405} +{"lateral_surface_wind": 4.198387621789202, "apogee_x": 555.5690667055419, "y_impact": 3433.0107848022617, "max_mach_number": 1.0687767535008519, "impact_velocity": -5.365001902330616, "apogee_y": -99.31320149976372, "frontal_surface_wind": 2.2812236140683835, "apogee_time": 28.3142962960904, "initial_stability_margin": 2.4912071523264094, "out_of_rail_stability_margin": 2.5552638836504946, "apogee": 4353.814076405242, "out_of_rail_velocity": 29.51514499856686, "out_of_rail_time": 0.3207308486404053, "t_final": 356.30079318552913, "x_impact": 1829.119680438203} +{"lateral_surface_wind": 4.315497002131842, "apogee_x": 460.88210458202497, "y_impact": 3186.552569186152, "max_mach_number": 0.9927966986085925, "impact_velocity": -5.422603768020616, "apogee_y": -190.3644493008383, "frontal_surface_wind": 4.176552501169986, "apogee_time": 27.767693389137328, "initial_stability_margin": 2.6185582237245826, "out_of_rail_stability_margin": 2.6823969784797748, "apogee": 4106.491157285439, "out_of_rail_velocity": 28.186837772452805, "out_of_rail_time": 0.33209540289069395, "t_final": 337.50230514924993, "x_impact": 1777.9992114701981} +{"lateral_surface_wind": 4.854921328605188, "apogee_x": 182.05334300301072, "y_impact": 1718.3980919617477, "max_mach_number": 0.586043936802965, "impact_velocity": -5.279717059479846, "apogee_y": -291.619142243591, "frontal_surface_wind": 4.978736739863068, "apogee_time": 20.67495823168963, "initial_stability_margin": 2.600061260428265, "out_of_rail_stability_margin": 2.689763069715078, "apogee": 2056.911618356676, "out_of_rail_velocity": 21.194876370009556, "out_of_rail_time": 0.4200537752773206, "t_final": 232.20544841779198, "x_impact": 710.9744492006635} +{"lateral_surface_wind": 4.596373779496231, "apogee_x": 329.9059959707574, "y_impact": 2060.577147969078, "max_mach_number": 0.7669599988678437, "impact_velocity": -5.4790717126217094, "apogee_y": -271.4747470469915, "frontal_surface_wind": 4.364550527810513, "apogee_time": 24.636859793913718, "initial_stability_margin": 2.749340970559229, "out_of_rail_stability_margin": 2.8214084023373776, "apogee": 3048.4305168218816, "out_of_rail_velocity": 24.462298238246973, "out_of_rail_time": 0.3732772892000564, "t_final": 276.33752768927826, "x_impact": 1017.6187392997592} +{"lateral_surface_wind": 3.894096400847274, "apogee_x": 354.6027242086598, "y_impact": 1635.3042759942707, "max_mach_number": 0.6467103716219067, "impact_velocity": -5.474969932463698, "apogee_y": -119.81265295034663, "frontal_surface_wind": 2.782459156575209, "apogee_time": 22.310465439907865, "initial_stability_margin": 2.669897372692164, "out_of_rail_stability_margin": 2.7506644724279856, "apogee": 2421.1715682748454, "out_of_rail_velocity": 22.36959924351709, "out_of_rail_time": 0.4012225434475147, "t_final": 250.09095791900765, "x_impact": 657.4326571786172} +{"lateral_surface_wind": 4.475086900171982, "apogee_x": 646.0877462023034, "y_impact": 2885.9728612829713, "max_mach_number": 0.9445155367947683, "impact_velocity": -5.3593598073192625, "apogee_y": -90.37329055255522, "frontal_surface_wind": 2.620802319084341, "apogee_time": 27.23396606837034, "initial_stability_margin": 2.650694088442456, "out_of_rail_stability_margin": 2.7180907529704044, "apogee": 3906.3346727955754, "out_of_rail_velocity": 27.389223292125326, "out_of_rail_time": 0.34060884527493995, "t_final": 327.6131233068025, "x_impact": 1269.4383774278003} +{"lateral_surface_wind": 4.751420950628999, "apogee_x": 625.1172461851197, "y_impact": 3213.403850016347, "max_mach_number": 0.9589969408518909, "impact_velocity": -5.4139464850620405, "apogee_y": -120.15239444967534, "frontal_surface_wind": 4.222343558073929, "apogee_time": 27.398035967949664, "initial_stability_margin": 2.595227018585962, "out_of_rail_stability_margin": 2.663485611868816, "apogee": 3964.8881965369646, "out_of_rail_velocity": 27.571756484304817, "out_of_rail_time": 0.33834390215379695, "t_final": 330.75962962502723, "x_impact": 1775.8333602809257} +{"lateral_surface_wind": 4.23224267864903, "apogee_x": 607.2982893194668, "y_impact": 2660.9553444995195, "max_mach_number": 0.8390272713699334, "impact_velocity": -5.37859848053825, "apogee_y": 3.9881941230372515, "frontal_surface_wind": 2.8556042477436043, "apogee_time": 25.650912510206094, "initial_stability_margin": 2.478803731153655, "out_of_rail_stability_margin": 2.5515571096510894, "apogee": 3379.8858862064876, "out_of_rail_velocity": 25.619165861903536, "out_of_rail_time": 0.35894655790262575, "t_final": 308.1197284926826, "x_impact": 1244.6227924521195} +{"lateral_surface_wind": 3.8115406575958026, "apogee_x": 531.3963086846785, "y_impact": 2044.1050190137466, "max_mach_number": 0.8215521728286977, "impact_velocity": -5.415636849111999, "apogee_y": -68.50705849753923, "frontal_surface_wind": 2.0231602632716674, "apogee_time": 25.51293303421956, "initial_stability_margin": 2.6118621157732296, "out_of_rail_stability_margin": 2.686240934149229, "apogee": 3319.9791463949664, "out_of_rail_velocity": 25.298438061608348, "out_of_rail_time": 0.36259953520571736, "t_final": 298.413049841501, "x_impact": 1093.7960439353064} +{"lateral_surface_wind": 3.013460322500461, "apogee_x": 513.7673382303861, "y_impact": 2481.5404437384595, "max_mach_number": 0.8700664921449818, "impact_velocity": -5.383024500516263, "apogee_y": 8.460233855005281, "frontal_surface_wind": 3.8943503123905923, "apogee_time": 26.197637879127306, "initial_stability_margin": 2.5438556992150305, "out_of_rail_stability_margin": 2.615446431020428, "apogee": 3549.930099895831, "out_of_rail_velocity": 26.100214412835328, "out_of_rail_time": 0.353345856259227, "t_final": 302.2960885987144, "x_impact": 1787.7851136321367} +{"lateral_surface_wind": 3.605547394432069, "apogee_x": 575.9767846114594, "y_impact": 2798.5299752106566, "max_mach_number": 0.9131256736315874, "impact_velocity": -5.311887455624704, "apogee_y": -27.035343105635476, "frontal_surface_wind": 3.2877195024714054, "apogee_time": 26.696672916571586, "initial_stability_margin": 2.4895482150378823, "out_of_rail_stability_margin": 2.563251640557096, "apogee": 3733.4961434329257, "out_of_rail_velocity": 26.755847728034116, "out_of_rail_time": 0.34670262477560726, "t_final": 331.0895992187903, "x_impact": 1774.887280834276} +{"lateral_surface_wind": 1.7509872339601946, "apogee_x": 354.372328750104, "y_impact": 1554.6444489974335, "max_mach_number": 0.6743312744470603, "impact_velocity": -5.454329695400679, "apogee_y": 93.40119773802068, "frontal_surface_wind": 3.2863616875562425, "apogee_time": 22.897033169116735, "initial_stability_margin": 2.648927307307171, "out_of_rail_stability_margin": 2.7281695813127924, "apogee": 2572.8357106968297, "out_of_rail_velocity": 22.924587168957444, "out_of_rail_time": 0.3944735629798671, "t_final": 258.2262400443749, "x_impact": 1098.3034476226421} +{"lateral_surface_wind": 4.754644449502299, "apogee_x": 593.8798014497205, "y_impact": 3261.657452596993, "max_mach_number": 0.9487749201518472, "impact_velocity": -5.341953006758215, "apogee_y": -120.00708398925944, "frontal_surface_wind": 2.9211193611621447, "apogee_time": 27.116446645296485, "initial_stability_margin": 2.63285782045629, "out_of_rail_stability_margin": 2.699585792300803, "apogee": 3885.1911689981866, "out_of_rail_velocity": 27.408841146542763, "out_of_rail_time": 0.3396838449716707, "t_final": 322.934994129068, "x_impact": 1465.4001888658474} +{"lateral_surface_wind": 4.674595723271205, "apogee_x": 717.8225914313202, "y_impact": 2644.957407542515, "max_mach_number": 0.8545704087154852, "impact_velocity": -5.323963353206907, "apogee_y": -28.646473079884228, "frontal_surface_wind": 3.206603577173045, "apogee_time": 25.732205769375092, "initial_stability_margin": 2.555952832472922, "out_of_rail_stability_margin": 2.628663616272944, "apogee": 3423.774356448499, "out_of_rail_velocity": 25.87104316300151, "out_of_rail_time": 0.35586703755402066, "t_final": 317.3045963907937, "x_impact": 1430.8810064545048} +{"lateral_surface_wind": 3.755734389430572, "apogee_x": 599.0224897765826, "y_impact": 2374.5477390731126, "max_mach_number": 0.864829253532084, "impact_velocity": -5.368003610512793, "apogee_y": 5.592174085353106, "frontal_surface_wind": 1.8599283282789432, "apogee_time": 26.082472730599584, "initial_stability_margin": 2.6020122943017228, "out_of_rail_stability_margin": 2.6721634277177517, "apogee": 3515.8619235052356, "out_of_rail_velocity": 26.064880587928794, "out_of_rail_time": 0.3540019004088508, "t_final": 314.30808934377745, "x_impact": 1221.1911804828007} +{"lateral_surface_wind": 4.422150610911536, "apogee_x": 315.43803433696917, "y_impact": 2089.849982786075, "max_mach_number": 0.728437494631352, "impact_velocity": -5.465898383179784, "apogee_y": -235.07430358334824, "frontal_surface_wind": 4.0634577818469975, "apogee_time": 23.796070333745078, "initial_stability_margin": 2.560061583868159, "out_of_rail_stability_margin": 2.6365277159766927, "apogee": 2823.4993379338543, "out_of_rail_velocity": 23.787098635337657, "out_of_rail_time": 0.381393861944796, "t_final": 271.74372718922467, "x_impact": 1068.6820555033034} +{"lateral_surface_wind": 3.4758240684310198, "apogee_x": 596.6913670320644, "y_impact": 2515.9258647238016, "max_mach_number": 0.9291449077331296, "impact_velocity": -5.322706820840877, "apogee_y": 19.638788222135734, "frontal_surface_wind": 1.828647461627503, "apogee_time": 26.8834204257919, "initial_stability_margin": 2.7036956720617846, "out_of_rail_stability_margin": 2.769291877091975, "apogee": 3804.4134408409113, "out_of_rail_velocity": 27.165309076968143, "out_of_rail_time": 0.34297882320408213, "t_final": 326.2934941774749, "x_impact": 1174.4037219823513} +{"lateral_surface_wind": 2.9885269498334166, "apogee_x": 744.9387189880509, "y_impact": 3030.458921979286, "max_mach_number": 0.9810114281049047, "impact_velocity": -5.306994370513067, "apogee_y": 202.56108834099535, "frontal_surface_wind": 2.6253479994000135, "apogee_time": 27.556937816560236, "initial_stability_margin": 2.4680812233873572, "out_of_rail_stability_margin": 2.5366753645158457, "apogee": 4036.4302940704088, "out_of_rail_velocity": 27.94289747427412, "out_of_rail_time": 0.3347955254286809, "t_final": 347.74284772686394, "x_impact": 2007.803487495832} +{"lateral_surface_wind": 3.0093053287962976, "apogee_x": 275.46567448249493, "y_impact": 1060.2854783549967, "max_mach_number": 0.5184652904532635, "impact_velocity": -5.3681517650691415, "apogee_y": -37.53102553079394, "frontal_surface_wind": 2.6015047349394695, "apogee_time": 19.39232661213962, "initial_stability_margin": 2.6429867204520563, "out_of_rail_stability_margin": 2.7372893951751607, "apogee": 1767.2657851398608, "out_of_rail_velocity": 19.987090543221775, "out_of_rail_time": 0.4423532269561118, "t_final": 209.10325139563895, "x_impact": 546.1091235288363} +{"lateral_surface_wind": 2.6967366351659154, "apogee_x": 601.4439557550081, "y_impact": 3353.5571408372407, "max_mach_number": 0.985795427040554, "impact_velocity": -5.3075144095928515, "apogee_y": 109.00449896042328, "frontal_surface_wind": 4.421571711813804, "apogee_time": 27.584753895494092, "initial_stability_margin": 2.5519480535392645, "out_of_rail_stability_margin": 2.6218177901438597, "apogee": 4055.2276809204004, "out_of_rail_velocity": 28.003138159033554, "out_of_rail_time": 0.3341734845711813, "t_final": 349.6051522290139, "x_impact": 2080.575575873258} +{"lateral_surface_wind": 3.5831529915272675, "apogee_x": 582.3697497535696, "y_impact": 2035.004290927806, "max_mach_number": 0.7763281217852411, "impact_velocity": -5.437157664532276, "apogee_y": 83.84283154099742, "frontal_surface_wind": 2.173910952545005, "apogee_time": 24.67518276286402, "initial_stability_margin": 2.7867470057211996, "out_of_rail_stability_margin": 2.8577454927258215, "apogee": 3072.9200227416623, "out_of_rail_velocity": 24.64494789519157, "out_of_rail_time": 0.37020109186541433, "t_final": 283.03344541872184, "x_impact": 993.9095141968363} +{"lateral_surface_wind": 2.5572957300595944, "apogee_x": 463.6723952290479, "y_impact": 2859.3009249281663, "max_mach_number": 1.069452539505206, "impact_velocity": -5.267691019057963, "apogee_y": 25.794485671461313, "frontal_surface_wind": 2.93751602724592, "apogee_time": 28.27347765563719, "initial_stability_margin": 2.5125308071083734, "out_of_rail_stability_margin": 2.580126745642699, "apogee": 4348.505667541168, "out_of_rail_velocity": 29.439810407187625, "out_of_rail_time": 0.3210145041520957, "t_final": 358.5147099335604, "x_impact": 1785.063754915207} +{"lateral_surface_wind": 4.232351246044749, "apogee_x": 571.9370387887285, "y_impact": 2568.571768656027, "max_mach_number": 0.8417929081427602, "impact_velocity": -5.4162251231691645, "apogee_y": -34.344996341151045, "frontal_surface_wind": 2.855443335248152, "apogee_time": 25.783885181622438, "initial_stability_margin": 2.633869738501659, "out_of_rail_stability_margin": 2.7029449782330803, "apogee": 3412.648896884324, "out_of_rail_velocity": 25.720219111672925, "out_of_rail_time": 0.35787558503259914, "t_final": 303.7748085187722, "x_impact": 1200.5975962611433} +{"lateral_surface_wind": 2.98381304402194, "apogee_x": 468.9346587558844, "y_impact": 2170.0182996539647, "max_mach_number": 0.7405062414242004, "impact_velocity": -5.400321425868509, "apogee_y": 14.47492899148803, "frontal_surface_wind": 4.046918529125314, "apogee_time": 24.10311375423755, "initial_stability_margin": 2.5540863906828903, "out_of_rail_stability_margin": 2.632377285987849, "apogee": 2900.0886489662366, "out_of_rail_velocity": 23.9599474223966, "out_of_rail_time": 0.37902864582341894, "t_final": 275.4263253410334, "x_impact": 1300.7627101569974} +{"lateral_surface_wind": 4.886202414087081, "apogee_x": 440.25161167018683, "y_impact": 3192.1865773805134, "max_mach_number": 1.0027520365226679, "impact_velocity": -5.42930531539898, "apogee_y": -291.1253580248615, "frontal_surface_wind": 4.065613378206806, "apogee_time": 27.883450431411504, "initial_stability_margin": 2.566296162354178, "out_of_rail_stability_margin": 2.6341554833554297, "apogee": 4148.0464287148525, "out_of_rail_velocity": 28.281218497746718, "out_of_rail_time": 0.3316842491817242, "t_final": 341.6081925947685, "x_impact": 1662.3240481181408} +{"lateral_surface_wind": 3.984785744887952, "apogee_x": 383.9845836469636, "y_impact": 2012.8573615299274, "max_mach_number": 0.753775849665853, "impact_velocity": -5.33053696259918, "apogee_y": -143.58997961477496, "frontal_surface_wind": 3.288570029003322, "apogee_time": 24.2101953363074, "initial_stability_margin": 2.678894892752414, "out_of_rail_stability_margin": 2.754570592653448, "apogee": 2947.337798974374, "out_of_rail_velocity": 24.240479948622138, "out_of_rail_time": 0.3765578612518922, "t_final": 270.4623777830522, "x_impact": 1034.3596183820857} +{"lateral_surface_wind": 4.694342647613744, "apogee_x": 190.61134288902656, "y_impact": 1572.0348402767206, "max_mach_number": 0.5489077081557252, "impact_velocity": -5.401736800049634, "apogee_y": -250.16790488331787, "frontal_surface_wind": 5.130421789541547, "apogee_time": 20.00566084875362, "initial_stability_margin": 2.6983854987122946, "out_of_rail_stability_margin": 2.7814918175820402, "apogee": 1897.4244705380793, "out_of_rail_velocity": 20.607818299576234, "out_of_rail_time": 0.43038386717455807, "t_final": 216.45488202662006, "x_impact": 667.3185377833838} +{"lateral_surface_wind": 3.8758821853765197, "apogee_x": 522.4799687458024, "y_impact": 2605.771097729462, "max_mach_number": 0.8483220082967714, "impact_velocity": -5.296395591164877, "apogee_y": -45.05020296618875, "frontal_surface_wind": 3.4162475837389294, "apogee_time": 25.797405719589904, "initial_stability_margin": 2.686376816723977, "out_of_rail_stability_margin": 2.757852890347712, "apogee": 3429.2868212979993, "out_of_rail_velocity": 25.797575836828145, "out_of_rail_time": 0.3570836889197102, "t_final": 302.01606255518874, "x_impact": 1429.6726086154897} +{"lateral_surface_wind": 4.064812733309671, "apogee_x": 734.546297461654, "y_impact": 3224.632881260559, "max_mach_number": 0.979277443950869, "impact_velocity": -5.464027193471678, "apogee_y": 29.798505583994817, "frontal_surface_wind": 3.1891233452854566, "apogee_time": 27.75446972156443, "initial_stability_margin": 2.7076028830642564, "out_of_rail_stability_margin": 2.7715316497936358, "apogee": 4077.126359764467, "out_of_rail_velocity": 27.965116930525255, "out_of_rail_time": 0.3343918976309639, "t_final": 331.39755086488555, "x_impact": 1967.1373659418914} +{"lateral_surface_wind": 3.3745999136736318, "apogee_x": 322.1966404917439, "y_impact": 1760.833982773217, "max_mach_number": 0.7770740381980509, "impact_velocity": -5.195004626632045, "apogee_y": -113.67816463805642, "frontal_surface_wind": 2.0093232483189447, "apogee_time": 24.407518480719542, "initial_stability_margin": 2.576019492188528, "out_of_rail_stability_margin": 2.6506256982780356, "apogee": 3031.1208443364835, "out_of_rail_velocity": 24.63972694205852, "out_of_rail_time": 0.37047784753618124, "t_final": 285.20099477475685, "x_impact": 603.3589050900252} +{"lateral_surface_wind": 2.5451653179502283, "apogee_x": 351.91902417543395, "y_impact": 1991.2276935230923, "max_mach_number": 0.75182942426145, "impact_velocity": -5.377936643032672, "apogee_y": -9.080937678903817, "frontal_surface_wind": 3.7238045641988577, "apogee_time": 24.293704510117482, "initial_stability_margin": 2.6695236526252333, "out_of_rail_stability_margin": 2.7429153983198744, "apogee": 2961.589507166325, "out_of_rail_velocity": 24.23961239818609, "out_of_rail_time": 0.3763170887929829, "t_final": 285.54432027546414, "x_impact": 1350.8822372813988} +{"lateral_surface_wind": 4.81245635381993, "apogee_x": 463.2096190617171, "y_impact": 3133.947284304253, "max_mach_number": 0.8714747296680816, "impact_velocity": -5.3682218082356075, "apogee_y": -209.96445533850783, "frontal_surface_wind": 5.019795262198059, "apogee_time": 26.084255226914742, "initial_stability_margin": 2.5494838903235495, "out_of_rail_stability_margin": 2.6178909343487664, "apogee": 3527.1921868257027, "out_of_rail_velocity": 26.157882251281944, "out_of_rail_time": 0.35261470884989754, "t_final": 307.1289700391473, "x_impact": 1481.348888241026} +{"lateral_surface_wind": 2.086748042651168, "apogee_x": 477.4237925416611, "y_impact": 2090.2290854290795, "max_mach_number": 0.7820206497234474, "impact_velocity": -5.2883705569623665, "apogee_y": 146.43519242072153, "frontal_surface_wind": 2.930995268480897, "apogee_time": 24.638834916986507, "initial_stability_margin": 2.5598818857764547, "out_of_rail_stability_margin": 2.63614661039445, "apogee": 3082.183751523241, "out_of_rail_velocity": 24.695508169801492, "out_of_rail_time": 0.3699298340738121, "t_final": 291.4169521282606, "x_impact": 1458.0963518016688} +{"lateral_surface_wind": 4.616654550177495, "apogee_x": 193.07516315517057, "y_impact": 2277.3777060802577, "max_mach_number": 0.7475971714638007, "impact_velocity": -5.377335295688765, "apogee_y": -348.53090964191006, "frontal_surface_wind": 5.200440500201241, "apogee_time": 23.959984450565667, "initial_stability_margin": 2.6923864970284734, "out_of_rail_stability_margin": 2.76669807810667, "apogee": 2886.975867460976, "out_of_rail_velocity": 24.1166421214406, "out_of_rail_time": 0.3781015401919957, "t_final": 268.62559114913194, "x_impact": 930.3417646392813} +{"lateral_surface_wind": 5.084047974700733, "apogee_x": 546.4687880698312, "y_impact": 3206.6343562725983, "max_mach_number": 0.9456737118917266, "impact_velocity": -5.416014705897055, "apogee_y": -241.05616668559736, "frontal_surface_wind": 4.947153672255674, "apogee_time": 27.29993548506581, "initial_stability_margin": 2.73899170502175, "out_of_rail_stability_margin": 2.8069139309348112, "apogee": 3916.8326650056515, "out_of_rail_velocity": 27.318010601591823, "out_of_rail_time": 0.3408211540168451, "t_final": 322.8933536461732, "x_impact": 1808.3236171553988} +{"lateral_surface_wind": 4.8577443574904295, "apogee_x": 589.7691798045943, "y_impact": 2445.4782574020205, "max_mach_number": 0.7474438575851016, "impact_velocity": -5.448905788228449, "apogee_y": -78.376418263221, "frontal_surface_wind": 2.746252341029363, "apogee_time": 24.037372201524253, "initial_stability_margin": 2.556957572979813, "out_of_rail_stability_margin": 2.6299130188292645, "apogee": 2896.7547049343175, "out_of_rail_velocity": 24.1291032723042, "out_of_rail_time": 0.37722270707327366, "t_final": 280.2486086747044, "x_impact": 1044.0637860754268} +{"lateral_surface_wind": 1.2659234025891404, "apogee_x": 522.2032252861709, "y_impact": 2110.034134807182, "max_mach_number": 0.9928116948482728, "impact_velocity": -5.251847927267011, "apogee_y": 205.14128343701327, "frontal_surface_wind": 2.557089218827377, "apogee_time": 27.513304378617864, "initial_stability_margin": 2.441704946972541, "out_of_rail_stability_margin": 2.512772108216366, "apogee": 4055.4956517277055, "out_of_rail_velocity": 28.11273816129723, "out_of_rail_time": 0.3331332778797571, "t_final": 341.54461086781293, "x_impact": 1774.492618247668} +{"lateral_surface_wind": 4.908497543457216, "apogee_x": 565.9285699164404, "y_impact": 2533.6974653417483, "max_mach_number": 0.8131894243550525, "impact_velocity": -5.395697362884746, "apogee_y": -148.66641479538484, "frontal_surface_wind": 2.6544743414118437, "apogee_time": 25.18473357774317, "initial_stability_margin": 2.655110354248992, "out_of_rail_stability_margin": 2.728133008390657, "apogee": 3236.9549587983615, "out_of_rail_velocity": 25.2083674972972, "out_of_rail_time": 0.3644236502409952, "t_final": 287.2830003169221, "x_impact": 1133.1949742462768} +{"lateral_surface_wind": 3.2600130304989565, "apogee_x": 350.6219911245288, "y_impact": 2830.852435779465, "max_mach_number": 0.9757525658311903, "impact_velocity": -5.260181766340551, "apogee_y": -122.96368970060605, "frontal_surface_wind": 3.3846184605976712, "apogee_time": 27.296355707037268, "initial_stability_margin": 2.5417519050329904, "out_of_rail_stability_margin": 2.608100186127831, "apogee": 3978.014138035237, "out_of_rail_velocity": 27.90912500108926, "out_of_rail_time": 0.3348612097491299, "t_final": 339.56354123316913, "x_impact": 1647.049970656607} +{"lateral_surface_wind": 2.696869730774953, "apogee_x": 528.6601286031723, "y_impact": 2785.296315324121, "max_mach_number": 0.9784664616158794, "impact_velocity": -5.459701648274678, "apogee_y": 40.97523431192558, "frontal_surface_wind": 3.6154502601024348, "apogee_time": 27.83468069021446, "initial_stability_margin": 2.6858396797436885, "out_of_rail_stability_margin": 2.753080338673191, "apogee": 4097.63182212959, "out_of_rail_velocity": 27.89383201938895, "out_of_rail_time": 0.33544395000757155, "t_final": 328.5836904639509, "x_impact": 2055.2107761287243} +{"lateral_surface_wind": 3.201848287917911, "apogee_x": 654.0774647645691, "y_impact": 3217.3250627031903, "max_mach_number": 1.0322322978556384, "impact_velocity": -5.362428247045879, "apogee_y": 146.8203392719591, "frontal_surface_wind": 2.9099429295664114, "apogee_time": 28.106272248314546, "initial_stability_margin": 2.563682574735859, "out_of_rail_stability_margin": 2.630731798800817, "apogee": 4247.785637246876, "out_of_rail_velocity": 28.829187412756646, "out_of_rail_time": 0.32661321066062776, "t_final": 346.11273731463604, "x_impact": 1976.1642237838646} +{"lateral_surface_wind": 3.1158650728839166, "apogee_x": 256.8373220951593, "y_impact": 1746.8792510985888, "max_mach_number": 0.6928857753327634, "impact_velocity": -5.192467956384788, "apogee_y": -110.83691031591285, "frontal_surface_wind": 3.517770875202597, "apogee_time": 23.037990991369146, "initial_stability_margin": 2.5058475059769982, "out_of_rail_stability_margin": 2.584737372785224, "apogee": 2629.4405174443787, "out_of_rail_velocity": 23.196185339043108, "out_of_rail_time": 0.389476783160525, "t_final": 267.39647850650476, "x_impact": 883.0276742707537} +{"lateral_surface_wind": 3.799027045182449, "apogee_x": 563.8341258185181, "y_impact": 2150.9633118966726, "max_mach_number": 0.8324014840985244, "impact_velocity": -5.189926737130213, "apogee_y": -28.374687622487304, "frontal_surface_wind": 2.046561297728371, "apogee_time": 25.295255375581924, "initial_stability_margin": 2.6281845432551667, "out_of_rail_stability_margin": 2.699748386712713, "apogee": 3300.444836132508, "out_of_rail_velocity": 25.566440758602326, "out_of_rail_time": 0.3594765869473292, "t_final": 306.73560330470286, "x_impact": 1137.1770510126287} +{"lateral_surface_wind": 4.760188995847099, "apogee_x": 681.1481905694285, "y_impact": 3203.626915156654, "max_mach_number": 0.9285736348768385, "impact_velocity": -5.318466404777787, "apogee_y": -48.409368290380215, "frontal_surface_wind": 2.9120753573964295, "apogee_time": 26.840872072579, "initial_stability_margin": 2.5213470159970077, "out_of_rail_stability_margin": 2.592701345492298, "apogee": 3787.309535146508, "out_of_rail_velocity": 27.012484193977787, "out_of_rail_time": 0.34391856563149387, "t_final": 316.58050047711004, "x_impact": 1512.4756192758907} +{"lateral_surface_wind": 4.126026493441857, "apogee_x": 418.6128936864429, "y_impact": 2916.278069526764, "max_mach_number": 0.9054959440026061, "impact_velocity": -5.2624035795242845, "apogee_y": -177.92421303522357, "frontal_surface_wind": 4.363829802576413, "apogee_time": 26.575435452351098, "initial_stability_margin": 2.515529354457293, "out_of_rail_stability_margin": 2.5914668793560427, "apogee": 3694.185336792431, "out_of_rail_velocity": 26.567558521788783, "out_of_rail_time": 0.3485539330163801, "t_final": 322.3929194851329, "x_impact": 1563.5317865237544} +{"lateral_surface_wind": 3.7254268101968275, "apogee_x": 636.9526639113901, "y_impact": 3448.6531619783127, "max_mach_number": 1.146502042623807, "impact_velocity": -5.36892573780671, "apogee_y": 36.092756942114185, "frontal_surface_wind": 1.9199138710245904, "apogee_time": 29.008829643029443, "initial_stability_margin": 2.484769858322744, "out_of_rail_stability_margin": 2.5482646878375057, "apogee": 4643.431003233028, "out_of_rail_velocity": 30.745235468739157, "out_of_rail_time": 0.3104974759162241, "t_final": 373.5998730664713, "x_impact": 1778.4552400334783} +{"lateral_surface_wind": 4.185998418636276, "apogee_x": 508.4434264738256, "y_impact": 2032.009881367172, "max_mach_number": 0.739525195689926, "impact_velocity": -5.443034289006886, "apogee_y": -79.8097897034787, "frontal_surface_wind": 2.303878694582377, "apogee_time": 24.013583151734167, "initial_stability_margin": 2.6843582435407063, "out_of_rail_stability_margin": 2.760809456084397, "apogee": 2881.205818991291, "out_of_rail_velocity": 23.958213452571645, "out_of_rail_time": 0.37873858154089257, "t_final": 266.9716115513729, "x_impact": 1015.4398097818381} +{"lateral_surface_wind": 2.2670715203189147, "apogee_x": 230.47463830694795, "y_impact": 1859.7902749084383, "max_mach_number": 0.6999747516124442, "impact_velocity": -5.329711196988385, "apogee_y": -41.57737314699642, "frontal_surface_wind": 4.656508520760692, "apogee_time": 23.260393216449014, "initial_stability_margin": 2.510911511256425, "out_of_rail_stability_margin": 2.5894345440720206, "apogee": 2683.1746801122044, "out_of_rail_velocity": 23.341132947327594, "out_of_rail_time": 0.3877015760650166, "t_final": 265.4711539302527, "x_impact": 1097.228065441788} +{"lateral_surface_wind": 2.619088369230581, "apogee_x": 475.23986826618443, "y_impact": 2895.4262726785623, "max_mach_number": 0.983010351333672, "impact_velocity": -5.360868721132794, "apogee_y": 30.61480398910004, "frontal_surface_wind": 3.672187773277127, "apogee_time": 27.607447320783084, "initial_stability_margin": 2.7059372034930647, "out_of_rail_stability_margin": 2.771974829739119, "apogee": 4058.099327051721, "out_of_rail_velocity": 28.021908838702473, "out_of_rail_time": 0.33387425375959257, "t_final": 340.70953523493057, "x_impact": 2054.8461633075344} +{"lateral_surface_wind": 1.6584350116339364, "apogee_x": 426.68046835464696, "y_impact": 2569.971352235905, "max_mach_number": 0.9642570975376983, "impact_velocity": -5.36108577251623, "apogee_y": 141.96168463939367, "frontal_surface_wind": 3.334025006972178, "apogee_time": 27.490426048454427, "initial_stability_margin": 2.777630902492755, "out_of_rail_stability_margin": 2.8418425457055396, "apogee": 4003.0631653441214, "out_of_rail_velocity": 27.747628827897422, "out_of_rail_time": 0.3371559771749303, "t_final": 327.89795158708984, "x_impact": 1724.8282316809912} +{"lateral_surface_wind": 1.1016817271255985, "apogee_x": 559.6242520051783, "y_impact": 1872.0327124122741, "max_mach_number": 0.8857991974773153, "impact_velocity": -5.406512494745146, "apogee_y": 293.1130376315179, "frontal_surface_wind": 2.6320267298003697, "apogee_time": 26.412644981421515, "initial_stability_margin": 2.617389329040266, "out_of_rail_stability_margin": 2.685932404009695, "apogee": 3627.2376366401922, "out_of_rail_velocity": 26.429849590534953, "out_of_rail_time": 0.34975743344413346, "t_final": 306.05844385396443, "x_impact": 1601.3114369191208} +{"lateral_surface_wind": 4.8329798379508855, "apogee_x": 495.9404613173702, "y_impact": 2582.8099986589395, "max_mach_number": 0.8089818118714759, "impact_velocity": -5.335156221174952, "apogee_y": -179.5670419916237, "frontal_surface_wind": 2.7896035648994264, "apogee_time": 25.103547032922535, "initial_stability_margin": 2.760208142132229, "out_of_rail_stability_margin": 2.8301699780125724, "apogee": 3215.5669237005304, "out_of_rail_velocity": 25.151136469124573, "out_of_rail_time": 0.36405267160640764, "t_final": 294.4506061971736, "x_impact": 1064.8750014156255} +{"lateral_surface_wind": 3.1086962936747993, "apogee_x": 461.71636752835417, "y_impact": 2504.8818965141136, "max_mach_number": 0.9075489138254903, "impact_velocity": -5.269738021188089, "apogee_y": -40.63514087449142, "frontal_surface_wind": 2.481884929146966, "apogee_time": 26.60210333850892, "initial_stability_margin": 2.5418098747320523, "out_of_rail_stability_margin": 2.61425597223617, "apogee": 3707.1341568159796, "out_of_rail_velocity": 26.72575391525554, "out_of_rail_time": 0.3475370764718968, "t_final": 332.2536862779592, "x_impact": 1527.9295443506358} +{"lateral_surface_wind": 3.204501114635481, "apogee_x": 239.50417384133817, "y_impact": 1477.6864405641509, "max_mach_number": 0.6303699858754805, "impact_velocity": -5.443565296638336, "apogee_y": -129.45173920330342, "frontal_surface_wind": 3.4372226708698257, "apogee_time": 21.997317777532583, "initial_stability_margin": 2.785108770735569, "out_of_rail_stability_margin": 2.8640950510247047, "apogee": 2343.0369125887582, "out_of_rail_velocity": 22.133393060816143, "out_of_rail_time": 0.4056676325870266, "t_final": 244.5497484551106, "x_impact": 745.782420794117} +{"lateral_surface_wind": 4.171798759023721, "apogee_x": 437.65164914967596, "y_impact": 2030.7706098155973, "max_mach_number": 0.7533650072109842, "impact_velocity": -5.382771081200685, "apogee_y": -130.09668080498327, "frontal_surface_wind": 2.329492415609922, "apogee_time": 24.266763904650574, "initial_stability_margin": 2.6515237641653946, "out_of_rail_stability_margin": 2.725804657359059, "apogee": 2954.9483368510478, "out_of_rail_velocity": 24.22410366059074, "out_of_rail_time": 0.37644050941733653, "t_final": 271.534493859516, "x_impact": 960.6334982502246} +{"lateral_surface_wind": 4.3495325464989, "apogee_x": 429.53924187733713, "y_impact": 2410.94632829742, "max_mach_number": 0.8241635837503826, "impact_velocity": -5.386007342494054, "apogee_y": -166.8507703144515, "frontal_surface_wind": 2.6735594883331886, "apogee_time": 25.447322132033552, "initial_stability_margin": 2.5485251280590826, "out_of_rail_stability_margin": 2.6196963672806217, "apogee": 3314.775200800262, "out_of_rail_velocity": 25.401277088043624, "out_of_rail_time": 0.36131542726024485, "t_final": 304.832057260449, "x_impact": 1012.8977924965249} +{"lateral_surface_wind": 3.464653884059568, "apogee_x": 364.8333228910025, "y_impact": 1391.6492098948268, "max_mach_number": 0.651633493763607, "impact_velocity": -5.406343031497014, "apogee_y": -69.73979725729345, "frontal_surface_wind": 1.8497237516105023, "apogee_time": 22.29508595212488, "initial_stability_margin": 2.6301627241571044, "out_of_rail_stability_margin": 2.7127271081650783, "apogee": 2428.583547200598, "out_of_rail_velocity": 22.449863345300887, "out_of_rail_time": 0.4004558283979695, "t_final": 248.0975339818218, "x_impact": 517.9857939510799} +{"lateral_surface_wind": 3.1436791540666165, "apogee_x": 348.70068912825, "y_impact": 2076.800740143626, "max_mach_number": 0.8212822489676826, "impact_velocity": -5.40128076351915, "apogee_y": -105.11665352165873, "frontal_surface_wind": 3.0853654108544153, "apogee_time": 25.457559738488865, "initial_stability_margin": 2.7844766583375677, "out_of_rail_stability_margin": 2.856816743614558, "apogee": 3315.3666208903264, "out_of_rail_velocity": 25.3475809078381, "out_of_rail_time": 0.36203769242077194, "t_final": 304.81949578899946, "x_impact": 1154.7464495751187} +{"lateral_surface_wind": 3.4361091060209628, "apogee_x": 453.0545900259648, "y_impact": 3020.6686030760693, "max_mach_number": 1.028387398338424, "impact_velocity": -5.414674039527353, "apogee_y": -87.99849305622988, "frontal_surface_wind": 3.4644228598637508, "apogee_time": 28.142556487465626, "initial_stability_margin": 2.631680805311786, "out_of_rail_stability_margin": 2.6973410068534185, "apogee": 4251.075917404268, "out_of_rail_velocity": 28.779514141403386, "out_of_rail_time": 0.32721720216895983, "t_final": 345.92852815536645, "x_impact": 1811.1781687289406} +{"lateral_surface_wind": 5.067441740761283, "apogee_x": 674.8095503164581, "y_impact": 3252.4890540990277, "max_mach_number": 0.977158116558911, "impact_velocity": -5.346912365340791, "apogee_y": -148.56684970455558, "frontal_surface_wind": 3.837345485680803, "apogee_time": 27.48976860337799, "initial_stability_margin": 2.5065548780556797, "out_of_rail_stability_margin": 2.5713875490827953, "apogee": 4016.1870041788547, "out_of_rail_velocity": 27.94778266726494, "out_of_rail_time": 0.3346648408744258, "t_final": 336.1094008017194, "x_impact": 1864.3553966608654} +{"lateral_surface_wind": 3.3827163405295253, "apogee_x": 431.2160647567681, "y_impact": 2035.1800460541754, "max_mach_number": 0.7622089503441017, "impact_velocity": -5.320480181046365, "apogee_y": -33.21284180810861, "frontal_surface_wind": 2.4165340011730088, "apogee_time": 24.382340304017806, "initial_stability_margin": 2.5305481668716165, "out_of_rail_stability_margin": 2.6058170473702975, "apogee": 2995.2601020822294, "out_of_rail_velocity": 24.388534642532488, "out_of_rail_time": 0.3745556290492401, "t_final": 283.5352195260002, "x_impact": 899.5397143290198} +{"lateral_surface_wind": 4.743280024960232, "apogee_x": 298.3640381494033, "y_impact": 2516.700607113442, "max_mach_number": 0.8596413750873646, "impact_velocity": -5.380434923471011, "apogee_y": -332.77902622841304, "frontal_surface_wind": 4.231486828208006, "apogee_time": 25.931738416473866, "initial_stability_margin": 2.562589982628489, "out_of_rail_stability_margin": 2.633698763054577, "apogee": 3477.6978720581683, "out_of_rail_velocity": 25.95793963239106, "out_of_rail_time": 0.3551408381083404, "t_final": 301.8905568997045, "x_impact": 1149.9477640712175} +{"lateral_surface_wind": 4.032581299670357, "apogee_x": 396.04664810494825, "y_impact": 2614.448407898305, "max_mach_number": 0.8155018327776755, "impact_velocity": -5.290213541651459, "apogee_y": -142.00633073939193, "frontal_surface_wind": 4.450325070372627, "apogee_time": 25.12666034094563, "initial_stability_margin": 2.5477517057989427, "out_of_rail_stability_margin": 2.621762917603609, "apogee": 3236.5672934584327, "out_of_rail_velocity": 25.238791515333617, "out_of_rail_time": 0.36333324758702823, "t_final": 300.9588474024098, "x_impact": 1354.9630567353317} +{"lateral_surface_wind": 2.1652023600944945, "apogee_x": 532.5370006752692, "y_impact": 2725.677726502202, "max_mach_number": 0.9238184170124225, "impact_velocity": -5.343724506432224, "apogee_y": 142.576087318243, "frontal_surface_wind": 2.873525604063259, "apogee_time": 26.958332545122577, "initial_stability_margin": 2.7100090743507113, "out_of_rail_stability_margin": 2.774662673636853, "apogee": 3813.2545096044864, "out_of_rail_velocity": 27.090290380824587, "out_of_rail_time": 0.34308211999004523, "t_final": 330.84465036894676, "x_impact": 1920.5761951701134} +{"lateral_surface_wind": 2.1045523617197013, "apogee_x": 475.3466559608283, "y_impact": 3511.9679648040833, "max_mach_number": 1.1531869301629305, "impact_velocity": -5.372135494313931, "apogee_y": 121.10382143084989, "frontal_surface_wind": 2.9182374841924554, "apogee_time": 29.214361793118503, "initial_stability_margin": 2.6953859080008513, "out_of_rail_stability_margin": 2.754513792598918, "apogee": 4709.846653502192, "out_of_rail_velocity": 30.93679288914885, "out_of_rail_time": 0.3088707183500252, "t_final": 373.67070403703786, "x_impact": 2300.1490905772457} +{"lateral_surface_wind": 4.185122596821285, "apogee_x": 442.5853646775221, "y_impact": 2411.6458834522855, "max_mach_number": 0.7652066432749162, "impact_velocity": -5.34232068957785, "apogee_y": -116.3324022597062, "frontal_surface_wind": 4.307186322881105, "apogee_time": 24.315667859927263, "initial_stability_margin": 2.5140267013505913, "out_of_rail_stability_margin": 2.592423092508776, "apogee": 2986.474618484629, "out_of_rail_velocity": 24.362905857181783, "out_of_rail_time": 0.37440061051783863, "t_final": 285.29375369364925, "x_impact": 1297.2146859851805} +{"lateral_surface_wind": 4.579475271205396, "apogee_x": 437.15371639570407, "y_impact": 2170.5278677948936, "max_mach_number": 0.7696727740083891, "impact_velocity": -5.382505597886101, "apogee_y": -173.55360307659942, "frontal_surface_wind": 4.382277886107835, "apogee_time": 24.502953360082742, "initial_stability_margin": 2.5370225240176554, "out_of_rail_stability_margin": 2.6126007542952903, "apogee": 3029.0016910488725, "out_of_rail_velocity": 24.472557342305052, "out_of_rail_time": 0.37298373501126275, "t_final": 276.88031064234343, "x_impact": 1140.5193313136663} +{"lateral_surface_wind": 4.004426836507362, "apogee_x": 470.2819205973192, "y_impact": 1906.9382482907904, "max_mach_number": 0.6919908219538777, "impact_velocity": -5.272605405275404, "apogee_y": -49.14101281323615, "frontal_surface_wind": 3.2646249370150917, "apogee_time": 22.91487240995814, "initial_stability_margin": 2.6645206292835595, "out_of_rail_stability_margin": 2.7416114267545195, "apogee": 2604.198896973907, "out_of_rail_velocity": 23.24846536192939, "out_of_rail_time": 0.3894314642172878, "t_final": 256.20692216633336, "x_impact": 1018.8909211781448} +{"lateral_surface_wind": 4.056075159956942, "apogee_x": 612.8922678133841, "y_impact": 2439.414572754443, "max_mach_number": 0.8166355867042617, "impact_velocity": -5.421858905363869, "apogee_y": 6.513733554740472, "frontal_surface_wind": 2.525607668850463, "apogee_time": 25.426176907655858, "initial_stability_margin": 2.6370512410515223, "out_of_rail_stability_margin": 2.713311529758612, "apogee": 3290.693625982781, "out_of_rail_velocity": 25.18488846508138, "out_of_rail_time": 0.36398882215543726, "t_final": 286.73025711526145, "x_impact": 1315.146431333669} +{"lateral_surface_wind": 3.1892703485804996, "apogee_x": 428.8186908359446, "y_impact": 1982.8467009463131, "max_mach_number": 0.7669093445609929, "impact_velocity": -5.416963441683676, "apogee_y": -21.4219135207216, "frontal_surface_wind": 3.263086555702922, "apogee_time": 24.553818049643763, "initial_stability_margin": 2.5469971131196747, "out_of_rail_stability_margin": 2.6226571936456406, "apogee": 3035.611910123334, "out_of_rail_velocity": 24.425959651165773, "out_of_rail_time": 0.3735380264502788, "t_final": 276.1702303658161, "x_impact": 1123.1130711761405} +{"lateral_surface_wind": 4.5188572271072855, "apogee_x": 523.2227334158355, "y_impact": 2800.68282168169, "max_mach_number": 0.9422052268021035, "impact_velocity": -5.336656419805748, "apogee_y": -172.64853379091394, "frontal_surface_wind": 2.3761908744311535, "apogee_time": 27.041879601670942, "initial_stability_margin": 2.4965790156312555, "out_of_rail_stability_margin": 2.5680976873259698, "apogee": 3860.4490772407894, "out_of_rail_velocity": 27.23898044176625, "out_of_rail_time": 0.34145044919308726, "t_final": 327.6487134514556, "x_impact": 1325.4867127692671} +{"lateral_surface_wind": 1.7131011128156084, "apogee_x": 298.9795912615244, "y_impact": 2281.50875857506, "max_mach_number": 0.8927456340341177, "impact_velocity": -5.3903668934273545, "apogee_y": 32.86484255302654, "frontal_surface_wind": 3.3062688959307307, "apogee_time": 26.62778344518668, "initial_stability_margin": 2.649569051285975, "out_of_rail_stability_margin": 2.7179114927637222, "apogee": 3688.7481339065916, "out_of_rail_velocity": 26.53013073608207, "out_of_rail_time": 0.34884166029103647, "t_final": 319.3505446745535, "x_impact": 1483.7435290138042} +{"lateral_surface_wind": 2.555853912928245, "apogee_x": 176.17974453473732, "y_impact": 1717.573801428175, "max_mach_number": 0.7086714141773975, "impact_velocity": -5.476753644928332, "apogee_y": -130.19904631922583, "frontal_surface_wind": 4.504475070186027, "apogee_time": 23.5137590386515, "initial_stability_margin": 2.6351237211652534, "out_of_rail_stability_margin": 2.7130055752213353, "apogee": 2741.746326155956, "out_of_rail_velocity": 23.466581402636926, "out_of_rail_time": 0.38591730778449335, "t_final": 259.32074587002154, "x_impact": 1016.6862264721509} +{"lateral_surface_wind": 3.4715431932937406, "apogee_x": 624.1265180697968, "y_impact": 3163.2417715643437, "max_mach_number": 0.999713769947979, "impact_velocity": -5.481118821151914, "apogee_y": 26.123790023927306, "frontal_surface_wind": 2.287092975024538, "apogee_time": 27.967208911632834, "initial_stability_margin": 2.6068639836500256, "out_of_rail_stability_margin": 2.6739193067570137, "apogee": 4160.845905219856, "out_of_rail_velocity": 28.25440856286587, "out_of_rail_time": 0.3319774118554147, "t_final": 343.1248280638779, "x_impact": 1657.9267217428383} +{"lateral_surface_wind": 2.634529349251951, "apogee_x": 365.40904531546266, "y_impact": 2081.5434859502902, "max_mach_number": 0.7921238968551741, "impact_velocity": -5.326455513836464, "apogee_y": -27.09989522341787, "frontal_surface_wind": 3.661125788056868, "apogee_time": 24.942744944412645, "initial_stability_margin": 2.596745867771226, "out_of_rail_stability_margin": 2.673438760777077, "apogee": 3158.5251335217813, "out_of_rail_velocity": 24.821953246321176, "out_of_rail_time": 0.3683808505907017, "t_final": 293.4171176946343, "x_impact": 1447.2994931712094} +{"lateral_surface_wind": 4.405510353049939, "apogee_x": 494.97854223236095, "y_impact": 1892.9838864675937, "max_mach_number": 0.7138896325340633, "impact_velocity": -5.427214554330569, "apogee_y": -94.20201960508143, "frontal_surface_wind": 2.580277550938934, "apogee_time": 23.528787440732792, "initial_stability_margin": 2.682361379114433, "out_of_rail_stability_margin": 2.7573430322679258, "apogee": 2748.130206313422, "out_of_rail_velocity": 23.575026919395878, "out_of_rail_time": 0.38398746469479333, "t_final": 262.27234006704515, "x_impact": 854.6716510704466} +{"lateral_surface_wind": 2.2856587105511967, "apogee_x": 385.6752511186222, "y_impact": 1824.5426028005197, "max_mach_number": 0.7648634368906857, "impact_velocity": -5.264271064371923, "apogee_y": 28.003324797525174, "frontal_surface_wind": 2.778671430062814, "apogee_time": 24.33820558575993, "initial_stability_margin": 2.539613177965439, "out_of_rail_stability_margin": 2.6175501828913856, "apogee": 2994.929279783744, "out_of_rail_velocity": 24.38609497853471, "out_of_rail_time": 0.3743378022862897, "t_final": 281.7695294887372, "x_impact": 1276.1942409551846} +{"lateral_surface_wind": 3.1754874762870786, "apogee_x": 632.3439787206104, "y_impact": 2856.2527630133554, "max_mach_number": 1.1020231517756425, "impact_velocity": -5.386135767488097, "apogee_y": 83.76032300299565, "frontal_surface_wind": 3.052618159900408, "apogee_time": 28.78469142826655, "initial_stability_margin": 2.5733731026969364, "out_of_rail_stability_margin": 2.6384215079940057, "apogee": 4520.823705114272, "out_of_rail_velocity": 30.022883016560304, "out_of_rail_time": 0.3169772067882325, "t_final": 346.46254240084704, "x_impact": 1898.820912196064} +{"lateral_surface_wind": 4.529368445640515, "apogee_x": 393.5432720106352, "y_impact": 2372.706540400768, "max_mach_number": 0.9237736632112079, "impact_velocity": -5.435733222938856, "apogee_y": -268.35062943253087, "frontal_surface_wind": 3.4086614910842097, "apogee_time": 27.06233291762483, "initial_stability_margin": 2.6648327428140997, "out_of_rail_stability_margin": 2.7314231746522757, "apogee": 3832.724669487273, "out_of_rail_velocity": 27.020301890214917, "out_of_rail_time": 0.34370235102307456, "t_final": 313.6376010638532, "x_impact": 1108.6625893467858} +{"lateral_surface_wind": 4.307421420122425, "apogee_x": 600.2517702604662, "y_impact": 2876.851517094375, "max_mach_number": 0.8968025513128567, "impact_velocity": -5.260860760777636, "apogee_y": -48.54862387199358, "frontal_surface_wind": 2.88810115288216, "apogee_time": 26.38616605233566, "initial_stability_margin": 2.581817463983616, "out_of_rail_stability_margin": 2.652067186126238, "apogee": 3641.019916310836, "out_of_rail_velocity": 26.583861704649795, "out_of_rail_time": 0.3482568398523452, "t_final": 328.878056748244, "x_impact": 1170.1026165938788} +{"lateral_surface_wind": 3.350709670386933, "apogee_x": 525.9039121375291, "y_impact": 2932.795845090326, "max_mach_number": 1.0572797548060462, "impact_velocity": -5.309949269699672, "apogee_y": 16.389077387120107, "frontal_surface_wind": 2.048914151050886, "apogee_time": 28.185499656262444, "initial_stability_margin": 2.4601844604016754, "out_of_rail_stability_margin": 2.5271231272591934, "apogee": 4307.774958463349, "out_of_rail_velocity": 29.26679715515857, "out_of_rail_time": 0.3226913779128761, "t_final": 355.2643650338088, "x_impact": 1282.3390617703394} +{"lateral_surface_wind": 4.862113299817294, "apogee_x": 542.6775247594956, "y_impact": 3405.611403346054, "max_mach_number": 0.8961799394954816, "impact_velocity": -5.398594798405724, "apogee_y": -175.69339838602073, "frontal_surface_wind": 4.971713476413106, "apogee_time": 26.50757065737943, "initial_stability_margin": 2.6565618963618642, "out_of_rail_stability_margin": 2.7225100872485517, "apogee": 3659.4423867084897, "out_of_rail_velocity": 26.595372916669163, "out_of_rail_time": 0.3482519005396769, "t_final": 319.53673916001986, "x_impact": 1645.854864545839} +{"lateral_surface_wind": 3.087341917009531, "apogee_x": 485.71004399209613, "y_impact": 2143.2768850897446, "max_mach_number": 0.8273576508308226, "impact_velocity": -5.317781911130841, "apogee_y": -8.968672390540718, "frontal_surface_wind": 2.5083989585610555, "apogee_time": 25.556125351269294, "initial_stability_margin": 2.6856304476307704, "out_of_rail_stability_margin": 2.757083382881112, "apogee": 3342.9695037691954, "out_of_rail_velocity": 25.44799537958448, "out_of_rail_time": 0.3607045433127983, "t_final": 300.9483452041126, "x_impact": 1334.60282445671} +{"lateral_surface_wind": 3.3269883355411136, "apogee_x": 803.0589615478385, "y_impact": 3331.9070322860152, "max_mach_number": 0.9828536072573753, "impact_velocity": -5.231476567294013, "apogee_y": 245.3927941875701, "frontal_surface_wind": 2.492700349918551, "apogee_time": 27.238188839262584, "initial_stability_margin": 2.4721907575939186, "out_of_rail_stability_margin": 2.5431257958033013, "apogee": 3967.380683159768, "out_of_rail_velocity": 27.96450820204442, "out_of_rail_time": 0.33467243633734384, "t_final": 343.8305910184364, "x_impact": 1792.1464543451928} +{"lateral_surface_wind": 3.450560071905084, "apogee_x": 510.4028341225346, "y_impact": 3159.9674618241693, "max_mach_number": 1.1442039392077974, "impact_velocity": -5.211326913634624, "apogee_y": -25.867511216240736, "frontal_surface_wind": 1.875883707423107, "apogee_time": 28.704649920274218, "initial_stability_margin": 2.57356306257588, "out_of_rail_stability_margin": 2.6362788692230654, "apogee": 4572.736468460107, "out_of_rail_velocity": 30.81023321939431, "out_of_rail_time": 0.3101424885164294, "t_final": 374.96283620010183, "x_impact": 1379.375330579769} +{"lateral_surface_wind": 3.5261648484524404, "apogee_x": 405.2262432267669, "y_impact": 2894.5810584733586, "max_mach_number": 0.9931486260509311, "impact_velocity": -5.312594540420215, "apogee_y": -133.37541231940938, "frontal_surface_wind": 3.372718933140603, "apogee_time": 27.554726993305813, "initial_stability_margin": 2.609059439224052, "out_of_rail_stability_margin": 2.6764037076572595, "apogee": 4062.8112049484766, "out_of_rail_velocity": 28.170608435669664, "out_of_rail_time": 0.3325003471335281, "t_final": 344.29741501257615, "x_impact": 1704.4095656595596} +{"lateral_surface_wind": 2.150657065712773, "apogee_x": 574.2414954775788, "y_impact": 3294.6297490544544, "max_mach_number": 1.101974777572824, "impact_velocity": -5.291272287123595, "apogee_y": 186.43391645217037, "frontal_surface_wind": 2.884427992352316, "apogee_time": 28.422437123487473, "initial_stability_margin": 2.5820193300243757, "out_of_rail_stability_margin": 2.647683904210516, "apogee": 4435.604201505663, "out_of_rail_velocity": 30.052657409074527, "out_of_rail_time": 0.3162505238124317, "t_final": 358.6517003648454, "x_impact": 2257.710370900709} +{"lateral_surface_wind": 3.1916742862135448, "apogee_x": 301.1536303799606, "y_impact": 1534.2175667545139, "max_mach_number": 0.6695439888026226, "impact_velocity": -5.38645751869802, "apogee_y": -87.1478383581442, "frontal_surface_wind": 3.2607352663267832, "apogee_time": 22.69136404631427, "initial_stability_margin": 2.6144680316606803, "out_of_rail_stability_margin": 2.6926094905062303, "apogee": 2528.460768300724, "out_of_rail_velocity": 22.79245031494209, "out_of_rail_time": 0.39459841869776385, "t_final": 248.42600193686476, "x_impact": 807.0697196545888} +{"lateral_surface_wind": 4.112294889321739, "apogee_x": 673.12606716661, "y_impact": 2810.63274860491, "max_mach_number": 0.8698435034875981, "impact_velocity": -5.332265379438179, "apogee_y": 23.6933774013168, "frontal_surface_wind": 2.4329962070324544, "apogee_time": 26.06275028336048, "initial_stability_margin": 2.712738934593414, "out_of_rail_stability_margin": 2.783555215022028, "apogee": 3519.104624367705, "out_of_rail_velocity": 26.135426147852815, "out_of_rail_time": 0.3532567283317563, "t_final": 311.70847334203796, "x_impact": 1541.6340016809438} +{"lateral_surface_wind": 4.611986188221945, "apogee_x": 471.6025191025867, "y_impact": 2259.9984056337694, "max_mach_number": 0.828752092693901, "impact_velocity": -5.370697256508702, "apogee_y": -193.2281980587677, "frontal_surface_wind": 3.2960180637876397, "apogee_time": 25.461354909515343, "initial_stability_margin": 2.60104340871267, "out_of_rail_stability_margin": 2.6783195545486147, "apogee": 3324.239839008815, "out_of_rail_velocity": 25.37757842844262, "out_of_rail_time": 0.3618410320411569, "t_final": 300.39996275352036, "x_impact": 1081.445397294941} +{"lateral_surface_wind": 4.283341613261008, "apogee_x": 489.5474541310963, "y_impact": 2158.7450487744063, "max_mach_number": 0.7210783628994103, "impact_velocity": -5.316350214312337, "apogee_y": -59.27518343752641, "frontal_surface_wind": 2.9236949539778143, "apogee_time": 23.522442022249262, "initial_stability_margin": 2.526529617858073, "out_of_rail_stability_margin": 2.6016889004466166, "apogee": 2763.3236691070474, "out_of_rail_velocity": 23.73234266137043, "out_of_rail_time": 0.3821177616193785, "t_final": 279.0232644406339, "x_impact": 784.2473415176617} +{"lateral_surface_wind": 1.7028881180081918, "apogee_x": 292.30192904772264, "y_impact": 1602.446957918424, "max_mach_number": 0.713922708034629, "impact_velocity": -5.335646580650108, "apogee_y": 51.64475001560384, "frontal_surface_wind": 3.311540652396646, "apogee_time": 23.530213098360907, "initial_stability_margin": 2.716016242280882, "out_of_rail_stability_margin": 2.790090413838529, "apogee": 2757.546758211299, "out_of_rail_velocity": 23.617743839614505, "out_of_rail_time": 0.38360885268418937, "t_final": 267.36970508363066, "x_impact": 1080.4206679965523} +{"lateral_surface_wind": 3.6184504999571883, "apogee_x": 478.9188238856462, "y_impact": 2678.9987246541104, "max_mach_number": 0.9081129494229839, "impact_velocity": -5.191548482947786, "apogee_y": -87.87864651736396, "frontal_surface_wind": 3.273513024227379, "apogee_time": 26.410420061977778, "initial_stability_margin": 2.577372123183492, "out_of_rail_stability_margin": 2.6484876724371538, "apogee": 3667.942974400567, "out_of_rail_velocity": 26.750789504367763, "out_of_rail_time": 0.3465587917525369, "t_final": 329.3988563778069, "x_impact": 1625.539149053887} +{"lateral_surface_wind": 1.0736819973223168, "apogee_x": 214.34501623680345, "y_impact": 1165.8435031727843, "max_mach_number": 0.6951336482684934, "impact_velocity": -5.357334584706454, "apogee_y": 53.86928049027465, "frontal_surface_wind": 2.643572261711798, "apogee_time": 23.21205369184499, "initial_stability_margin": 2.7104311090001794, "out_of_rail_stability_margin": 2.785476980382494, "apogee": 2670.6150818903543, "out_of_rail_velocity": 23.292803865907374, "out_of_rail_time": 0.38782542375377355, "t_final": 267.87694374534686, "x_impact": 900.8464831506728} +{"lateral_surface_wind": 3.3471370594573564, "apogee_x": 509.8085791778023, "y_impact": 2483.549658526788, "max_mach_number": 0.8547537677398583, "impact_velocity": -5.413728244661463, "apogee_y": 2.290177362901108, "frontal_surface_wind": 2.4655790241884077, "apogee_time": 26.10097705629196, "initial_stability_margin": 2.5601140847683546, "out_of_rail_stability_margin": 2.63433919229862, "apogee": 3501.3442270894348, "out_of_rail_velocity": 25.809595419801642, "out_of_rail_time": 0.35721085392734137, "t_final": 305.2951129961677, "x_impact": 1197.6073230487568} +{"lateral_surface_wind": 3.679270315636745, "apogee_x": 368.98890766016876, "y_impact": 1431.9677261414154, "max_mach_number": 0.6581045365628032, "impact_velocity": -5.298343221285649, "apogee_y": -70.60957708632226, "frontal_surface_wind": 2.0069489616729728, "apogee_time": 22.361404893467853, "initial_stability_margin": 2.5686200701672286, "out_of_rail_stability_margin": 2.6509560060460684, "apogee": 2451.625363294921, "out_of_rail_velocity": 22.57046286801259, "out_of_rail_time": 0.3986998119702433, "t_final": 252.19269409401616, "x_impact": 510.75056706178} +{"lateral_surface_wind": 4.586212577716585, "apogee_x": 375.2471248329307, "y_impact": 2212.4071799158332, "max_mach_number": 0.8299773342744038, "impact_velocity": -5.275849667820954, "apogee_y": -248.6939653497653, "frontal_surface_wind": 3.331787188455859, "apogee_time": 25.36072985414153, "initial_stability_margin": 2.4920904467815066, "out_of_rail_stability_margin": 2.5698064653899255, "apogee": 3308.4082412628673, "out_of_rail_velocity": 25.395842090913092, "out_of_rail_time": 0.3615192284309042, "t_final": 303.0612928810202, "x_impact": 967.288478812377} +{"lateral_surface_wind": 3.033799982545228, "apogee_x": 500.5979441413184, "y_impact": 2735.556588356528, "max_mach_number": 1.026910555136427, "impact_velocity": -5.447284810367702, "apogee_y": 18.271368363126612, "frontal_surface_wind": 3.1934708403425898, "apogee_time": 28.209855633671147, "initial_stability_margin": 2.567310214956326, "out_of_rail_stability_margin": 2.634499718031747, "apogee": 4266.90021777896, "out_of_rail_velocity": 28.716802421556533, "out_of_rail_time": 0.3275209881044296, "t_final": 344.5992509717239, "x_impact": 1696.1233360048504} +{"lateral_surface_wind": 4.3846308152755595, "apogee_x": 454.94512410125935, "y_impact": 2166.879231333737, "max_mach_number": 0.785289548282753, "impact_velocity": -5.460248361547775, "apogee_y": -159.07594510785026, "frontal_surface_wind": 2.769480126945258, "apogee_time": 24.917351151767793, "initial_stability_margin": 2.7077783202535857, "out_of_rail_stability_margin": 2.780265482137926, "apogee": 3138.429621168747, "out_of_rail_velocity": 24.766684969272852, "out_of_rail_time": 0.3688716570124719, "t_final": 285.12779214154943, "x_impact": 824.3725979139485} +{"lateral_surface_wind": 4.78348863686313, "apogee_x": 336.22109732429703, "y_impact": 2019.3605103041546, "max_mach_number": 0.6507760787480561, "impact_velocity": -5.372325540578003, "apogee_y": -207.0312112715647, "frontal_surface_wind": 5.238330814961264, "apogee_time": 22.145987263172792, "initial_stability_margin": 2.603622259283088, "out_of_rail_stability_margin": 2.6878629234070153, "apogee": 2399.418625150923, "out_of_rail_velocity": 22.407782786204123, "out_of_rail_time": 0.4010630240994092, "t_final": 246.70137348993165, "x_impact": 949.6152221622536} +{"lateral_surface_wind": 4.4285913710978315, "apogee_x": 729.8948436291926, "y_impact": 3174.3651111275367, "max_mach_number": 1.0115735641445338, "impact_velocity": -5.454405163770402, "apogee_y": -13.519250984262197, "frontal_surface_wind": 2.540459048783794, "apogee_time": 27.9430677130872, "initial_stability_margin": 2.572341080539336, "out_of_rail_stability_margin": 2.6395650283173744, "apogee": 4172.7811990982755, "out_of_rail_velocity": 28.461438190591842, "out_of_rail_time": 0.33018278304789733, "t_final": 335.3769868937962, "x_impact": 1685.8279907792812} +{"lateral_surface_wind": 2.7995836512221652, "apogee_x": 282.27564088976357, "y_impact": 1760.983469870978, "max_mach_number": 0.7003308544360956, "impact_velocity": -5.459329739162208, "apogee_y": -78.65904680514885, "frontal_surface_wind": 4.0508318714445375, "apogee_time": 23.37426515825665, "initial_stability_margin": 2.7655191001088073, "out_of_rail_stability_margin": 2.8399202509124266, "apogee": 2700.100139281332, "out_of_rail_velocity": 23.35727602529242, "out_of_rail_time": 0.3870490214705515, "t_final": 260.4742640374373, "x_impact": 1155.9801235731363} +{"lateral_surface_wind": 3.2366242595067307, "apogee_x": 390.13818590774275, "y_impact": 2205.766844300846, "max_mach_number": 0.859572874424146, "impact_velocity": -5.335750829529503, "apogee_y": -93.09802690756625, "frontal_surface_wind": 2.9877184848948435, "apogee_time": 26.015542366672204, "initial_stability_margin": 2.578150865169559, "out_of_rail_stability_margin": 2.650324051736448, "apogee": 3498.7569225104758, "out_of_rail_velocity": 25.967257546854825, "out_of_rail_time": 0.35509841666788905, "t_final": 315.68946455991625, "x_impact": 1275.515482564865} +{"lateral_surface_wind": 2.1892246350644844, "apogee_x": 473.14750251789326, "y_impact": 2783.3518491699415, "max_mach_number": 0.9578239488378179, "impact_velocity": -5.379987041005424, "apogee_y": 86.21170004630606, "frontal_surface_wind": 2.8552663894272037, "apogee_time": 27.522420754911355, "initial_stability_margin": 2.5539918786434876, "out_of_rail_stability_margin": 2.6243715477815837, "apogee": 3994.4840908133187, "out_of_rail_velocity": 27.492264530454147, "out_of_rail_time": 0.33899727894737125, "t_final": 336.14879794376617, "x_impact": 1924.2132282982436} +{"lateral_surface_wind": 5.094453202009338, "apogee_x": 291.4319465593509, "y_impact": 2622.583017135257, "max_mach_number": 0.8594552598873507, "impact_velocity": -5.349338190767207, "apogee_y": -380.8789156895139, "frontal_surface_wind": 3.8014119409794813, "apogee_time": 25.993156777144144, "initial_stability_margin": 2.5492010737063078, "out_of_rail_stability_margin": 2.619460244545077, "apogee": 3488.651679293168, "out_of_rail_velocity": 25.94397728292164, "out_of_rail_time": 0.3557001121951824, "t_final": 313.43844123697437, "x_impact": 1196.2376135249635} +{"lateral_surface_wind": 3.4513428726231963, "apogee_x": 347.4859546425501, "y_impact": 1240.275723645691, "max_mach_number": 0.538758032804247, "impact_velocity": -5.228139882123235, "apogee_y": -21.178032821836386, "frontal_surface_wind": 2.609182379169664, "apogee_time": 19.72574470774125, "initial_stability_margin": 2.5039232579756043, "out_of_rail_stability_margin": 2.5899349442713047, "apogee": 1846.342958121866, "out_of_rail_velocity": 20.460597150001163, "out_of_rail_time": 0.43319066096515113, "t_final": 219.13868365237096, "x_impact": 607.3942854392609} +{"lateral_surface_wind": 1.1491642399857454, "apogee_x": 589.0435158595014, "y_impact": 2331.2974450123497, "max_mach_number": 1.0400337771475678, "impact_velocity": -5.313283013985854, "apogee_y": 294.48098706706566, "frontal_surface_wind": 2.61164486173064, "apogee_time": 28.050123572545502, "initial_stability_margin": 2.611863782499371, "out_of_rail_stability_margin": 2.679075667272708, "apogee": 4250.592685669391, "out_of_rail_velocity": 28.97986669874092, "out_of_rail_time": 0.3251725883981673, "t_final": 350.1080917759941, "x_impact": 1928.4020208507216} +{"lateral_surface_wind": 2.817215682740395, "apogee_x": 146.7399066966296, "y_impact": 1169.0015245229324, "max_mach_number": 0.5012607917126748, "impact_velocity": -5.182434629154778, "apogee_y": -105.31565191760822, "frontal_surface_wind": 4.038589267036555, "apogee_time": 18.88268036873189, "initial_stability_margin": 2.525086773284262, "out_of_rail_stability_margin": 2.622438964689988, "apogee": 1672.2401418560194, "out_of_rail_velocity": 19.637748467920673, "out_of_rail_time": 0.44998957645038534, "t_final": 215.02983258362326, "x_impact": 681.3218922125393} +{"lateral_surface_wind": 2.591595185101011, "apogee_x": 227.86400263094376, "y_impact": 2380.1449243037137, "max_mach_number": 0.8352151510358432, "impact_velocity": -5.328630505717849, "apogee_y": -114.94032680978022, "frontal_surface_wind": 4.186948992698925, "apogee_time": 25.54533575737756, "initial_stability_margin": 2.682947659788073, "out_of_rail_stability_margin": 2.751754852057421, "apogee": 3358.2849740292186, "out_of_rail_velocity": 25.639515694309253, "out_of_rail_time": 0.35909035756195085, "t_final": 309.41723274970815, "x_impact": 1457.0478751809992} +{"lateral_surface_wind": 3.3270264614360525, "apogee_x": 556.9817974303556, "y_impact": 2427.250560042353, "max_mach_number": 0.8168136765267714, "impact_velocity": -5.361467918877509, "apogee_y": 64.51950503721896, "frontal_surface_wind": 2.4926494627634654, "apogee_time": 25.336555075786904, "initial_stability_margin": 2.532258556536076, "out_of_rail_stability_margin": 2.6060022646557397, "apogee": 3277.5207259647586, "out_of_rail_velocity": 25.25406268370403, "out_of_rail_time": 0.36314716724020063, "t_final": 300.46480783866974, "x_impact": 1176.5920221163158} +{"lateral_surface_wind": 4.466789814382065, "apogee_x": 456.97846947059577, "y_impact": 2277.4797406901866, "max_mach_number": 0.8053965355932206, "impact_velocity": -5.296434904153369, "apogee_y": -150.67555152940793, "frontal_surface_wind": 3.4902636621460337, "apogee_time": 25.038673294273433, "initial_stability_margin": 2.5698348143130216, "out_of_rail_stability_margin": 2.6416414429596324, "apogee": 3200.151996955246, "out_of_rail_velocity": 25.09580153491182, "out_of_rail_time": 0.3644857091888924, "t_final": 298.8625621802335, "x_impact": 1034.8318366982994} +{"lateral_surface_wind": 4.514997953637663, "apogee_x": 477.3955420049427, "y_impact": 2128.7433256158834, "max_mach_number": 0.8207006663168565, "impact_velocity": -5.415293557208831, "apogee_y": -182.3185861747821, "frontal_surface_wind": 2.551431174548211, "apogee_time": 25.475229701222815, "initial_stability_margin": 2.5089152777761687, "out_of_rail_stability_margin": 2.5858988563568537, "apogee": 3312.54771987587, "out_of_rail_velocity": 25.262613683748324, "out_of_rail_time": 0.36334378467909, "t_final": 282.9395735654274, "x_impact": 872.2674636672573} +{"lateral_surface_wind": 2.4832631958362477, "apogee_x": 416.66411897214454, "y_impact": 2327.5812596791134, "max_mach_number": 0.8815586919947948, "impact_velocity": -5.24661039326358, "apogee_y": 19.30227718929743, "frontal_surface_wind": 3.000360938539367, "apogee_time": 26.18489603099379, "initial_stability_margin": 2.51899906099616, "out_of_rail_stability_margin": 2.591977077870348, "apogee": 3574.2476407659015, "out_of_rail_velocity": 26.287236059273283, "out_of_rail_time": 0.3513644253380534, "t_final": 324.05890678256696, "x_impact": 1407.4743800576487} +{"lateral_surface_wind": 3.2738398040284227, "apogee_x": 525.7164971381685, "y_impact": 2403.7667850615976, "max_mach_number": 0.8307468474192298, "impact_velocity": -5.446217724774085, "apogee_y": 1.9809848133728318, "frontal_surface_wind": 3.178230980262932, "apogee_time": 25.71635964241582, "initial_stability_margin": 2.6911834399614865, "out_of_rail_stability_margin": 2.7642154383807407, "apogee": 3378.753426332913, "out_of_rail_velocity": 25.466263057054963, "out_of_rail_time": 0.3607393456899165, "t_final": 305.5490713663176, "x_impact": 1403.443402297827} +{"lateral_surface_wind": 4.3308387110002915, "apogee_x": 654.7089828149212, "y_impact": 2647.3354896929213, "max_mach_number": 0.8521588208004306, "impact_velocity": -5.215627549820066, "apogee_y": -64.22848203933812, "frontal_surface_wind": 2.8172764024182073, "apogee_time": 25.55040383449933, "initial_stability_margin": 2.5085577866967985, "out_of_rail_stability_margin": 2.5833639718256234, "apogee": 3384.583982688028, "out_of_rail_velocity": 25.814746498908768, "out_of_rail_time": 0.35671275755152776, "t_final": 308.511497321263, "x_impact": 1598.1245875170068} +{"lateral_surface_wind": 3.640397153496303, "apogee_x": 401.1590081158014, "y_impact": 2536.4860225378648, "max_mach_number": 0.9878308136771782, "impact_velocity": -5.3608970441657675, "apogee_y": -145.44499339179202, "frontal_surface_wind": 2.3170084592429405, "apogee_time": 27.79090342129252, "initial_stability_margin": 2.616270357240872, "out_of_rail_stability_margin": 2.6805924101190324, "apogee": 4106.091513719069, "out_of_rail_velocity": 28.11036290267818, "out_of_rail_time": 0.33293522818224924, "t_final": 344.82659565494635, "x_impact": 1259.9506515338646} +{"lateral_surface_wind": 4.556506037334723, "apogee_x": 474.6616156792506, "y_impact": 3971.3051059572367, "max_mach_number": 1.1366564749021968, "impact_velocity": -5.357072748643749, "apogee_y": -168.6448538678663, "frontal_surface_wind": 5.253221236873631, "apogee_time": 28.87537253037724, "initial_stability_margin": 2.484740887991061, "out_of_rail_stability_margin": 2.5469321896783867, "apogee": 4592.177926708236, "out_of_rail_velocity": 30.61034679949914, "out_of_rail_time": 0.3118942769357529, "t_final": 344.8343237364307, "x_impact": 1787.643959845665} +{"lateral_surface_wind": 3.203365431066255, "apogee_x": 427.66522848122827, "y_impact": 2396.8238441649637, "max_mach_number": 0.8681289607986685, "impact_velocity": -5.402510120114097, "apogee_y": -52.50243788613399, "frontal_surface_wind": 3.2492505507260665, "apogee_time": 26.172362380213073, "initial_stability_margin": 2.660901228314239, "out_of_rail_stability_margin": 2.7300508522668663, "apogee": 3544.8057982154373, "out_of_rail_velocity": 26.135723717911052, "out_of_rail_time": 0.3532144473637748, "t_final": 308.6594831853268, "x_impact": 1324.8805157587533} +{"lateral_surface_wind": 3.0511762143036423, "apogee_x": 378.6264444247795, "y_impact": 2325.6811086125313, "max_mach_number": 0.829483710463929, "impact_velocity": -5.513813265195308, "apogee_y": -85.34280613934833, "frontal_surface_wind": 3.864871431259904, "apogee_time": 25.7634789380435, "initial_stability_margin": 2.575699754253547, "out_of_rail_stability_margin": 2.6464252540572266, "apogee": 3386.319876989349, "out_of_rail_velocity": 25.465023841980457, "out_of_rail_time": 0.36061239044907273, "t_final": 298.9464411339136, "x_impact": 1591.8402425246852} +{"lateral_surface_wind": 3.8526569359435037, "apogee_x": 335.6017110807175, "y_impact": 2219.939458817391, "max_mach_number": 0.8191307710890317, "impact_velocity": -5.352143735105757, "apogee_y": -183.6336207310007, "frontal_surface_wind": 2.8395598727667872, "apogee_time": 25.34706624988267, "initial_stability_margin": 2.565595073211305, "out_of_rail_stability_margin": 2.6385459648318355, "apogee": 3287.2481984707033, "out_of_rail_velocity": 25.302834007836125, "out_of_rail_time": 0.36259927600896463, "t_final": 301.86932182210813, "x_impact": 878.1612127204019} +{"lateral_surface_wind": 4.268676791949514, "apogee_x": 484.0813762912905, "y_impact": 2916.5301302128137, "max_mach_number": 0.9531861758107669, "impact_velocity": -5.151578596491254, "apogee_y": -123.75921695138116, "frontal_surface_wind": 2.8008484708354437, "apogee_time": 26.939078624805557, "initial_stability_margin": 2.333116542494139, "out_of_rail_stability_margin": 2.407848564340707, "apogee": 3858.9555093516074, "out_of_rail_velocity": 27.378060368733138, "out_of_rail_time": 0.34002117571766854, "t_final": 334.95786005871355, "x_impact": 1288.8099639607835} +{"lateral_surface_wind": 2.6894055019952403, "apogee_x": 503.9363529448174, "y_impact": 2959.2727177741394, "max_mach_number": 0.9611136701480426, "impact_velocity": -5.467983602993436, "apogee_y": 61.46690933301146, "frontal_surface_wind": 4.124803694327649, "apogee_time": 27.586368812023032, "initial_stability_margin": 2.693498762040678, "out_of_rail_stability_margin": 2.759632167262213, "apogee": 4011.9322110160892, "out_of_rail_velocity": 27.62669457241672, "out_of_rail_time": 0.33779850313193716, "t_final": 326.79664101201615, "x_impact": 2017.4481934801258} +{"lateral_surface_wind": 3.335566265014476, "apogee_x": 540.8265114258738, "y_impact": 2967.1245880276874, "max_mach_number": 0.9606961697390685, "impact_velocity": -5.246634026636543, "apogee_y": 22.62631060776731, "frontal_surface_wind": 2.755648381755877, "apogee_time": 27.205146885394022, "initial_stability_margin": 2.4954685991203727, "out_of_rail_stability_margin": 2.562934401326069, "apogee": 3931.729392012893, "out_of_rail_velocity": 27.652891540281217, "out_of_rail_time": 0.33803082554753894, "t_final": 344.13840122575436, "x_impact": 1732.4031291923961} +{"lateral_surface_wind": 4.755875281282979, "apogee_x": 299.6738584834449, "y_impact": 2163.6905549741086, "max_mach_number": 0.7264109933365592, "impact_velocity": -5.331122370495858, "apogee_y": -269.9855596512514, "frontal_surface_wind": 4.217325749970724, "apogee_time": 23.669136137439867, "initial_stability_margin": 2.430712630128406, "out_of_rail_stability_margin": 2.511105796720353, "apogee": 2796.8712400133054, "out_of_rail_velocity": 23.699649086782085, "out_of_rail_time": 0.3823368997353432, "t_final": 272.2624980909373, "x_impact": 891.5295066470906} +{"lateral_surface_wind": 2.699129059601046, "apogee_x": 284.86994357084154, "y_impact": 2377.0192638924063, "max_mach_number": 0.8441125580213638, "impact_velocity": -5.41117435970911, "apogee_y": -94.37179212308928, "frontal_surface_wind": 4.118447497603734, "apogee_time": 25.896873999945043, "initial_stability_margin": 2.661946367527582, "out_of_rail_stability_margin": 2.731970816387555, "apogee": 3442.8845545310705, "out_of_rail_velocity": 25.708239332507105, "out_of_rail_time": 0.3575631037764555, "t_final": 304.65507748232193, "x_impact": 1516.8114961968167} +{"lateral_surface_wind": 4.830987803756279, "apogee_x": 411.50886089378946, "y_impact": 2791.9477751956747, "max_mach_number": 0.8472525800286407, "impact_velocity": -5.537959479306495, "apogee_y": -259.9770008542029, "frontal_surface_wind": 5.194557739204515, "apogee_time": 25.991636611093043, "initial_stability_margin": 2.674078782799212, "out_of_rail_stability_margin": 2.7415487981650037, "apogee": 3461.988227027303, "out_of_rail_velocity": 25.78212084119549, "out_of_rail_time": 0.3569763141282551, "t_final": 298.5791436444587, "x_impact": 1441.6437615002385} +{"lateral_surface_wind": 3.6604766413133847, "apogee_x": 573.1185319720252, "y_impact": 2537.7316613198636, "max_mach_number": 0.947439638180173, "impact_velocity": -5.454399422448035, "apogee_y": -23.269542045906867, "frontal_surface_wind": 2.2851543479131577, "apogee_time": 27.413021148524578, "initial_stability_margin": 2.732323466368816, "out_of_rail_stability_margin": 2.800419710708004, "apogee": 3949.2638858383607, "out_of_rail_velocity": 27.36672619381318, "out_of_rail_time": 0.34028556509220725, "t_final": 333.06077902308994, "x_impact": 1389.473803357834} +{"lateral_surface_wind": 4.624853058650708, "apogee_x": 573.4224615185366, "y_impact": 3327.4370392726496, "max_mach_number": 0.9874028160695953, "impact_velocity": -5.34593147198371, "apogee_y": -124.08699528828545, "frontal_surface_wind": 4.3606100901563964, "apogee_time": 27.554956447957135, "initial_stability_margin": 2.592738927094415, "out_of_rail_stability_margin": 2.6591502056892056, "apogee": 4050.2416136210622, "out_of_rail_velocity": 28.10160401774707, "out_of_rail_time": 0.3333364044793627, "t_final": 339.09514398818413, "x_impact": 1774.2461170990896} +{"lateral_surface_wind": 2.489918067944716, "apogee_x": 406.9730728763615, "y_impact": 2447.0863135539935, "max_mach_number": 0.8253298866666062, "impact_velocity": -5.457718947670697, "apogee_y": 25.7702037499438, "frontal_surface_wind": 4.541254551011262, "apogee_time": 25.63208782348276, "initial_stability_margin": 2.6430375691246604, "out_of_rail_stability_margin": 2.715001534478949, "apogee": 3355.845839093435, "out_of_rail_velocity": 25.40800911694773, "out_of_rail_time": 0.36111836336690284, "t_final": 295.4467355363587, "x_impact": 1516.902327958217} +{"lateral_surface_wind": 2.9912624501356126, "apogee_x": 369.36040243082226, "y_impact": 1458.92062345383, "max_mach_number": 0.6484697299016905, "impact_velocity": -5.294766722021057, "apogee_y": -10.09507114054834, "frontal_surface_wind": 2.6222308064399993, "apogee_time": 22.16431559366531, "initial_stability_margin": 2.5887573855576607, "out_of_rail_stability_margin": 2.672330965967871, "apogee": 2403.4298714556444, "out_of_rail_velocity": 22.401116104844597, "out_of_rail_time": 0.4011327868599829, "t_final": 247.50640397114822, "x_impact": 824.499890536135} +{"lateral_surface_wind": 2.868332683882867, "apogee_x": 272.40838057737744, "y_impact": 2096.6269227049474, "max_mach_number": 0.7466840157678619, "impact_velocity": -5.336173663188978, "apogee_y": -100.68262903830072, "frontal_surface_wind": 4.1295711009283504, "apogee_time": 24.036720550958425, "initial_stability_margin": 2.605954250269173, "out_of_rail_stability_margin": 2.6830488818767497, "apogee": 2903.7075133428184, "out_of_rail_velocity": 24.082612817272597, "out_of_rail_time": 0.37818423843880333, "t_final": 281.73021261448673, "x_impact": 1090.2357197909448} +{"lateral_surface_wind": 3.4915899976315052, "apogee_x": 583.8013643404936, "y_impact": 2155.1824666308, "max_mach_number": 0.8562220905987101, "impact_velocity": -5.62542837736388, "apogee_y": -0.1914773908980914, "frontal_surface_wind": 1.798361415856307, "apogee_time": 26.364879390014035, "initial_stability_margin": 2.651878678961586, "out_of_rail_stability_margin": 2.7218481385856097, "apogee": 3554.801290217816, "out_of_rail_velocity": 25.882377105647382, "out_of_rail_time": 0.35664941527883376, "t_final": 295.9272676416335, "x_impact": 1054.7704206316232} +{"lateral_surface_wind": 2.153193321035931, "apogee_x": 339.402051399766, "y_impact": 1793.2771813748961, "max_mach_number": 0.7464899090955539, "impact_velocity": -5.323077962042744, "apogee_y": 28.67851086925882, "frontal_surface_wind": 2.8825352000647175, "apogee_time": 24.06149080652571, "initial_stability_margin": 2.588059241924625, "out_of_rail_stability_margin": 2.6648059121543817, "apogee": 2910.9583309882873, "out_of_rail_velocity": 24.104745000853555, "out_of_rail_time": 0.3777300771344252, "t_final": 279.84365262797587, "x_impact": 1194.8028100912097} +{"lateral_surface_wind": 1.2055410933562918, "apogee_x": 612.9052084660325, "y_impact": 1891.570485692571, "max_mach_number": 0.8961476313658173, "impact_velocity": -5.3577657592893075, "apogee_y": 286.48903339825654, "frontal_surface_wind": 2.5861047941828237, "apogee_time": 26.571000213791773, "initial_stability_margin": 2.5389434031642066, "out_of_rail_stability_margin": 2.613411102686632, "apogee": 3676.281780016746, "out_of_rail_velocity": 26.48008194924263, "out_of_rail_time": 0.34936819689992893, "t_final": 309.4456317460996, "x_impact": 1681.9936973870997} +{"lateral_surface_wind": 4.55062926876431, "apogee_x": 327.85289696376003, "y_impact": 3284.022669827076, "max_mach_number": 0.9136423440609167, "impact_velocity": -5.243768936842708, "apogee_y": -286.5334897078187, "frontal_surface_wind": 5.258312836839732, "apogee_time": 26.458020083367874, "initial_stability_margin": 2.61904484750163, "out_of_rail_stability_margin": 2.691171277401966, "apogee": 3683.889446077588, "out_of_rail_velocity": 26.760818899720473, "out_of_rail_time": 0.3465260536235122, "t_final": 321.1723592975136, "x_impact": 1396.6510334416732} +{"lateral_surface_wind": 3.543356219917306, "apogee_x": 571.2199561979432, "y_impact": 2522.650373417468, "max_mach_number": 0.8647848551323256, "impact_velocity": -5.305662973094441, "apogee_y": 4.719822689318391, "frontal_surface_wind": 3.354653221899404, "apogee_time": 25.976853356300634, "initial_stability_margin": 2.4967115971998584, "out_of_rail_stability_margin": 2.567126932358315, "apogee": 3496.0733888133354, "out_of_rail_velocity": 26.070491498728224, "out_of_rail_time": 0.3536285351824457, "t_final": 307.66000255880095, "x_impact": 1600.2815077683608} +{"lateral_surface_wind": 4.8672564323841705, "apogee_x": 297.39974447485133, "y_impact": 1800.728664701285, "max_mach_number": 0.6092060522404767, "impact_velocity": -5.292088768279426, "apogee_y": -220.2607856462969, "frontal_surface_wind": 4.0882760417931046, "apogee_time": 21.242834533167347, "initial_stability_margin": 2.5618406493230306, "out_of_rail_stability_margin": 2.646432820798563, "apogee": 2185.665407858126, "out_of_rail_velocity": 21.706488156930764, "out_of_rail_time": 0.41186003214470157, "t_final": 240.33025459713278, "x_impact": 694.3280765469657} +{"lateral_surface_wind": 4.962476647080897, "apogee_x": 407.45756759234075, "y_impact": 2334.3243418245893, "max_mach_number": 0.7317690259001456, "impact_velocity": -5.415505487112998, "apogee_y": -228.42583552708544, "frontal_surface_wind": 5.069092501932488, "apogee_time": 23.788434161337157, "initial_stability_margin": 2.731252348720519, "out_of_rail_stability_margin": 2.8075365572786244, "apogee": 2825.556091941612, "out_of_rail_velocity": 23.837598134772538, "out_of_rail_time": 0.38058298223294224, "t_final": 269.7351307511443, "x_impact": 1182.0443675777685} +{"lateral_surface_wind": 4.64463781037251, "apogee_x": 198.41546447882746, "y_impact": 2260.739898273073, "max_mach_number": 0.7178700636607573, "impact_velocity": -5.325523809771301, "apogee_y": -329.0651826914707, "frontal_surface_wind": 5.1754632876937645, "apogee_time": 23.392850232389666, "initial_stability_margin": 2.653628048385374, "out_of_rail_stability_margin": 2.728717782616987, "apogee": 2731.4139086143277, "out_of_rail_velocity": 23.610782141480467, "out_of_rail_time": 0.3835219660700217, "t_final": 268.40846825533646, "x_impact": 917.0141713079238} +{"lateral_surface_wind": 2.087391127676335, "apogee_x": 489.90885880265745, "y_impact": 2284.625628143749, "max_mach_number": 0.8339206736110666, "impact_velocity": -5.470044493467666, "apogee_y": 140.09265260497176, "frontal_surface_wind": 2.930537312075041, "apogee_time": 25.81752783752844, "initial_stability_margin": 2.736409063922112, "out_of_rail_stability_margin": 2.8042546954154, "apogee": 3408.114757113453, "out_of_rail_velocity": 25.60564582882921, "out_of_rail_time": 0.35893028108252445, "t_final": 300.2821676404972, "x_impact": 1616.85902581966} +{"lateral_surface_wind": 2.5755030860781765, "apogee_x": 417.3970572620177, "y_impact": 2500.158322479546, "max_mach_number": 0.9860337791327557, "impact_velocity": -5.367466958802078, "apogee_y": -12.378147936403247, "frontal_surface_wind": 2.9215656273493966, "apogee_time": 27.656996899592354, "initial_stability_margin": 2.5850801816146665, "out_of_rail_stability_margin": 2.6492818016654436, "apogee": 4075.2896317832847, "out_of_rail_velocity": 28.13944145454725, "out_of_rail_time": 0.3332268469303926, "t_final": 333.63277984328306, "x_impact": 1554.8968897351035} +{"lateral_surface_wind": 3.8040793065319645, "apogee_x": 790.5392696677382, "y_impact": 2406.4511427946964, "max_mach_number": 0.8636059573523286, "impact_velocity": -5.278640360029924, "apogee_y": 107.02048561192225, "frontal_surface_wind": 2.0371549437886687, "apogee_time": 25.876662328817513, "initial_stability_margin": 2.685620545041191, "out_of_rail_stability_margin": 2.7576857552000478, "apogee": 3467.192101462804, "out_of_rail_velocity": 26.036929204187803, "out_of_rail_time": 0.35452624279076617, "t_final": 313.47361805619, "x_impact": 1460.4328017671405} +{"lateral_surface_wind": 3.044601766377206, "apogee_x": 493.2315266383254, "y_impact": 1881.4632386127967, "max_mach_number": 0.7252022127253429, "impact_velocity": -5.2412749747433836, "apogee_y": 44.45143083790877, "frontal_surface_wind": 2.5601065470028934, "apogee_time": 23.611526449986922, "initial_stability_margin": 2.4698036881939145, "out_of_rail_stability_margin": 2.5529262307041143, "apogee": 2785.2623287277347, "out_of_rail_velocity": 23.679373735712247, "out_of_rail_time": 0.38363848342018714, "t_final": 280.25952645581555, "x_impact": 1136.0346329990523} +{"lateral_surface_wind": 3.45280990470601, "apogee_x": 513.5470515631184, "y_impact": 2358.6966487810187, "max_mach_number": 0.8347927989841724, "impact_velocity": -5.373670828813847, "apogee_y": -36.67172138503108, "frontal_surface_wind": 3.187699930169967, "apogee_time": 25.67264105324497, "initial_stability_margin": 2.5832039237206805, "out_of_rail_stability_margin": 2.6549877148389016, "apogee": 3377.596868912671, "out_of_rail_velocity": 25.550732442522666, "out_of_rail_time": 0.35966410893343403, "t_final": 300.21857224452083, "x_impact": 1509.3016893356998} +{"lateral_surface_wind": 3.075243295679408, "apogee_x": 428.1083137384862, "y_impact": 1408.9572971766595, "max_mach_number": 0.63786246070127, "impact_velocity": -5.456237329557756, "apogee_y": 15.845963487729822, "frontal_surface_wind": 2.523217018057133, "apogee_time": 22.067290574995805, "initial_stability_margin": 2.55029332017866, "out_of_rail_stability_margin": 2.6318776506655097, "apogee": 2366.3940238330697, "out_of_rail_velocity": 22.238347254397333, "out_of_rail_time": 0.40353337198549366, "t_final": 237.09057716313785, "x_impact": 870.1402388914781} +{"lateral_surface_wind": 1.1391019912742295, "apogee_x": 362.92807645979855, "y_impact": 2281.9150491986256, "max_mach_number": 1.0764564148225884, "impact_velocity": -5.291516095511479, "apogee_y": 138.34937822584303, "frontal_surface_wind": 2.6160493091188393, "apogee_time": 28.348379256072935, "initial_stability_margin": 2.522191586704835, "out_of_rail_stability_margin": 2.5861928641398224, "apogee": 4383.906114243334, "out_of_rail_velocity": 29.658420509819113, "out_of_rail_time": 0.3191478579528477, "t_final": 362.7248720579186, "x_impact": 1750.5157797952713} +{"lateral_surface_wind": 4.4689915728418, "apogee_x": 605.499920923123, "y_impact": 2475.250384463391, "max_mach_number": 0.8415554409647308, "impact_velocity": -5.308840423245635, "apogee_y": -49.25230781493363, "frontal_surface_wind": 3.487444049591819, "apogee_time": 25.662731693080794, "initial_stability_margin": 2.530589164374543, "out_of_rail_stability_margin": 2.602825254746944, "apogee": 3387.7093144817895, "out_of_rail_velocity": 25.68412108308569, "out_of_rail_time": 0.3583908726233813, "t_final": 304.5258622442749, "x_impact": 1252.2171189002152} +{"lateral_surface_wind": 4.8914341594808155, "apogee_x": 355.89439959234346, "y_impact": 2023.6739814121536, "max_mach_number": 0.6823866767764503, "impact_velocity": -5.351206872130223, "apogee_y": -226.62385643337117, "frontal_surface_wind": 4.059317434735646, "apogee_time": 22.835956972734593, "initial_stability_margin": 2.5470862989399445, "out_of_rail_stability_margin": 2.6270327022705087, "apogee": 2571.799671688909, "out_of_rail_velocity": 23.036479235566265, "out_of_rail_time": 0.3927362582476684, "t_final": 257.6206885638387, "x_impact": 871.8312275768874} +{"lateral_surface_wind": 1.1246858101949937, "apogee_x": 354.6716366202997, "y_impact": 1845.0847925982373, "max_mach_number": 0.9107219862241298, "impact_velocity": -5.203549750433307, "apogee_y": 136.47395526280846, "frontal_surface_wind": 2.6222793830200666, "apogee_time": 26.50596630095229, "initial_stability_margin": 2.5293814820148355, "out_of_rail_stability_margin": 2.597539819816616, "apogee": 3701.6737765274447, "out_of_rail_velocity": 26.863788717151422, "out_of_rail_time": 0.3453119773171248, "t_final": 328.14513573704755, "x_impact": 1457.1903040809955} +{"lateral_surface_wind": 4.067572007766896, "apogee_x": 424.160644930287, "y_impact": 2735.868025712198, "max_mach_number": 0.8975665327743058, "impact_velocity": -5.539551741032394, "apogee_y": -179.83685167309156, "frontal_surface_wind": 2.507049612952881, "apogee_time": 26.859095644903746, "initial_stability_margin": 2.7167681972968456, "out_of_rail_stability_margin": 2.7848904099719705, "apogee": 3738.836027525677, "out_of_rail_velocity": 26.55263192703063, "out_of_rail_time": 0.348579923591527, "t_final": 318.5851330677629, "x_impact": 1362.1474058809417} +{"lateral_surface_wind": 4.9052211970159245, "apogee_x": 533.1461196851955, "y_impact": 2150.7827741482774, "max_mach_number": 0.693505301516835, "impact_velocity": -5.413824258352526, "apogee_y": -109.61008727537391, "frontal_surface_wind": 2.660523852869021, "apogee_time": 23.05192733985804, "initial_stability_margin": 2.458066390231366, "out_of_rail_stability_margin": 2.540179195907807, "apogee": 2622.992128647706, "out_of_rail_velocity": 23.120934256465116, "out_of_rail_time": 0.3904037602461544, "t_final": 264.2935464788946, "x_impact": 855.0041324914465} +{"lateral_surface_wind": 3.174123028758139, "apogee_x": 810.7754215370483, "y_impact": 3139.271016657343, "max_mach_number": 1.0502672037353213, "impact_velocity": -5.318698436120801, "apogee_y": 159.7724824581193, "frontal_surface_wind": 2.3976422681754532, "apogee_time": 28.2434327127859, "initial_stability_margin": 2.625986010311866, "out_of_rail_stability_margin": 2.6885699724098338, "apogee": 4303.815482661753, "out_of_rail_velocity": 29.226695336313274, "out_of_rail_time": 0.32303700056950696, "t_final": 356.8479139212137, "x_impact": 2191.2437838950887} +{"lateral_surface_wind": 4.9459954613993675, "apogee_x": 375.0068965780513, "y_impact": 2842.755021902338, "max_mach_number": 0.8183085543845807, "impact_velocity": -5.344923442904449, "apogee_y": -277.3853548576305, "frontal_surface_wind": 4.888272652750127, "apogee_time": 25.270553778117165, "initial_stability_margin": 2.5509498533949757, "out_of_rail_stability_margin": 2.6225494554733695, "apogee": 3265.2666464187514, "out_of_rail_velocity": 25.26460895125921, "out_of_rail_time": 0.36283570434888984, "t_final": 296.20148516169746, "x_impact": 1297.9726030412758} +{"lateral_surface_wind": 2.524205599819991, "apogee_x": 268.66001652424177, "y_impact": 1629.8979510153792, "max_mach_number": 0.7426125571694804, "impact_velocity": -5.384400964452987, "apogee_y": -73.62484094980613, "frontal_surface_wind": 2.9659986431461984, "apogee_time": 24.142943224909427, "initial_stability_margin": 2.564730825085105, "out_of_rail_stability_margin": 2.6416387066025466, "apogee": 2917.1345686125533, "out_of_rail_velocity": 24.01612699483055, "out_of_rail_time": 0.3787359729453085, "t_final": 274.5966160120038, "x_impact": 945.1863477279051} +{"lateral_surface_wind": 2.3547067831254367, "apogee_x": 361.3576294337126, "y_impact": 2922.3908530445156, "max_mach_number": 1.1275286332355134, "impact_velocity": -5.405244652916723, "apogee_y": -5.986949944658247, "frontal_surface_wind": 3.1022762331569935, "apogee_time": 29.04070958014122, "initial_stability_margin": 2.695710333598611, "out_of_rail_stability_margin": 2.7568839851553806, "apogee": 4625.310707267136, "out_of_rail_velocity": 30.502702130734566, "out_of_rail_time": 0.31265922758042425, "t_final": 360.77036531150515, "x_impact": 1755.8384822132016} +{"lateral_surface_wind": 3.4901768014691177, "apogee_x": 423.3659624198329, "y_impact": 2139.1898161750814, "max_mach_number": 0.8492668110149267, "impact_velocity": -5.26176667355981, "apogee_y": -93.7557914726705, "frontal_surface_wind": 1.8011025479099956, "apogee_time": 25.740130976941092, "initial_stability_margin": 2.562189164416115, "out_of_rail_stability_margin": 2.635851651328868, "apogee": 3421.491190592459, "out_of_rail_velocity": 25.75994978943336, "out_of_rail_time": 0.3572148969808604, "t_final": 311.0929649066977, "x_impact": 854.2171598775044} +{"lateral_surface_wind": 4.8327609978258685, "apogee_x": 335.57604936504976, "y_impact": 2560.597312137586, "max_mach_number": 0.7875076540904569, "impact_velocity": -5.434292553567401, "apogee_y": -287.6146082806282, "frontal_surface_wind": 5.000250170711563, "apogee_time": 24.82557056532054, "initial_stability_margin": 2.755980652835338, "out_of_rail_stability_margin": 2.823319747497149, "apogee": 3122.1286970461088, "out_of_rail_velocity": 24.836139577866025, "out_of_rail_time": 0.36786789950219106, "t_final": 279.40043672937975, "x_impact": 1169.3718355668236} +{"lateral_surface_wind": 3.298874389821897, "apogee_x": 389.1927716565691, "y_impact": 2858.754884854189, "max_mach_number": 0.9597599462692734, "impact_velocity": -5.355371386532825, "apogee_y": -96.1138135326304, "frontal_surface_wind": 3.7723379183194257, "apogee_time": 27.37075463705366, "initial_stability_margin": 2.6097919023419953, "out_of_rail_stability_margin": 2.6778087473034025, "apogee": 3963.6085252836747, "out_of_rail_velocity": 27.580435880187938, "out_of_rail_time": 0.3383691315757287, "t_final": 326.3769083748469, "x_impact": 1668.993039745239} +{"lateral_surface_wind": 4.318588531026161, "apogee_x": 503.2402923496373, "y_impact": 2139.6367295355526, "max_mach_number": 0.7523917771190738, "impact_velocity": -5.2304154994361705, "apogee_y": -66.49708357847615, "frontal_surface_wind": 2.871376091614968, "apogee_time": 24.044310527278135, "initial_stability_margin": 2.417261571108681, "out_of_rail_stability_margin": 2.4947874237775607, "apogee": 2914.4407812748696, "out_of_rail_velocity": 24.21785609123764, "out_of_rail_time": 0.37674876384491424, "t_final": 278.00063034962477, "x_impact": 822.4828304758353} +{"lateral_surface_wind": 3.1132921206610895, "apogee_x": 293.79350298797567, "y_impact": 1946.0089056275017, "max_mach_number": 0.814394859446425, "impact_velocity": -5.235487731171478, "apogee_y": -122.78753594498868, "frontal_surface_wind": 3.1160247934891996, "apogee_time": 25.15565015382247, "initial_stability_margin": 2.4824790106055064, "out_of_rail_stability_margin": 2.557940291685129, "apogee": 3244.981306805427, "out_of_rail_velocity": 25.22715512765702, "out_of_rail_time": 0.36374526462413354, "t_final": 295.9761846559405, "x_impact": 1027.4115995534037} +{"lateral_surface_wind": 3.717410837477599, "apogee_x": 658.8580862802281, "y_impact": 2554.4576536343816, "max_mach_number": 0.9109487271679289, "impact_velocity": -5.196379055716841, "apogee_y": 69.5352255851919, "frontal_surface_wind": 1.9353890708821393, "apogee_time": 26.369319280555075, "initial_stability_margin": 2.4948896323955125, "out_of_rail_stability_margin": 2.568633612479306, "apogee": 3660.3666742046275, "out_of_rail_velocity": 26.737319759674826, "out_of_rail_time": 0.34651151064799657, "t_final": 322.7017803258836, "x_impact": 1341.5078281829403} +{"lateral_surface_wind": 4.429664182545514, "apogee_x": 498.01274930222684, "y_impact": 2898.585401258689, "max_mach_number": 0.934250977349622, "impact_velocity": -5.252177011722767, "apogee_y": -158.47902368081216, "frontal_surface_wind": 2.6968653636550206, "apogee_time": 26.84593871375323, "initial_stability_margin": 2.5297810936724416, "out_of_rail_stability_margin": 2.5972632511389975, "apogee": 3808.7505167957415, "out_of_rail_velocity": 27.220343605821213, "out_of_rail_time": 0.3415864624807031, "t_final": 337.7768546899315, "x_impact": 1104.0327173854444} +{"lateral_surface_wind": 3.4430435017409957, "apogee_x": 651.5451742999144, "y_impact": 2690.786222656047, "max_mach_number": 0.9212794881282882, "impact_velocity": -5.389188180192008, "apogee_y": 58.07985994130065, "frontal_surface_wind": 2.6201243782109853, "apogee_time": 27.02765867333368, "initial_stability_margin": 2.614657448281276, "out_of_rail_stability_margin": 2.682806122361249, "apogee": 3818.3809244887293, "out_of_rail_velocity": 26.956592701689456, "out_of_rail_time": 0.3446274065838122, "t_final": 318.3933526289993, "x_impact": 1710.2741806404185} +{"lateral_surface_wind": 3.1117335747994126, "apogee_x": 395.2005833750248, "y_impact": 1831.876626380833, "max_mach_number": 0.7369144789671029, "impact_velocity": -5.4727225320936626, "apogee_y": -31.111636750271664, "frontal_surface_wind": 3.1175811940791376, "apogee_time": 24.055103201935232, "initial_stability_margin": 2.6292958581125276, "out_of_rail_stability_margin": 2.7082840924462124, "apogee": 2889.3265512889775, "out_of_rail_velocity": 23.911475777922398, "out_of_rail_time": 0.3797648059807341, "t_final": 272.41499411201943, "x_impact": 1020.8225860958452} +{"lateral_surface_wind": 3.136627187511858, "apogee_x": 539.1824991641557, "y_impact": 2324.0783424957694, "max_mach_number": 0.830152519731208, "impact_velocity": -5.465207972926419, "apogee_y": 56.5116367562986, "frontal_surface_wind": 3.3137213390545366, "apogee_time": 25.773846943598986, "initial_stability_margin": 2.5511650144060902, "out_of_rail_stability_margin": 2.6238365753861044, "apogee": 3388.638498560059, "out_of_rail_velocity": 25.463919564154953, "out_of_rail_time": 0.36071055023283405, "t_final": 292.62253395299285, "x_impact": 1370.3899151606665} +{"lateral_surface_wind": 3.8213915984470175, "apogee_x": 648.4770818066785, "y_impact": 2571.513671258163, "max_mach_number": 0.9846719782028204, "impact_velocity": -5.503297075102996, "apogee_y": -32.389231461333594, "frontal_surface_wind": 2.004491428444102, "apogee_time": 27.88757293632545, "initial_stability_margin": 2.696751142314233, "out_of_rail_stability_margin": 2.7623184744556397, "apogee": 4116.98432302732, "out_of_rail_velocity": 28.01792395352544, "out_of_rail_time": 0.33403932890956023, "t_final": 334.621514147052, "x_impact": 1521.2990059800893} +{"lateral_surface_wind": 3.2095492172136826, "apogee_x": 361.2388114701356, "y_impact": 1840.6657201376058, "max_mach_number": 0.7330913131896946, "impact_velocity": -5.310722139899857, "apogee_y": -48.28215323625625, "frontal_surface_wind": 2.901446903608515, "apogee_time": 23.823670490053463, "initial_stability_margin": 2.6394405710020927, "out_of_rail_stability_margin": 2.7159403620824314, "apogee": 2841.5105838676, "out_of_rail_velocity": 23.895641761686203, "out_of_rail_time": 0.3799316341303137, "t_final": 272.28814802745615, "x_impact": 925.6198686329071} +{"lateral_surface_wind": 3.500520447271646, "apogee_x": 353.6779515718962, "y_impact": 1223.3179151482022, "max_mach_number": 0.5808173125840635, "impact_velocity": -5.324048976859792, "apogee_y": -59.34941295298, "frontal_surface_wind": 1.780915801444356, "apogee_time": 20.769132887872715, "initial_stability_margin": 2.654646320675388, "out_of_rail_stability_margin": 2.745004467531716, "apogee": 2065.317730011329, "out_of_rail_velocity": 21.13812229430919, "out_of_rail_time": 0.4214890106711187, "t_final": 231.4789103299754, "x_impact": 441.39962313938236} +{"lateral_surface_wind": 3.414447263699609, "apogee_x": 232.18151525200742, "y_impact": 1417.2863488654186, "max_mach_number": 0.6702622158776425, "impact_velocity": -5.407144803539293, "apogee_y": -177.7124093003819, "frontal_surface_wind": 2.7827591030529546, "apogee_time": 22.75136509407718, "initial_stability_margin": 2.634067861171026, "out_of_rail_stability_margin": 2.7148363949370835, "apogee": 2539.8706993895976, "out_of_rail_velocity": 22.79159942185566, "out_of_rail_time": 0.3953743881320294, "t_final": 249.52578337878617, "x_impact": 697.1083342929941} +{"lateral_surface_wind": 4.87588853322293, "apogee_x": 375.8052082013406, "y_impact": 3510.0496214566065, "max_mach_number": 0.9755003435993972, "impact_velocity": -5.395475119426244, "apogee_y": -309.73240795119267, "frontal_surface_wind": 4.95820447777147, "apogee_time": 27.581103245980163, "initial_stability_margin": 2.5667925229582114, "out_of_rail_stability_margin": 2.631860093494337, "apogee": 4032.0917621808603, "out_of_rail_velocity": 27.87035685362571, "out_of_rail_time": 0.3357084115754673, "t_final": 331.24219986078907, "x_impact": 1550.084509596249} +{"lateral_surface_wind": 2.6772603494229497, "apogee_x": 478.4592481975848, "y_impact": 2624.8726408011403, "max_mach_number": 0.8431693130678362, "impact_velocity": -5.435210143308224, "apogee_y": 63.56174609398513, "frontal_surface_wind": 4.13269699981852, "apogee_time": 25.918441742813712, "initial_stability_margin": 2.715145901867566, "out_of_rail_stability_margin": 2.7817226690705494, "apogee": 3444.2276854677834, "out_of_rail_velocity": 25.74725215002107, "out_of_rail_time": 0.35690058883599385, "t_final": 309.84189007756964, "x_impact": 1775.6600368431284} +{"lateral_surface_wind": 2.5103189251391753, "apogee_x": 609.5526800089572, "y_impact": 3038.5767518231487, "max_mach_number": 0.9874868698768909, "impact_velocity": -5.50330711282514, "apogee_y": 158.65258928008572, "frontal_surface_wind": 3.7473838637285377, "apogee_time": 27.947041887984653, "initial_stability_margin": 2.675165527766092, "out_of_rail_stability_margin": 2.7386452585006023, "apogee": 4137.995061738361, "out_of_rail_velocity": 28.129665803208677, "out_of_rail_time": 0.3331182114389629, "t_final": 337.1680443341657, "x_impact": 2218.989553693318} +{"lateral_surface_wind": 3.3209136678413547, "apogee_x": 485.82125576101686, "y_impact": 2558.2760323429957, "max_mach_number": 0.8032815667028473, "impact_velocity": -5.279349941394176, "apogee_y": 24.804054240691407, "frontal_surface_wind": 3.7529505752884367, "apogee_time": 24.98284614778125, "initial_stability_margin": 2.415714022292157, "out_of_rail_stability_margin": 2.4940909308008052, "apogee": 3183.9083146053113, "out_of_rail_velocity": 24.961438339255835, "out_of_rail_time": 0.3665354754045925, "t_final": 301.49871776327296, "x_impact": 1455.7215318522276} +{"lateral_surface_wind": 3.706894889289365, "apogee_x": 615.0512517626206, "y_impact": 2262.0050380360963, "max_mach_number": 0.8275973169647748, "impact_velocity": -5.279760747173587, "apogee_y": 40.02599465587869, "frontal_surface_wind": 2.209060867234698, "apogee_time": 25.365292311027254, "initial_stability_margin": 2.5379313079628503, "out_of_rail_stability_margin": 2.612680959217264, "apogee": 3302.3382120601154, "out_of_rail_velocity": 25.41524949359672, "out_of_rail_time": 0.361249677994851, "t_final": 308.6181867424037, "x_impact": 1209.2821533809843} +{"lateral_surface_wind": 2.8217567788314275, "apogee_x": 301.76653849152115, "y_impact": 2791.9975537085256, "max_mach_number": 0.9367267831264114, "impact_velocity": -5.298133791779847, "apogee_y": -112.28893442807424, "frontal_surface_wind": 4.035417717166362, "apogee_time": 27.058186816145547, "initial_stability_margin": 2.549442002593484, "out_of_rail_stability_margin": 2.6221949118573207, "apogee": 3855.7024112044182, "out_of_rail_velocity": 27.11593401688922, "out_of_rail_time": 0.34289812035997996, "t_final": 333.91176901943913, "x_impact": 1784.8203905951764} +{"lateral_surface_wind": 4.3335131064771755, "apogee_x": 537.0729688521674, "y_impact": 2446.2594783712534, "max_mach_number": 0.8455179983808787, "impact_velocity": -5.386090648371904, "apogee_y": -139.36696128176004, "frontal_surface_wind": 2.0127354411761496, "apogee_time": 25.74609085931879, "initial_stability_margin": 2.5490658263448704, "out_of_rail_stability_margin": 2.6242811377012982, "apogee": 3410.8991946807423, "out_of_rail_velocity": 25.653090059789935, "out_of_rail_time": 0.3584059202794608, "t_final": 299.42412901334626, "x_impact": 1307.7846188261624} +{"lateral_surface_wind": 3.6915607221434086, "apogee_x": 705.616473575212, "y_impact": 3161.5611664938197, "max_mach_number": 1.0507343079046418, "impact_velocity": -5.3681461957996595, "apogee_y": 103.28706162648947, "frontal_surface_wind": 1.9842514016661217, "apogee_time": 28.15599505888004, "initial_stability_margin": 2.5700232558895566, "out_of_rail_stability_margin": 2.634265257300929, "apogee": 4286.043180309465, "out_of_rail_velocity": 29.20325453335664, "out_of_rail_time": 0.323105033344709, "t_final": 353.23201243926115, "x_impact": 1687.829649599847} +{"lateral_surface_wind": 3.3191333922930992, "apogee_x": 455.49711663914496, "y_impact": 2907.801628301568, "max_mach_number": 1.0770387054568435, "impact_velocity": -5.151339709978691, "apogee_y": -71.07703204887707, "frontal_surface_wind": 2.8957817366601946, "apogee_time": 28.103592239554818, "initial_stability_margin": 2.5215426115443704, "out_of_rail_stability_margin": 2.5875376435213546, "apogee": 4325.700231653307, "out_of_rail_velocity": 29.67468477375776, "out_of_rail_time": 0.3191288896733803, "t_final": 372.2746077908239, "x_impact": 1769.3755212302003} +{"lateral_surface_wind": 1.1242513629359894, "apogee_x": 371.77479966967115, "y_impact": 1973.7889635616332, "max_mach_number": 0.994623051632273, "impact_velocity": -5.350971599202149, "apogee_y": 143.7747558272936, "frontal_surface_wind": 2.6224656732172185, "apogee_time": 27.73899311161132, "initial_stability_margin": 2.5853882900793814, "out_of_rail_stability_margin": 2.652839992600274, "apogee": 4112.165952406388, "out_of_rail_velocity": 28.188302711537858, "out_of_rail_time": 0.3321528273175156, "t_final": 330.9339230515666, "x_impact": 1560.6835768593219} +{"lateral_surface_wind": 4.783601849728338, "apogee_x": 616.2619514278697, "y_impact": 3603.916058461719, "max_mach_number": 1.0248585889010855, "impact_velocity": -5.409401486866179, "apogee_y": -132.34799002665423, "frontal_surface_wind": 2.8734535852550303, "apogee_time": 28.07051401698121, "initial_stability_margin": 2.686235991653428, "out_of_rail_stability_margin": 2.753732247052365, "apogee": 4222.8796015395155, "out_of_rail_velocity": 28.625141319101196, "out_of_rail_time": 0.32838178132120327, "t_final": 338.95656963579756, "x_impact": 1654.2266011277054} +{"lateral_surface_wind": 4.887943769371859, "apogee_x": 482.02015335701424, "y_impact": 2523.3186501093132, "max_mach_number": 0.7901312219362524, "impact_velocity": -5.325912665505103, "apogee_y": -188.04705309564957, "frontal_surface_wind": 2.6921344451565177, "apogee_time": 24.784282424027595, "initial_stability_margin": 2.6096135703225163, "out_of_rail_stability_margin": 2.6826760461162005, "apogee": 3118.1906606161747, "out_of_rail_velocity": 24.804647270746166, "out_of_rail_time": 0.36817342198032077, "t_final": 291.7424643850434, "x_impact": 1007.5043844417866} +{"lateral_surface_wind": 4.1399571992626045, "apogee_x": 539.5474553827116, "y_impact": 3241.3737817750584, "max_mach_number": 0.9810046045308609, "impact_velocity": -5.350356359488426, "apogee_y": -98.12472266493259, "frontal_surface_wind": 2.3856223901635674, "apogee_time": 27.57769481575397, "initial_stability_margin": 2.5856456526631204, "out_of_rail_stability_margin": 2.6494716891326133, "apogee": 4045.085049210609, "out_of_rail_velocity": 28.024235456575312, "out_of_rail_time": 0.33390456431630694, "t_final": 347.0058968605479, "x_impact": 1692.5395264436775} +{"lateral_surface_wind": 4.760347315816918, "apogee_x": 265.9177858465826, "y_impact": 1804.1869854228803, "max_mach_number": 0.6026309966656903, "impact_velocity": -5.343882792022782, "apogee_y": -220.54995391371597, "frontal_surface_wind": 5.2593694202600085, "apogee_time": 21.139708640627493, "initial_stability_margin": 2.487638199148558, "out_of_rail_stability_margin": 2.571513675375319, "apogee": 2157.10281036104, "out_of_rail_velocity": 21.588772240007703, "out_of_rail_time": 0.41385231258089467, "t_final": 232.25159923875398, "x_impact": 790.1240228380168} +{"lateral_surface_wind": 3.7019106431468383, "apogee_x": 521.3076300321112, "y_impact": 2303.370051174671, "max_mach_number": 0.873116890199234, "impact_velocity": -5.473666774417384, "apogee_y": -39.02692182660768, "frontal_surface_wind": 1.9648744948322017, "apogee_time": 26.35596256267484, "initial_stability_margin": 2.6371141621926864, "out_of_rail_stability_margin": 2.7045692928496714, "apogee": 3588.8888529397805, "out_of_rail_velocity": 26.227058990714447, "out_of_rail_time": 0.3522602336464465, "t_final": 309.2266106298877, "x_impact": 1143.5368827111668} +{"lateral_surface_wind": 3.3192004122037995, "apogee_x": 302.01715999119995, "y_impact": 2794.679823261202, "max_mach_number": 1.0193456291875858, "impact_velocity": -5.365324440492584, "apogee_y": -172.86124292133846, "frontal_surface_wind": 2.77533942713365, "apogee_time": 28.070984068695772, "initial_stability_margin": 2.5018142200375713, "out_of_rail_stability_margin": 2.566687543981179, "apogee": 4223.213845803345, "out_of_rail_velocity": 28.634700823159534, "out_of_rail_time": 0.3281390931529774, "t_final": 341.7533954192414, "x_impact": 1538.3889194658175} +{"lateral_surface_wind": 2.8433370458664258, "apogee_x": 542.003407369037, "y_impact": 3372.7362274869206, "max_mach_number": 0.9681188141625535, "impact_velocity": -5.201931724737123, "apogee_y": 74.53889871721255, "frontal_surface_wind": 4.146820988016828, "apogee_time": 27.18442557002859, "initial_stability_margin": 2.517764504379342, "out_of_rail_stability_margin": 2.587641231015824, "apogee": 3937.3707923229285, "out_of_rail_velocity": 27.72402767773723, "out_of_rail_time": 0.33744892053580655, "t_final": 351.7438438246239, "x_impact": 1861.8826666692303} +{"lateral_surface_wind": 3.203253631421947, "apogee_x": 380.50811813153956, "y_impact": 1921.5137901765681, "max_mach_number": 0.7622509796394569, "impact_velocity": -5.446723230145299, "apogee_y": -60.56716623390394, "frontal_surface_wind": 3.2493607677704928, "apogee_time": 24.41599791325482, "initial_stability_margin": 2.682742872603997, "out_of_rail_stability_margin": 2.7551896725849367, "apogee": 3002.931365701347, "out_of_rail_velocity": 24.42387647251142, "out_of_rail_time": 0.37396834413972413, "t_final": 275.21792668169144, "x_impact": 1059.3106924502215} +{"lateral_surface_wind": 1.755734597586749, "apogee_x": 347.0433259961924, "y_impact": 2401.3253062311937, "max_mach_number": 0.9172193294023634, "impact_velocity": -5.32795992210622, "apogee_y": 60.22343875665627, "frontal_surface_wind": 3.2838278666467864, "apogee_time": 26.90518880728721, "initial_stability_margin": 2.560412757359559, "out_of_rail_stability_margin": 2.628973313374016, "apogee": 3792.768935037699, "out_of_rail_velocity": 26.917609274048903, "out_of_rail_time": 0.3452945826245127, "t_final": 326.0931354244523, "x_impact": 1587.5168481661915} +{"lateral_surface_wind": 3.9889716685723586, "apogee_x": 467.4091437651353, "y_impact": 1772.319186000166, "max_mach_number": 0.6832775423021988, "impact_velocity": -5.425040005964605, "apogee_y": -75.57202947501669, "frontal_surface_wind": 2.644649459650176, "apogee_time": 22.92671107879538, "initial_stability_margin": 2.703277068865652, "out_of_rail_stability_margin": 2.7813976041423407, "apogee": 2588.818489692247, "out_of_rail_velocity": 23.03863082080833, "out_of_rail_time": 0.3916453043262782, "t_final": 257.5957753647752, "x_impact": 827.2391189671533} +{"lateral_surface_wind": 3.3923932865642454, "apogee_x": 633.4666191876016, "y_impact": 3175.527026487043, "max_mach_number": 0.9952091499563439, "impact_velocity": -5.261161332962432, "apogee_y": 73.89582843003214, "frontal_surface_wind": 2.4029303378551226, "apogee_time": 27.52729667223363, "initial_stability_margin": 2.5459667691688557, "out_of_rail_stability_margin": 2.6176923981278915, "apogee": 4055.9624606399466, "out_of_rail_velocity": 28.13106132034743, "out_of_rail_time": 0.33315502563463417, "t_final": 345.01994831671226, "x_impact": 1626.6714260079336} +{"lateral_surface_wind": 4.425100876308701, "apogee_x": 240.7437820596969, "y_impact": 1618.2649513288231, "max_mach_number": 0.6007982756586976, "impact_velocity": -5.378194560947209, "apogee_y": -220.24289129003, "frontal_surface_wind": 4.0602447469247664, "apogee_time": 21.219493379363996, "initial_stability_margin": 2.6903377845613776, "out_of_rail_stability_margin": 2.764150004704458, "apogee": 2168.5396487849507, "out_of_rail_velocity": 21.669904199119134, "out_of_rail_time": 0.4122876966889462, "t_final": 236.8788115451286, "x_impact": 752.4384331181809} +{"lateral_surface_wind": 3.2981690318697248, "apogee_x": 448.93412526616146, "y_impact": 1424.5425380516701, "max_mach_number": 0.6045930850291793, "impact_velocity": -5.325949480319167, "apogee_y": 73.34473474794795, "frontal_surface_wind": 2.1324599716797965, "apogee_time": 21.276123662943018, "initial_stability_margin": 2.5721922472358427, "out_of_rail_stability_margin": 2.6543905473301335, "apogee": 2182.0724818680706, "out_of_rail_velocity": 21.652899831141518, "out_of_rail_time": 0.41241155680994623, "t_final": 234.86735543316783, "x_impact": 572.575676086592} +{"lateral_surface_wind": 4.096111083322144, "apogee_x": 483.1645182020727, "y_impact": 2382.130508840508, "max_mach_number": 0.8111462443403061, "impact_velocity": -5.48071354008002, "apogee_y": -93.79406218256567, "frontal_surface_wind": 2.460145075653362, "apogee_time": 25.421570376617172, "initial_stability_margin": 2.498235763712592, "out_of_rail_stability_margin": 2.5691238414096436, "apogee": 3282.5656669905575, "out_of_rail_velocity": 25.20019625704566, "out_of_rail_time": 0.36409808581489855, "t_final": 290.9098827205378, "x_impact": 1187.2167887737455} +{"lateral_surface_wind": 4.756892284054725, "apogee_x": 240.33997465935042, "y_impact": 2259.117946371282, "max_mach_number": 0.7969299379462091, "impact_velocity": -5.361241192370542, "apogee_y": -357.1514991071078, "frontal_surface_wind": 4.216178598018021, "apogee_time": 24.916139345132713, "initial_stability_margin": 2.6469086640254984, "out_of_rail_stability_margin": 2.7188719841097218, "apogee": 3159.9228696991822, "out_of_rail_velocity": 24.938663859294824, "out_of_rail_time": 0.3665287747197481, "t_final": 286.0874855581745, "x_impact": 947.7612062023721} +{"lateral_surface_wind": 3.5852936635040162, "apogee_x": 658.5190007090471, "y_impact": 3141.4176596409206, "max_mach_number": 1.008671019644965, "impact_velocity": -5.222006241691905, "apogee_y": 24.182742302726457, "frontal_surface_wind": 2.104299352694061, "apogee_time": 27.534338843417768, "initial_stability_margin": 2.4722950670734045, "out_of_rail_stability_margin": 2.542651785653295, "apogee": 4079.4968375528238, "out_of_rail_velocity": 28.390542233876495, "out_of_rail_time": 0.33064583862370234, "t_final": 346.9200687805566, "x_impact": 1667.1841740742416} +{"lateral_surface_wind": 3.49138734697917, "apogee_x": 243.73857061809744, "y_impact": 1825.737999323571, "max_mach_number": 0.7148273386831773, "impact_velocity": -5.31773349550149, "apogee_y": -173.2282432658677, "frontal_surface_wind": 3.4087073699249197, "apogee_time": 23.445191244392493, "initial_stability_margin": 2.4741784178483015, "out_of_rail_stability_margin": 2.5512743432190854, "apogee": 2739.8448911304235, "out_of_rail_velocity": 23.596073575438606, "out_of_rail_time": 0.38498088854583223, "t_final": 272.98396391258717, "x_impact": 905.8436113999612} +{"lateral_surface_wind": 3.6077526705371312, "apogee_x": 511.9183816924487, "y_impact": 2598.2285874964, "max_mach_number": 0.8807148362824019, "impact_velocity": -5.361361947547319, "apogee_y": -55.31238639776377, "frontal_surface_wind": 3.478106708835358, "apogee_time": 26.332104517755347, "initial_stability_margin": 2.5551173379202052, "out_of_rail_stability_margin": 2.627646252914222, "apogee": 3596.5856702000756, "out_of_rail_velocity": 26.264015482359458, "out_of_rail_time": 0.3520633101389167, "t_final": 306.3108464962725, "x_impact": 1614.9335554352854} +{"lateral_surface_wind": 4.541846909150593, "apogee_x": 350.8767621955913, "y_impact": 2355.6440977631014, "max_mach_number": 0.7715139155616111, "impact_velocity": -5.326009774512577, "apogee_y": -230.9589584721466, "frontal_surface_wind": 4.4470004302140325, "apogee_time": 24.490353285892205, "initial_stability_margin": 2.623221329198878, "out_of_rail_stability_margin": 2.69871656815809, "apogee": 3031.340692190147, "out_of_rail_velocity": 24.503091380131384, "out_of_rail_time": 0.37272874564496516, "t_final": 282.82323547568654, "x_impact": 1037.283461335554} +{"lateral_surface_wind": 4.880379691051473, "apogee_x": 397.51789206547784, "y_impact": 3658.3866808755834, "max_mach_number": 1.055886314409695, "impact_velocity": -5.343575351735096, "apogee_y": -310.73766691461725, "frontal_surface_wind": 5.148180973620077, "apogee_time": 28.20401816272373, "initial_stability_margin": 2.669660768703317, "out_of_rail_stability_margin": 2.7366053370984336, "apogee": 4303.481939681157, "out_of_rail_velocity": 29.17268638441233, "out_of_rail_time": 0.32343281459806555, "t_final": 353.4117683045495, "x_impact": 1901.8275647089727} +{"lateral_surface_wind": 2.6382460825546055, "apogee_x": 647.985209755434, "y_impact": 2843.2933580613617, "max_mach_number": 0.9295524826534952, "impact_velocity": -5.400540991683066, "apogee_y": 151.1109952665812, "frontal_surface_wind": 3.658448378196719, "apogee_time": 27.170877789092998, "initial_stability_margin": 2.6717277363140144, "out_of_rail_stability_margin": 2.7390051331049046, "apogee": 3864.3054429010135, "out_of_rail_velocity": 27.137744960804692, "out_of_rail_time": 0.34314899141576627, "t_final": 328.3226573068122, "x_impact": 2138.8709653267156} +{"lateral_surface_wind": 3.2619574664488074, "apogee_x": 329.0891666068474, "y_impact": 2054.7416113124714, "max_mach_number": 0.8384916857176395, "impact_velocity": -5.308600578586139, "apogee_y": -136.94042234750415, "frontal_surface_wind": 2.960039160093783, "apogee_time": 25.658923839910972, "initial_stability_margin": 2.5351156376564323, "out_of_rail_stability_margin": 2.6100383197084347, "apogee": 3387.4422015691903, "out_of_rail_velocity": 25.589666652640176, "out_of_rail_time": 0.3594392904058955, "t_final": 307.09821726154416, "x_impact": 1144.9926940037053} +{"lateral_surface_wind": 3.433328491806689, "apogee_x": 764.3054190436302, "y_impact": 3390.771825456897, "max_mach_number": 1.0533298904663055, "impact_velocity": -5.373735733948608, "apogee_y": 155.77938267084951, "frontal_surface_wind": 2.344069514041574, "apogee_time": 28.204297388839468, "initial_stability_margin": 2.544856942095205, "out_of_rail_stability_margin": 2.6106724245779747, "apogee": 4299.374899256994, "out_of_rail_velocity": 29.224185688400368, "out_of_rail_time": 0.32330357704128015, "t_final": 348.34514470705506, "x_impact": 1866.0483093404632} +{"lateral_surface_wind": 3.127328048263689, "apogee_x": 330.3614315302785, "y_impact": 2207.086001201677, "max_mach_number": 0.8095181488171957, "impact_velocity": -5.31491614471079, "apogee_y": -93.1185807787445, "frontal_surface_wind": 3.507584120357595, "apogee_time": 25.191259322244047, "initial_stability_margin": 2.5052137047360437, "out_of_rail_stability_margin": 2.581077071484539, "apogee": 3238.4373555984625, "out_of_rail_velocity": 25.117066541563265, "out_of_rail_time": 0.36519005006637456, "t_final": 295.8729509029481, "x_impact": 1235.2061716643302} +{"lateral_surface_wind": 2.8866927425604962, "apogee_x": 390.92346492746594, "y_impact": 2631.4884850548137, "max_mach_number": 0.9913947246513217, "impact_velocity": -5.345767007646547, "apogee_y": -44.33942295500169, "frontal_surface_wind": 2.736923538917892, "apogee_time": 27.74107795719321, "initial_stability_margin": 2.556830260843979, "out_of_rail_stability_margin": 2.6215947361843965, "apogee": 4103.123056868761, "out_of_rail_velocity": 28.173193178382164, "out_of_rail_time": 0.33228371214935426, "t_final": 336.3510762783703, "x_impact": 1554.9827115727007} +{"lateral_surface_wind": 4.559485594537512, "apogee_x": 535.724164679943, "y_impact": 2773.7895401713868, "max_mach_number": 0.9516207579938519, "impact_velocity": -5.389567710708779, "apogee_y": -167.28493923317131, "frontal_surface_wind": 3.368269999624335, "apogee_time": 27.28724809265841, "initial_stability_margin": 2.57577483654828, "out_of_rail_stability_margin": 2.645294037672859, "apogee": 3929.9729118624673, "out_of_rail_velocity": 27.43240635104204, "out_of_rail_time": 0.3397112558846907, "t_final": 337.2577120974718, "x_impact": 1369.9795923059887} +{"lateral_surface_wind": 3.391643817040677, "apogee_x": 279.6102124263732, "y_impact": 1523.9723314929922, "max_mach_number": 0.6595404291501269, "impact_velocity": -5.41154671840784, "apogee_y": -134.84743135074794, "frontal_surface_wind": 3.0522010819527736, "apogee_time": 22.594667355632243, "initial_stability_margin": 2.5956275632487085, "out_of_rail_stability_margin": 2.674981724858446, "apogee": 2492.8053564542265, "out_of_rail_velocity": 22.6050427287214, "out_of_rail_time": 0.39785700520863054, "t_final": 253.38905241957454, "x_impact": 792.3038695155052} +{"lateral_surface_wind": 2.6865048761548382, "apogee_x": 277.4695832080163, "y_impact": 2288.6404223921863, "max_mach_number": 0.7895745501145617, "impact_velocity": -5.39060560415445, "apogee_y": -81.18589773424274, "frontal_surface_wind": 4.250103694434943, "apogee_time": 24.93641784531929, "initial_stability_margin": 2.6358952754455207, "out_of_rail_stability_margin": 2.708056074759388, "apogee": 3151.8562502029013, "out_of_rail_velocity": 24.823602237281513, "out_of_rail_time": 0.36791404935164335, "t_final": 291.30902934851355, "x_impact": 1171.3588785956574} +{"lateral_surface_wind": 2.5957482639437, "apogee_x": 221.27300070722535, "y_impact": 1143.9444374314073, "max_mach_number": 0.6068732832949542, "impact_velocity": -5.423938275897079, "apogee_y": -84.78219568155933, "frontal_surface_wind": 2.903593086426015, "apogee_time": 21.44923321562048, "initial_stability_margin": 2.7031443520338914, "out_of_rail_stability_margin": 2.7854190953972338, "apogee": 2218.2248763704306, "out_of_rail_velocity": 21.683534447314166, "out_of_rail_time": 0.4120409619014824, "t_final": 230.22501698779158, "x_impact": 677.7535818795412} +{"lateral_surface_wind": 4.46115721908461, "apogee_x": 291.78130692755195, "y_impact": 1198.57020085419, "max_mach_number": 0.5272175802702711, "impact_velocity": -5.493200231487551, "apogee_y": -149.30824235360524, "frontal_surface_wind": 2.482827013168436, "apogee_time": 19.59261937518184, "initial_stability_margin": 2.6209137912930722, "out_of_rail_stability_margin": 2.7106189600429427, "apogee": 1805.6676343863683, "out_of_rail_velocity": 20.170133459853947, "out_of_rail_time": 0.43926533645376664, "t_final": 209.3477297999575, "x_impact": 394.58662367658417} +{"lateral_surface_wind": 4.226793050409803, "apogee_x": 413.1873419961778, "y_impact": 1706.7092489327438, "max_mach_number": 0.6744938516116423, "impact_velocity": -5.391691543792703, "apogee_y": -88.9301602955547, "frontal_surface_wind": 2.863664474011755, "apogee_time": 22.750746617813594, "initial_stability_margin": 2.6056891159814257, "out_of_rail_stability_margin": 2.682150632160901, "apogee": 2544.379866685779, "out_of_rail_velocity": 22.928826035010996, "out_of_rail_time": 0.3942540767817461, "t_final": 247.40153071692728, "x_impact": 688.6040600381589} +{"lateral_surface_wind": 3.8466984123370316, "apogee_x": 537.4494697046022, "y_impact": 1692.8462968249637, "max_mach_number": 0.7300099470053668, "impact_velocity": -5.401526023265764, "apogee_y": -36.17423410449293, "frontal_surface_wind": 1.6636662870929668, "apogee_time": 23.79974805409327, "initial_stability_margin": 2.6404104809422058, "out_of_rail_stability_margin": 2.7186681259478456, "apogee": 2825.0425445372857, "out_of_rail_velocity": 23.798043565033186, "out_of_rail_time": 0.38128433589638117, "t_final": 268.14002476744116, "x_impact": 831.9924254056752} +{"lateral_surface_wind": 1.6650436344315884, "apogee_x": 444.5226769277073, "y_impact": 2431.140859597154, "max_mach_number": 0.8956199433593138, "impact_velocity": -5.298257552530832, "apogee_y": 160.54763218560385, "frontal_surface_wind": 3.3307295192446857, "apogee_time": 26.539667518909628, "initial_stability_margin": 2.6273121257556626, "out_of_rail_stability_margin": 2.6957072722082587, "apogee": 3675.0891110032967, "out_of_rail_velocity": 26.601913085937007, "out_of_rail_time": 0.34835610255606275, "t_final": 320.8983478126361, "x_impact": 1653.0179527424593} +{"lateral_surface_wind": 3.972577675788813, "apogee_x": 478.61674337308915, "y_impact": 2116.1820951627074, "max_mach_number": 0.7720677720980671, "impact_velocity": -5.291764670693057, "apogee_y": -83.08324213644009, "frontal_surface_wind": 2.669211933684785, "apogee_time": 24.442094222514246, "initial_stability_margin": 2.5220999163252547, "out_of_rail_stability_margin": 2.595368068548094, "apogee": 3024.259784222364, "out_of_rail_velocity": 24.57305745451846, "out_of_rail_time": 0.3714004814640159, "t_final": 286.8809225732903, "x_impact": 959.4641929382137} +{"lateral_surface_wind": 3.3245058414081483, "apogee_x": 482.4144032962064, "y_impact": 2465.7061556716794, "max_mach_number": 0.8712229713256652, "impact_velocity": -5.353329551641113, "apogee_y": -39.417705496368626, "frontal_surface_wind": 3.1251944158383234, "apogee_time": 26.241765013445825, "initial_stability_margin": 2.564653423629984, "out_of_rail_stability_margin": 2.6348428182610797, "apogee": 3563.3496276982187, "out_of_rail_velocity": 26.172749032034083, "out_of_rail_time": 0.35300813716721297, "t_final": 313.76404978765765, "x_impact": 1408.919436454851} +{"lateral_surface_wind": 3.9133106087661873, "apogee_x": 512.6628280147002, "y_impact": 2641.4108413667477, "max_mach_number": 0.8827228120891256, "impact_velocity": -5.39138724078086, "apogee_y": -75.58206296564153, "frontal_surface_wind": 3.3733085165218957, "apogee_time": 26.416635283283394, "initial_stability_margin": 2.6682952477758035, "out_of_rail_stability_margin": 2.738907850565852, "apogee": 3619.4374905953455, "out_of_rail_velocity": 26.314309015891585, "out_of_rail_time": 0.35106893655755794, "t_final": 304.2233832043328, "x_impact": 1474.4321516936534} +{"lateral_surface_wind": 4.3021890827635945, "apogee_x": 764.5545884579172, "y_impact": 3040.823704863629, "max_mach_number": 0.9215980380151733, "impact_velocity": -5.306516036626388, "apogee_y": 8.75038218369202, "frontal_surface_wind": 2.078847973355855, "apogee_time": 26.70367467469205, "initial_stability_margin": 2.469296417224009, "out_of_rail_stability_margin": 2.5418875327532553, "apogee": 3745.5512290260376, "out_of_rail_velocity": 26.92359467145852, "out_of_rail_time": 0.34522702732727606, "t_final": 327.5173139234294, "x_impact": 1774.1983080951675} +{"lateral_surface_wind": 3.7270917252149243, "apogee_x": 625.4532102262998, "y_impact": 2759.2821080191043, "max_mach_number": 0.9801969497852584, "impact_velocity": -5.265562642014261, "apogee_y": 32.87991630231368, "frontal_surface_wind": 1.9166798016675535, "apogee_time": 27.333514688616788, "initial_stability_margin": 2.4036385275898593, "out_of_rail_stability_margin": 2.4742175352230653, "apogee": 3988.4930001296475, "out_of_rail_velocity": 27.894510114621138, "out_of_rail_time": 0.33492875344727296, "t_final": 335.31000635455626, "x_impact": 1439.0892361279596} +{"lateral_surface_wind": 3.4270137133658705, "apogee_x": 385.09996769566624, "y_impact": 1819.6467958629944, "max_mach_number": 0.7576030897670201, "impact_velocity": -5.353032907116359, "apogee_y": -73.82407043941977, "frontal_surface_wind": 1.9185623529099454, "apogee_time": 24.316967947168788, "initial_stability_margin": 2.538328513839934, "out_of_rail_stability_margin": 2.610576313663286, "apogee": 2975.444803541832, "out_of_rail_velocity": 24.35727184314279, "out_of_rail_time": 0.3748511529459168, "t_final": 285.1413179480361, "x_impact": 676.513845217225} +{"lateral_surface_wind": 4.855674256560149, "apogee_x": 392.5049086384732, "y_impact": 2318.937282596648, "max_mach_number": 0.7659857369573234, "impact_velocity": -5.343586374095447, "apogee_y": -241.99099495299532, "frontal_surface_wind": 4.102025558996875, "apogee_time": 24.318050069147997, "initial_stability_margin": 2.687072527759299, "out_of_rail_stability_margin": 2.7612992376248697, "apogee": 2988.77444163841, "out_of_rail_velocity": 24.44201672707435, "out_of_rail_time": 0.3734314526239328, "t_final": 281.2545085773576, "x_impact": 1072.7996295204389} +{"lateral_surface_wind": 4.178218096814227, "apogee_x": 379.2345234792873, "y_impact": 3242.2149129147206, "max_mach_number": 1.0608296355231097, "impact_velocity": -5.294934278912403, "apogee_y": -224.02499362212086, "frontal_surface_wind": 4.313884410353654, "apogee_time": 28.18116412378798, "initial_stability_margin": 2.7699772714974933, "out_of_rail_stability_margin": 2.829840665527165, "apogee": 4312.834196844469, "out_of_rail_velocity": 29.479586671638927, "out_of_rail_time": 0.3209331601254682, "t_final": 343.4352565020925, "x_impact": 1733.3857070351273} +{"lateral_surface_wind": 2.842824725404786, "apogee_x": 101.22836359105212, "y_impact": 1942.8569577315532, "max_mach_number": 0.7494407335528732, "impact_velocity": -5.276558001524016, "apogee_y": -222.84509895282017, "frontal_surface_wind": 4.147172222572928, "apogee_time": 24.074227618919075, "initial_stability_margin": 2.5446272437140505, "out_of_rail_stability_margin": 2.6226617851917666, "apogee": 2915.316855278341, "out_of_rail_velocity": 24.10971173148818, "out_of_rail_time": 0.37801217903918766, "t_final": 281.1336437764552, "x_impact": 884.5136818578409} +{"lateral_surface_wind": 4.3014571275873, "apogee_x": 353.5747112940063, "y_impact": 1840.5472821467395, "max_mach_number": 0.7350997495165271, "impact_velocity": -5.335328608980147, "apogee_y": -182.68065060087008, "frontal_surface_wind": 2.750240042294135, "apogee_time": 23.84722798501987, "initial_stability_margin": 2.529071983274049, "out_of_rail_stability_margin": 2.6086037611078488, "apogee": 2846.1671067336797, "out_of_rail_velocity": 23.853624203116404, "out_of_rail_time": 0.3802675738585525, "t_final": 266.58012956648827, "x_impact": 707.9397386525488} +{"lateral_surface_wind": 3.3379591005180957, "apogee_x": 340.11570127389183, "y_impact": 1802.171479678416, "max_mach_number": 0.7080704455507449, "impact_velocity": -5.32265179397841, "apogee_y": -97.23067489625848, "frontal_surface_wind": 3.307772078924115, "apogee_time": 23.35208784187718, "initial_stability_margin": 2.6769242972172504, "out_of_rail_stability_margin": 2.755588068040187, "apogee": 2709.787916768128, "out_of_rail_velocity": 23.436607989588218, "out_of_rail_time": 0.3860568111851478, "t_final": 268.7744801581702, "x_impact": 1013.3027789943105} +{"lateral_surface_wind": 2.4942336581520865, "apogee_x": 175.65281021349077, "y_impact": 1340.5507875399078, "max_mach_number": 0.572801875567906, "impact_velocity": -5.39909881527273, "apogee_y": -87.37746094187345, "frontal_surface_wind": 4.53888569372476, "apogee_time": 20.70316089043583, "initial_stability_margin": 2.7009241349008577, "out_of_rail_stability_margin": 2.7860971998504325, "apogee": 2046.327189226334, "out_of_rail_velocity": 21.055315409350644, "out_of_rail_time": 0.422335761797771, "t_final": 228.38296649777456, "x_impact": 839.0353230455636} +{"lateral_surface_wind": 3.663585683404112, "apogee_x": 541.3342991004812, "y_impact": 2063.142779332782, "max_mach_number": 0.7944479677147224, "impact_velocity": -5.156187873700358, "apogee_y": 29.34096850032737, "frontal_surface_wind": 2.035439542369746, "apogee_time": 24.600575676084205, "initial_stability_margin": 2.624970836156575, "out_of_rail_stability_margin": 2.6984090146675004, "apogee": 3096.4997574943336, "out_of_rail_velocity": 24.935835888205307, "out_of_rail_time": 0.36670402092833304, "t_final": 294.2178555856049, "x_impact": 957.9004009974731} +{"lateral_surface_wind": 3.64255097210343, "apogee_x": 515.0852153677258, "y_impact": 2127.688845900196, "max_mach_number": 0.8512671649754319, "impact_velocity": -5.522384626378085, "apogee_y": -38.97920134404001, "frontal_surface_wind": 2.313620982575946, "apogee_time": 26.147462921274556, "initial_stability_margin": 2.6040905352010193, "out_of_rail_stability_margin": 2.677296612789794, "apogee": 3503.2026310136407, "out_of_rail_velocity": 25.76219027275851, "out_of_rail_time": 0.35705082342198385, "t_final": 299.9816796791957, "x_impact": 1121.2159428102477} +{"lateral_surface_wind": 3.4389590462265476, "apogee_x": 486.4066228670672, "y_impact": 1829.7399646447616, "max_mach_number": 0.7025202285922827, "impact_velocity": -5.369582919134191, "apogee_y": 13.442396786592308, "frontal_surface_wind": 2.335801168269099, "apogee_time": 23.243306547730008, "initial_stability_margin": 2.5199067334107843, "out_of_rail_stability_margin": 2.5965662366370768, "apogee": 2679.094850172911, "out_of_rail_velocity": 23.382145175335545, "out_of_rail_time": 0.38670448244667444, "t_final": 266.67140674639614, "x_impact": 849.1563901349814} +{"lateral_surface_wind": 4.440412495840553, "apogee_x": 275.745181739109, "y_impact": 1939.5824193818037, "max_mach_number": 0.6957321363415518, "impact_velocity": -5.36836100567136, "apogee_y": -239.09736621809364, "frontal_surface_wind": 4.523128352969278, "apogee_time": 23.084876453727635, "initial_stability_margin": 2.5429381228204404, "out_of_rail_stability_margin": 2.6211378684185354, "apogee": 2639.8860437065628, "out_of_rail_velocity": 23.24712588995817, "out_of_rail_time": 0.38880723863110367, "t_final": 264.2910389011063, "x_impact": 852.7767437111719} +{"lateral_surface_wind": 3.467382517754233, "apogee_x": 540.8306861657187, "y_impact": 3124.035730083787, "max_mach_number": 0.9105804501189012, "impact_velocity": -5.274956632722213, "apogee_y": -0.18382865243253452, "frontal_surface_wind": 3.6180608183646736, "apogee_time": 26.54476112148687, "initial_stability_margin": 2.7239298842756576, "out_of_rail_stability_margin": 2.7910994327314818, "apogee": 3698.771105223963, "out_of_rail_velocity": 26.846994112749297, "out_of_rail_time": 0.34576710771967906, "t_final": 342.3522045864609, "x_impact": 1868.7345015525857} +{"lateral_surface_wind": 3.934686504597933, "apogee_x": 291.30605385291517, "y_impact": 2793.995680645109, "max_mach_number": 0.975279037362624, "impact_velocity": -5.293613407437262, "apogee_y": -256.0773530731383, "frontal_surface_wind": 3.3483506953209137, "apogee_time": 27.402608174449064, "initial_stability_margin": 2.555228899234372, "out_of_rail_stability_margin": 2.6234979369748137, "apogee": 3999.7205131567544, "out_of_rail_velocity": 27.842818810376805, "out_of_rail_time": 0.3355122828280456, "t_final": 327.6532496502539, "x_impact": 1397.8334938722978} +{"lateral_surface_wind": 2.282730023645199, "apogee_x": 158.11662811855192, "y_impact": 2156.255832748818, "max_mach_number": 0.7977472662700906, "impact_velocity": -5.34580924418596, "apogee_y": -127.28878491730329, "frontal_surface_wind": 4.6488523875583345, "apogee_time": 25.022714977012615, "initial_stability_margin": 2.5854881398474956, "out_of_rail_stability_margin": 2.6624507416392387, "apogee": 3186.4357538227905, "out_of_rail_velocity": 24.899487102433586, "out_of_rail_time": 0.36732361072269687, "t_final": 290.1681337480333, "x_impact": 1174.423046244276} +{"lateral_surface_wind": 4.233048015637006, "apogee_x": 633.9324208939328, "y_impact": 2913.4227477810487, "max_mach_number": 0.9112154441721159, "impact_velocity": -5.394528324565115, "apogee_y": -2.7158778900743017, "frontal_surface_wind": 2.8544103082810715, "apogee_time": 26.797906815635095, "initial_stability_margin": 2.626790707814799, "out_of_rail_stability_margin": 2.6935689291514326, "apogee": 3750.8239734144604, "out_of_rail_velocity": 26.839395536973566, "out_of_rail_time": 0.3456132258949125, "t_final": 322.6007538128859, "x_impact": 1416.7569875340664} +{"lateral_surface_wind": 2.995175262742575, "apogee_x": 395.9866761898764, "y_impact": 2366.9074171586817, "max_mach_number": 0.8377726725094202, "impact_velocity": -5.419099576550825, "apogee_y": -64.57866310074542, "frontal_surface_wind": 3.9084309660471463, "apogee_time": 25.847124712535898, "initial_stability_margin": 2.629572085849601, "out_of_rail_stability_margin": 2.698662420632973, "apogee": 3419.4235771883177, "out_of_rail_velocity": 25.64437902885583, "out_of_rail_time": 0.3587385896541107, "t_final": 301.3123434043003, "x_impact": 1624.0823067839347} +{"lateral_surface_wind": 3.6572268023960577, "apogee_x": 547.4011094201624, "y_impact": 2851.838429789693, "max_mach_number": 1.0711085276014591, "impact_velocity": -5.286350014780357, "apogee_y": -22.467925673210317, "frontal_surface_wind": 2.2903518837120282, "apogee_time": 28.33179004925305, "initial_stability_margin": 2.5319005828186993, "out_of_rail_stability_margin": 2.5945765899439897, "apogee": 4364.311291230089, "out_of_rail_velocity": 29.594896544742145, "out_of_rail_time": 0.31982680865958424, "t_final": 357.3115302500121, "x_impact": 1529.6675123804553} +{"lateral_surface_wind": 3.233875805387802, "apogee_x": 490.736726059003, "y_impact": 2317.8179675053066, "max_mach_number": 0.8307408202074638, "impact_velocity": -5.390025896466712, "apogee_y": 17.160848503534, "frontal_surface_wind": 2.874308192853334, "apogee_time": 25.659940804993333, "initial_stability_margin": 2.695114224371804, "out_of_rail_stability_margin": 2.7681068340563093, "apogee": 3369.6808516779374, "out_of_rail_velocity": 25.469570177208432, "out_of_rail_time": 0.3604983747410543, "t_final": 298.28831150853773, "x_impact": 1313.1943699021624} +{"lateral_surface_wind": 4.347245158875744, "apogee_x": 742.9855582446799, "y_impact": 3263.5077310894176, "max_mach_number": 0.9752633736722524, "impact_velocity": -5.380929636870952, "apogee_y": 23.31628967355488, "frontal_surface_wind": 2.8278025193496372, "apogee_time": 27.524944373339032, "initial_stability_margin": 2.5947169045047462, "out_of_rail_stability_margin": 2.6639460569605364, "apogee": 4021.1443566689304, "out_of_rail_velocity": 27.836988853927327, "out_of_rail_time": 0.3364990723021547, "t_final": 344.54567198022744, "x_impact": 1453.2407146019566} +{"lateral_surface_wind": 4.007174689500579, "apogee_x": 644.350228884437, "y_impact": 2680.599396423685, "max_mach_number": 0.8517950251852487, "impact_velocity": -5.362603601633337, "apogee_y": 22.359914596331592, "frontal_surface_wind": 3.2612514892517983, "apogee_time": 25.895906864031186, "initial_stability_margin": 2.4510684269091265, "out_of_rail_stability_margin": 2.5237891733216977, "apogee": 3452.0673540880716, "out_of_rail_velocity": 25.803170919161374, "out_of_rail_time": 0.3564266676352148, "t_final": 300.8349673345294, "x_impact": 1579.873797619383} +{"lateral_surface_wind": 4.8216013617097655, "apogee_x": 416.67672891067474, "y_impact": 3828.0665947215816, "max_mach_number": 1.0101767511381379, "impact_velocity": -5.281255196615998, "apogee_y": -262.8480692229265, "frontal_surface_wind": 5.01101196771335, "apogee_time": 27.644563242947708, "initial_stability_margin": 2.545250092558356, "out_of_rail_stability_margin": 2.6121141700547392, "apogee": 4104.73652164068, "out_of_rail_velocity": 28.431195354712145, "out_of_rail_time": 0.3300414423786595, "t_final": 348.012850715812, "x_impact": 1679.4285712316844} +{"lateral_surface_wind": 3.7541234721875796, "apogee_x": 559.9239649428268, "y_impact": 3128.249588389219, "max_mach_number": 1.1229689473609006, "impact_velocity": -5.350783820605209, "apogee_y": -41.439220788305065, "frontal_surface_wind": 1.8631777010946133, "apogee_time": 28.875295869878006, "initial_stability_margin": 2.5602381064585558, "out_of_rail_stability_margin": 2.6248582757868895, "apogee": 4573.481457753429, "out_of_rail_velocity": 30.32393216272871, "out_of_rail_time": 0.31374822914992995, "t_final": 357.1869195844313, "x_impact": 1593.9442530530516} +{"lateral_surface_wind": 4.000834531714659, "apogee_x": 686.4490292811718, "y_impact": 3021.3725409570948, "max_mach_number": 1.010517005566848, "impact_velocity": -5.392857396161147, "apogee_y": -6.2224381136799165, "frontal_surface_wind": 2.6266687623186256, "apogee_time": 27.87921133468749, "initial_stability_margin": 2.560542381753919, "out_of_rail_stability_margin": 2.6265775697213125, "apogee": 4159.592324578422, "out_of_rail_velocity": 28.511288251899106, "out_of_rail_time": 0.33005737786557543, "t_final": 337.85777048514825, "x_impact": 1546.8815270617217} +{"lateral_surface_wind": 2.504186765916624, "apogee_x": 447.078535257502, "y_impact": 2347.7590561259954, "max_mach_number": 0.9094395740655682, "impact_velocity": -5.4254138980360205, "apogee_y": 26.962182696093176, "frontal_surface_wind": 2.9829197948848245, "apogee_time": 26.873846671802422, "initial_stability_margin": 2.5755599003806666, "out_of_rail_stability_margin": 2.643043280827547, "apogee": 3768.434849691694, "out_of_rail_velocity": 26.792132219430336, "out_of_rail_time": 0.34596965972623195, "t_final": 319.33039012161476, "x_impact": 1469.3730272465627} +{"lateral_surface_wind": 3.2315725418209245, "apogee_x": 459.58088693706543, "y_impact": 2126.3462295198465, "max_mach_number": 0.8433333112010505, "impact_velocity": -5.4791868023902355, "apogee_y": -44.52414415436182, "frontal_surface_wind": 2.993181793536584, "apogee_time": 25.941267152876986, "initial_stability_margin": 2.677283640060019, "out_of_rail_stability_margin": 2.748441512306982, "apogee": 3451.158375774434, "out_of_rail_velocity": 25.698478699095435, "out_of_rail_time": 0.35779707972932073, "t_final": 301.0116594701761, "x_impact": 1298.182503281943} +{"lateral_surface_wind": 2.4453508828036514, "apogee_x": 440.0929672622865, "y_impact": 2378.313220827077, "max_mach_number": 0.862617416938684, "impact_velocity": -5.490169255289219, "apogee_y": 59.228245891562906, "frontal_surface_wind": 3.790098414027838, "apogee_time": 26.34813255405629, "initial_stability_margin": 2.5450034863559705, "out_of_rail_stability_margin": 2.6125405253590235, "apogee": 3569.876401067796, "out_of_rail_velocity": 26.05334300601852, "out_of_rail_time": 0.35391840060577123, "t_final": 301.9034722062788, "x_impact": 1682.5290313166388} +{"lateral_surface_wind": 4.357699450606675, "apogee_x": 620.5010024308117, "y_impact": 2715.541695427888, "max_mach_number": 0.8875313487452954, "impact_velocity": -5.505415433974219, "apogee_y": -60.01383701743727, "frontal_surface_wind": 2.8116655309604357, "apogee_time": 26.558170669782623, "initial_stability_margin": 2.661916606232141, "out_of_rail_stability_margin": 2.729192707202233, "apogee": 3657.5852776656398, "out_of_rail_velocity": 26.459765664022857, "out_of_rail_time": 0.3497621922950561, "t_final": 313.49040000380177, "x_impact": 1170.8616496247403} +{"lateral_surface_wind": 4.858214430587721, "apogee_x": 681.3210171873807, "y_impact": 3191.2903916455716, "max_mach_number": 0.8872038064366295, "impact_velocity": -5.340880270374279, "apogee_y": -75.47732313134694, "frontal_surface_wind": 2.745420679926591, "apogee_time": 26.255129772340965, "initial_stability_margin": 2.7044587268170703, "out_of_rail_stability_margin": 2.772874654072245, "apogee": 3588.894008018812, "out_of_rail_velocity": 26.428751409430976, "out_of_rail_time": 0.350088736013004, "t_final": 320.91710269772756, "x_impact": 1482.9411167965332} +{"lateral_surface_wind": 3.7744705459682857, "apogee_x": 566.6144663300687, "y_impact": 2093.982256982211, "max_mach_number": 0.8334743730191301, "impact_velocity": -5.37253042144411, "apogee_y": -22.16012323334249, "frontal_surface_wind": 1.82160541498531, "apogee_time": 25.526811572107178, "initial_stability_margin": 2.721395395939813, "out_of_rail_stability_margin": 2.793599132924764, "apogee": 3346.2900940326676, "out_of_rail_velocity": 25.533428809315524, "out_of_rail_time": 0.359717607443307, "t_final": 295.0235971747074, "x_impact": 1079.914456523049} +{"lateral_surface_wind": 5.132250505575957, "apogee_x": 420.16839337638237, "y_impact": 2881.087958722569, "max_mach_number": 0.8987110565818865, "impact_velocity": -5.411243436862455, "apogee_y": -303.2793082470116, "frontal_surface_wind": 4.89712956883793, "apogee_time": 26.518742090305757, "initial_stability_margin": 2.5566796705833665, "out_of_rail_stability_margin": 2.6255860092917294, "apogee": 3667.132316930536, "out_of_rail_velocity": 26.571576918787798, "out_of_rail_time": 0.34822737595089404, "t_final": 307.8584570280256, "x_impact": 1531.5159067776121} +{"lateral_surface_wind": 4.659840946981719, "apogee_x": 737.9704524466089, "y_impact": 3550.3109159629907, "max_mach_number": 0.9504152244293173, "impact_velocity": -5.20936184130881, "apogee_y": 41.81347229113783, "frontal_surface_wind": 3.070091938716473, "apogee_time": 26.82149279587878, "initial_stability_margin": 2.506975803736034, "out_of_rail_stability_margin": 2.577896686353291, "apogee": 3821.8367723967176, "out_of_rail_velocity": 27.402399945752425, "out_of_rail_time": 0.339864254444778, "t_final": 333.3830753843459, "x_impact": 1651.1422658653305} +{"lateral_surface_wind": 3.2044912401342307, "apogee_x": 522.7374262807537, "y_impact": 2245.5491709252033, "max_mach_number": 0.8411051763019094, "impact_velocity": -5.307981841764951, "apogee_y": 20.444405056364072, "frontal_surface_wind": 3.0221572153203438, "apogee_time": 25.65298275042422, "initial_stability_margin": 2.641380897087279, "out_of_rail_stability_margin": 2.7127538916328935, "apogee": 3390.0689646931664, "out_of_rail_velocity": 25.69343672778068, "out_of_rail_time": 0.35790625356616074, "t_final": 307.5731856173564, "x_impact": 1374.3576536163107} +{"lateral_surface_wind": 2.4231957635446175, "apogee_x": 294.27305330238755, "y_impact": 2542.4445448458673, "max_mach_number": 0.8945039589372817, "impact_velocity": -5.264132032230424, "apogee_y": -49.76594509827568, "frontal_surface_wind": 4.577205170592362, "apogee_time": 26.509018167193155, "initial_stability_margin": 2.5234475535955267, "out_of_rail_stability_margin": 2.5970145155113444, "apogee": 3665.5870540613214, "out_of_rail_velocity": 26.473916686927744, "out_of_rail_time": 0.3495328230506034, "t_final": 308.3703352317364, "x_impact": 1465.7752161295089} +{"lateral_surface_wind": 3.2093591570628983, "apogee_x": 355.68860780931186, "y_impact": 1850.635903778415, "max_mach_number": 0.8022502883461248, "impact_velocity": -5.533449052823765, "apogee_y": -109.86536170575378, "frontal_surface_wind": 3.0169872626821546, "apogee_time": 25.414913066779643, "initial_stability_margin": 2.6790128754383353, "out_of_rail_stability_margin": 2.751477033176082, "apogee": 3268.3296843325106, "out_of_rail_velocity": 25.029460558989868, "out_of_rail_time": 0.3658886830621736, "t_final": 282.00242413947547, "x_impact": 1070.777565377634} +{"lateral_surface_wind": 3.189337731932812, "apogee_x": 518.7576403983859, "y_impact": 2596.647809747629, "max_mach_number": 0.9845350277399092, "impact_velocity": -5.269892050052401, "apogee_y": -2.417269008687574, "frontal_surface_wind": 3.0381446927161813, "apogee_time": 27.601138174895777, "initial_stability_margin": 2.6108162984269216, "out_of_rail_stability_margin": 2.6767325457823654, "apogee": 4060.9840266871593, "out_of_rail_velocity": 28.065363791835196, "out_of_rail_time": 0.33333226328118015, "t_final": 338.4157852819388, "x_impact": 1627.09052218438} +{"lateral_surface_wind": 2.3069047263099898, "apogee_x": 466.08637590669167, "y_impact": 2176.770301042684, "max_mach_number": 0.8332194615455883, "impact_velocity": -5.425867845669313, "apogee_y": 98.31133263523444, "frontal_surface_wind": 3.137985411858429, "apogee_time": 25.763547083913547, "initial_stability_margin": 2.73042853095259, "out_of_rail_stability_margin": 2.8026138033740375, "apogee": 3395.6750221733346, "out_of_rail_velocity": 25.51978026552421, "out_of_rail_time": 0.3599148335140186, "t_final": 301.4511459379006, "x_impact": 1350.1398496867887} +{"lateral_surface_wind": 4.678110816037312, "apogee_x": 329.365049609849, "y_impact": 2146.1819731545897, "max_mach_number": 0.7742619345602125, "impact_velocity": -5.292866468793252, "apogee_y": -266.3432274317807, "frontal_surface_wind": 4.2768250400882915, "apogee_time": 24.410220076054085, "initial_stability_margin": 2.6134103923353362, "out_of_rail_stability_margin": 2.687601358357866, "apogee": 3022.267340161976, "out_of_rail_velocity": 24.59052049198897, "out_of_rail_time": 0.37134114572043836, "t_final": 284.8730867265849, "x_impact": 1034.6616920171123} +{"lateral_surface_wind": 4.367389490576535, "apogee_x": 604.5854531278216, "y_impact": 2181.3225327090586, "max_mach_number": 0.73887682144293, "impact_velocity": -5.3673325493358846, "apogee_y": -4.7936138920925275, "frontal_surface_wind": 2.644288703661395, "apogee_time": 23.8398934389778, "initial_stability_margin": 2.633832865950412, "out_of_rail_stability_margin": 2.707992149463159, "apogee": 2848.3082322984783, "out_of_rail_velocity": 24.015000467003983, "out_of_rail_time": 0.3782009886353347, "t_final": 277.62648607558805, "x_impact": 1035.8439894791288} +{"lateral_surface_wind": 4.07369535754611, "apogee_x": 455.85979175194944, "y_impact": 2240.5356925746373, "max_mach_number": 0.744238223966775, "impact_velocity": -5.472269706123851, "apogee_y": -86.95672337803806, "frontal_surface_wind": 4.412721530342184, "apogee_time": 24.191531789035043, "initial_stability_margin": 2.6657163317473076, "out_of_rail_stability_margin": 2.739681620508653, "apogee": 2923.4695536580984, "out_of_rail_velocity": 24.117040636688653, "out_of_rail_time": 0.37844393961856, "t_final": 268.8915310144266, "x_impact": 1241.10343710811} +{"lateral_surface_wind": 3.726956073638717, "apogee_x": 397.20629406049466, "y_impact": 2684.506199506082, "max_mach_number": 0.92648367878104, "impact_velocity": -5.3302538173358105, "apogee_y": -134.19787332976819, "frontal_surface_wind": 3.002642862923993, "apogee_time": 26.928070482508335, "initial_stability_margin": 2.5159187358120105, "out_of_rail_stability_margin": 2.5844073511456522, "apogee": 3811.396377281239, "out_of_rail_velocity": 27.067823074188112, "out_of_rail_time": 0.34351386754195146, "t_final": 328.98556589950584, "x_impact": 1117.108511350846} +{"lateral_surface_wind": 4.649498901743276, "apogee_x": 504.83290964019244, "y_impact": 2721.8584863268943, "max_mach_number": 0.8681085077530512, "impact_velocity": -5.448459391735196, "apogee_y": -170.1789876787649, "frontal_surface_wind": 4.334321877199783, "apogee_time": 26.227522693066366, "initial_stability_margin": 2.729447372571396, "out_of_rail_stability_margin": 2.795362093449409, "apogee": 3552.7035112665953, "out_of_rail_velocity": 26.17863040963017, "out_of_rail_time": 0.35266823041704326, "t_final": 301.76567551503746, "x_impact": 1413.5731059076988} +{"lateral_surface_wind": 3.7800387003825926, "apogee_x": 542.4949539957349, "y_impact": 1762.7097048790577, "max_mach_number": 0.6979301098128744, "impact_velocity": -5.251900262713318, "apogee_y": 3.2246796296501428, "frontal_surface_wind": 2.081424286155326, "apogee_time": 23.069349819147703, "initial_stability_margin": 2.5730717575624653, "out_of_rail_stability_margin": 2.656286294498517, "apogee": 2638.0517653451184, "out_of_rail_velocity": 23.203333008974464, "out_of_rail_time": 0.38891985693829256, "t_final": 267.9552280832177, "x_impact": 908.1843582086805} +{"lateral_surface_wind": 5.093141723181176, "apogee_x": 254.34491438834206, "y_impact": 2467.063291605839, "max_mach_number": 0.7925797485104088, "impact_velocity": -5.391613238647809, "apogee_y": -374.8342490477234, "frontal_surface_wind": 4.93779107026234, "apogee_time": 24.774993173454178, "initial_stability_margin": 2.609610747766501, "out_of_rail_stability_margin": 2.683631457448093, "apogee": 3121.843683319548, "out_of_rail_velocity": 24.82900169184088, "out_of_rail_time": 0.3680335714534383, "t_final": 289.247219056182, "x_impact": 1138.2043803881993} +{"lateral_surface_wind": 3.1484751565748073, "apogee_x": 669.8834891538667, "y_impact": 3562.6105047707715, "max_mach_number": 1.1216260406965988, "impact_velocity": -5.413079305912665, "apogee_y": 137.90163303136245, "frontal_surface_wind": 3.488614520303552, "apogee_time": 28.965638170518357, "initial_stability_margin": 2.742531770063207, "out_of_rail_stability_margin": 2.804462489963354, "apogee": 4591.814258505657, "out_of_rail_velocity": 30.35968525555834, "out_of_rail_time": 0.31362761059225086, "t_final": 362.2725757677902, "x_impact": 2291.6657735213003} +{"lateral_surface_wind": 3.825755313673963, "apogee_x": 648.0775014200098, "y_impact": 1795.2148212942084, "max_mach_number": 0.7279980197879932, "impact_velocity": -5.4848589991653505, "apogee_y": 50.46691510433338, "frontal_surface_wind": 1.711277438109138, "apogee_time": 23.846711398151058, "initial_stability_margin": 2.6170025452698327, "out_of_rail_stability_margin": 2.6909659263172356, "apogee": 2826.261053396392, "out_of_rail_velocity": 23.821250428090934, "out_of_rail_time": 0.38079451700976213, "t_final": 267.19069219418543, "x_impact": 965.5318403563482} +{"lateral_surface_wind": 5.0176923141163625, "apogee_x": 438.386180892221, "y_impact": 2866.932767692762, "max_mach_number": 0.8288824565276016, "impact_velocity": -5.50127271415763, "apogee_y": -258.0062888002348, "frontal_surface_wind": 4.814648945942527, "apogee_time": 25.55423442517312, "initial_stability_margin": 2.608170813047424, "out_of_rail_stability_margin": 2.6779364949763624, "apogee": 3339.6451289616134, "out_of_rail_velocity": 25.45390894154617, "out_of_rail_time": 0.36068602145080675, "t_final": 293.9502381297671, "x_impact": 1380.2479049366343} +{"lateral_surface_wind": 3.2989051896577, "apogee_x": 401.45936473789743, "y_impact": 2161.9589807476923, "max_mach_number": 0.8845199323116836, "impact_velocity": -5.377142518819536, "apogee_y": -108.68673122508541, "frontal_surface_wind": 2.9188050451956062, "apogee_time": 26.450294883788548, "initial_stability_margin": 2.705407949427147, "out_of_rail_stability_margin": 2.7731726806444, "apogee": 3634.7065033877034, "out_of_rail_velocity": 26.414665923454276, "out_of_rail_time": 0.3500320893344321, "t_final": 311.78861151227176, "x_impact": 1299.2352341998323} +{"lateral_surface_wind": 2.4862294353227283, "apogee_x": 282.75918944583543, "y_impact": 2843.797527993804, "max_mach_number": 0.9425729216859305, "impact_velocity": -5.389582589801969, "apogee_y": -75.40895911966628, "frontal_surface_wind": 4.543275038680012, "apogee_time": 27.24962232014518, "initial_stability_margin": 2.65907501876166, "out_of_rail_stability_margin": 2.7257773976176933, "apogee": 3911.5533683448575, "out_of_rail_velocity": 27.326944814048204, "out_of_rail_time": 0.340367237842895, "t_final": 328.1811762220713, "x_impact": 1588.7938633827814} +{"lateral_surface_wind": 2.4263661579489684, "apogee_x": 512.7975261425528, "y_impact": 2482.523490342157, "max_mach_number": 0.9284729798588459, "impact_velocity": -5.471308933799701, "apogee_y": 85.74567294082846, "frontal_surface_wind": 3.0465569301865423, "apogee_time": 27.226870297177108, "initial_stability_margin": 2.724327934743037, "out_of_rail_stability_margin": 2.7916376293720666, "apogee": 3877.341171766709, "out_of_rail_velocity": 27.07234021457274, "out_of_rail_time": 0.34299654280481295, "t_final": 323.23741411905644, "x_impact": 1587.68968825145} +{"lateral_surface_wind": 2.1870080254890416, "apogee_x": 506.20136212567456, "y_impact": 2181.8661407170084, "max_mach_number": 0.8158745182361757, "impact_velocity": -5.394602951778735, "apogee_y": 127.7838734178329, "frontal_surface_wind": 2.856964569925992, "apogee_time": 25.3828905918532, "initial_stability_margin": 2.5626795278256, "out_of_rail_stability_margin": 2.6372232796390227, "apogee": 3287.0889470872185, "out_of_rail_velocity": 25.23980188192888, "out_of_rail_time": 0.36365919367831623, "t_final": 295.65225529159693, "x_impact": 1576.3126376835392} +{"lateral_surface_wind": 5.043045867493433, "apogee_x": 486.5209376673564, "y_impact": 3303.3094219700674, "max_mach_number": 0.9145749478919395, "impact_velocity": -5.438811438071242, "apogee_y": -263.86146642168774, "frontal_surface_wind": 4.788086153168644, "apogee_time": 26.874448511828504, "initial_stability_margin": 2.66945292659072, "out_of_rail_stability_margin": 2.7367944502037265, "apogee": 3769.856732806798, "out_of_rail_velocity": 26.82623260646869, "out_of_rail_time": 0.345799724710333, "t_final": 318.1366026518134, "x_impact": 1589.920593603618} +{"lateral_surface_wind": 3.6208037409878018, "apogee_x": 424.24467211957074, "y_impact": 2083.3587355140903, "max_mach_number": 0.7325061478809135, "impact_velocity": -5.367259623360237, "apogee_y": -77.47017307932732, "frontal_surface_wind": 3.4645181308606356, "apogee_time": 23.88635958364686, "initial_stability_margin": 2.67895579721635, "out_of_rail_stability_margin": 2.753526915202146, "apogee": 2847.170580143897, "out_of_rail_velocity": 23.87789427697764, "out_of_rail_time": 0.38001695051139095, "t_final": 275.42840538552144, "x_impact": 1191.6575306254738} +{"lateral_surface_wind": 3.296646880773454, "apogee_x": 338.8757660503751, "y_impact": 2702.365119522125, "max_mach_number": 0.9252368877405471, "impact_velocity": -5.354958387882131, "apogee_y": -134.65256926929285, "frontal_surface_wind": 3.5973866742280243, "apogee_time": 26.899428395105264, "initial_stability_margin": 2.6594005545570822, "out_of_rail_stability_margin": 2.724299093284412, "apogee": 3804.1401660894535, "out_of_rail_velocity": 27.096080805888196, "out_of_rail_time": 0.342869117692453, "t_final": 331.71707666266127, "x_impact": 1519.0045694060193} +{"lateral_surface_wind": 4.3325209794472, "apogee_x": 649.5033313601436, "y_impact": 2507.807998335088, "max_mach_number": 0.8028867260474633, "impact_velocity": -5.436195368197073, "apogee_y": 7.716885960488753, "frontal_surface_wind": 2.7010397393151218, "apogee_time": 25.160973016296044, "initial_stability_margin": 2.6182849803822332, "out_of_rail_stability_margin": 2.6897509380706355, "apogee": 3213.6559571877797, "out_of_rail_velocity": 25.0500239599956, "out_of_rail_time": 0.3651748448157647, "t_final": 297.5597678387438, "x_impact": 1227.2601041056994} +{"lateral_surface_wind": 4.692471606106732, "apogee_x": 336.49119244364636, "y_impact": 1869.8762981667423, "max_mach_number": 0.5976580610374945, "impact_velocity": -5.333035819081034, "apogee_y": -159.4335233183337, "frontal_surface_wind": 5.320017245447005, "apogee_time": 21.050453691791628, "initial_stability_margin": 2.6307409619066804, "out_of_rail_stability_margin": 2.713357468568718, "apogee": 2134.9922229782474, "out_of_rail_velocity": 21.51831734961883, "out_of_rail_time": 0.41478550192324826, "t_final": 231.84295956973395, "x_impact": 872.5307454635532} +{"lateral_surface_wind": 1.1580502754529656, "apogee_x": 360.71639886225057, "y_impact": 1480.1147622372384, "max_mach_number": 0.8019075362949503, "impact_velocity": -5.350197908277101, "apogee_y": 132.131596545497, "frontal_surface_wind": 2.6077167970831074, "apogee_time": 25.10930762160038, "initial_stability_margin": 2.6628839986722928, "out_of_rail_stability_margin": 2.7353316595204706, "apogee": 3214.467508893623, "out_of_rail_velocity": 25.048375265067197, "out_of_rail_time": 0.3653455970775176, "t_final": 288.77271014874424, "x_impact": 1230.1580076141242} +{"lateral_surface_wind": 3.6914364019606354, "apogee_x": 422.03475506487933, "y_impact": 1924.5856195965318, "max_mach_number": 0.7271857522210322, "impact_velocity": -5.347082529741134, "apogee_y": -99.1910462381991, "frontal_surface_wind": 3.190982424067333, "apogee_time": 23.754101363187782, "initial_stability_margin": 2.576241448634118, "out_of_rail_stability_margin": 2.65461217025619, "apogee": 2814.2351147459453, "out_of_rail_velocity": 23.749239879963334, "out_of_rail_time": 0.3817777659985322, "t_final": 272.7221125883537, "x_impact": 1132.4383851058778} +{"lateral_surface_wind": 4.641176780012451, "apogee_x": 402.0250750824595, "y_impact": 2514.7361391773666, "max_mach_number": 0.8424182591468203, "impact_velocity": -5.217766681759237, "apogee_y": -227.00285885738091, "frontal_surface_wind": 4.316877497372928, "apogee_time": 25.466760777120353, "initial_stability_margin": 2.4062092843336407, "out_of_rail_stability_margin": 2.482371342901088, "apogee": 3352.4722339470004, "out_of_rail_velocity": 25.6211612394708, "out_of_rail_time": 0.3588326063863415, "t_final": 311.0436978611525, "x_impact": 1269.0537300345304} +{"lateral_surface_wind": 3.4633640706082667, "apogee_x": 490.83035882471523, "y_impact": 3231.8737847477178, "max_mach_number": 1.0038440746119899, "impact_velocity": -5.38510721908374, "apogee_y": -54.779072744837684, "frontal_surface_wind": 3.621907636071504, "apogee_time": 27.910046904902543, "initial_stability_margin": 2.5965852705224917, "out_of_rail_stability_margin": 2.663667957575134, "apogee": 4155.767990835449, "out_of_rail_velocity": 28.299339477663583, "out_of_rail_time": 0.3313850603978284, "t_final": 348.7277692037612, "x_impact": 1979.009032074891} +{"lateral_surface_wind": 2.4388623059857952, "apogee_x": 331.9093221448252, "y_impact": 2936.4344618624878, "max_mach_number": 0.9405685961870348, "impact_velocity": -5.4193029326425055, "apogee_y": -27.825449354443315, "frontal_surface_wind": 4.568876835131331, "apogee_time": 27.278033442477273, "initial_stability_margin": 2.4778275376930203, "out_of_rail_stability_margin": 2.5488818431169844, "apogee": 3912.5773386414567, "out_of_rail_velocity": 27.2103506945056, "out_of_rail_time": 0.3423246727212895, "t_final": 331.0393791164712, "x_impact": 1663.058012882545} +{"lateral_surface_wind": 1.6686771905593099, "apogee_x": 124.53993717032078, "y_impact": 1662.532008423782, "max_mach_number": 0.784114072953955, "impact_velocity": -5.421629909387049, "apogee_y": -89.25902219778747, "frontal_surface_wind": 3.3289106128936803, "apogee_time": 24.98280826914291, "initial_stability_margin": 2.603692630345139, "out_of_rail_stability_margin": 2.6799922272192696, "apogee": 3152.5393849325533, "out_of_rail_velocity": 24.684909634925464, "out_of_rail_time": 0.36996716016050213, "t_final": 282.8780290676518, "x_impact": 1014.1538572091513} +{"lateral_surface_wind": 1.8148310551599334, "apogee_x": 440.79530730302116, "y_impact": 2262.530693988646, "max_mach_number": 0.851795905361478, "impact_velocity": -5.4110708926808675, "apogee_y": 116.19480907722826, "frontal_surface_wind": 3.251540815698947, "apogee_time": 26.04164626168649, "initial_stability_margin": 2.594042840921296, "out_of_rail_stability_margin": 2.666780856260453, "apogee": 3488.172546075915, "out_of_rail_velocity": 25.81083407910029, "out_of_rail_time": 0.35668099435297607, "t_final": 312.14540212549565, "x_impact": 1581.3097272685436} +{"lateral_surface_wind": 2.1022620614792094, "apogee_x": 290.96861497068545, "y_impact": 1352.6348578957789, "max_mach_number": 0.645040217405605, "impact_velocity": -5.461625272762673, "apogee_y": 23.48734755020484, "frontal_surface_wind": 2.919887820144991, "apogee_time": 22.306784195788058, "initial_stability_margin": 2.4600138269211898, "out_of_rail_stability_margin": 2.541789750562462, "apogee": 2422.2581714437906, "out_of_rail_velocity": 22.354175292437017, "out_of_rail_time": 0.40191879574111716, "t_final": 242.11613052335417, "x_impact": 881.4344680818849} +{"lateral_surface_wind": 3.2386739111696072, "apogee_x": 530.3523516016661, "y_impact": 2621.3671908239826, "max_mach_number": 0.8884718779220551, "impact_velocity": -5.35846372934271, "apogee_y": 40.80403215358579, "frontal_surface_wind": 2.868900766719854, "apogee_time": 26.488896759507174, "initial_stability_margin": 2.5371585240578964, "out_of_rail_stability_margin": 2.6109223767069913, "apogee": 3646.19530747608, "out_of_rail_velocity": 26.3707989940287, "out_of_rail_time": 0.35076356930227914, "t_final": 317.5378814888556, "x_impact": 1515.3566726775155} +{"lateral_surface_wind": 4.529094568688744, "apogee_x": 350.9029450881631, "y_impact": 3147.7374082094357, "max_mach_number": 0.8433926702075609, "impact_velocity": -5.240919399700427, "apogee_y": -243.59876606976, "frontal_surface_wind": 5.276872465739723, "apogee_time": 25.442327899135474, "initial_stability_margin": 2.5644683795850853, "out_of_rail_stability_margin": 2.6400351240860584, "apogee": 3347.503446997315, "out_of_rail_velocity": 25.626287619959353, "out_of_rail_time": 0.35904834842573086, "t_final": 313.72330084100764, "x_impact": 1349.5702631048007} +{"lateral_surface_wind": 2.827885103888015, "apogee_x": 582.7326843373284, "y_impact": 3316.011497190956, "max_mach_number": 0.9616453776735865, "impact_velocity": -5.123155765196347, "apogee_y": 114.17532492750611, "frontal_surface_wind": 4.157373654395471, "apogee_time": 26.902726471987236, "initial_stability_margin": 2.504484814419618, "out_of_rail_stability_margin": 2.5759576288610777, "apogee": 3865.384708041026, "out_of_rail_velocity": 27.599784076177087, "out_of_rail_time": 0.33779600438840257, "t_final": 346.2147808254947, "x_impact": 1866.2059683359691} +{"lateral_surface_wind": 2.538649478973672, "apogee_x": 248.3335959368762, "y_impact": 2227.4072302058153, "max_mach_number": 0.7871850226413841, "impact_velocity": -5.304857297872212, "apogee_y": -87.51879975281685, "frontal_surface_wind": 4.514193583029503, "apogee_time": 24.781575435938397, "initial_stability_margin": 2.5991659341674302, "out_of_rail_stability_margin": 2.674996243773521, "apogee": 3120.8313493641513, "out_of_rail_velocity": 24.773293985097155, "out_of_rail_time": 0.369030167257238, "t_final": 294.0220799287886, "x_impact": 1289.9761518221387} +{"lateral_surface_wind": 4.423494063334761, "apogee_x": 616.5400792433908, "y_impact": 2677.6275057145695, "max_mach_number": 0.8701687613097193, "impact_velocity": -5.250565652416836, "apogee_y": -63.441972493595884, "frontal_surface_wind": 2.549324220720416, "apogee_time": 25.933377684099757, "initial_stability_margin": 2.5719125976242974, "out_of_rail_stability_margin": 2.646466025709069, "apogee": 3495.311716432658, "out_of_rail_velocity": 26.068401043285974, "out_of_rail_time": 0.3535957271387557, "t_final": 315.23493865481817, "x_impact": 1294.0323555169207} +{"lateral_surface_wind": 2.7287782836050702, "apogee_x": 322.3794105237722, "y_impact": 1953.0225093065499, "max_mach_number": 0.7027422251552873, "impact_velocity": -5.395705238834391, "apogee_y": -32.14323655327765, "frontal_surface_wind": 4.223086423692823, "apogee_time": 23.357375094409665, "initial_stability_margin": 2.6516150030969703, "out_of_rail_stability_margin": 2.7288533292052506, "apogee": 2701.1401042376474, "out_of_rail_velocity": 23.371909528315204, "out_of_rail_time": 0.38708405048197303, "t_final": 264.5759571975121, "x_impact": 1063.205257039868} +{"lateral_surface_wind": 2.9695391297620857, "apogee_x": 562.3051155110751, "y_impact": 2711.961465590962, "max_mach_number": 0.936413158405345, "impact_velocity": -5.258692161856009, "apogee_y": 82.40809043792129, "frontal_surface_wind": 2.646806151694171, "apogee_time": 26.849733082766367, "initial_stability_margin": 2.3621598192974522, "out_of_rail_stability_margin": 2.433817854658268, "apogee": 3811.689374628394, "out_of_rail_velocity": 27.181445229156047, "out_of_rail_time": 0.3420811335994679, "t_final": 336.3527796916183, "x_impact": 1686.4960225084749} +{"lateral_surface_wind": 3.154428012770256, "apogee_x": 415.72106858259207, "y_impact": 2136.5904207666777, "max_mach_number": 0.7727585519516396, "impact_velocity": -5.353210081511392, "apogee_y": -20.52603523598133, "frontal_surface_wind": 3.4832328367612515, "apogee_time": 24.54232175503672, "initial_stability_margin": 2.6449052876656345, "out_of_rail_stability_margin": 2.720480276268624, "apogee": 3044.6405805675745, "out_of_rail_velocity": 24.534713054345964, "out_of_rail_time": 0.3724429774615207, "t_final": 284.67294350199967, "x_impact": 1244.8475746835336} +{"lateral_surface_wind": 3.856714390143595, "apogee_x": 568.1202060763819, "y_impact": 1883.2490341488308, "max_mach_number": 0.7620083759361338, "impact_velocity": -5.42580786747148, "apogee_y": -31.223060053388664, "frontal_surface_wind": 1.9356584792381764, "apogee_time": 24.37735765086539, "initial_stability_margin": 2.53017162233662, "out_of_rail_stability_margin": 2.6078038052326304, "apogee": 2989.27616721923, "out_of_rail_velocity": 24.311801689452036, "out_of_rail_time": 0.37492238758451607, "t_final": 280.0203016586447, "x_impact": 1028.5138501410174} +{"lateral_surface_wind": 3.1496550291635725, "apogee_x": 275.4048091688139, "y_impact": 1556.13675392058, "max_mach_number": 0.6556622649585488, "impact_velocity": -5.312629846129084, "apogee_y": -92.6218030800514, "frontal_surface_wind": 3.301341003835949, "apogee_time": 22.34075417373668, "initial_stability_margin": 2.4987384880863615, "out_of_rail_stability_margin": 2.5828843103247587, "apogee": 2445.521077511718, "out_of_rail_velocity": 22.539379550394305, "out_of_rail_time": 0.40003634384022047, "t_final": 253.054824209506, "x_impact": 776.0921991680705} +{"lateral_surface_wind": 3.506158856495877, "apogee_x": 375.1696642747121, "y_impact": 2425.602748812565, "max_mach_number": 0.8911368742495754, "impact_velocity": -5.344271121419801, "apogee_y": -149.44137754813408, "frontal_surface_wind": 3.393511693429424, "apogee_time": 26.54242735502733, "initial_stability_margin": 2.7663424387463094, "out_of_rail_stability_margin": 2.83273536095675, "apogee": 3663.8724556759444, "out_of_rail_velocity": 26.52266230842796, "out_of_rail_time": 0.348813486329227, "t_final": 312.16768649987637, "x_impact": 1426.785237454778} +{"lateral_surface_wind": 2.5165934192809845, "apogee_x": 195.79438798088003, "y_impact": 1790.3793059532197, "max_mach_number": 0.7113298125251973, "impact_velocity": -5.380869904480384, "apogee_y": -108.20763911087788, "frontal_surface_wind": 4.526526531921544, "apogee_time": 23.529412986490552, "initial_stability_margin": 2.598685659321201, "out_of_rail_stability_margin": 2.6746595420595503, "apogee": 2750.168827480303, "out_of_rail_velocity": 23.537441081158217, "out_of_rail_time": 0.38454398399135586, "t_final": 264.81987001518735, "x_impact": 1059.9966141333707} +{"lateral_surface_wind": 1.918033794405559, "apogee_x": 205.38332479102144, "y_impact": 1677.389090457719, "max_mach_number": 0.7440297577507031, "impact_velocity": -5.140543548898118, "apogee_y": -48.196327819864905, "frontal_surface_wind": 3.191751211865878, "apogee_time": 23.811188489614015, "initial_stability_margin": 2.4376105454603945, "out_of_rail_stability_margin": 2.519707822815681, "apogee": 2863.317355550156, "out_of_rail_velocity": 23.99503375771406, "out_of_rail_time": 0.3784051100655642, "t_final": 289.67124972879105, "x_impact": 1074.5330038447157} +{"lateral_surface_wind": 4.6734823171914055, "apogee_x": 506.90469522132105, "y_impact": 3310.740105084714, "max_mach_number": 1.089373723475077, "impact_velocity": -5.3014877709752275, "apogee_y": -203.26061947442557, "frontal_surface_wind": 4.281882326915436, "apogee_time": 28.420334751395284, "initial_stability_margin": 2.578990790722167, "out_of_rail_stability_margin": 2.6439916469888263, "apogee": 4411.621392678974, "out_of_rail_velocity": 29.83227012263317, "out_of_rail_time": 0.3187034820755902, "t_final": 360.18747133685247, "x_impact": 1853.6088646229548} +{"lateral_surface_wind": 2.947325674560921, "apogee_x": 310.0043281123907, "y_impact": 1958.163383788808, "max_mach_number": 0.7296341747002075, "impact_velocity": -5.208777895083727, "apogee_y": -82.07580081656896, "frontal_surface_wind": 3.9446392533380408, "apogee_time": 23.620316073655133, "initial_stability_margin": 2.672485223011656, "out_of_rail_stability_margin": 2.748677442931239, "apogee": 2798.593806118396, "out_of_rail_velocity": 23.84132406074501, "out_of_rail_time": 0.3805400774806221, "t_final": 279.6658590299529, "x_impact": 1282.5916031433524} +{"lateral_surface_wind": 4.019901279491846, "apogee_x": 266.46567945904366, "y_impact": 1458.0274513011734, "max_mach_number": 0.523192123173278, "impact_velocity": -5.325061497966677, "apogee_y": -113.24687673342868, "frontal_surface_wind": 4.461782028918269, "apogee_time": 19.45244025692654, "initial_stability_margin": 2.5892189151765743, "out_of_rail_stability_margin": 2.6790625672131876, "apogee": 1781.3108965564224, "out_of_rail_velocity": 20.108578728402325, "out_of_rail_time": 0.4402729693963691, "t_final": 212.6456413640247, "x_impact": 677.0914239554215} +{"lateral_surface_wind": 4.307796929341045, "apogee_x": 566.534705960243, "y_impact": 2360.4584308285303, "max_mach_number": 0.77946376307545, "impact_velocity": -5.336344860427499, "apogee_y": -33.337908732127914, "frontal_surface_wind": 2.8875410257464074, "apogee_time": 24.589931819533142, "initial_stability_margin": 2.5054710328309513, "out_of_rail_stability_margin": 2.5802303989937587, "apogee": 3064.913878361987, "out_of_rail_velocity": 24.66854446206594, "out_of_rail_time": 0.37002558852534434, "t_final": 290.8999550044132, "x_impact": 947.4615633535822} +{"lateral_surface_wind": 2.896927701606457, "apogee_x": 222.10596701832327, "y_impact": 1195.7122574574366, "max_mach_number": 0.5181898327196502, "impact_velocity": -5.2167921373691835, "apogee_y": -63.96567335347726, "frontal_surface_wind": 3.9817982573915534, "apogee_time": 19.28702383622086, "initial_stability_margin": 2.524412967824032, "out_of_rail_stability_margin": 2.6166789554336956, "apogee": 1753.749590167996, "out_of_rail_velocity": 19.9929222728912, "out_of_rail_time": 0.4414070865145922, "t_final": 212.00052993225452, "x_impact": 773.0674492526989} +{"lateral_surface_wind": 4.147596419008694, "apogee_x": 365.1133868119432, "y_impact": 2618.59138254432, "max_mach_number": 0.8740638256648257, "impact_velocity": -5.241113423719768, "apogee_y": -209.6245484364642, "frontal_surface_wind": 2.3723161140965736, "apogee_time": 25.970980195596184, "initial_stability_margin": 2.6345219448778434, "out_of_rail_stability_margin": 2.705000540536388, "apogee": 3514.9785545939526, "out_of_rail_velocity": 26.220337263946266, "out_of_rail_time": 0.3524644910165036, "t_final": 318.8863121147448, "x_impact": 1207.6323277587712} +{"lateral_surface_wind": 4.198464904516499, "apogee_x": 603.8624991377134, "y_impact": 3029.417878545073, "max_mach_number": 0.9763421636056986, "impact_velocity": -5.418562660332739, "apogee_y": -81.7843560854345, "frontal_surface_wind": 2.2810813763913096, "apogee_time": 27.604477769251663, "initial_stability_margin": 2.6154396948792944, "out_of_rail_stability_margin": 2.683767903359556, "apogee": 4040.152328505777, "out_of_rail_velocity": 27.820876412088055, "out_of_rail_time": 0.3355882460073927, "t_final": 329.5805007345901, "x_impact": 1677.8811536876792} +{"lateral_surface_wind": 5.053981460777246, "apogee_x": 469.8816275686331, "y_impact": 2940.026553316352, "max_mach_number": 0.8949095667021476, "impact_velocity": -5.426761703652408, "apogee_y": -267.2744149684044, "frontal_surface_wind": 4.977865472277383, "apogee_time": 26.641188956656748, "initial_stability_margin": 2.603402831187226, "out_of_rail_stability_margin": 2.6724267257325214, "apogee": 3684.0878157205884, "out_of_rail_velocity": 26.489820171558925, "out_of_rail_time": 0.3490514485659851, "t_final": 308.7415307000958, "x_impact": 1596.0951793548925} +{"lateral_surface_wind": 4.577108230290806, "apogee_x": 451.834584699528, "y_impact": 2131.206476429439, "max_mach_number": 0.7600363423027321, "impact_velocity": -5.3838429051181445, "apogee_y": -164.19771371396192, "frontal_surface_wind": 3.3442834696491524, "apogee_time": 24.307100413462212, "initial_stability_margin": 2.5904185744741755, "out_of_rail_stability_margin": 2.66706938564114, "apogee": 2974.955794208165, "out_of_rail_velocity": 24.308103153025584, "out_of_rail_time": 0.3752164507571647, "t_final": 286.2151882098912, "x_impact": 963.6143323531405} +{"lateral_surface_wind": 2.4967942795850244, "apogee_x": 426.51896217415583, "y_impact": 3036.417869010181, "max_mach_number": 0.9396992308640231, "impact_velocity": -5.3832343533188185, "apogee_y": 29.454561172852948, "frontal_surface_wind": 4.537477626125503, "apogee_time": 27.24222515247684, "initial_stability_margin": 2.6147629773231293, "out_of_rail_stability_margin": 2.6824002564983935, "apogee": 3903.5131984414384, "out_of_rail_velocity": 27.294362513104215, "out_of_rail_time": 0.3413119755053522, "t_final": 334.21660801231644, "x_impact": 1787.5025460793013} +{"lateral_surface_wind": 4.89478672176701, "apogee_x": 469.5716637265419, "y_impact": 2475.7605995272993, "max_mach_number": 0.7864376448040019, "impact_velocity": -5.2007535282727755, "apogee_y": -185.83089240363202, "frontal_surface_wind": 2.679672575474985, "apogee_time": 24.40607543997039, "initial_stability_margin": 2.571995132927033, "out_of_rail_stability_margin": 2.649380242034837, "apogee": 3041.5977533794835, "out_of_rail_velocity": 24.717134055725385, "out_of_rail_time": 0.36960125309614766, "t_final": 291.66902836300153, "x_impact": 958.4882433677606} +{"lateral_surface_wind": 2.3284218666074734, "apogee_x": 469.52872571888616, "y_impact": 3109.7857651116806, "max_mach_number": 1.0313120245734175, "impact_velocity": -5.324627106749608, "apogee_y": 106.34983043398084, "frontal_surface_wind": 3.863034887125549, "apogee_time": 28.053787926865777, "initial_stability_margin": 2.5906165215841814, "out_of_rail_stability_margin": 2.6542984990396734, "apogee": 4239.139844445285, "out_of_rail_velocity": 28.91876406041169, "out_of_rail_time": 0.3261551632525614, "t_final": 348.2297055319699, "x_impact": 2132.7194907038797} +{"lateral_surface_wind": 3.7874827273703775, "apogee_x": 449.4873180212432, "y_impact": 2266.9914135083905, "max_mach_number": 0.832499897853196, "impact_velocity": -5.434750568712047, "apogee_y": -90.97167310242297, "frontal_surface_wind": 2.925925550483464, "apogee_time": 25.711746433228043, "initial_stability_margin": 2.586162020147284, "out_of_rail_stability_margin": 2.6566476844338864, "apogee": 3382.755285745457, "out_of_rail_velocity": 25.533041051446165, "out_of_rail_time": 0.35977625533289004, "t_final": 294.79071244711076, "x_impact": 1010.3023960828784} +{"lateral_surface_wind": 2.656282539675084, "apogee_x": 532.5748288554496, "y_impact": 2581.5130400969656, "max_mach_number": 0.9194656596850251, "impact_velocity": -5.34594666625715, "apogee_y": 66.15878358626593, "frontal_surface_wind": 3.6453737802126978, "apogee_time": 26.91599761056242, "initial_stability_margin": 2.675401430713445, "out_of_rail_stability_margin": 2.742950717083273, "apogee": 3794.7618478694917, "out_of_rail_velocity": 26.954763674789024, "out_of_rail_time": 0.3444074645983931, "t_final": 316.0069310990502, "x_impact": 1907.357703701264} +{"lateral_surface_wind": 3.6363813307952038, "apogee_x": 421.38168746905114, "y_impact": 1563.3409492869662, "max_mach_number": 0.6690921940090853, "impact_velocity": -5.299335185501301, "apogee_y": -32.26870359838813, "frontal_surface_wind": 2.3233059317342244, "apogee_time": 22.610049643956017, "initial_stability_margin": 2.646343819924876, "out_of_rail_stability_margin": 2.725721653590822, "apogee": 2511.6622581142205, "out_of_rail_velocity": 22.798733325484267, "out_of_rail_time": 0.3952761361363461, "t_final": 251.4596576365998, "x_impact": 715.3053941826382} +{"lateral_surface_wind": 3.415169559131406, "apogee_x": 369.30335005036164, "y_impact": 2188.7132111502674, "max_mach_number": 0.796852831467095, "impact_velocity": -5.1960187934563145, "apogee_y": -94.53535579726888, "frontal_surface_wind": 2.6563541169352036, "apogee_time": 24.824768516802784, "initial_stability_margin": 2.473591541072499, "out_of_rail_stability_margin": 2.547257378542296, "apogee": 3146.6229061753743, "out_of_rail_velocity": 24.97605114160723, "out_of_rail_time": 0.366727454723544, "t_final": 304.21468859370276, "x_impact": 1120.5421431106001} +{"lateral_surface_wind": 2.789977964113634, "apogee_x": 428.4324683360806, "y_impact": 2208.017738117503, "max_mach_number": 0.8490343708966868, "impact_velocity": -5.24751436643579, "apogee_y": 29.447183766808408, "frontal_surface_wind": 2.8354485372855236, "apogee_time": 25.8511527823932, "initial_stability_margin": 2.6017428074661617, "out_of_rail_stability_margin": 2.673037659412326, "apogee": 3444.9608797000997, "out_of_rail_velocity": 25.80377972358658, "out_of_rail_time": 0.3573886857255197, "t_final": 302.72198875990637, "x_impact": 1288.7915566594702} +{"lateral_surface_wind": 4.159250144284637, "apogee_x": 629.8956687402878, "y_impact": 2828.348055636462, "max_mach_number": 0.8753222922952962, "impact_velocity": -5.249103829592274, "apogee_y": -19.470068266734376, "frontal_surface_wind": 2.351824406167312, "apogee_time": 26.05265787860203, "initial_stability_margin": 2.6574354739985284, "out_of_rail_stability_margin": 2.7276611556795967, "apogee": 3529.1051705151763, "out_of_rail_velocity": 26.233328889741912, "out_of_rail_time": 0.3518818219395081, "t_final": 317.973128478966, "x_impact": 1513.6581655205694} +{"lateral_surface_wind": 2.461220601841258, "apogee_x": 188.22151555820628, "y_impact": 1738.1944632567183, "max_mach_number": 0.6510288723162876, "impact_velocity": -5.2885067886158295, "apogee_y": -81.35131945849079, "frontal_surface_wind": 4.384413645189677, "apogee_time": 22.22098028125184, "initial_stability_margin": 2.538668100984692, "out_of_rail_stability_margin": 2.617453451793348, "apogee": 2418.6603443730964, "out_of_rail_velocity": 22.49850604367082, "out_of_rail_time": 0.39958374727511264, "t_final": 255.25087419686923, "x_impact": 836.2802594503797} +{"lateral_surface_wind": 3.6671377000267724, "apogee_x": 626.3295269005991, "y_impact": 2636.6404383645518, "max_mach_number": 0.9022137667870698, "impact_velocity": -5.29902271149539, "apogee_y": 54.63924398563384, "frontal_surface_wind": 2.029033089756864, "apogee_time": 26.56026402360769, "initial_stability_margin": 2.5600734676330523, "out_of_rail_stability_margin": 2.632958808588913, "apogee": 3683.460533006389, "out_of_rail_velocity": 26.580884870260316, "out_of_rail_time": 0.34810780485760345, "t_final": 329.3107642422518, "x_impact": 1346.4766536078218} +{"lateral_surface_wind": 3.1390974152261832, "apogee_x": 355.0506675968988, "y_impact": 1630.9017538308772, "max_mach_number": 0.7256031107518514, "impact_velocity": -5.423702539709253, "apogee_y": -82.23805901727901, "frontal_surface_wind": 2.443320049759051, "apogee_time": 23.779901418824483, "initial_stability_margin": 2.6049995628900984, "out_of_rail_stability_margin": 2.6830996907613054, "apogee": 2818.206930935889, "out_of_rail_velocity": 23.71828440031965, "out_of_rail_time": 0.3819256647425312, "t_final": 267.43226038287077, "x_impact": 949.0877497251038} +{"lateral_surface_wind": 3.2916767640603672, "apogee_x": 545.1251909998899, "y_impact": 2369.3256261218585, "max_mach_number": 0.881249202717744, "impact_velocity": -5.3862245629250545, "apogee_y": 54.7637910942102, "frontal_surface_wind": 2.14246787013158, "apogee_time": 26.428008123618334, "initial_stability_margin": 2.6181138498353156, "out_of_rail_stability_margin": 2.689236442505719, "apogee": 3618.711202627594, "out_of_rail_velocity": 26.283036314362, "out_of_rail_time": 0.3515680370773417, "t_final": 311.86867258895137, "x_impact": 1045.3703465933759} +{"lateral_surface_wind": 3.7909291845441264, "apogee_x": 518.0710683348282, "y_impact": 1442.1124918442224, "max_mach_number": 0.6350686166771945, "impact_velocity": -5.441035220993318, "apogee_y": 12.630263874358127, "frontal_surface_wind": 1.7871010346529208, "apogee_time": 21.900861655948734, "initial_stability_margin": 2.6459870699549612, "out_of_rail_stability_margin": 2.729970756102702, "apogee": 2331.1010091327134, "out_of_rail_velocity": 22.14771399571816, "out_of_rail_time": 0.4047771170938674, "t_final": 242.82821016631215, "x_impact": 660.2198827842581} +{"lateral_surface_wind": 4.865911420138322, "apogee_x": 612.0546475372502, "y_impact": 2942.440525175883, "max_mach_number": 0.8736771734147407, "impact_velocity": -5.34563532556725, "apogee_y": -122.22148278388862, "frontal_surface_wind": 2.731755518838906, "apogee_time": 26.069360499945372, "initial_stability_margin": 2.612489268045049, "out_of_rail_stability_margin": 2.684159026764082, "apogee": 3526.3965837017454, "out_of_rail_velocity": 26.139897269291122, "out_of_rail_time": 0.352815998323979, "t_final": 308.829672045719, "x_impact": 1337.2902161250697} +{"lateral_surface_wind": 4.765516406656307, "apogee_x": 476.0712479617457, "y_impact": 3446.153380482738, "max_mach_number": 0.9227142955346769, "impact_velocity": -5.461323749810253, "apogee_y": -224.09728856749317, "frontal_surface_wind": 5.064378936226777, "apogee_time": 27.036069164359105, "initial_stability_margin": 2.648529870739965, "out_of_rail_stability_margin": 2.715829291460125, "apogee": 3819.357634322152, "out_of_rail_velocity": 26.946018579623043, "out_of_rail_time": 0.3448883961447227, "t_final": 323.4544674881657, "x_impact": 1608.1892016513505} +{"lateral_surface_wind": 4.440096737171636, "apogee_x": 414.21958365622004, "y_impact": 3086.2570760476992, "max_mach_number": 0.8273107551315134, "impact_velocity": -5.2951824752444265, "apogee_y": -171.76123930803, "frontal_surface_wind": 5.351973616934755, "apogee_time": 25.350273635255032, "initial_stability_margin": 2.4580307295174504, "out_of_rail_stability_margin": 2.5340762129890457, "apogee": 3297.9777955554073, "out_of_rail_velocity": 25.34859390353345, "out_of_rail_time": 0.36191178855473777, "t_final": 304.32976352980063, "x_impact": 1379.8595603471892} +{"lateral_surface_wind": 4.91095140215507, "apogee_x": 633.245059820672, "y_impact": 2548.2256539427385, "max_mach_number": 0.7999472244921573, "impact_velocity": -5.395792513397207, "apogee_y": -95.80825539125766, "frontal_surface_wind": 2.649931789501481, "apogee_time": 25.00459959179054, "initial_stability_margin": 2.6247103853275533, "out_of_rail_stability_margin": 2.696692246323971, "apogee": 3175.335485683942, "out_of_rail_velocity": 24.982524498554884, "out_of_rail_time": 0.3663248246166976, "t_final": 284.5864971608161, "x_impact": 1185.85561639265} +{"lateral_surface_wind": 2.525497143411533, "apogee_x": 291.3462766187728, "y_impact": 2629.5661020566217, "max_mach_number": 0.8987470365947979, "impact_velocity": -5.415010007135677, "apogee_y": -73.05264543477752, "frontal_surface_wind": 4.521564890696387, "apogee_time": 26.720257629525623, "initial_stability_margin": 2.663812906702474, "out_of_rail_stability_margin": 2.730971436049544, "apogee": 3717.857023471366, "out_of_rail_velocity": 26.630348184600248, "out_of_rail_time": 0.3475886755012085, "t_final": 314.376833668728, "x_impact": 1508.4179307806648} +{"lateral_surface_wind": 3.334337645868873, "apogee_x": 537.3455606527154, "y_impact": 2772.582920180238, "max_mach_number": 0.8542059155294411, "impact_velocity": -5.340300360626494, "apogee_y": 43.533237633110325, "frontal_surface_wind": 3.741029012605349, "apogee_time": 25.943805421245813, "initial_stability_margin": 2.557541000704247, "out_of_rail_stability_margin": 2.62865636225736, "apogee": 3468.27393559399, "out_of_rail_velocity": 25.857047041710974, "out_of_rail_time": 0.3564600624519929, "t_final": 312.73079001600667, "x_impact": 1647.8512173138988} +{"lateral_surface_wind": 5.211285151152081, "apogee_x": 491.50094068692897, "y_impact": 2630.929917021499, "max_mach_number": 0.820363279377019, "impact_velocity": -5.474478365084367, "apogee_y": -245.06437293678644, "frontal_surface_wind": 4.812938846417359, "apogee_time": 25.421024604617777, "initial_stability_margin": 2.523256158007268, "out_of_rail_stability_margin": 2.5969782768439287, "apogee": 3296.138026461436, "out_of_rail_velocity": 25.292624044394678, "out_of_rail_time": 0.36314777447975827, "t_final": 287.9967101503556, "x_impact": 1448.376963326132} +{"lateral_surface_wind": 3.465595695283539, "apogee_x": 508.44602672987446, "y_impact": 2315.9167799706483, "max_mach_number": 0.8521389454394794, "impact_velocity": -5.449393523395217, "apogee_y": -32.79293948724839, "frontal_surface_wind": 2.5902213783784216, "apogee_time": 25.97152026553832, "initial_stability_margin": 2.5043665829406656, "out_of_rail_stability_margin": 2.5776710168294246, "apogee": 3471.743762540888, "out_of_rail_velocity": 25.798490190427096, "out_of_rail_time": 0.35662039228949766, "t_final": 300.51762280187967, "x_impact": 1373.663617634893} +{"lateral_surface_wind": 3.462735516358409, "apogee_x": 521.766584247385, "y_impact": 2693.5937228058183, "max_mach_number": 0.8959503342251781, "impact_velocity": -5.333254667393603, "apogee_y": -24.500212430913535, "frontal_surface_wind": 2.300406303908237, "apogee_time": 26.48154821813358, "initial_stability_margin": 2.555166875584507, "out_of_rail_stability_margin": 2.6266263411579143, "apogee": 3658.5849594471915, "out_of_rail_velocity": 26.512067651248838, "out_of_rail_time": 0.3488530053664668, "t_final": 323.02104921050545, "x_impact": 1310.7172374254858} +{"lateral_surface_wind": 3.8686744799763577, "apogee_x": 636.2106283960038, "y_impact": 2644.3541284621797, "max_mach_number": 1.0235473574824192, "impact_velocity": -5.329619236409957, "apogee_y": -40.450959166390334, "frontal_surface_wind": 1.9116425929987497, "apogee_time": 27.92773728588035, "initial_stability_margin": 2.53878440116216, "out_of_rail_stability_margin": 2.6041026726216625, "apogee": 4192.606306933756, "out_of_rail_velocity": 28.722463369654825, "out_of_rail_time": 0.3275326197774786, "t_final": 342.5578184029847, "x_impact": 1535.677587810872} +{"lateral_surface_wind": 4.606243771117233, "apogee_x": 342.7447113174313, "y_impact": 2622.366038737628, "max_mach_number": 1.0150417975514667, "impact_velocity": -5.29003175552873, "apogee_y": -314.93711943880487, "frontal_surface_wind": 3.3040384377619, "apogee_time": 27.734252522978878, "initial_stability_margin": 2.5696110611834095, "out_of_rail_stability_margin": 2.6363563294162757, "apogee": 4138.440828639801, "out_of_rail_velocity": 28.570164486696733, "out_of_rail_time": 0.3291494329269303, "t_final": 337.7011178072924, "x_impact": 1168.6404156556894} +{"lateral_surface_wind": 2.628957708590094, "apogee_x": 503.14086277104764, "y_impact": 2932.042555522399, "max_mach_number": 0.9231556194217312, "impact_velocity": -5.2387475680042686, "apogee_y": 64.28584400908214, "frontal_surface_wind": 4.462204191719913, "apogee_time": 26.75995817054067, "initial_stability_margin": 2.521123783767603, "out_of_rail_stability_margin": 2.592288010903218, "apogee": 3770.2076798675635, "out_of_rail_velocity": 26.982734586829615, "out_of_rail_time": 0.34414833569927744, "t_final": 326.82361554684127, "x_impact": 1815.154372752536} +{"lateral_surface_wind": 3.7955879041793423, "apogee_x": 521.5255299629675, "y_impact": 1952.3622375042767, "max_mach_number": 0.7987402636986082, "impact_velocity": -5.474987022982373, "apogee_y": -54.602151552707404, "frontal_surface_wind": 1.7771850359299681, "apogee_time": 25.14897549883901, "initial_stability_margin": 2.6379419995562388, "out_of_rail_stability_margin": 2.711433171202871, "apogee": 3205.9922684202334, "out_of_rail_velocity": 24.966250036653058, "out_of_rail_time": 0.3668605743114123, "t_final": 287.1975504978877, "x_impact": 971.6823350966646} +{"lateral_surface_wind": 4.891070560466561, "apogee_x": 400.69364262693114, "y_impact": 2824.8645060404515, "max_mach_number": 0.8664338087004518, "impact_velocity": -5.424162958110576, "apogee_y": -277.7807621827717, "frontal_surface_wind": 2.6864495036900804, "apogee_time": 26.160931241636998, "initial_stability_margin": 2.555190472034474, "out_of_rail_stability_margin": 2.62541322281868, "apogee": 3533.8348838965717, "out_of_rail_velocity": 26.033890958130797, "out_of_rail_time": 0.35417982426307537, "t_final": 311.23380993539956, "x_impact": 1113.360993251307} +{"lateral_surface_wind": 3.3582750627030173, "apogee_x": 435.09099912700856, "y_impact": 2260.4286784391843, "max_mach_number": 0.820961858808048, "impact_velocity": -5.305453932545466, "apogee_y": -47.04258028776545, "frontal_surface_wind": 2.4503867087742988, "apogee_time": 25.372807233037204, "initial_stability_margin": 2.6214959645376776, "out_of_rail_stability_margin": 2.696458091521459, "apogee": 3295.144396001573, "out_of_rail_velocity": 25.34377633009755, "out_of_rail_time": 0.36317392701035334, "t_final": 298.11440652882857, "x_impact": 1024.0476950198251} +{"lateral_surface_wind": 3.0018098397290403, "apogee_x": 616.361596549256, "y_impact": 2767.483735370353, "max_mach_number": 0.9464362610629988, "impact_velocity": -5.315072302083913, "apogee_y": 104.06982819812687, "frontal_surface_wind": 2.610150021347468, "apogee_time": 27.163135284231387, "initial_stability_margin": 2.4795556855222185, "out_of_rail_stability_margin": 2.548739447630935, "apogee": 3894.591831587975, "out_of_rail_velocity": 27.399588090801764, "out_of_rail_time": 0.34058197606672486, "t_final": 336.8800224715697, "x_impact": 1773.60299829177} +{"lateral_surface_wind": 4.648518241322807, "apogee_x": 429.57191155703623, "y_impact": 2938.155806515215, "max_mach_number": 0.8730409161241083, "impact_velocity": -5.197994993740153, "apogee_y": -203.2427228067839, "frontal_surface_wind": 4.335373609341379, "apogee_time": 25.836461125763897, "initial_stability_margin": 2.4193813709829235, "out_of_rail_stability_margin": 2.4939875410170926, "apogee": 3484.3208279666455, "out_of_rail_velocity": 26.164738353146483, "out_of_rail_time": 0.3532426978155302, "t_final": 323.70558813967097, "x_impact": 1388.4111520559459} +{"lateral_surface_wind": 3.632423043546196, "apogee_x": 473.80292849229045, "y_impact": 1985.1819517513056, "max_mach_number": 0.7878554039948195, "impact_velocity": -5.365631448817712, "apogee_y": -35.014853575969305, "frontal_surface_wind": 2.329489744150405, "apogee_time": 24.84942904715939, "initial_stability_margin": 2.5224811880424145, "out_of_rail_stability_margin": 2.5993089833047063, "apogee": 3129.7519174290187, "out_of_rail_velocity": 24.730385550474008, "out_of_rail_time": 0.3689641936099086, "t_final": 290.6383142041235, "x_impact": 967.2485295471926} +{"lateral_surface_wind": 3.332446809072275, "apogee_x": 351.01817648011405, "y_impact": 2020.140519128111, "max_mach_number": 0.7521519302037152, "impact_velocity": -5.343932266518339, "apogee_y": -90.37188797488673, "frontal_surface_wind": 3.5642488416398095, "apogee_time": 24.204891484566662, "initial_stability_margin": 2.636203169014834, "out_of_rail_stability_margin": 2.712435301833292, "apogee": 2944.3915817438356, "out_of_rail_velocity": 24.185004157467816, "out_of_rail_time": 0.37671498326887953, "t_final": 279.6153882934167, "x_impact": 1104.4741828751928} +{"lateral_surface_wind": 3.2826269074380336, "apogee_x": 516.7187775885877, "y_impact": 3397.152643234347, "max_mach_number": 1.088755546872165, "impact_velocity": -5.24593722178057, "apogee_y": -9.556019107655045, "frontal_surface_wind": 3.3626905402378835, "apogee_time": 28.437494665602955, "initial_stability_margin": 2.6175716556780024, "out_of_rail_stability_margin": 2.681543898723097, "apogee": 4416.474288336209, "out_of_rail_velocity": 29.838161902255308, "out_of_rail_time": 0.31841148684955234, "t_final": 367.3505718114957, "x_impact": 2091.1280258074576} +{"lateral_surface_wind": 2.093703353809065, "apogee_x": 577.1188484099833, "y_impact": 2771.7549388009425, "max_mach_number": 0.9309432128993546, "impact_velocity": -5.346767226632876, "apogee_y": 204.62262242049948, "frontal_surface_wind": 2.9260309163805087, "apogee_time": 27.09294479564333, "initial_stability_margin": 2.551124503573261, "out_of_rail_stability_margin": 2.6174645426873173, "apogee": 3853.300913946856, "out_of_rail_velocity": 27.176547022836377, "out_of_rail_time": 0.3423773235690054, "t_final": 327.42621414075006, "x_impact": 1961.6271558502247} +{"lateral_surface_wind": 4.139936066562017, "apogee_x": 687.3438958313566, "y_impact": 3101.395680689024, "max_mach_number": 0.8750761433317957, "impact_velocity": -5.399299152522724, "apogee_y": 34.374220141421404, "frontal_surface_wind": 4.350636106963809, "apogee_time": 26.23948341416695, "initial_stability_margin": 2.5798424117388716, "out_of_rail_stability_margin": 2.653311876571098, "apogee": 3563.715715787164, "out_of_rail_velocity": 26.15663582354118, "out_of_rail_time": 0.3528580421245983, "t_final": 317.94906053295057, "x_impact": 1844.7691805812638} +{"lateral_surface_wind": 2.310043024240333, "apogee_x": 379.48894628867714, "y_impact": 1478.905778692348, "max_mach_number": 0.658856056102146, "impact_velocity": -5.305776760791078, "apogee_y": 38.07592861151932, "frontal_surface_wind": 2.758432867322397, "apogee_time": 22.406360160198922, "initial_stability_margin": 2.5602642298853597, "out_of_rail_stability_margin": 2.644829764400194, "apogee": 2461.9525908178866, "out_of_rail_velocity": 22.5570029754814, "out_of_rail_time": 0.3987212584815024, "t_final": 255.47127770226493, "x_impact": 1035.140316497279} +{"lateral_surface_wind": 4.3330292510616815, "apogee_x": 429.2020341297877, "y_impact": 1789.373859325927, "max_mach_number": 0.6750887827655976, "impact_velocity": -5.534025378518847, "apogee_y": -113.20080992740596, "frontal_surface_wind": 2.8495376939518784, "apogee_time": 22.912347149575687, "initial_stability_margin": 2.6070816056184616, "out_of_rail_stability_margin": 2.6856673918702114, "apogee": 2571.9717974235678, "out_of_rail_velocity": 22.914494062611013, "out_of_rail_time": 0.3948140355584476, "t_final": 251.61427275070713, "x_impact": 657.385661650368} +{"lateral_surface_wind": 3.0054310899290932, "apogee_x": 317.09571209724896, "y_impact": 1107.2114000357499, "max_mach_number": 0.5233434450970675, "impact_velocity": -5.400479100701985, "apogee_y": -2.4497992905714243, "frontal_surface_wind": 2.6059795493291764, "apogee_time": 19.495925862716202, "initial_stability_margin": 2.557672102431996, "out_of_rail_stability_margin": 2.649213016135619, "apogee": 1788.8119013250123, "out_of_rail_velocity": 20.10026244688788, "out_of_rail_time": 0.44031627420009417, "t_final": 209.16829953847989, "x_impact": 602.2654113374942} +{"lateral_surface_wind": 3.261098436171396, "apogee_x": 658.5698240391555, "y_impact": 3375.212039956433, "max_mach_number": 1.097854909026492, "impact_velocity": -5.317051182058532, "apogee_y": 125.96961109845054, "frontal_surface_wind": 3.629643030661167, "apogee_time": 28.62781789383994, "initial_stability_margin": 2.575977121252398, "out_of_rail_stability_margin": 2.643560968485246, "apogee": 4472.482332453051, "out_of_rail_velocity": 29.87290701873528, "out_of_rail_time": 0.31803111932647177, "t_final": 352.86858566521323, "x_impact": 2108.811089250991} +{"lateral_surface_wind": 3.0920955840174793, "apogee_x": 375.61488912369106, "y_impact": 2158.460726795933, "max_mach_number": 0.8710276754324827, "impact_velocity": -5.4765867841555025, "apogee_y": -84.0357759349755, "frontal_surface_wind": 3.137059649019992, "apogee_time": 26.404974847051882, "initial_stability_margin": 2.5832836957460072, "out_of_rail_stability_margin": 2.655468779457433, "apogee": 3598.7445248079835, "out_of_rail_velocity": 26.102517550918197, "out_of_rail_time": 0.3533311742752776, "t_final": 307.6488892985618, "x_impact": 1252.4566928204933} +{"lateral_surface_wind": 3.840614840824466, "apogee_x": 651.5298890458118, "y_impact": 2638.6908080744997, "max_mach_number": 0.9596284886964566, "impact_velocity": -5.417417408979489, "apogee_y": -14.17585642704328, "frontal_surface_wind": 1.6776626105164292, "apogee_time": 27.506730802276234, "initial_stability_margin": 2.621502871411216, "out_of_rail_stability_margin": 2.685470369618511, "apogee": 3989.991086059692, "out_of_rail_velocity": 27.634318891440206, "out_of_rail_time": 0.3379361220780496, "t_final": 327.8522913884783, "x_impact": 1454.8058739850003} +{"lateral_surface_wind": 5.0283800308481075, "apogee_x": 537.5003474925937, "y_impact": 3858.9812580374455, "max_mach_number": 1.0694135578701478, "impact_velocity": -5.278161302774132, "apogee_y": -219.06649214893434, "frontal_surface_wind": 5.003725365299281, "apogee_time": 28.15707613705229, "initial_stability_margin": 2.7061820869476665, "out_of_rail_stability_margin": 2.7688973787376994, "apogee": 4315.127886737923, "out_of_rail_velocity": 29.544084624703057, "out_of_rail_time": 0.3208754665382027, "t_final": 361.19212308007997, "x_impact": 2104.035954629478} +{"lateral_surface_wind": 3.537094357441268, "apogee_x": 308.88043397388657, "y_impact": 1245.8341613891796, "max_mach_number": 0.595142308873609, "impact_velocity": -5.255110808270425, "apogee_y": -94.61499730378029, "frontal_surface_wind": 1.7071227255701977, "apogee_time": 20.996064496215986, "initial_stability_margin": 2.5709216017065937, "out_of_rail_stability_margin": 2.654262555663052, "apogee": 2126.4955085853835, "out_of_rail_velocity": 21.49195303679492, "out_of_rail_time": 0.4156662370201904, "t_final": 239.02715317123372, "x_impact": 395.46183427697923} +{"lateral_surface_wind": 2.3615490414039946, "apogee_x": 425.8626317102887, "y_impact": 2207.7470462095316, "max_mach_number": 0.8476758173912979, "impact_velocity": -5.411167752799802, "apogee_y": 16.23164361785504, "frontal_surface_wind": 2.7144680477783782, "apogee_time": 26.008595478065246, "initial_stability_margin": 2.5511538285517745, "out_of_rail_stability_margin": 2.623615831617708, "apogee": 3472.4120419381898, "out_of_rail_velocity": 25.740358458465483, "out_of_rail_time": 0.35747505971196436, "t_final": 305.31776907028683, "x_impact": 1578.8138667983435} +{"lateral_surface_wind": 3.2664054160418, "apogee_x": 427.75218919340284, "y_impact": 2374.038033090285, "max_mach_number": 0.8651731143612301, "impact_velocity": -5.313940501471926, "apogee_y": -62.64320697229744, "frontal_surface_wind": 3.185871134304829, "apogee_time": 25.982133200934953, "initial_stability_margin": 2.645998194218151, "out_of_rail_stability_margin": 2.716255886430838, "apogee": 3501.216875203907, "out_of_rail_velocity": 26.080309367311266, "out_of_rail_time": 0.35372197558383833, "t_final": 308.79166829896684, "x_impact": 1311.4896073591883} +{"lateral_surface_wind": 3.255250364838589, "apogee_x": 516.6104167817051, "y_impact": 2929.6923492786736, "max_mach_number": 0.9750568564263759, "impact_velocity": -5.308774921165448, "apogee_y": -13.46929291442721, "frontal_surface_wind": 3.197268254082252, "apogee_time": 27.445390394633172, "initial_stability_margin": 2.6538642431120905, "out_of_rail_stability_margin": 2.7233276492428957, "apogee": 4006.958768139994, "out_of_rail_velocity": 27.80269094303584, "out_of_rail_time": 0.33571608193018054, "t_final": 343.371472981923, "x_impact": 1640.6855895952467} +{"lateral_surface_wind": 3.17668149154272, "apogee_x": 533.8623120775253, "y_impact": 2370.354850790231, "max_mach_number": 0.9006171259557995, "impact_velocity": -5.493440269832545, "apogee_y": 14.380844087403261, "frontal_surface_wind": 3.051375598562025, "apogee_time": 26.89475515614782, "initial_stability_margin": 2.651586271629247, "out_of_rail_stability_margin": 2.7178055389731997, "apogee": 3755.4292668726325, "out_of_rail_velocity": 26.670720448817413, "out_of_rail_time": 0.34724518915564395, "t_final": 315.7640734033064, "x_impact": 1502.0019919641888} +{"lateral_surface_wind": 3.149481545071028, "apogee_x": 524.5286966779753, "y_impact": 2615.623653167659, "max_mach_number": 0.8646757287876207, "impact_velocity": -5.300010692737493, "apogee_y": 42.04384732285587, "frontal_surface_wind": 3.301506508186974, "apogee_time": 25.960324149983904, "initial_stability_margin": 2.561629476750761, "out_of_rail_stability_margin": 2.6354667950886754, "apogee": 3493.8071816904903, "out_of_rail_velocity": 26.015912737137974, "out_of_rail_time": 0.35445353091792414, "t_final": 320.25981383829617, "x_impact": 1473.2907940610437} +{"lateral_surface_wind": 3.597845028685894, "apogee_x": 754.5709758629808, "y_impact": 3325.207521539823, "max_mach_number": 1.0837054495746137, "impact_velocity": -5.3602822256294855, "apogee_y": 181.48297705701142, "frontal_surface_wind": 2.149508162312051, "apogee_time": 28.5379198687231, "initial_stability_margin": 2.653239372266167, "out_of_rail_stability_margin": 2.7176976127563366, "apogee": 4425.395659932608, "out_of_rail_velocity": 29.713840333368776, "out_of_rail_time": 0.3187813526409714, "t_final": 356.5035376954483, "x_impact": 1784.779393215229} +{"lateral_surface_wind": 2.6574721712496285, "apogee_x": 402.92013178287664, "y_impact": 1663.9018145324676, "max_mach_number": 0.6893491724492281, "impact_velocity": -5.418385828257985, "apogee_y": 23.121278259539007, "frontal_surface_wind": 3.644506631504286, "apogee_time": 23.137682102204888, "initial_stability_margin": 2.6187159796258963, "out_of_rail_stability_margin": 2.6956330758965166, "apogee": 2639.066825869988, "out_of_rail_velocity": 23.163432480214087, "out_of_rail_time": 0.38980302573540687, "t_final": 253.8681742446007, "x_impact": 1204.0513489281177} +{"lateral_surface_wind": 4.667409203599337, "apogee_x": 512.7715369231521, "y_impact": 2847.2062275686812, "max_mach_number": 0.9150112746147105, "impact_velocity": -5.441827941341147, "apogee_y": -205.89791300078008, "frontal_surface_wind": 4.288501434861331, "apogee_time": 26.978605028592064, "initial_stability_margin": 2.7126859307790894, "out_of_rail_stability_margin": 2.7799012204505655, "apogee": 3795.9142741176333, "out_of_rail_velocity": 26.862668731087762, "out_of_rail_time": 0.345425647542997, "t_final": 330.44080881171783, "x_impact": 1582.2320973949898} +{"lateral_surface_wind": 2.8877022380241613, "apogee_x": 336.1859443458299, "y_impact": 1577.7417217680254, "max_mach_number": 0.6229059845860812, "impact_velocity": -5.338142570782716, "apogee_y": -20.519511300237262, "frontal_surface_wind": 3.988493858013515, "apogee_time": 21.684161072619137, "initial_stability_margin": 2.467580821231888, "out_of_rail_stability_margin": 2.552934170178, "apogee": 2280.395535546424, "out_of_rail_velocity": 21.949849477216524, "out_of_rail_time": 0.40833491048614823, "t_final": 241.73718252600415, "x_impact": 1077.58240995872} +{"lateral_surface_wind": 4.166667794334286, "apogee_x": 498.05880017127697, "y_impact": 2327.898952274819, "max_mach_number": 0.8292540607849838, "impact_velocity": -5.41323165721544, "apogee_y": -114.457507679699, "frontal_surface_wind": 2.3386575832800887, "apogee_time": 25.567896722443873, "initial_stability_margin": 2.7584438301607523, "out_of_rail_stability_margin": 2.8258107136240387, "apogee": 3347.082815529635, "out_of_rail_velocity": 25.540772079383355, "out_of_rail_time": 0.35989722336642915, "t_final": 288.3821131241183, "x_impact": 1201.7773988158153} +{"lateral_surface_wind": 4.5621791827577125, "apogee_x": 501.17000998450175, "y_impact": 3352.665181707662, "max_mach_number": 0.9382002706422784, "impact_velocity": -5.337737791819852, "apogee_y": -160.121386953286, "frontal_surface_wind": 5.432162955065285, "apogee_time": 27.03226584008474, "initial_stability_margin": 2.6403564509956605, "out_of_rail_stability_margin": 2.7092803996270893, "apogee": 3848.2417687285642, "out_of_rail_velocity": 27.209360992829577, "out_of_rail_time": 0.3425204969244716, "t_final": 327.60874001185294, "x_impact": 1762.4413984336627} +{"lateral_surface_wind": 4.046165024546576, "apogee_x": 435.85503928716906, "y_impact": 2770.208152209956, "max_mach_number": 0.918230842513866, "impact_velocity": -5.359321903143124, "apogee_y": -166.33328712518303, "frontal_surface_wind": 3.2127494241626047, "apogee_time": 26.841660916855826, "initial_stability_margin": 2.5686414553956443, "out_of_rail_stability_margin": 2.639357824463991, "apogee": 3775.7947617276413, "out_of_rail_velocity": 26.854288274196012, "out_of_rail_time": 0.34522331964317554, "t_final": 320.62459075718886, "x_impact": 1496.116251165191} +{"lateral_surface_wind": 3.419942083458715, "apogee_x": 575.8031154909496, "y_impact": 2676.836767822995, "max_mach_number": 0.9143778496956145, "impact_velocity": -5.436756855801556, "apogee_y": 10.40229081772872, "frontal_surface_wind": 2.6502068707865942, "apogee_time": 26.975367544650904, "initial_stability_margin": 2.6340474151052797, "out_of_rail_stability_margin": 2.702051420633425, "apogee": 3796.104235997055, "out_of_rail_velocity": 26.84804680724499, "out_of_rail_time": 0.34532470100766893, "t_final": 321.6548641100328, "x_impact": 1636.3521879496811} +{"lateral_surface_wind": 4.79491924558682, "apogee_x": 200.0509989583046, "y_impact": 1348.5587581762811, "max_mach_number": 0.545726565030613, "impact_velocity": -5.402121094521745, "apogee_y": -246.76436405473788, "frontal_surface_wind": 4.1454436021917624, "apogee_time": 19.935619662374293, "initial_stability_margin": 2.5291909426274537, "out_of_rail_stability_margin": 2.618047026236999, "apogee": 1883.92720513665, "out_of_rail_velocity": 20.509610341095712, "out_of_rail_time": 0.4321003132019816, "t_final": 212.68379114895185, "x_impact": 550.3876970411944} +{"lateral_surface_wind": 3.3085354507688347, "apogee_x": 514.2476781854066, "y_impact": 2511.0185439013767, "max_mach_number": 0.8513404675431543, "impact_velocity": -5.3285279300895745, "apogee_y": -7.587499491682356, "frontal_surface_wind": 3.1420968154004743, "apogee_time": 25.784594810305638, "initial_stability_margin": 2.6295059535100673, "out_of_rail_stability_margin": 2.7001540734897276, "apogee": 3433.7783141262366, "out_of_rail_velocity": 25.841792451323386, "out_of_rail_time": 0.3566154012131227, "t_final": 316.5084356085567, "x_impact": 1437.8351715294298} +{"lateral_surface_wind": 2.732820924110502, "apogee_x": 290.65216661117734, "y_impact": 2637.0098130568385, "max_mach_number": 0.8966816982178606, "impact_velocity": -5.334124126890663, "apogee_y": -95.1701989923092, "frontal_surface_wind": 4.220471497332626, "apogee_time": 26.52678393382133, "initial_stability_margin": 2.616555740005034, "out_of_rail_stability_margin": 2.685689754190374, "apogee": 3671.3025017405766, "out_of_rail_velocity": 26.560499010340624, "out_of_rail_time": 0.3484513220465314, "t_final": 313.3479579765021, "x_impact": 1353.93738261225} +{"lateral_surface_wind": 3.4527640332031866, "apogee_x": 654.1806458829363, "y_impact": 3198.9869169311623, "max_mach_number": 1.0327082584031413, "impact_velocity": -5.24776717399381, "apogee_y": 58.814440519363956, "frontal_surface_wind": 2.607301448470213, "apogee_time": 27.963924482328952, "initial_stability_margin": 2.674384720784103, "out_of_rail_stability_margin": 2.7374428258858434, "apogee": 4217.557139604788, "out_of_rail_velocity": 28.958581876535312, "out_of_rail_time": 0.3256487412215355, "t_final": 355.47778453858587, "x_impact": 2007.3890649331638} +{"lateral_surface_wind": 4.1073972083279235, "apogee_x": 562.2848205849551, "y_impact": 3478.1450817864593, "max_mach_number": 1.0789521702858111, "impact_velocity": -5.401283270253908, "apogee_y": -106.35784108578969, "frontal_surface_wind": 3.134086540180586, "apogee_time": 28.621716998927564, "initial_stability_margin": 2.7711998951740564, "out_of_rail_stability_margin": 2.8321437144873367, "apogee": 4442.346390136083, "out_of_rail_velocity": 29.705200610707767, "out_of_rail_time": 0.3189844979462574, "t_final": 357.03244499962307, "x_impact": 1977.6479378630215} +{"lateral_surface_wind": 2.9831369722592496, "apogee_x": 617.31152717218, "y_impact": 2370.0363878915314, "max_mach_number": 0.8487539787411008, "impact_velocity": -5.294194773775799, "apogee_y": 125.90930481152145, "frontal_surface_wind": 2.6314709294564116, "apogee_time": 25.71999980663664, "initial_stability_margin": 2.604214918740778, "out_of_rail_stability_margin": 2.6740835854431673, "apogee": 3414.1652541779827, "out_of_rail_velocity": 25.842238274784563, "out_of_rail_time": 0.35645606911633343, "t_final": 307.01149171927335, "x_impact": 1532.2683083839004} +{"lateral_surface_wind": 3.158980515610991, "apogee_x": 386.9530610452126, "y_impact": 1613.901846966246, "max_mach_number": 0.6528468667285994, "impact_velocity": -5.364903330696502, "apogee_y": -49.7581698357919, "frontal_surface_wind": 3.777267474364425, "apogee_time": 22.282082618722367, "initial_stability_margin": 2.600721827172, "out_of_rail_stability_margin": 2.6848739131329182, "apogee": 2427.919095458207, "out_of_rail_velocity": 22.46016049369659, "out_of_rail_time": 0.4002805630747496, "t_final": 247.04468399209995, "x_impact": 1181.4354116697543} +{"lateral_surface_wind": 3.3674609415762187, "apogee_x": 402.4281180297558, "y_impact": 2112.109514081192, "max_mach_number": 0.7502325699834642, "impact_velocity": -5.3308940289572115, "apogee_y": -46.928065955078374, "frontal_surface_wind": 3.7112413579248575, "apogee_time": 24.087587312711438, "initial_stability_margin": 2.6425561013329473, "out_of_rail_stability_margin": 2.7206214246265854, "apogee": 2917.7699481103327, "out_of_rail_velocity": 24.142329942866564, "out_of_rail_time": 0.37775422533244013, "t_final": 274.4290250085977, "x_impact": 1174.701194834205} +{"lateral_surface_wind": 4.69276988137036, "apogee_x": 318.4153765277337, "y_impact": 1874.9054072976198, "max_mach_number": 0.7504744139826414, "impact_velocity": -5.374975301976294, "apogee_y": -278.1331391283844, "frontal_surface_wind": 3.179946936297463, "apogee_time": 24.21526146268764, "initial_stability_margin": 2.598250296519645, "out_of_rail_stability_margin": 2.674905476814251, "apogee": 2940.1904883401216, "out_of_rail_velocity": 24.15128773521081, "out_of_rail_time": 0.37751619984156937, "t_final": 275.62516177922976, "x_impact": 771.069977207278} +{"lateral_surface_wind": 2.8485600287261357, "apogee_x": 430.2228723873515, "y_impact": 2313.504876978647, "max_mach_number": 0.8807687979428089, "impact_velocity": -5.285922836537093, "apogee_y": 5.280811506365274, "frontal_surface_wind": 2.7765898527830917, "apogee_time": 26.25123501858613, "initial_stability_margin": 2.639213895159196, "out_of_rail_stability_margin": 2.7123905624032445, "apogee": 3585.4861433461033, "out_of_rail_velocity": 26.26904843899915, "out_of_rail_time": 0.3517833399789199, "t_final": 312.1538213664159, "x_impact": 1368.3754084641082} +{"lateral_surface_wind": 2.9466506702445674, "apogee_x": 475.0354786471287, "y_impact": 2456.13964417424, "max_mach_number": 0.8118468959129317, "impact_velocity": -5.430478255774164, "apogee_y": 68.203386181307, "frontal_surface_wind": 3.6606798426506497, "apogee_time": 25.3373047180625, "initial_stability_margin": 2.5381056562210285, "out_of_rail_stability_margin": 2.613566992318779, "apogee": 3269.2230603992643, "out_of_rail_velocity": 25.13283722294791, "out_of_rail_time": 0.3644648190984184, "t_final": 299.24542980935047, "x_impact": 1440.3743821711878} +{"lateral_surface_wind": 3.4873602076043166, "apogee_x": 509.52929400903787, "y_impact": 2385.4336436493886, "max_mach_number": 0.8667661064443574, "impact_velocity": -5.334574932753146, "apogee_y": -41.27442135860948, "frontal_surface_wind": 2.560843434221308, "apogee_time": 26.089970975374786, "initial_stability_margin": 2.5319687948428404, "out_of_rail_stability_margin": 2.605651084415255, "apogee": 3523.7744078397036, "out_of_rail_velocity": 26.033785800580397, "out_of_rail_time": 0.3542257295680267, "t_final": 308.25092567067566, "x_impact": 1411.0793638723032} +{"lateral_surface_wind": 2.931331107754641, "apogee_x": 321.662448292313, "y_impact": 2888.340501334655, "max_mach_number": 0.9328567803828928, "impact_velocity": -5.305971161036173, "apogee_y": -103.14888907259429, "frontal_surface_wind": 4.085093364877139, "apogee_time": 26.970362965609006, "initial_stability_margin": 2.4569510772488927, "out_of_rail_stability_margin": 2.526800192766721, "apogee": 3830.973487469838, "out_of_rail_velocity": 27.11835570952234, "out_of_rail_time": 0.3427771029922685, "t_final": 330.91065682257863, "x_impact": 1497.4609971709167} +{"lateral_surface_wind": 3.7591352601613712, "apogee_x": 272.0182636549578, "y_impact": 885.1120912993952, "max_mach_number": 0.4433795940332586, "impact_velocity": -5.3741711361676945, "apogee_y": -53.4278955759176, "frontal_surface_wind": 1.853045138710182, "apogee_time": 17.443591302217744, "initial_stability_margin": 2.5991461425456657, "out_of_rail_stability_margin": 2.69959689608953, "apogee": 1399.9222702805657, "out_of_rail_velocity": 18.4918732198483, "out_of_rail_time": 0.47304867547140345, "t_final": 189.04588718448247, "x_impact": 246.86495009037748} +{"lateral_surface_wind": 1.7370769566525124, "apogee_x": 402.98685230773015, "y_impact": 2635.544021086543, "max_mach_number": 0.9872222663671751, "impact_velocity": -5.298415221240868, "apogee_y": 106.08037037759772, "frontal_surface_wind": 3.2937354298115586, "apogee_time": 27.592034334112938, "initial_stability_margin": 2.566865972851369, "out_of_rail_stability_margin": 2.6366522743117735, "apogee": 4064.0971254929927, "out_of_rail_velocity": 28.02280215113455, "out_of_rail_time": 0.33388553822763767, "t_final": 337.13222875000184, "x_impact": 1752.7957901361376} +{"lateral_surface_wind": 3.5164038993166935, "apogee_x": 225.07168200709876, "y_impact": 2372.1866358703724, "max_mach_number": 0.8944825219810294, "impact_velocity": -5.332893708047219, "apogee_y": -248.89570880167727, "frontal_surface_wind": 2.5208141401235356, "apogee_time": 26.579423825115356, "initial_stability_margin": 2.457821468151869, "out_of_rail_stability_margin": 2.5315635322967154, "apogee": 3678.6150798633926, "out_of_rail_velocity": 26.44166249420731, "out_of_rail_time": 0.34990406165088633, "t_final": 324.1937602524421, "x_impact": 1202.1345388992813} +{"lateral_surface_wind": 3.729096262960202, "apogee_x": 459.26855342306703, "y_impact": 2167.1173424425865, "max_mach_number": 0.8135677670706732, "impact_velocity": -5.296906585139394, "apogee_y": -65.02941831434524, "frontal_surface_wind": 2.9999844664059796, "apogee_time": 25.219019720191937, "initial_stability_margin": 2.566263382220378, "out_of_rail_stability_margin": 2.645165756629377, "apogee": 3249.7765771503537, "out_of_rail_velocity": 25.114213059858777, "out_of_rail_time": 0.36480893117854746, "t_final": 286.7957709233213, "x_impact": 972.4510428548613} +{"lateral_surface_wind": 4.1500406659844575, "apogee_x": 635.6936977203304, "y_impact": 2753.809096370783, "max_mach_number": 0.855626844959912, "impact_velocity": -5.35981508426793, "apogee_y": -9.215241119663872, "frontal_surface_wind": 2.3680376413501714, "apogee_time": 25.8477849156923, "initial_stability_margin": 2.664850617919995, "out_of_rail_stability_margin": 2.7345488228721795, "apogee": 3450.036674349921, "out_of_rail_velocity": 25.919303590986623, "out_of_rail_time": 0.3559629298312247, "t_final": 311.2393988978164, "x_impact": 1485.802451276776} +{"lateral_surface_wind": 3.9515589625028786, "apogee_x": 496.7070346573518, "y_impact": 2505.616587944943, "max_mach_number": 0.7823087408340018, "impact_velocity": -5.382597516309598, "apogee_y": -40.783149546560914, "frontal_surface_wind": 4.522420473187048, "apogee_time": 24.821849394630995, "initial_stability_margin": 2.6602098816684916, "out_of_rail_stability_margin": 2.7306222174633743, "apogee": 3113.1255152675963, "out_of_rail_velocity": 24.756481885307007, "out_of_rail_time": 0.3690236232758806, "t_final": 284.1371822545747, "x_impact": 1381.534670072747} +{"lateral_surface_wind": 3.2301954869192553, "apogee_x": 318.04731933319084, "y_impact": 1527.2678491224583, "max_mach_number": 0.6344345273491938, "impact_velocity": -5.362668871000475, "apogee_y": -69.89356652105053, "frontal_surface_wind": 2.99466783775702, "apogee_time": 21.977912052413828, "initial_stability_margin": 2.492209743883214, "out_of_rail_stability_margin": 2.577968207712667, "apogee": 2348.7538794856364, "out_of_rail_velocity": 22.13106427342826, "out_of_rail_time": 0.4052559791061813, "t_final": 247.7629489032132, "x_impact": 770.3875990130877} +{"lateral_surface_wind": 3.40657293074577, "apogee_x": 563.1650161276631, "y_impact": 1971.416709583324, "max_mach_number": 0.7810451511697892, "impact_velocity": -5.3842872537267406, "apogee_y": 49.85871166615276, "frontal_surface_wind": 1.954626655172608, "apogee_time": 24.672748432470826, "initial_stability_margin": 2.7118311363855576, "out_of_rail_stability_margin": 2.788462839104119, "apogee": 3081.5638687312667, "out_of_rail_velocity": 24.648426385604147, "out_of_rail_time": 0.37053304633184553, "t_final": 283.4927377948499, "x_impact": 904.8177957573087} +{"lateral_surface_wind": 4.778094540728202, "apogee_x": 761.4873136272327, "y_impact": 3291.2007285910004, "max_mach_number": 0.9136328502952129, "impact_velocity": -5.380305182391677, "apogee_y": 4.119848507423169, "frontal_surface_wind": 2.8826020750708388, "apogee_time": 26.741141986075863, "initial_stability_margin": 2.604281662292532, "out_of_rail_stability_margin": 2.6734654279694574, "apogee": 3736.511637817662, "out_of_rail_velocity": 26.809917774330117, "out_of_rail_time": 0.34609066309913084, "t_final": 318.27580665805783, "x_impact": 1607.6051939402962} +{"lateral_surface_wind": 4.217365235608349, "apogee_x": 293.0756282063177, "y_impact": 1799.6176714178428, "max_mach_number": 0.6539762646343157, "impact_velocity": -5.4537711409620755, "apogee_y": -194.65659689854127, "frontal_surface_wind": 4.275621082359886, "apogee_time": 22.390876605622005, "initial_stability_margin": 2.649534607719415, "out_of_rail_stability_margin": 2.729898535370752, "apogee": 2447.057665063656, "out_of_rail_velocity": 22.50514236849271, "out_of_rail_time": 0.3995454250942954, "t_final": 247.39771984765747, "x_impact": 890.0879359498949} +{"lateral_surface_wind": 3.2895212953168675, "apogee_x": 480.95330279161476, "y_impact": 2068.615096658405, "max_mach_number": 0.797417412832575, "impact_velocity": -5.3860725419554605, "apogee_y": -22.47360903113687, "frontal_surface_wind": 2.929376723787275, "apogee_time": 25.027558437008178, "initial_stability_margin": 2.583495250352043, "out_of_rail_stability_margin": 2.657977699231374, "apogee": 3184.4073917893184, "out_of_rail_velocity": 24.944561227606492, "out_of_rail_time": 0.3667264186838525, "t_final": 295.01190373773244, "x_impact": 1246.6667180261832} +{"lateral_surface_wind": 3.417264102583623, "apogee_x": 811.6817956528095, "y_impact": 3157.637764769559, "max_mach_number": 1.0253357692436573, "impact_velocity": -5.277861571696222, "apogee_y": 189.87780170512812, "frontal_surface_wind": 2.6536590522088086, "apogee_time": 27.832195438523797, "initial_stability_margin": 2.4884217847355337, "out_of_rail_stability_margin": 2.5582325771136314, "apogee": 4169.692410916146, "out_of_rail_velocity": 28.687755299268737, "out_of_rail_time": 0.3281264626707187, "t_final": 339.8601314346402, "x_impact": 2091.033811917414} +{"lateral_surface_wind": 3.3718414609759093, "apogee_x": 314.0579353007188, "y_impact": 1301.9212994078625, "max_mach_number": 0.622967499490034, "impact_velocity": -5.30843989806668, "apogee_y": -72.73523802884291, "frontal_surface_wind": 2.013948771852185, "apogee_time": 21.710382592128536, "initial_stability_margin": 2.5554283850894124, "out_of_rail_stability_margin": 2.6411474386557763, "apogee": 2284.5256989764594, "out_of_rail_velocity": 21.916016797669013, "out_of_rail_time": 0.40836641149469005, "t_final": 240.52280302972383, "x_impact": 425.92738270156093} +{"lateral_surface_wind": 3.963800552691426, "apogee_x": 494.2872457208218, "y_impact": 2431.8674762249266, "max_mach_number": 0.8076787200677487, "impact_velocity": -5.376616155966006, "apogee_y": -75.32498691056418, "frontal_surface_wind": 3.3138339497935445, "apogee_time": 25.20030149479216, "initial_stability_margin": 2.632737906487149, "out_of_rail_stability_margin": 2.7062538987068825, "apogee": 3234.345684709135, "out_of_rail_velocity": 25.093424103600412, "out_of_rail_time": 0.364700155295907, "t_final": 293.12610520971873, "x_impact": 1324.963442877083} +{"lateral_surface_wind": 4.375682728561193, "apogee_x": 523.4670459357945, "y_impact": 2799.0067171059363, "max_mach_number": 0.8998769404994924, "impact_velocity": -5.431983540352676, "apogee_y": -144.51941620284592, "frontal_surface_wind": 4.113454245449859, "apogee_time": 26.69658023135088, "initial_stability_margin": 2.5149357927210945, "out_of_rail_stability_margin": 2.5838953752200067, "apogee": 3707.8754796137873, "out_of_rail_velocity": 26.595930683160113, "out_of_rail_time": 0.34805848270424217, "t_final": 309.06584390169536, "x_impact": 1632.1374626666152} +{"lateral_surface_wind": 1.9850350171889526, "apogee_x": 603.0536697242873, "y_impact": 3779.7204806633335, "max_mach_number": 1.1474455464695088, "impact_velocity": -5.377842125844728, "apogee_y": 267.1411924398602, "frontal_surface_wind": 3.000814329127935, "apogee_time": 29.044309917656424, "initial_stability_margin": 2.720578166553296, "out_of_rail_stability_margin": 2.7798398253019694, "apogee": 4657.847229034561, "out_of_rail_velocity": 30.874118463307838, "out_of_rail_time": 0.3094500194970795, "t_final": 382.41127356207664, "x_impact": 2503.825743178752} +{"lateral_surface_wind": 3.2362469131883804, "apogee_x": 527.1773142337513, "y_impact": 2171.9098067401665, "max_mach_number": 0.7852720442284339, "impact_velocity": -5.441320018340029, "apogee_y": 40.214710622527136, "frontal_surface_wind": 3.4073498499156525, "apogee_time": 24.89809635677198, "initial_stability_margin": 2.6807172373511805, "out_of_rail_stability_margin": 2.752189528003356, "apogee": 3132.729987147963, "out_of_rail_velocity": 24.77265272906242, "out_of_rail_time": 0.36861671600375323, "t_final": 279.088122251517, "x_impact": 1379.0278144989886} +{"lateral_surface_wind": 4.695481042976167, "apogee_x": 402.9818950963101, "y_impact": 3388.3347431590832, "max_mach_number": 0.9416372368179974, "impact_velocity": -5.288582871701806, "apogee_y": -249.64290723512596, "frontal_surface_wind": 5.31736128554595, "apogee_time": 26.980354017809862, "initial_stability_margin": 2.624367944429295, "out_of_rail_stability_margin": 2.687110447163918, "apogee": 3845.9499687769307, "out_of_rail_velocity": 27.39911716856438, "out_of_rail_time": 0.3398599302721975, "t_final": 337.50793821446575, "x_impact": 1699.7396760826903} +{"lateral_surface_wind": 4.785435589776296, "apogee_x": 599.416553613621, "y_impact": 2702.5348559301756, "max_mach_number": 0.8722050160803931, "impact_velocity": -5.333035350003109, "apogee_y": -138.3476183350744, "frontal_surface_wind": 4.1563877883029505, "apogee_time": 25.99496021629097, "initial_stability_margin": 2.5184793275070905, "out_of_rail_stability_margin": 2.5947121888878426, "apogee": 3510.5154564621294, "out_of_rail_velocity": 26.08350657982313, "out_of_rail_time": 0.3545029704630641, "t_final": 315.56796090881727, "x_impact": 1553.5079963458106} +{"lateral_surface_wind": 4.221324522784768, "apogee_x": 780.7194336380868, "y_impact": 3284.613625944482, "max_mach_number": 0.9807585223540616, "impact_velocity": -5.447891190554791, "apogee_y": 34.31420598905964, "frontal_surface_wind": 2.2384948232041872, "apogee_time": 27.732109784881207, "initial_stability_margin": 2.5760921520979836, "out_of_rail_stability_margin": 2.643449317255727, "apogee": 4071.6301747747557, "out_of_rail_velocity": 27.908565440594288, "out_of_rail_time": 0.3348184211917499, "t_final": 337.20060048647093, "x_impact": 1932.1595902984095} +{"lateral_surface_wind": 4.749750107768509, "apogee_x": 858.1368585074299, "y_impact": 3156.2063757032543, "max_mach_number": 1.050722082656217, "impact_velocity": -5.4603759818778, "apogee_y": -5.5413016688541585, "frontal_surface_wind": 3.094192235611329, "apogee_time": 28.361989364028126, "initial_stability_margin": 2.5663738116475714, "out_of_rail_stability_margin": 2.63278497648913, "apogee": 4329.693342356199, "out_of_rail_velocity": 29.11941612844095, "out_of_rail_time": 0.3238701508897346, "t_final": 348.4568989290533, "x_impact": 1847.7954277599683} +{"lateral_surface_wind": 3.1832892169504157, "apogee_x": 607.5126839245816, "y_impact": 2386.0601942694684, "max_mach_number": 0.7881267775080505, "impact_velocity": -5.389544523169998, "apogee_y": 156.7946573645006, "frontal_surface_wind": 2.9302337915981402, "apogee_time": 24.88835921330638, "initial_stability_margin": 2.5251488881572737, "out_of_rail_stability_margin": 2.600117847891269, "apogee": 3135.379900886473, "out_of_rail_velocity": 24.795525916121477, "out_of_rail_time": 0.36867436025919664, "t_final": 293.8246370857621, "x_impact": 1372.9061861506564} +{"lateral_surface_wind": 2.1507039546639204, "apogee_x": 560.58950523096, "y_impact": 2834.4946905109728, "max_mach_number": 0.947063789404465, "impact_velocity": -5.172252891839154, "apogee_y": 176.81215104212603, "frontal_surface_wind": 2.8843930309094246, "apogee_time": 26.89209762745554, "initial_stability_margin": 2.513911166637214, "out_of_rail_stability_margin": 2.58351451623887, "apogee": 3840.93624851887, "out_of_rail_velocity": 27.430960895853353, "out_of_rail_time": 0.33993129034370284, "t_final": 338.49000471386944, "x_impact": 1987.277543095562} +{"lateral_surface_wind": 3.7558429470942882, "apogee_x": 570.4474731138225, "y_impact": 1787.651622005934, "max_mach_number": 0.7117192487598375, "impact_velocity": -5.324436676786657, "apogee_y": 29.99703431826068, "frontal_surface_wind": 2.1247737272823706, "apogee_time": 23.387424485768403, "initial_stability_margin": 2.531333402005366, "out_of_rail_stability_margin": 2.6111493456338875, "apogee": 2717.811333282797, "out_of_rail_velocity": 23.496227865319515, "out_of_rail_time": 0.38538254831412827, "t_final": 265.5470414623194, "x_impact": 949.0246569674247} +{"lateral_surface_wind": 3.383918441624456, "apogee_x": 582.2296200696975, "y_impact": 3186.332793342539, "max_mach_number": 1.0253440133583978, "impact_velocity": -5.258599567476193, "apogee_y": 41.684486965237824, "frontal_surface_wind": 2.4148503886875905, "apogee_time": 27.841927568206607, "initial_stability_margin": 2.613066354723019, "out_of_rail_stability_margin": 2.679101222822965, "apogee": 4177.84333610166, "out_of_rail_velocity": 28.744995102027787, "out_of_rail_time": 0.3277315728738196, "t_final": 346.1629216454218, "x_impact": 1603.7187859732996} +{"lateral_surface_wind": 4.826385605030527, "apogee_x": 339.9468944343252, "y_impact": 2766.376204525102, "max_mach_number": 0.8695974421211293, "impact_velocity": -5.305417467262826, "apogee_y": -319.1388818188167, "frontal_surface_wind": 4.136446320700741, "apogee_time": 25.986597597865817, "initial_stability_margin": 2.6288732005424014, "out_of_rail_stability_margin": 2.701323011880519, "apogee": 3507.4491408406566, "out_of_rail_velocity": 26.09471441718657, "out_of_rail_time": 0.35364354734716213, "t_final": 319.0891828548868, "x_impact": 1280.2840308268853} +{"lateral_surface_wind": 2.6372060589450337, "apogee_x": 443.14583177471695, "y_impact": 2289.8207358714517, "max_mach_number": 0.7934549665368038, "impact_velocity": -5.475381921587092, "apogee_y": 26.314100212610388, "frontal_surface_wind": 4.457334302564892, "apogee_time": 25.114235720695056, "initial_stability_margin": 2.7058591766855318, "out_of_rail_stability_margin": 2.776239052649165, "apogee": 3193.433478538133, "out_of_rail_velocity": 24.938599250481516, "out_of_rail_time": 0.36682978843000646, "t_final": 285.0213656040516, "x_impact": 1494.124506735498} +{"lateral_surface_wind": 3.8471073885338143, "apogee_x": 309.5042193657152, "y_impact": 1215.0840552468048, "max_mach_number": 0.5647602554661875, "impact_velocity": -5.362178048090896, "apogee_y": -111.23223315548267, "frontal_surface_wind": 1.9546826792284882, "apogee_time": 20.395918983833866, "initial_stability_margin": 2.5500149672679604, "out_of_rail_stability_margin": 2.6371674630027684, "apogee": 1983.8705597581682, "out_of_rail_velocity": 20.88993286736801, "out_of_rail_time": 0.42566461281819956, "t_final": 224.5343030959518, "x_impact": 474.3079792165118} +{"lateral_surface_wind": 2.4476770364116307, "apogee_x": 353.2277591483588, "y_impact": 1440.1889368854388, "max_mach_number": 0.6673874244949679, "impact_velocity": -5.348878111803666, "apogee_y": 16.797766118898785, "frontal_surface_wind": 3.029461831205481, "apogee_time": 22.63328113354003, "initial_stability_margin": 2.6442815877459496, "out_of_rail_stability_margin": 2.7281556055190532, "apogee": 2515.075928439303, "out_of_rail_velocity": 22.71099390703735, "out_of_rail_time": 0.39656290924091603, "t_final": 247.96527460003134, "x_impact": 914.038152609497} +{"lateral_surface_wind": 4.408149981460342, "apogee_x": 519.6302342865911, "y_impact": 2048.714244345206, "max_mach_number": 0.7464264235250098, "impact_velocity": -5.5155270319765135, "apogee_y": -106.5299503143033, "frontal_surface_wind": 2.7318896941055155, "apogee_time": 24.26491655407711, "initial_stability_margin": 2.7870332271349576, "out_of_rail_stability_margin": 2.860151918455925, "apogee": 2941.2733606235524, "out_of_rail_velocity": 24.13346465353734, "out_of_rail_time": 0.3775610584993364, "t_final": 270.7434217775102, "x_impact": 843.4600789401335} +{"lateral_surface_wind": 1.7283350117304135, "apogee_x": 305.1388093630048, "y_impact": 1375.46239500572, "max_mach_number": 0.6341110170621844, "impact_velocity": -5.4785612066316505, "apogee_y": 67.60677807533322, "frontal_surface_wind": 3.2983310207066725, "apogee_time": 22.085659320606467, "initial_stability_margin": 2.667247934774912, "out_of_rail_stability_margin": 2.748083390780505, "apogee": 2367.4766864861945, "out_of_rail_velocity": 22.206467035482607, "out_of_rail_time": 0.4046064193924512, "t_final": 243.85008673363845, "x_impact": 962.738101644192} +{"lateral_surface_wind": 2.988868434924202, "apogee_x": 426.2184991737061, "y_impact": 2268.868156417048, "max_mach_number": 0.8766111539417678, "impact_velocity": -5.405119843550978, "apogee_y": -35.37720680631725, "frontal_surface_wind": 2.6249592237876813, "apogee_time": 26.353491160688346, "initial_stability_margin": 2.684368078094807, "out_of_rail_stability_margin": 2.7529653194598853, "apogee": 3598.2689049333417, "out_of_rail_velocity": 26.268331185089462, "out_of_rail_time": 0.3516396718372536, "t_final": 310.4804395897842, "x_impact": 1372.4553272208714} +{"lateral_surface_wind": 4.849879012617111, "apogee_x": 744.0424249517613, "y_impact": 3073.09779765989, "max_mach_number": 0.8712952199277818, "impact_velocity": -5.479658281996711, "apogee_y": -25.695195113118825, "frontal_surface_wind": 2.7601187884428873, "apogee_time": 26.27881906905621, "initial_stability_margin": 2.559578819882845, "out_of_rail_stability_margin": 2.629456325595667, "apogee": 3560.1226645964016, "out_of_rail_velocity": 26.106413604072948, "out_of_rail_time": 0.35305961813322895, "t_final": 307.7625805373098, "x_impact": 1508.6676143160873} +{"lateral_surface_wind": 2.721443520268674, "apogee_x": 395.3035148864966, "y_impact": 2282.994044938336, "max_mach_number": 0.7976342237859914, "impact_velocity": -5.280614995703955, "apogee_y": 0.6921184304899626, "frontal_surface_wind": 4.103736423905528, "apogee_time": 24.97710292424303, "initial_stability_margin": 2.5900965909657114, "out_of_rail_stability_margin": 2.6661388816667455, "apogee": 3174.3073804899714, "out_of_rail_velocity": 24.895239239914268, "out_of_rail_time": 0.3668532165391662, "t_final": 293.5514878351428, "x_impact": 1524.9556555534575} +{"lateral_surface_wind": 2.692824295164143, "apogee_x": 645.3711559614187, "y_impact": 3026.2729171960373, "max_mach_number": 1.0092257083135632, "impact_velocity": -5.255454915997484, "apogee_y": 138.95703365513577, "frontal_surface_wind": 3.6184643487837036, "apogee_time": 27.63413072426873, "initial_stability_margin": 2.654009162074973, "out_of_rail_stability_margin": 2.7201480452632074, "apogee": 4105.254082125447, "out_of_rail_velocity": 28.49083519104418, "out_of_rail_time": 0.32956011408565655, "t_final": 341.5518743269863, "x_impact": 2254.5628977256565} +{"lateral_surface_wind": 3.898314887888155, "apogee_x": 604.1496289229561, "y_impact": 2115.350087253157, "max_mach_number": 0.764535289304985, "impact_velocity": -5.412639344536547, "apogee_y": 21.80707100816577, "frontal_surface_wind": 2.776545834660483, "apogee_time": 24.46240272858262, "initial_stability_margin": 2.536364891583881, "out_of_rail_stability_margin": 2.6110397086065364, "apogee": 3009.5945720395166, "out_of_rail_velocity": 24.413032804218954, "out_of_rail_time": 0.373929419508119, "t_final": 274.3522994672237, "x_impact": 1083.8426344155807} +{"lateral_surface_wind": 4.604349478258551, "apogee_x": 285.2774231790507, "y_impact": 2415.364771023951, "max_mach_number": 0.8694121115701773, "impact_velocity": -5.352308606620442, "apogee_y": -333.8147941252818, "frontal_surface_wind": 4.356135800536033, "apogee_time": 26.184258885004436, "initial_stability_margin": 2.6257331493026146, "out_of_rail_stability_margin": 2.693936490077297, "apogee": 3547.003928514875, "out_of_rail_velocity": 26.141009492968127, "out_of_rail_time": 0.35293956834993523, "t_final": 310.1823557320961, "x_impact": 1171.9293054463205} +{"lateral_surface_wind": 2.8715790935595646, "apogee_x": 445.54615654870423, "y_impact": 2004.7493140118897, "max_mach_number": 0.7677672996225859, "impact_velocity": -5.4124269852544105, "apogee_y": 35.529600301965075, "frontal_surface_wind": 2.7527765905110977, "apogee_time": 24.592098174307516, "initial_stability_margin": 2.743466902260923, "out_of_rail_stability_margin": 2.8163822639670277, "apogee": 3045.219472169077, "out_of_rail_velocity": 24.486292088461795, "out_of_rail_time": 0.3728152331186523, "t_final": 287.2233289881731, "x_impact": 1175.52247887189} +{"lateral_surface_wind": 4.514831548406878, "apogee_x": 285.24694686350057, "y_impact": 2477.9361199408586, "max_mach_number": 0.8624036163466494, "impact_velocity": -5.390707310431761, "apogee_y": -328.53685827958276, "frontal_surface_wind": 4.474425355505948, "apogee_time": 26.116150392584164, "initial_stability_margin": 2.6097890724659694, "out_of_rail_stability_margin": 2.6819165087497225, "apogee": 3519.2634409072034, "out_of_rail_velocity": 25.961429702129422, "out_of_rail_time": 0.3558214251943773, "t_final": 298.0884504584412, "x_impact": 1128.6144926103195} +{"lateral_surface_wind": 2.6329711667251914, "apogee_x": 282.8822827290861, "y_impact": 2381.0753367338334, "max_mach_number": 0.836558592087993, "impact_velocity": -5.478024582705415, "apogee_y": -87.0583103957333, "frontal_surface_wind": 4.283474372311227, "apogee_time": 25.914257999312547, "initial_stability_margin": 2.7087059329575385, "out_of_rail_stability_margin": 2.78012128334676, "apogee": 3430.7133524367478, "out_of_rail_velocity": 25.55308166939307, "out_of_rail_time": 0.3595935578021604, "t_final": 294.0651109883574, "x_impact": 1231.9542231705955} +{"lateral_surface_wind": 4.724133429212415, "apogee_x": 729.7376571792878, "y_impact": 3340.49302424227, "max_mach_number": 0.9187563905238582, "impact_velocity": -5.363117565489776, "apogee_y": 15.015726146833973, "frontal_surface_wind": 2.9702096738003374, "apogee_time": 26.746091101587908, "initial_stability_margin": 2.4979729556811225, "out_of_rail_stability_margin": 2.5641576330419507, "apogee": 3749.007757356338, "out_of_rail_velocity": 26.963312993151014, "out_of_rail_time": 0.34433770998188445, "t_final": 320.9562464135059, "x_impact": 1584.5449160364465} +{"lateral_surface_wind": 3.667271572021931, "apogee_x": 523.595255094452, "y_impact": 1651.818429638044, "max_mach_number": 0.7004277253499009, "impact_velocity": -5.361292151294881, "apogee_y": 44.61307624516954, "frontal_surface_wind": 2.0287911196882074, "apogee_time": 23.172225178972603, "initial_stability_margin": 2.4833409196095975, "out_of_rail_stability_margin": 2.563538110251152, "apogee": 2661.321881734428, "out_of_rail_velocity": 23.29836661707908, "out_of_rail_time": 0.3877468527975863, "t_final": 257.31828355379025, "x_impact": 757.1612890749825} +{"lateral_surface_wind": 3.824000132535501, "apogee_x": 684.3009128882793, "y_impact": 2513.497010166829, "max_mach_number": 0.8927506116184393, "impact_velocity": -5.317020323287158, "apogee_y": 30.198938682114804, "frontal_surface_wind": 1.7151959586748111, "apogee_time": 26.35663519018619, "initial_stability_margin": 2.601900071420733, "out_of_rail_stability_margin": 2.6726983079402227, "apogee": 3622.585274147015, "out_of_rail_velocity": 26.480340621343508, "out_of_rail_time": 0.3491058483691938, "t_final": 322.01511569784844, "x_impact": 1370.3707644016265} +{"lateral_surface_wind": 4.400844003444835, "apogee_x": 426.93271257770533, "y_impact": 2008.7635077433033, "max_mach_number": 0.7163377180910461, "impact_velocity": -5.362178507398344, "apogee_y": -135.5221494424391, "frontal_surface_wind": 2.7436434930858615, "apogee_time": 23.525814872227397, "initial_stability_margin": 2.473107484068818, "out_of_rail_stability_margin": 2.551282556816788, "apogee": 2754.7673378723343, "out_of_rail_velocity": 23.607624990347905, "out_of_rail_time": 0.3841276501848497, "t_final": 273.17679388254976, "x_impact": 701.8634179384708} +{"lateral_surface_wind": 4.420896348294841, "apogee_x": 456.3634091052036, "y_impact": 3387.940709289778, "max_mach_number": 1.1092221812994427, "impact_velocity": -5.329052724362574, "apogee_y": -204.8722871337435, "frontal_surface_wind": 4.542205269281082, "apogee_time": 28.695433786072865, "initial_stability_margin": 2.717535181968336, "out_of_rail_stability_margin": 2.778896878613587, "apogee": 4510.024567228844, "out_of_rail_velocity": 30.200337006719458, "out_of_rail_time": 0.3147353445132897, "t_final": 365.20404756394333, "x_impact": 1848.3633746709916} +{"lateral_surface_wind": 3.1771701278139446, "apogee_x": 534.9615981421899, "y_impact": 3049.660864342407, "max_mach_number": 0.9790427074392751, "impact_velocity": -5.329805721934975, "apogee_y": 26.556619655906573, "frontal_surface_wind": 3.4625015612658228, "apogee_time": 27.573636995499413, "initial_stability_margin": 2.7533741809765195, "out_of_rail_stability_margin": 2.816398217148637, "apogee": 4042.1711071267464, "out_of_rail_velocity": 28.01902320451682, "out_of_rail_time": 0.33407793056008017, "t_final": 340.9881160009996, "x_impact": 1890.553390790017} +{"lateral_surface_wind": 3.8124627800741577, "apogee_x": 691.7849270871936, "y_impact": 2455.781773911088, "max_mach_number": 0.9054157776114045, "impact_velocity": -5.434487279378854, "apogee_y": 34.07850209024174, "frontal_surface_wind": 1.7406900185946839, "apogee_time": 26.789986325271354, "initial_stability_margin": 2.606589341629771, "out_of_rail_stability_margin": 2.6734067404554, "apogee": 3735.9452032648, "out_of_rail_velocity": 26.731357580832636, "out_of_rail_time": 0.34665162258677573, "t_final": 312.37925432578515, "x_impact": 1382.6817304163876} +{"lateral_surface_wind": 4.446373786556396, "apogee_x": 357.53061232852815, "y_impact": 2409.8210591371303, "max_mach_number": 0.8331577213809578, "impact_velocity": -5.331055415377608, "apogee_y": -240.72390836635225, "frontal_surface_wind": 4.517268353870028, "apogee_time": 25.46667997121091, "initial_stability_margin": 2.582741792625953, "out_of_rail_stability_margin": 2.656692774745715, "apogee": 3335.3141233308907, "out_of_rail_velocity": 25.501085892859223, "out_of_rail_time": 0.3601760002842413, "t_final": 302.4655507418799, "x_impact": 1187.626109956472} +{"lateral_surface_wind": 3.741990045052116, "apogee_x": 569.1899857341945, "y_impact": 2266.071036186126, "max_mach_number": 0.8434515441732044, "impact_velocity": -5.355270862292103, "apogee_y": -10.940296857990216, "frontal_surface_wind": 2.1490765780023264, "apogee_time": 25.632114290045294, "initial_stability_margin": 2.552694748075619, "out_of_rail_stability_margin": 2.6252133404550246, "apogee": 3386.404614475759, "out_of_rail_velocity": 25.70441362165621, "out_of_rail_time": 0.3579974352879134, "t_final": 313.25062668544155, "x_impact": 1193.6517881647671} +{"lateral_surface_wind": 3.4278547792326215, "apogee_x": 653.6311539292954, "y_impact": 1991.0986369950417, "max_mach_number": 0.7503717180109991, "impact_velocity": -5.4664488111915315, "apogee_y": 126.4132648539101, "frontal_surface_wind": 1.9170592338509398, "apogee_time": 24.13792459110582, "initial_stability_margin": 2.6126751880490096, "out_of_rail_stability_margin": 2.6887327783154493, "apogee": 2921.291411018939, "out_of_rail_velocity": 24.15846283286792, "out_of_rail_time": 0.3770238519767833, "t_final": 278.36968609282, "x_impact": 979.648006720797} +{"lateral_surface_wind": 2.654905738366282, "apogee_x": 346.8165256845257, "y_impact": 3242.5013393551967, "max_mach_number": 1.007740578294601, "impact_velocity": -5.2316065908462175, "apogee_y": -37.032218633641406, "frontal_surface_wind": 4.147093318372649, "apogee_time": 27.61429055953803, "initial_stability_margin": 2.4277772091611345, "out_of_rail_stability_margin": 2.4960843170072002, "apogee": 4100.073878948187, "out_of_rail_velocity": 28.422961013978025, "out_of_rail_time": 0.33041319391212126, "t_final": 358.05921473887196, "x_impact": 2039.7000826883052} +{"lateral_surface_wind": 3.517515882328688, "apogee_x": 174.10879685164414, "y_impact": 1441.3966363126815, "max_mach_number": 0.6308547856210354, "impact_velocity": -5.448370560960363, "apogee_y": -206.44878458873183, "frontal_surface_wind": 3.3817382450438327, "apogee_time": 21.94068019350892, "initial_stability_margin": 2.580986292614214, "out_of_rail_stability_margin": 2.6650561801785977, "apogee": 2334.4156428000074, "out_of_rail_velocity": 22.05976217029835, "out_of_rail_time": 0.4062042007667326, "t_final": 242.36520159605118, "x_impact": 651.2253107631847} +{"lateral_surface_wind": 3.84198648969075, "apogee_x": 684.5930605063271, "y_impact": 2313.9476752311607, "max_mach_number": 0.869854491731282, "impact_velocity": -5.353008379718194, "apogee_y": 33.11228855367994, "frontal_surface_wind": 1.6745190364160334, "apogee_time": 26.032798738097288, "initial_stability_margin": 2.4749550234231696, "out_of_rail_stability_margin": 2.5472770100120257, "apogee": 3512.818487112282, "out_of_rail_velocity": 26.10857189066612, "out_of_rail_time": 0.35395009764490776, "t_final": 305.83322482896756, "x_impact": 1291.2940529282812} +{"lateral_surface_wind": 3.2349375495419928, "apogee_x": 315.8910823443721, "y_impact": 1657.8758982070563, "max_mach_number": 0.6709638764604982, "impact_velocity": -5.342899270845828, "apogee_y": -70.72599137442643, "frontal_surface_wind": 2.873113183071571, "apogee_time": 22.653493423316675, "initial_stability_margin": 2.626396220006081, "out_of_rail_stability_margin": 2.7087663705873744, "apogee": 2525.038988130576, "out_of_rail_velocity": 22.784335994809503, "out_of_rail_time": 0.39510576961377014, "t_final": 261.53619851593356, "x_impact": 773.5440909001801} +{"lateral_surface_wind": 1.1502675240991842, "apogee_x": 488.08515404013457, "y_impact": 1979.4471001570448, "max_mach_number": 0.9099678125133469, "impact_velocity": -5.328470084340413, "apogee_y": 219.9849540433633, "frontal_surface_wind": 2.61115912139969, "apogee_time": 26.621366033570467, "initial_stability_margin": 2.760063285440831, "out_of_rail_stability_margin": 2.8280994750393487, "apogee": 3719.8345732981334, "out_of_rail_velocity": 26.818892908245687, "out_of_rail_time": 0.3455968550392663, "t_final": 330.43556314564796, "x_impact": 1636.1258037677355} +{"lateral_surface_wind": 4.286094041246255, "apogee_x": 472.99821174771165, "y_impact": 2550.4014025084, "max_mach_number": 0.8697787580780794, "impact_velocity": -5.425829229726717, "apogee_y": -140.55413867938015, "frontal_surface_wind": 2.9196584439625974, "apogee_time": 26.169948137798528, "initial_stability_margin": 2.5844683072097663, "out_of_rail_stability_margin": 2.654636485007133, "apogee": 3547.0178890366237, "out_of_rail_velocity": 26.142817479287164, "out_of_rail_time": 0.3530173165328995, "t_final": 309.8674265801781, "x_impact": 968.7248864129633} +{"lateral_surface_wind": 3.4089806626581836, "apogee_x": 571.8484825764444, "y_impact": 2676.6177797703267, "max_mach_number": 0.88712824695559, "impact_velocity": -5.394577881486121, "apogee_y": 25.61594952341577, "frontal_surface_wind": 3.491120505231706, "apogee_time": 26.48297667149092, "initial_stability_margin": 2.6622055691589956, "out_of_rail_stability_margin": 2.7299697129580065, "apogee": 3641.3192125131677, "out_of_rail_velocity": 26.42935360986301, "out_of_rail_time": 0.34951850607352575, "t_final": 316.038591691531, "x_impact": 1680.5702030320454} +{"lateral_surface_wind": 2.23545783664287, "apogee_x": 233.68723194673214, "y_impact": 1729.8518166711126, "max_mach_number": 0.7605972810024746, "impact_velocity": -5.421787787011811, "apogee_y": -73.12795070496622, "frontal_surface_wind": 2.8192160112268563, "apogee_time": 24.46936251777107, "initial_stability_margin": 2.621238224650493, "out_of_rail_stability_margin": 2.6983790131630743, "apogee": 3011.070134410334, "out_of_rail_velocity": 24.30493581796102, "out_of_rail_time": 0.375401131288283, "t_final": 281.91385702458064, "x_impact": 1113.1415007762175} +{"lateral_surface_wind": 5.021186959998542, "apogee_x": 257.55687431703296, "y_impact": 1703.8440692080346, "max_mach_number": 0.5840478883759852, "impact_velocity": -5.360174505093129, "apogee_y": -250.53059204305936, "frontal_surface_wind": 5.010943501847934, "apogee_time": 20.739230719096724, "initial_stability_margin": 2.5555343699660864, "out_of_rail_stability_margin": 2.6437028871913393, "apogee": 2063.43163033666, "out_of_rail_velocity": 21.206578814169674, "out_of_rail_time": 0.42031795725645327, "t_final": 227.1245668725664, "x_impact": 755.9395130061267} +{"lateral_surface_wind": 2.673433605416975, "apogee_x": 589.3264276777018, "y_impact": 2677.8553646713463, "max_mach_number": 0.9079979409386136, "impact_velocity": -5.287916598943769, "apogee_y": 106.23049424651659, "frontal_surface_wind": 3.6328142927312053, "apogee_time": 26.701766659359926, "initial_stability_margin": 2.6248606797324183, "out_of_rail_stability_margin": 2.6935956781225343, "apogee": 3726.9735638402003, "out_of_rail_velocity": 26.751994278248027, "out_of_rail_time": 0.3462813060792826, "t_final": 322.83710462047964, "x_impact": 1995.9500735829467} +{"lateral_surface_wind": 4.2413105803240105, "apogee_x": 380.72508676619856, "y_impact": 2327.896099791114, "max_mach_number": 0.7606470433507764, "impact_velocity": -5.426358597022281, "apogee_y": -173.7809788773718, "frontal_surface_wind": 4.251868969249852, "apogee_time": 24.44756518350005, "initial_stability_margin": 2.5396597039001807, "out_of_rail_stability_margin": 2.6128238864836897, "apogee": 3002.1731553171026, "out_of_rail_velocity": 24.355648268137656, "out_of_rail_time": 0.37455820260116196, "t_final": 283.3370635006185, "x_impact": 1223.5795104187378} +{"lateral_surface_wind": 4.469705846926734, "apogee_x": 401.9694358883395, "y_impact": 1855.7974748002257, "max_mach_number": 0.6994424274035919, "impact_velocity": -5.336359736913488, "apogee_y": -153.8445986824187, "frontal_surface_wind": 3.4865285484437627, "apogee_time": 23.236032818381275, "initial_stability_margin": 2.7099077156779443, "out_of_rail_stability_margin": 2.7839630376340385, "apogee": 2672.636197958525, "out_of_rail_velocity": 23.36381669884533, "out_of_rail_time": 0.3871229376808067, "t_final": 261.0460871965003, "x_impact": 797.6874576894602} +{"lateral_surface_wind": 3.26469109003761, "apogee_x": 575.0092851958251, "y_impact": 2990.1887570626213, "max_mach_number": 1.024375615522259, "impact_velocity": -5.47918160402363, "apogee_y": 40.72595460557466, "frontal_surface_wind": 2.83925912850614, "apogee_time": 28.223595328290024, "initial_stability_margin": 2.7761867040348096, "out_of_rail_stability_margin": 2.843119290114252, "apogee": 4262.06948931099, "out_of_rail_velocity": 28.668436057982564, "out_of_rail_time": 0.3282309589142067, "t_final": 336.108387331502, "x_impact": 1845.6328928545288} +{"lateral_surface_wind": 3.4866261731072266, "apogee_x": 372.89335745650993, "y_impact": 2752.6321657246685, "max_mach_number": 0.9164273900114853, "impact_velocity": -5.339553015749753, "apogee_y": -139.04680422011305, "frontal_surface_wind": 3.5995199039339933, "apogee_time": 26.876655906575696, "initial_stability_margin": 2.6341568755278053, "out_of_rail_stability_margin": 2.7005162001856746, "apogee": 3779.9001224766494, "out_of_rail_velocity": 26.91324049352465, "out_of_rail_time": 0.34493509684694684, "t_final": 323.93821584554917, "x_impact": 1591.1250454175067} +{"lateral_surface_wind": 2.379002083171908, "apogee_x": 278.1864188788512, "y_impact": 1713.4333893221158, "max_mach_number": 0.7034176018692072, "impact_velocity": -5.52544254950092, "apogee_y": -28.555427970553797, "frontal_surface_wind": 3.832092902880703, "apogee_time": 23.510049115771324, "initial_stability_margin": 2.650746821428794, "out_of_rail_stability_margin": 2.727553956774079, "apogee": 2730.695441504749, "out_of_rail_velocity": 23.372609821409526, "out_of_rail_time": 0.3874015833843228, "t_final": 263.20781977189307, "x_impact": 1117.5368961455008} +{"lateral_surface_wind": 4.885293634452325, "apogee_x": 91.92527676434023, "y_impact": 1217.1703375141287, "max_mach_number": 0.46046109404115726, "impact_velocity": -5.46960019527774, "apogee_y": -274.69953878332285, "frontal_surface_wind": 5.143518190028205, "apogee_time": 17.8209266288164, "initial_stability_margin": 2.6542644829161266, "out_of_rail_stability_margin": 2.746997305098768, "apogee": 1466.8839093870067, "out_of_rail_velocity": 18.840011413289936, "out_of_rail_time": 0.46549631986026896, "t_final": 188.00357871129256, "x_impact": 416.4606499181825} +{"lateral_surface_wind": 4.398407107088613, "apogee_x": 350.2557400117894, "y_impact": 2054.0221439399447, "max_mach_number": 0.8220270318447281, "impact_velocity": -5.45274403154133, "apogee_y": -245.94889359268953, "frontal_surface_wind": 3.576054613324129, "apogee_time": 25.50512867370804, "initial_stability_margin": 2.7001359524230693, "out_of_rail_stability_margin": 2.768714459850294, "apogee": 3322.327172712075, "out_of_rail_velocity": 25.419431190171036, "out_of_rail_time": 0.3614806257157509, "t_final": 286.9698391836053, "x_impact": 901.2902078521419} +{"lateral_surface_wind": 4.21739872816156, "apogee_x": 692.3995491697304, "y_impact": 2791.027845612542, "max_mach_number": 0.8656972784332018, "impact_velocity": -5.22960641221093, "apogee_y": 13.52957655633011, "frontal_surface_wind": 2.245882402949286, "apogee_time": 25.749816043740683, "initial_stability_margin": 2.5622742772799287, "out_of_rail_stability_margin": 2.6354324843433994, "apogee": 3448.2789403171905, "out_of_rail_velocity": 26.03675421065499, "out_of_rail_time": 0.3539196286801665, "t_final": 313.37345102589626, "x_impact": 1542.445209660753} +{"lateral_surface_wind": 3.4318587279180472, "apogee_x": 363.96561380073626, "y_impact": 1619.778694138914, "max_mach_number": 0.6963185345109347, "impact_velocity": -5.328528029561814, "apogee_y": -72.54306881016142, "frontal_surface_wind": 1.909882238572264, "apogee_time": 23.101420299696624, "initial_stability_margin": 2.6681761263965487, "out_of_rail_stability_margin": 2.7428455627997166, "apogee": 2646.360870520685, "out_of_rail_velocity": 23.3496943518733, "out_of_rail_time": 0.38876975336874847, "t_final": 270.30591811777026, "x_impact": 570.1410452556462} +{"lateral_surface_wind": 4.7210513755298615, "apogee_x": 267.0022822118501, "y_impact": 1848.8076234780003, "max_mach_number": 0.622063599896245, "impact_velocity": -5.429216178689435, "apogee_y": -239.98477793065044, "frontal_surface_wind": 4.2562730272025755, "apogee_time": 21.649559007715432, "initial_stability_margin": 2.615616535988819, "out_of_rail_stability_margin": 2.6977053297782123, "apogee": 2270.994295658528, "out_of_rail_velocity": 21.938362387736227, "out_of_rail_time": 0.4080619113417327, "t_final": 244.74685975541135, "x_impact": 686.236962975754} +{"lateral_surface_wind": 3.5499578943284895, "apogee_x": 571.5574192161399, "y_impact": 2460.7163927654433, "max_mach_number": 0.8225603036805313, "impact_velocity": -5.3692330708588205, "apogee_y": 1.2564350299023603, "frontal_surface_wind": 3.3476664243800553, "apogee_time": 25.406168091243057, "initial_stability_margin": 2.6736542811089645, "out_of_rail_stability_margin": 2.746482167496433, "apogee": 3301.584384702613, "out_of_rail_velocity": 25.397460659745793, "out_of_rail_time": 0.36236184621958256, "t_final": 304.4256192535177, "x_impact": 1553.3225614496218} +{"lateral_surface_wind": 4.7410432345471705, "apogee_x": 275.7384152535952, "y_impact": 1897.0320677087257, "max_mach_number": 0.6431291219885868, "impact_velocity": -5.3555504265259115, "apogee_y": -243.67947692415697, "frontal_surface_wind": 4.233992822459562, "apogee_time": 22.031403378706525, "initial_stability_margin": 2.556679036504622, "out_of_rail_stability_margin": 2.6380034252893223, "apogee": 2369.4255370266187, "out_of_rail_velocity": 22.30996822466349, "out_of_rail_time": 0.402153828443742, "t_final": 249.13753548872975, "x_impact": 718.9405762359489} +{"lateral_surface_wind": 3.7759944288697618, "apogee_x": 305.7273042236506, "y_impact": 2165.5757811663425, "max_mach_number": 0.8272513480239436, "impact_velocity": -5.401071700680754, "apogee_y": -207.47789682727145, "frontal_surface_wind": 2.9407366101447163, "apogee_time": 25.619878202876237, "initial_stability_margin": 2.666278774959117, "out_of_rail_stability_margin": 2.7380280554545093, "apogee": 3355.5926166150293, "out_of_rail_velocity": 25.418830422812007, "out_of_rail_time": 0.361080633099912, "t_final": 298.1799030861548, "x_impact": 845.851012817835} +{"lateral_surface_wind": 3.419495330991756, "apogee_x": 532.7115397599822, "y_impact": 2966.6800409304324, "max_mach_number": 0.9737056410771384, "impact_velocity": -5.265766701598681, "apogee_y": -3.1827283967004325, "frontal_surface_wind": 2.3642034812249717, "apogee_time": 27.207869084243626, "initial_stability_margin": 2.4944772176538295, "out_of_rail_stability_margin": 2.56614663109152, "apogee": 3952.7047616164223, "out_of_rail_velocity": 27.783997755600648, "out_of_rail_time": 0.3369202166377321, "t_final": 337.58812367554077, "x_impact": 1451.4119148326872} +{"lateral_surface_wind": 1.8471760904809347, "apogee_x": 493.2995456325987, "y_impact": 2425.259197530894, "max_mach_number": 0.9146972387494353, "impact_velocity": -5.177480381244307, "apogee_y": 148.2654476738059, "frontal_surface_wind": 3.2332754175425045, "apogee_time": 26.481525160899846, "initial_stability_margin": 2.602972010169909, "out_of_rail_stability_margin": 2.673540635241848, "apogee": 3698.3959367278453, "out_of_rail_velocity": 26.872848043815168, "out_of_rail_time": 0.34517913115491955, "t_final": 322.79831463593933, "x_impact": 1714.2596285073982} +{"lateral_surface_wind": 3.524498514690441, "apogee_x": 544.9100398866191, "y_impact": 2834.512381554068, "max_mach_number": 0.9122449193464328, "impact_velocity": -5.319019778164006, "apogee_y": -12.248408516692544, "frontal_surface_wind": 3.562445203755169, "apogee_time": 26.70207402097609, "initial_stability_margin": 2.593966349231763, "out_of_rail_stability_margin": 2.662097789832715, "apogee": 3733.5928863049417, "out_of_rail_velocity": 26.840567040785285, "out_of_rail_time": 0.345834254865756, "t_final": 319.76575940244413, "x_impact": 1755.7276287144737} +{"lateral_surface_wind": 4.211112334818643, "apogee_x": 543.674250280186, "y_impact": 2496.7954800049106, "max_mach_number": 0.8316049802616386, "impact_velocity": -5.367866346736654, "apogee_y": -87.11721720941436, "frontal_surface_wind": 2.25764760397062, "apogee_time": 25.505906222641208, "initial_stability_margin": 2.5163282900613657, "out_of_rail_stability_margin": 2.5907311343408, "apogee": 3337.500446385022, "out_of_rail_velocity": 25.47411565782831, "out_of_rail_time": 0.3608790759606166, "t_final": 299.56214938699, "x_impact": 1293.6650681455203} +{"lateral_surface_wind": 2.9496048876708283, "apogee_x": 453.3327677913412, "y_impact": 2783.1347771753685, "max_mach_number": 1.0251316635377772, "impact_velocity": -5.382971970649333, "apogee_y": -13.962144547980374, "frontal_surface_wind": 2.6690028951768925, "apogee_time": 28.084454938435904, "initial_stability_margin": 2.638189200479376, "out_of_rail_stability_margin": 2.7015537868377617, "apogee": 4235.142242917212, "out_of_rail_velocity": 28.78379121997024, "out_of_rail_time": 0.32712764046776455, "t_final": 344.1767612668181, "x_impact": 1700.6137905655623} +{"lateral_surface_wind": 4.183102976485832, "apogee_x": 373.2874635903409, "y_impact": 1551.010800862515, "max_mach_number": 0.6043758402106015, "impact_velocity": -5.440191066753322, "apogee_y": -116.83330680871208, "frontal_surface_wind": 2.3091317173975554, "apogee_time": 21.346852422351763, "initial_stability_margin": 2.7788758084950196, "out_of_rail_stability_margin": 2.8614936195172165, "apogee": 2192.3109496237707, "out_of_rail_velocity": 21.625139064700452, "out_of_rail_time": 0.4130412543372816, "t_final": 236.6403815717385, "x_impact": 622.5255292013749} +{"lateral_surface_wind": 2.5228888039573665, "apogee_x": 598.4280137800532, "y_impact": 2417.058769887232, "max_mach_number": 0.9134823699873389, "impact_velocity": -5.330868730173727, "apogee_y": 124.16201626957191, "frontal_surface_wind": 2.9671187950896503, "apogee_time": 26.773882504541817, "initial_stability_margin": 2.635852031035272, "out_of_rail_stability_margin": 2.7075433309017694, "apogee": 3751.3567091836753, "out_of_rail_velocity": 26.783190558100273, "out_of_rail_time": 0.3460853156245078, "t_final": 316.76162476998866, "x_impact": 1626.6705199933315} +{"lateral_surface_wind": 3.0247324073108595, "apogee_x": 311.6295301845299, "y_impact": 1386.5322464425676, "max_mach_number": 0.620952124626307, "impact_velocity": -5.263721292635493, "apogee_y": -50.24545405226567, "frontal_surface_wind": 2.5835516855673184, "apogee_time": 21.63790556415919, "initial_stability_margin": 2.578892511888157, "out_of_rail_stability_margin": 2.663263531509412, "apogee": 2271.1716033554044, "out_of_rail_velocity": 21.923549142119857, "out_of_rail_time": 0.4085529132444728, "t_final": 246.4424752249654, "x_impact": 727.79460903109} +{"lateral_surface_wind": 4.700988120055438, "apogee_x": 518.5508532121531, "y_impact": 3736.433463717664, "max_mach_number": 0.9823391656514349, "impact_velocity": -5.288319293180467, "apogee_y": -176.04509184433587, "frontal_surface_wind": 5.124333256815518, "apogee_time": 27.435836013600575, "initial_stability_margin": 2.680329839086841, "out_of_rail_stability_margin": 2.7462951300310103, "apogee": 4012.028871089967, "out_of_rail_velocity": 27.978169191556482, "out_of_rail_time": 0.3343226861551641, "t_final": 337.377127874844, "x_impact": 1734.3269064452816} +{"lateral_surface_wind": 3.359462148102266, "apogee_x": 428.9414475139125, "y_impact": 2645.437188730134, "max_mach_number": 0.918271836288788, "impact_velocity": -5.293385567036611, "apogee_y": -80.40725616232507, "frontal_surface_wind": 2.7264655485893297, "apogee_time": 26.740192049056393, "initial_stability_margin": 2.6907024796920744, "out_of_rail_stability_margin": 2.7616466142301976, "apogee": 3757.172635989978, "out_of_rail_velocity": 26.890071265179788, "out_of_rail_time": 0.34515928763048426, "t_final": 330.0019651129303, "x_impact": 1483.7479327024719} +{"lateral_surface_wind": 4.050158286950257, "apogee_x": 654.6269129675279, "y_impact": 3378.769093893058, "max_mach_number": 0.9458450577234738, "impact_velocity": -5.325462278584733, "apogee_y": 32.04770377471368, "frontal_surface_wind": 4.434334563504017, "apogee_time": 27.079415053535875, "initial_stability_margin": 2.5490086829394767, "out_of_rail_stability_margin": 2.615376836486624, "apogee": 3873.6525941269574, "out_of_rail_velocity": 27.414089263947837, "out_of_rail_time": 0.3396614733012432, "t_final": 336.3302511237084, "x_impact": 1948.9171520686793} +{"lateral_surface_wind": 4.714013810800228, "apogee_x": 708.1594577358336, "y_impact": 3337.4672936891598, "max_mach_number": 0.9767110623961766, "impact_velocity": -5.156696885386134, "apogee_y": -26.416647637244544, "frontal_surface_wind": 4.264066130358357, "apogee_time": 27.081192349222917, "initial_stability_margin": 2.545916504789245, "out_of_rail_stability_margin": 2.616951385034422, "apogee": 3926.7290273505214, "out_of_rail_velocity": 27.849760502496334, "out_of_rail_time": 0.3351925687483972, "t_final": 334.7863809247421, "x_impact": 1860.1481925427215} +{"lateral_surface_wind": 2.365037712979545, "apogee_x": 580.4054163484534, "y_impact": 2858.889639380276, "max_mach_number": 0.9890976008286131, "impact_velocity": -5.33167422250743, "apogee_y": 165.4271181980081, "frontal_surface_wind": 3.0944076133392917, "apogee_time": 27.678330021949083, "initial_stability_margin": 2.659611657400058, "out_of_rail_stability_margin": 2.722707658338895, "apogee": 4083.228844291991, "out_of_rail_velocity": 28.204347737529005, "out_of_rail_time": 0.3323546594886351, "t_final": 348.42296549849334, "x_impact": 1814.6715621433577} +{"lateral_surface_wind": 3.4763018846611216, "apogee_x": 494.51905887841974, "y_impact": 2021.724585070867, "max_mach_number": 0.7800757677413315, "impact_velocity": -5.352573186082856, "apogee_y": -31.694746744477612, "frontal_surface_wind": 2.2798534220454236, "apogee_time": 24.71242999640002, "initial_stability_margin": 2.7455087267442275, "out_of_rail_stability_margin": 2.82083528686787, "apogee": 3089.0071548183078, "out_of_rail_velocity": 24.640994735761943, "out_of_rail_time": 0.37048569566984724, "t_final": 279.8292287973289, "x_impact": 990.9141830558267} +{"lateral_surface_wind": 2.5095931275400827, "apogee_x": 513.5842021376116, "y_impact": 2564.4462073789136, "max_mach_number": 0.9706609106323646, "impact_velocity": -5.448358417473297, "apogee_y": 60.035348343135894, "frontal_surface_wind": 2.9783727428767666, "apogee_time": 27.689353176885984, "initial_stability_margin": 2.6869227921317167, "out_of_rail_stability_margin": 2.754559585035775, "apogee": 4052.786362798414, "out_of_rail_velocity": 27.738539694009514, "out_of_rail_time": 0.3369094878589211, "t_final": 331.3191890234429, "x_impact": 1658.973455537072} +{"lateral_surface_wind": 3.3198117831967777, "apogee_x": 432.2362390360186, "y_impact": 2698.3140277788752, "max_mach_number": 0.9148036614509961, "impact_velocity": -5.322162703932566, "apogee_y": -53.4051789085528, "frontal_surface_wind": 2.502250215997298, "apogee_time": 26.633038134306364, "initial_stability_margin": 2.6245708675402475, "out_of_rail_stability_margin": 2.695421562365169, "apogee": 3727.865784335805, "out_of_rail_velocity": 26.84266816378234, "out_of_rail_time": 0.34577114551042176, "t_final": 324.70394610389656, "x_impact": 1231.3488607531415} +{"lateral_surface_wind": 4.61174504349489, "apogee_x": 753.5162783825147, "y_impact": 2797.504218559003, "max_mach_number": 0.9062878500773835, "impact_velocity": -5.440779733126784, "apogee_y": -67.41931860058342, "frontal_surface_wind": 2.1904705806081806, "apogee_time": 26.763832041900976, "initial_stability_margin": 2.7619048510123982, "out_of_rail_stability_margin": 2.8280362786062065, "apogee": 3730.883317548797, "out_of_rail_velocity": 26.743396502117058, "out_of_rail_time": 0.3462968356771445, "t_final": 318.92815170625323, "x_impact": 1538.535604332729} +{"lateral_surface_wind": 3.887163348666907, "apogee_x": 445.6931815525731, "y_impact": 2373.057425613451, "max_mach_number": 0.8289475662718853, "impact_velocity": -5.466008191373416, "apogee_y": -109.32517208114258, "frontal_surface_wind": 3.403405848426223, "apogee_time": 25.666553568164954, "initial_stability_margin": 2.6237068786655366, "out_of_rail_stability_margin": 2.69805749114451, "apogee": 3365.8194990443444, "out_of_rail_velocity": 25.41450740384344, "out_of_rail_time": 0.36142364751766415, "t_final": 289.159289042126, "x_impact": 1283.3223357945071} +{"lateral_surface_wind": 3.983231361708086, "apogee_x": 361.9639264211925, "y_impact": 2151.7549720527727, "max_mach_number": 0.7567446495663974, "impact_velocity": -5.529352170743145, "apogee_y": -161.6154675099808, "frontal_surface_wind": 4.4945492643360065, "apogee_time": 24.535690345228915, "initial_stability_margin": 2.7542870048438024, "out_of_rail_stability_margin": 2.8257972558047455, "apogee": 3010.8108641195563, "out_of_rail_velocity": 24.287684548270512, "out_of_rail_time": 0.3751268998843279, "t_final": 267.36070675740797, "x_impact": 1141.461047064727} +{"lateral_surface_wind": 3.6850364216576716, "apogee_x": 575.0654259069145, "y_impact": 1793.0754504923082, "max_mach_number": 0.7067093746268711, "impact_velocity": -5.2533665832069, "apogee_y": 59.39701924170607, "frontal_surface_wind": 2.245334319526549, "apogee_time": 23.209436888583436, "initial_stability_margin": 2.5460889395353794, "out_of_rail_stability_margin": 2.6302056272842096, "apogee": 2677.4103389483876, "out_of_rail_velocity": 23.3617824591687, "out_of_rail_time": 0.3873366660399626, "t_final": 263.5103097531842, "x_impact": 945.350414869079} +{"lateral_surface_wind": 3.463826821374357, "apogee_x": 521.2207307940289, "y_impact": 1786.8547670169307, "max_mach_number": 0.730843841657699, "impact_velocity": -5.287947732458169, "apogee_y": 20.091181239848055, "frontal_surface_wind": 1.8512720613482776, "apogee_time": 23.684051190446798, "initial_stability_margin": 2.588597241477614, "out_of_rail_stability_margin": 2.668306248949679, "apogee": 2807.5045546308506, "out_of_rail_velocity": 23.806715258237954, "out_of_rail_time": 0.38106658296161533, "t_final": 274.1413345670996, "x_impact": 787.3690156974477} +{"lateral_surface_wind": 1.8076848720414425, "apogee_x": 432.1389318752244, "y_impact": 2801.193659053153, "max_mach_number": 1.0174122508630978, "impact_velocity": -5.388884092503107, "apogee_y": 107.09351423834325, "frontal_surface_wind": 3.2555191349954615, "apogee_time": 28.063970448707956, "initial_stability_margin": 2.6475762649899703, "out_of_rail_stability_margin": 2.713640957529387, "apogee": 4218.80159365842, "out_of_rail_velocity": 28.67537046394922, "out_of_rail_time": 0.32958235261641566, "t_final": 346.6741081807398, "x_impact": 1872.6460190391092} +{"lateral_surface_wind": 3.230883903574031, "apogee_x": 481.4333440619448, "y_impact": 2717.993309569891, "max_mach_number": 0.9416563129756089, "impact_velocity": -5.33741868383112, "apogee_y": -27.827853544528303, "frontal_surface_wind": 3.221888953389016, "apogee_time": 27.20618105942772, "initial_stability_margin": 2.570729406596545, "out_of_rail_stability_margin": 2.638181397103801, "apogee": 3897.303678177404, "out_of_rail_velocity": 27.304470203121703, "out_of_rail_time": 0.3407857887968473, "t_final": 328.25652328147964, "x_impact": 1517.6117216081352} +{"lateral_surface_wind": 3.205865336410672, "apogee_x": 384.21815679908093, "y_impact": 1834.9081486072182, "max_mach_number": 0.7654201936099094, "impact_velocity": -5.456525229084362, "apogee_y": -68.75877316601189, "frontal_surface_wind": 3.020699552588824, "apogee_time": 24.60158939567763, "initial_stability_margin": 2.6090130599470673, "out_of_rail_stability_margin": 2.6844588948218, "apogee": 3043.5451193773824, "out_of_rail_velocity": 24.417956374390577, "out_of_rail_time": 0.3739543761648472, "t_final": 277.1413597891499, "x_impact": 1048.1931582950067} +{"lateral_surface_wind": 3.1148794384231224, "apogee_x": 382.5465233745353, "y_impact": 2013.69531059026, "max_mach_number": 0.8187954426667918, "impact_velocity": -5.471721981811886, "apogee_y": -72.50496814161578, "frontal_surface_wind": 3.1144380594737613, "apogee_time": 25.59482924253517, "initial_stability_margin": 2.7644151621086293, "out_of_rail_stability_margin": 2.8339276353946166, "apogee": 3336.759963761028, "out_of_rail_velocity": 25.340679526772686, "out_of_rail_time": 0.3620010742355693, "t_final": 294.1685377873072, "x_impact": 1158.3489640479359} +{"lateral_surface_wind": 3.683709798259162, "apogee_x": 511.87344849007064, "y_impact": 2606.615817153133, "max_mach_number": 0.9590900181083777, "impact_velocity": -5.2993529934251, "apogee_y": -66.08651214756995, "frontal_surface_wind": 2.2475101240254234, "apogee_time": 27.23238595895347, "initial_stability_margin": 2.6841538040660806, "out_of_rail_stability_margin": 2.7517882544162897, "apogee": 3933.4036721803723, "out_of_rail_velocity": 27.591066090776867, "out_of_rail_time": 0.33847377630677833, "t_final": 345.6785282262489, "x_impact": 1349.3246241590302} +{"lateral_surface_wind": 4.557751939144319, "apogee_x": 608.0891637660146, "y_impact": 2357.625903806444, "max_mach_number": 0.8271098169631291, "impact_velocity": -5.586386438447964, "apogee_y": -117.85925845844078, "frontal_surface_wind": 2.3007066244821033, "apogee_time": 25.7711537466131, "initial_stability_margin": 2.672367522956778, "out_of_rail_stability_margin": 2.7419950135793494, "apogee": 3378.849700760623, "out_of_rail_velocity": 25.44072003145428, "out_of_rail_time": 0.36101532382125745, "t_final": 292.67193593285765, "x_impact": 1210.1840064969379} +{"lateral_surface_wind": 2.6171440716550807, "apogee_x": 255.25125404811672, "y_impact": 2438.4544812538284, "max_mach_number": 0.83153469904384, "impact_velocity": -5.315317925494973, "apogee_y": -99.08728263899354, "frontal_surface_wind": 4.469143294901015, "apogee_time": 25.50311255094898, "initial_stability_margin": 2.6050618840386797, "out_of_rail_stability_margin": 2.676023769493832, "apogee": 3344.9053223703118, "out_of_rail_velocity": 25.540346472176694, "out_of_rail_time": 0.35969824512645615, "t_final": 308.3268649305274, "x_impact": 1392.7860914223916} +{"lateral_surface_wind": 4.3493430235057415, "apogee_x": 463.8358492836197, "y_impact": 2108.520351626219, "max_mach_number": 0.7740639455793376, "impact_velocity": -5.407073585298296, "apogee_y": -134.71585149553417, "frontal_surface_wind": 2.824574804052936, "apogee_time": 24.618972583018667, "initial_stability_margin": 2.6910874220940113, "out_of_rail_stability_margin": 2.7643782732701365, "apogee": 3061.345341407855, "out_of_rail_velocity": 24.587975711526283, "out_of_rail_time": 0.3711196511200081, "t_final": 278.99562632503876, "x_impact": 809.0217232242028} +{"lateral_surface_wind": 3.761649261156342, "apogee_x": 517.8024216030957, "y_impact": 1794.5543919080733, "max_mach_number": 0.7422039965877154, "impact_velocity": -5.41275236924305, "apogee_y": -21.33310585366894, "frontal_surface_wind": 1.8479364237786644, "apogee_time": 24.098661348053863, "initial_stability_margin": 2.712331447036907, "out_of_rail_stability_margin": 2.7842579985413023, "apogee": 2903.031112174699, "out_of_rail_velocity": 24.07304197220666, "out_of_rail_time": 0.3778807289404854, "t_final": 275.19286540914504, "x_impact": 845.8753287291481} +{"lateral_surface_wind": 3.6858785527969187, "apogee_x": 705.9524498267157, "y_impact": 3203.4470453856984, "max_mach_number": 1.0838325041273706, "impact_velocity": -5.321047328034008, "apogee_y": 107.20305093967832, "frontal_surface_wind": 1.9947865761323, "apogee_time": 28.39977149611929, "initial_stability_margin": 2.536995130019747, "out_of_rail_stability_margin": 2.602423504735287, "apogee": 4395.206627519205, "out_of_rail_velocity": 29.730929677831092, "out_of_rail_time": 0.3187741630189343, "t_final": 354.5351265372438, "x_impact": 1707.4902074832528} +{"lateral_surface_wind": 2.714056679806781, "apogee_x": 229.92143431014225, "y_impact": 2013.5359798689308, "max_mach_number": 0.7408649322505132, "impact_velocity": -5.242517708183593, "apogee_y": -107.05985072472717, "frontal_surface_wind": 4.232562604598953, "apogee_time": 23.912816283799042, "initial_stability_margin": 2.559392755937508, "out_of_rail_stability_margin": 2.636868465260351, "apogee": 2871.150579401155, "out_of_rail_velocity": 23.989992084911194, "out_of_rail_time": 0.3786556013547742, "t_final": 276.89214450985145, "x_impact": 1012.9789609352139} +{"lateral_surface_wind": 2.7194458978324576, "apogee_x": 374.9116637288535, "y_impact": 3464.3624959228155, "max_mach_number": 1.0325080325447444, "impact_velocity": -5.183513923692614, "apogee_y": -23.65155761557836, "frontal_surface_wind": 4.229102017191769, "apogee_time": 27.818871505367827, "initial_stability_margin": 2.5396437257598428, "out_of_rail_stability_margin": 2.607477185496175, "apogee": 4185.934190536029, "out_of_rail_velocity": 28.847056568548133, "out_of_rail_time": 0.326619409553199, "t_final": 363.0754432554332, "x_impact": 1771.712588663648} +{"lateral_surface_wind": 3.664934149778371, "apogee_x": 447.1203827350303, "y_impact": 1718.5001982279302, "max_mach_number": 0.7500594042635403, "impact_velocity": -5.477998024795257, "apogee_y": -58.80781347734408, "frontal_surface_wind": 2.2779985323032177, "apogee_time": 24.33104334976461, "initial_stability_margin": 2.5641429689710384, "out_of_rail_stability_margin": 2.6430117381948444, "apogee": 2960.136959244296, "out_of_rail_velocity": 24.097421726811028, "out_of_rail_time": 0.3779671542900875, "t_final": 266.570685920219, "x_impact": 850.2805625508705} +{"lateral_surface_wind": 2.935814502394428, "apogee_x": 632.7636327529713, "y_impact": 3182.550567456702, "max_mach_number": 1.094103143969105, "impact_velocity": -5.376151335358933, "apogee_y": 127.80287820620087, "frontal_surface_wind": 2.6841644240554325, "apogee_time": 28.660434800903154, "initial_stability_margin": 2.6339053194508093, "out_of_rail_stability_margin": 2.700020257578945, "apogee": 4475.511694511025, "out_of_rail_velocity": 29.8543381930705, "out_of_rail_time": 0.31842968092587665, "t_final": 360.19094184518383, "x_impact": 2047.6313269426244} +{"lateral_surface_wind": 3.7072392841519712, "apogee_x": 382.8012350813962, "y_impact": 2585.1727309343505, "max_mach_number": 0.9116864003748163, "impact_velocity": -5.353377195631928, "apogee_y": -149.03574709094175, "frontal_surface_wind": 3.0269526965483453, "apogee_time": 26.79898599991271, "initial_stability_margin": 2.5879125216040206, "out_of_rail_stability_margin": 2.658444093823929, "apogee": 3755.9146030136444, "out_of_rail_velocity": 26.763160051464205, "out_of_rail_time": 0.34622435439248167, "t_final": 323.1899501078661, "x_impact": 1075.1122828311381} +{"lateral_surface_wind": 4.3566481242470765, "apogee_x": 614.858697914399, "y_impact": 2493.7586637619675, "max_mach_number": 0.8410803964692372, "impact_velocity": -5.475490460200264, "apogee_y": -47.86985004146462, "frontal_surface_wind": 2.6619486907534604, "apogee_time": 25.947156707915298, "initial_stability_margin": 2.6075252402187377, "out_of_rail_stability_margin": 2.6786061203595755, "apogee": 3441.0603143067174, "out_of_rail_velocity": 25.648662666238398, "out_of_rail_time": 0.35868223679530364, "t_final": 297.6443423283605, "x_impact": 1240.1014019125107} +{"lateral_surface_wind": 4.539480695195916, "apogee_x": 584.5727159056468, "y_impact": 3289.4139326005384, "max_mach_number": 1.0531657679729287, "impact_velocity": -5.43733773146326, "apogee_y": -130.66234609739237, "frontal_surface_wind": 4.423693959644484, "apogee_time": 28.391656117559577, "initial_stability_margin": 2.6622504265376996, "out_of_rail_stability_margin": 2.724960025362533, "apogee": 4345.241476810242, "out_of_rail_velocity": 29.25225252563041, "out_of_rail_time": 0.3228920049806636, "t_final": 351.73426635207636, "x_impact": 1893.3791220633536} +{"lateral_surface_wind": 2.0105025760763184, "apogee_x": 436.1444671213887, "y_impact": 2645.3316572040376, "max_mach_number": 0.9543223676979996, "impact_velocity": -5.311824737077563, "apogee_y": 112.55243796909292, "frontal_surface_wind": 2.9838113293163118, "apogee_time": 27.286946261967316, "initial_stability_margin": 2.6019368518696426, "out_of_rail_stability_margin": 2.6714171798740542, "apogee": 3939.5634787457175, "out_of_rail_velocity": 27.489207120629217, "out_of_rail_time": 0.3391831556143475, "t_final": 324.51769906996725, "x_impact": 1786.332833729839} +{"lateral_surface_wind": 3.122268390445971, "apogee_x": 639.2584821877757, "y_impact": 2927.182084708036, "max_mach_number": 1.0284726350111486, "impact_velocity": -5.39808343350068, "apogee_y": 63.71485005796231, "frontal_surface_wind": 2.4647891483565485, "apogee_time": 28.099072332243804, "initial_stability_margin": 2.6349454042863867, "out_of_rail_stability_margin": 2.6998171284934105, "apogee": 4239.782625852302, "out_of_rail_velocity": 28.796382778628395, "out_of_rail_time": 0.3268290152891993, "t_final": 348.03975633708353, "x_impact": 1938.62786454787} +{"lateral_surface_wind": 3.8652725838448783, "apogee_x": 658.6513646214837, "y_impact": 3036.6531553737927, "max_mach_number": 0.9961992570162724, "impact_velocity": -5.416506622970861, "apogee_y": 16.48694607779548, "frontal_surface_wind": 2.8223631215132565, "apogee_time": 27.79476765808309, "initial_stability_margin": 2.6095527872501365, "out_of_rail_stability_margin": 2.676584669368502, "apogee": 4117.126488813729, "out_of_rail_velocity": 28.211951274039905, "out_of_rail_time": 0.3322896116632762, "t_final": 337.3608877237635, "x_impact": 1506.4752019619782} +{"lateral_surface_wind": 2.5306887333339927, "apogee_x": 341.7645741388758, "y_impact": 1807.7864968444649, "max_mach_number": 0.7649103295329678, "impact_velocity": -5.28137370205211, "apogee_y": -22.810965354399467, "frontal_surface_wind": 2.9604689487113487, "apogee_time": 24.399902568360176, "initial_stability_margin": 2.4794888483557225, "out_of_rail_stability_margin": 2.5548950136937325, "apogee": 3006.801166980979, "out_of_rail_velocity": 24.428589459365067, "out_of_rail_time": 0.3738224644869351, "t_final": 286.84508600656784, "x_impact": 1081.7806260798932} +{"lateral_surface_wind": 3.3419409344632705, "apogee_x": 292.4324268802112, "y_impact": 1298.6732770626172, "max_mach_number": 0.5674101231663228, "impact_velocity": -5.348660833473146, "apogee_y": -78.74198732907921, "frontal_surface_wind": 2.869430105921487, "apogee_time": 20.489145163262844, "initial_stability_margin": 2.619362505626644, "out_of_rail_stability_margin": 2.7039263747271787, "apogee": 2004.6461953806565, "out_of_rail_velocity": 20.97208704989779, "out_of_rail_time": 0.42367115275512135, "t_final": 225.2799057249511, "x_impact": 647.6738775002268} +{"lateral_surface_wind": 3.431718375217831, "apogee_x": 598.3632203097715, "y_impact": 2681.1743163524316, "max_mach_number": 0.9200559331193926, "impact_velocity": -5.333901304024397, "apogee_y": -0.8790266765275762, "frontal_surface_wind": 3.0070730319591887, "apogee_time": 26.878256602287, "initial_stability_margin": 2.6083984996343275, "out_of_rail_stability_margin": 2.6769000507947305, "apogee": 3785.6738621317313, "out_of_rail_velocity": 26.932628891403528, "out_of_rail_time": 0.344226151498367, "t_final": 324.68875761783823, "x_impact": 1622.8724308415594} +{"lateral_surface_wind": 4.844549412241039, "apogee_x": 226.2588817416654, "y_impact": 1282.039027928493, "max_mach_number": 0.5056753573775128, "impact_velocity": -5.3404233000975205, "apogee_y": -202.6428283205783, "frontal_surface_wind": 2.769462611355199, "apogee_time": 18.95330882936133, "initial_stability_margin": 2.5513393785455745, "out_of_rail_stability_margin": 2.644256314037658, "apogee": 1683.0047855657929, "out_of_rail_velocity": 19.717554176659476, "out_of_rail_time": 0.44714450762016644, "t_final": 210.046935517364, "x_impact": 250.4717702124865} +{"lateral_surface_wind": 3.2096433646656513, "apogee_x": 413.26226750621987, "y_impact": 2102.0892210847787, "max_mach_number": 0.8571943882521125, "impact_velocity": -5.323029161002915, "apogee_y": -68.41417786440002, "frontal_surface_wind": 3.0166849046374717, "apogee_time": 25.958822629872078, "initial_stability_margin": 2.5570165362658126, "out_of_rail_stability_margin": 2.6303089866392364, "apogee": 3482.6417807117964, "out_of_rail_velocity": 25.901844921818324, "out_of_rail_time": 0.35558546469269015, "t_final": 303.0634130010577, "x_impact": 1243.9326177243765} +{"lateral_surface_wind": 1.665986365294183, "apogee_x": 285.92544799636346, "y_impact": 1725.0073889270102, "max_mach_number": 0.7596187917409903, "impact_velocity": -5.418902428541945, "apogee_y": 45.46642883641842, "frontal_surface_wind": 3.3302580779247366, "apogee_time": 24.533027286500367, "initial_stability_margin": 2.637077972059411, "out_of_rail_stability_margin": 2.709584909414623, "apogee": 3022.8863348480754, "out_of_rail_velocity": 24.370801987781974, "out_of_rail_time": 0.3744339097543977, "t_final": 275.6697205716965, "x_impact": 1151.5569919162615} +{"lateral_surface_wind": 3.658223720224573, "apogee_x": 477.09203135690757, "y_impact": 2480.336770256644, "max_mach_number": 0.9617263928623848, "impact_velocity": -5.361002946801449, "apogee_y": -82.53059385699017, "frontal_surface_wind": 2.2887592377036103, "apogee_time": 27.372332311377352, "initial_stability_margin": 2.5309438736244645, "out_of_rail_stability_margin": 2.5996432224260895, "apogee": 3968.1537612098905, "out_of_rail_velocity": 27.608360971779174, "out_of_rail_time": 0.3383986868190324, "t_final": 334.79668595758875, "x_impact": 1279.2736511120124} +{"lateral_surface_wind": 5.283207257663233, "apogee_x": 470.717610279177, "y_impact": 3492.1614731581394, "max_mach_number": 1.022324080000377, "impact_velocity": -5.219403479448477, "apogee_y": -290.98849846610244, "frontal_surface_wind": 4.733877304973797, "apogee_time": 27.515410586025098, "initial_stability_margin": 2.5158029728677636, "out_of_rail_stability_margin": 2.582685150857816, "apogee": 4096.025380148403, "out_of_rail_velocity": 28.6773035626601, "out_of_rail_time": 0.3277651810584141, "t_final": 345.3378987093201, "x_impact": 1872.7032190456107} +{"lateral_surface_wind": 3.8636078370849405, "apogee_x": 736.9450608819163, "y_impact": 3347.125420197283, "max_mach_number": 0.9648762436418703, "impact_velocity": -5.444197925778939, "apogee_y": 105.40847154882088, "frontal_surface_wind": 3.430123139121534, "apogee_time": 27.58494368083935, "initial_stability_margin": 2.6362092073330006, "out_of_rail_stability_margin": 2.7025620450555023, "apogee": 4014.250882651602, "out_of_rail_velocity": 27.688069590850795, "out_of_rail_time": 0.3377367812338121, "t_final": 335.43315819028334, "x_impact": 1978.9189240564606} +{"lateral_surface_wind": 4.881057878483976, "apogee_x": 458.30418765663853, "y_impact": 3105.539466707057, "max_mach_number": 0.9697460230531678, "impact_velocity": -5.3348614592549035, "apogee_y": -264.9554605422432, "frontal_surface_wind": 4.0717883244803, "apogee_time": 27.405565782432262, "initial_stability_margin": 2.5635063733999632, "out_of_rail_stability_margin": 2.6317268473319997, "apogee": 3987.2474613470677, "out_of_rail_velocity": 27.72857199403102, "out_of_rail_time": 0.3371016837691315, "t_final": 335.9898089877414, "x_impact": 1607.3187085465781} +{"lateral_surface_wind": 2.4431017383159785, "apogee_x": 243.4498136937612, "y_impact": 1659.5811766795364, "max_mach_number": 0.7580881539345622, "impact_velocity": -5.433658100744072, "apogee_y": -87.65079974215976, "frontal_surface_wind": 3.0331527751739, "apogee_time": 24.532627418576777, "initial_stability_margin": 2.7049347413124996, "out_of_rail_stability_margin": 2.7789280736861106, "apogee": 3017.479417640039, "out_of_rail_velocity": 24.30847254250625, "out_of_rail_time": 0.3753357527966663, "t_final": 277.31866249183406, "x_impact": 939.3047648332873} +{"lateral_surface_wind": 4.70102649618487, "apogee_x": 534.3532535577518, "y_impact": 2862.3415003992623, "max_mach_number": 0.8520389460414378, "impact_velocity": -5.331232973475041, "apogee_y": -134.26161571948379, "frontal_surface_wind": 5.312459237315543, "apogee_time": 25.82891356207642, "initial_stability_margin": 2.5829775118582097, "out_of_rail_stability_margin": 2.6568940417799434, "apogee": 3437.834950625206, "out_of_rail_velocity": 25.772402881959593, "out_of_rail_time": 0.3570668194363709, "t_final": 295.4625295216571, "x_impact": 1552.2831626703003} +{"lateral_surface_wind": 2.1941456729523194, "apogee_x": 342.485177015278, "y_impact": 2504.9452216581067, "max_mach_number": 0.9094515614249633, "impact_velocity": -5.231136688685207, "apogee_y": -1.7552258981874989, "frontal_surface_wind": 2.8514865286777176, "apogee_time": 26.605385101193495, "initial_stability_margin": 2.583801930879412, "out_of_rail_stability_margin": 2.6552932785198, "apogee": 3714.452681597862, "out_of_rail_velocity": 26.758420716922203, "out_of_rail_time": 0.3467430938688605, "t_final": 330.12790646265586, "x_impact": 1661.8949556311106} +{"lateral_surface_wind": 4.28009890894986, "apogee_x": 560.5513705674624, "y_impact": 2725.34868865035, "max_mach_number": 0.8991212557885231, "impact_velocity": -5.413229749155709, "apogee_y": -129.3431951177594, "frontal_surface_wind": 2.123956951019069, "apogee_time": 26.574946831317863, "initial_stability_margin": 2.822254021646862, "out_of_rail_stability_margin": 2.888625255963961, "apogee": 3682.240206858533, "out_of_rail_velocity": 26.649541063923678, "out_of_rail_time": 0.34761432581084617, "t_final": 315.54019517149885, "x_impact": 1475.4025678773046} +{"lateral_surface_wind": 2.639175198874299, "apogee_x": 201.33706315043267, "y_impact": 1707.2331869344127, "max_mach_number": 0.6665245443659349, "impact_velocity": -5.247691793170692, "apogee_y": -101.26487475863566, "frontal_surface_wind": 4.157121809683725, "apogee_time": 22.517139375272745, "initial_stability_margin": 2.5325114352829368, "out_of_rail_stability_margin": 2.615777259158936, "apogee": 2494.3292612740306, "out_of_rail_velocity": 22.702831167523335, "out_of_rail_time": 0.396804318962887, "t_final": 262.28231052802096, "x_impact": 1027.1000276841671} +{"lateral_surface_wind": 4.234970070785376, "apogee_x": 608.2797811245515, "y_impact": 2089.806473392337, "max_mach_number": 0.7038061137062244, "impact_velocity": -5.5374081861371245, "apogee_y": 39.91325259222169, "frontal_surface_wind": 2.9933319327065706, "apogee_time": 23.369208271054514, "initial_stability_margin": 2.6724886418276537, "out_of_rail_stability_margin": 2.7492604062042174, "apogee": 2700.0256575791846, "out_of_rail_velocity": 23.41172639743917, "out_of_rail_time": 0.3866378628302101, "t_final": 260.8890389451951, "x_impact": 897.3937578634657} +{"lateral_surface_wind": 3.6041136156889024, "apogee_x": 581.5011336315649, "y_impact": 3147.457792078546, "max_mach_number": 1.0044299350021018, "impact_velocity": -5.4732563552112525, "apogee_y": 32.95826261545938, "frontal_surface_wind": 3.149036484753198, "apogee_time": 28.04305544276615, "initial_stability_margin": 2.67041059918226, "out_of_rail_stability_margin": 2.735650178430836, "apogee": 4187.982685149961, "out_of_rail_velocity": 28.379084990085495, "out_of_rail_time": 0.3309580908827057, "t_final": 342.9291709840794, "x_impact": 1456.513932266806} +{"lateral_surface_wind": 3.6927795657047153, "apogee_x": 482.3367626994567, "y_impact": 2082.6462308639093, "max_mach_number": 0.8212408384245815, "impact_velocity": -5.237937723522641, "apogee_y": -46.378042110761065, "frontal_surface_wind": 1.9819821566804356, "apogee_time": 25.337310866515466, "initial_stability_margin": 2.544956195911587, "out_of_rail_stability_margin": 2.620361372569035, "apogee": 3287.44445920648, "out_of_rail_velocity": 25.291182791646026, "out_of_rail_time": 0.36254676035458044, "t_final": 299.5223497033709, "x_impact": 963.8694399250385} +{"lateral_surface_wind": 4.1482579919769, "apogee_x": 569.283771815872, "y_impact": 3437.6137057614515, "max_mach_number": 1.0828104669802006, "impact_velocity": -5.282444575001124, "apogee_y": -71.00596248427675, "frontal_surface_wind": 2.3711590904399027, "apogee_time": 28.194397706906525, "initial_stability_margin": 2.5352923337937754, "out_of_rail_stability_margin": 2.601417502189739, "apogee": 4349.237154111854, "out_of_rail_velocity": 29.73521379197568, "out_of_rail_time": 0.3188640602683871, "t_final": 355.72209047063717, "x_impact": 1827.665525197347} +{"lateral_surface_wind": 3.4902382298226793, "apogee_x": 438.39609374045654, "y_impact": 2852.6014365923743, "max_mach_number": 0.9840516701531057, "impact_velocity": -5.227841356350513, "apogee_y": -96.97893428880839, "frontal_surface_wind": 3.4098839627633906, "apogee_time": 27.534004549394655, "initial_stability_margin": 2.4256767656599156, "out_of_rail_stability_margin": 2.495668927628682, "apogee": 4041.7826887594338, "out_of_rail_velocity": 27.96589556280143, "out_of_rail_time": 0.3348818197562499, "t_final": 338.70421847107997, "x_impact": 1698.88972378524} +{"lateral_surface_wind": 2.335213474857049, "apogee_x": 424.9218939775161, "y_impact": 3090.624888688978, "max_mach_number": 0.9298109009402217, "impact_velocity": -5.256398574995715, "apogee_y": 69.33845653959831, "frontal_surface_wind": 4.6227116402609525, "apogee_time": 26.89250945686288, "initial_stability_margin": 2.7072812508357336, "out_of_rail_stability_margin": 2.772990165640084, "apogee": 3813.1962689445095, "out_of_rail_velocity": 27.193834377257264, "out_of_rail_time": 0.342078231862872, "t_final": 337.67169719812756, "x_impact": 1785.4158025044237} +{"lateral_surface_wind": 4.852126261129411, "apogee_x": 464.15076184317553, "y_impact": 2479.123887623998, "max_mach_number": 0.7957282805146856, "impact_velocity": -5.334992699724636, "apogee_y": -200.10693491253556, "frontal_surface_wind": 2.756166342838852, "apogee_time": 24.88918447058735, "initial_stability_margin": 2.5386699366978203, "out_of_rail_stability_margin": 2.6172599576315183, "apogee": 3147.942320685126, "out_of_rail_velocity": 24.807003348668083, "out_of_rail_time": 0.3684511109875482, "t_final": 288.9648425973912, "x_impact": 987.7449724622328} +{"lateral_surface_wind": 3.767782047150975, "apogee_x": 329.88104045631576, "y_impact": 2257.454101604543, "max_mach_number": 0.8834921146574191, "impact_velocity": -5.425477318903591, "apogee_y": -207.3242663650452, "frontal_surface_wind": 1.835399857102736, "apogee_time": 26.403220706468172, "initial_stability_margin": 2.6571049274041947, "out_of_rail_stability_margin": 2.728094020334162, "apogee": 3620.7419866224323, "out_of_rail_velocity": 26.317168420309468, "out_of_rail_time": 0.3510060790214692, "t_final": 322.493489763406, "x_impact": 974.3744371152906} +{"lateral_surface_wind": 2.8586245783134463, "apogee_x": 230.92552937243957, "y_impact": 2352.8280441048064, "max_mach_number": 0.8546699395780862, "impact_velocity": -5.332310048688982, "apogee_y": -155.13692063609636, "frontal_surface_wind": 4.136297303545231, "apogee_time": 25.95695030479741, "initial_stability_margin": 2.6931760923411168, "out_of_rail_stability_margin": 2.7627256516019143, "apogee": 3475.48380100901, "out_of_rail_velocity": 25.89065789952126, "out_of_rail_time": 0.3558510021643142, "t_final": 299.2489724372865, "x_impact": 1191.8173675698279} +{"lateral_surface_wind": 3.3945465027038675, "apogee_x": 414.7749098305296, "y_impact": 2035.0528040095712, "max_mach_number": 0.7714638128945831, "impact_velocity": -5.373949485998083, "apogee_y": -56.399160753912255, "frontal_surface_wind": 2.6826580760800187, "apogee_time": 24.58883402978852, "initial_stability_margin": 2.5603747040659113, "out_of_rail_stability_margin": 2.633188576966405, "apogee": 3052.1859447078837, "out_of_rail_velocity": 24.563004886488827, "out_of_rail_time": 0.3715232106035275, "t_final": 286.33320299234254, "x_impact": 1095.156236111985} +{"lateral_surface_wind": 2.666638862848729, "apogee_x": 450.9447386952144, "y_impact": 3115.600383737373, "max_mach_number": 0.9182979025197948, "impact_velocity": -5.413104337561991, "apogee_y": 36.31724088536497, "frontal_surface_wind": 4.2625962790531915, "apogee_time": 27.03695108294636, "initial_stability_margin": 2.6330513661511477, "out_of_rail_stability_margin": 2.701345623204722, "apogee": 3816.772081479161, "out_of_rail_velocity": 26.902629980176755, "out_of_rail_time": 0.34510437219211987, "t_final": 334.97865781903675, "x_impact": 1671.2833542351616} +{"lateral_surface_wind": 3.774294619184483, "apogee_x": 331.6049444445823, "y_impact": 1264.2951507107061, "max_mach_number": 0.5918913258342416, "impact_velocity": -5.4662939772844314, "apogee_y": -97.17966047478762, "frontal_surface_wind": 2.0918221155209125, "apogee_time": 21.079063527252007, "initial_stability_margin": 2.5876887986519765, "out_of_rail_stability_margin": 2.67124864091888, "apogee": 2131.506783666866, "out_of_rail_velocity": 21.40294182421198, "out_of_rail_time": 0.41659667782664883, "t_final": 227.6261907759975, "x_impact": 527.5595936790182} +{"lateral_surface_wind": 3.1477328716435578, "apogee_x": 496.2818875893425, "y_impact": 2941.0170656948803, "max_mach_number": 0.9487993682504229, "impact_velocity": -5.485674872393623, "apogee_y": -8.157399026653026, "frontal_surface_wind": 3.303173776100577, "apogee_time": 27.546164334360967, "initial_stability_margin": 2.6915899129905787, "out_of_rail_stability_margin": 2.7576466406901865, "apogee": 3982.477167934691, "out_of_rail_velocity": 27.408150668095722, "out_of_rail_time": 0.3395757329511912, "t_final": 341.1300148420298, "x_impact": 1617.5628812770574} +{"lateral_surface_wind": 2.567307348780697, "apogee_x": 547.6914920266388, "y_impact": 3308.2608160032164, "max_mach_number": 1.0233636892073876, "impact_velocity": -5.349280998682996, "apogee_y": 133.6207399130361, "frontal_surface_wind": 4.201885344437412, "apogee_time": 28.061089105999407, "initial_stability_margin": 2.7088388390549336, "out_of_rail_stability_margin": 2.7726793189832546, "apogee": 4223.467230178108, "out_of_rail_velocity": 28.728333528141277, "out_of_rail_time": 0.3274033622759514, "t_final": 344.84477469024233, "x_impact": 2216.8371373554137} +{"lateral_surface_wind": 1.0498038347432492, "apogee_x": 391.99657003574237, "y_impact": 1416.720273311691, "max_mach_number": 0.7265896528879707, "impact_velocity": -5.2738611919334675, "apogee_y": 197.96246159810065, "frontal_surface_wind": 2.6531451605263587, "apogee_time": 23.679178752999075, "initial_stability_margin": 2.49715561929733, "out_of_rail_stability_margin": 2.5728395602540686, "apogee": 2806.6201580567968, "out_of_rail_velocity": 23.82112981074556, "out_of_rail_time": 0.3808404872874872, "t_final": 278.3749926316177, "x_impact": 1164.5158328058594} +{"lateral_surface_wind": 3.371250307377239, "apogee_x": 543.400213945556, "y_impact": 2426.522665478153, "max_mach_number": 0.8898501423104289, "impact_velocity": -5.240583683656528, "apogee_y": 36.39669326410009, "frontal_surface_wind": 2.0149381773667274, "apogee_time": 26.250089770298846, "initial_stability_margin": 2.5512315825965692, "out_of_rail_stability_margin": 2.620960454086116, "apogee": 3600.336975880541, "out_of_rail_velocity": 26.47059271925855, "out_of_rail_time": 0.34920490731035747, "t_final": 321.0339074257063, "x_impact": 1052.3068019664713} +{"lateral_surface_wind": 4.5650639946336655, "apogee_x": 609.4759538231764, "y_impact": 2330.49494804545, "max_mach_number": 0.83753192460234, "impact_velocity": -5.373827481971145, "apogee_y": -74.88243220876372, "frontal_surface_wind": 3.360705640496312, "apogee_time": 25.64646228166175, "initial_stability_margin": 2.538527192726453, "out_of_rail_stability_margin": 2.612385801142501, "apogee": 3375.928427113226, "out_of_rail_velocity": 25.57223174749776, "out_of_rail_time": 0.35935227124823055, "t_final": 293.9236103199511, "x_impact": 1229.3671087659811} +{"lateral_surface_wind": 3.780774261797584, "apogee_x": 660.5846716270787, "y_impact": 3679.536388036217, "max_mach_number": 1.149223858786038, "impact_velocity": -5.255313585908029, "apogee_y": 56.85797568986736, "frontal_surface_wind": 2.934588849980496, "apogee_time": 28.869440441281, "initial_stability_margin": 2.5995467314600176, "out_of_rail_stability_margin": 2.6646027042052314, "apogee": 4616.499527788619, "out_of_rail_velocity": 30.789857773191518, "out_of_rail_time": 0.3103757568930502, "t_final": 376.5872008604107, "x_impact": 1732.7561528749638} +{"lateral_surface_wind": 2.555280386809372, "apogee_x": 254.6102684235715, "y_impact": 1336.1940344135435, "max_mach_number": 0.5632201655569375, "impact_velocity": -5.5414916296492365, "apogee_y": -33.350974398998574, "frontal_surface_wind": 4.504800442521886, "apogee_time": 20.63307244106932, "initial_stability_margin": 2.630616778121751, "out_of_rail_stability_margin": 2.7125721741586717, "apogee": 2018.4307215363701, "out_of_rail_velocity": 20.92586438005104, "out_of_rail_time": 0.42483077774188766, "t_final": 220.21994981807836, "x_impact": 908.5004103650596} +{"lateral_surface_wind": 3.1072158442087674, "apogee_x": 417.9895307112224, "y_impact": 2150.9922069374875, "max_mach_number": 0.8122509785489082, "impact_velocity": -5.399248591281724, "apogee_y": -25.401643206641914, "frontal_surface_wind": 3.3413154481194884, "apogee_time": 25.330226905781796, "initial_stability_margin": 2.67173323986004, "out_of_rail_stability_margin": 2.7420700603711916, "apogee": 3271.2599524421303, "out_of_rail_velocity": 25.275502560783288, "out_of_rail_time": 0.3637601062995957, "t_final": 288.629686701064, "x_impact": 1191.4312853357374} +{"lateral_surface_wind": 1.222116568116617, "apogee_x": 569.155324545642, "y_impact": 1776.6757813400397, "max_mach_number": 0.8696917944794199, "impact_velocity": -5.456956880793782, "apogee_y": 251.80421691845973, "frontal_surface_wind": 2.5783130973954522, "apogee_time": 26.362468308447774, "initial_stability_margin": 2.6034734687730468, "out_of_rail_stability_margin": 2.670019932452646, "apogee": 3585.6225614012506, "out_of_rail_velocity": 26.19493124273199, "out_of_rail_time": 0.3522411133673425, "t_final": 300.1540330536979, "x_impact": 1582.8148072616182} +{"lateral_surface_wind": 4.755798575276004, "apogee_x": 362.9413436981515, "y_impact": 1906.7991230466764, "max_mach_number": 0.6171732186953752, "impact_velocity": -5.2859028467341345, "apogee_y": -160.36344638133767, "frontal_surface_wind": 4.21741224969617, "apogee_time": 21.49017766071318, "initial_stability_margin": 2.5188969112037016, "out_of_rail_stability_margin": 2.60116302374581, "apogee": 2237.4784240295435, "out_of_rail_velocity": 21.870647864887967, "out_of_rail_time": 0.40906353600746953, "t_final": 243.32680057353954, "x_impact": 787.651741261115} +{"lateral_surface_wind": 1.9173596122228131, "apogee_x": 273.5789304074808, "y_impact": 1838.0661945621634, "max_mach_number": 0.8072007998655596, "impact_velocity": -5.435001543106486, "apogee_y": -20.168126282760923, "frontal_surface_wind": 3.1921562543750692, "apogee_time": 25.31721504713958, "initial_stability_margin": 2.7382036746145624, "out_of_rail_stability_margin": 2.8082712532931438, "apogee": 3262.369216132959, "out_of_rail_velocity": 25.140432689079198, "out_of_rail_time": 0.36404240261507287, "t_final": 290.3642673454609, "x_impact": 1242.985248765884} +{"lateral_surface_wind": 3.177199993109492, "apogee_x": 590.6536030976248, "y_impact": 2593.6533826097116, "max_mach_number": 0.8716763046037233, "impact_velocity": -5.336787760873353, "apogee_y": 81.73576664382054, "frontal_surface_wind": 3.2748403671215764, "apogee_time": 26.142033003763924, "initial_stability_margin": 2.6226770099419863, "out_of_rail_stability_margin": 2.6922627224318965, "apogee": 3542.661388694132, "out_of_rail_velocity": 26.18007791647133, "out_of_rail_time": 0.35237029062366093, "t_final": 312.8951713649187, "x_impact": 1529.5558734359201} +{"lateral_surface_wind": 2.6728382542833558, "apogee_x": 254.5515221684704, "y_impact": 1893.201109100307, "max_mach_number": 0.7300212596308482, "impact_velocity": -5.293614367657715, "apogee_y": -82.90486611807019, "frontal_surface_wind": 4.1355583827750255, "apogee_time": 23.71491676646502, "initial_stability_margin": 2.6254149693279634, "out_of_rail_stability_margin": 2.7034474698380535, "apogee": 2816.0463311799085, "out_of_rail_velocity": 23.795845964767672, "out_of_rail_time": 0.38079066434799574, "t_final": 273.0380216249283, "x_impact": 1191.225225933649} +{"lateral_surface_wind": 2.575572902148907, "apogee_x": 264.31814188069956, "y_impact": 2027.9683129135608, "max_mach_number": 0.8014520513465301, "impact_velocity": -5.272284676644582, "apogee_y": -89.44839592171212, "frontal_surface_wind": 3.702838256494765, "apogee_time": 25.01470061036544, "initial_stability_margin": 2.502311352068459, "out_of_rail_stability_margin": 2.5801384658446085, "apogee": 3191.1263293411052, "out_of_rail_velocity": 24.94160918446797, "out_of_rail_time": 0.366622780123819, "t_final": 295.32061247539787, "x_impact": 1340.3978901781165} +{"lateral_surface_wind": 4.810337997087701, "apogee_x": 529.1345540498204, "y_impact": 3417.1645053666666, "max_mach_number": 1.0467290684002815, "impact_velocity": -5.357490932917735, "apogee_y": -215.15321147952892, "frontal_surface_wind": 4.155097414773674, "apogee_time": 28.18336556389359, "initial_stability_margin": 2.6764173877034447, "out_of_rail_stability_margin": 2.742920313584001, "apogee": 4287.46128294529, "out_of_rail_velocity": 29.073623137703507, "out_of_rail_time": 0.32464848926706136, "t_final": 350.50890075316687, "x_impact": 1838.6669914885135} +{"lateral_surface_wind": 2.7082695016046268, "apogee_x": 197.7264711342458, "y_impact": 1768.5354958207536, "max_mach_number": 0.6966348269496292, "impact_velocity": -5.467837718944739, "apogee_y": -128.15493532576818, "frontal_surface_wind": 4.11244255614343, "apogee_time": 23.335451419650198, "initial_stability_margin": 2.6671881121548484, "out_of_rail_stability_margin": 2.742785005156229, "apogee": 2686.4065987740983, "out_of_rail_velocity": 23.2754693763973, "out_of_rail_time": 0.38831325115729853, "t_final": 266.1394494426253, "x_impact": 1083.3305343596342} +{"lateral_surface_wind": 4.574970756578898, "apogee_x": 372.91990107887153, "y_impact": 2073.7574290491066, "max_mach_number": 0.7268921323772733, "impact_velocity": -5.342546157238792, "apogee_y": -200.57223715402753, "frontal_surface_wind": 4.386980260623406, "apogee_time": 23.62840017865833, "initial_stability_margin": 2.531732862158238, "out_of_rail_stability_margin": 2.612638275419145, "apogee": 2790.772216141053, "out_of_rail_velocity": 23.706418120266463, "out_of_rail_time": 0.3821476638885729, "t_final": 272.30354189478953, "x_impact": 1014.0179972750577} +{"lateral_surface_wind": 3.242110926597051, "apogee_x": 267.43510670029065, "y_impact": 2645.1355237859325, "max_mach_number": 0.9969069162648393, "impact_velocity": -5.442305267419509, "apogee_y": -201.22264597240772, "frontal_surface_wind": 3.2105912175149216, "apogee_time": 27.93013301953807, "initial_stability_margin": 2.643157877292683, "out_of_rail_stability_margin": 2.7110024354227535, "apogee": 4152.14020241949, "out_of_rail_velocity": 28.169696273879296, "out_of_rail_time": 0.33256613838724364, "t_final": 333.1797212664828, "x_impact": 1332.7400650093869} +{"lateral_surface_wind": 2.675551357622996, "apogee_x": 422.56555608194356, "y_impact": 2730.038629170683, "max_mach_number": 0.8961887511787436, "impact_velocity": -5.399953217587105, "apogee_y": 11.620587297740236, "frontal_surface_wind": 4.133803624221042, "apogee_time": 26.580526402840615, "initial_stability_margin": 2.6596945918629356, "out_of_rail_stability_margin": 2.7289197705580053, "apogee": 3680.3853991962096, "out_of_rail_velocity": 26.557856476626387, "out_of_rail_time": 0.34855058652282356, "t_final": 319.3164197594143, "x_impact": 1810.3345351408068} +{"lateral_surface_wind": 1.7232522469394187, "apogee_x": 86.57506327254542, "y_impact": 837.2279863759902, "max_mach_number": 0.49594992186220244, "impact_velocity": -5.400875445062728, "apogee_y": -69.54977828396613, "frontal_surface_wind": 3.300989416576087, "apogee_time": 18.90031042852762, "initial_stability_margin": 2.8002442095248075, "out_of_rail_stability_margin": 2.8907454637982846, "apogee": 1669.1962594514798, "out_of_rail_velocity": 19.595733566621107, "out_of_rail_time": 0.45025297308150886, "t_final": 203.51526658710608, "x_impact": 512.7508721569092} +{"lateral_surface_wind": 3.204418729961795, "apogee_x": 364.27418305520655, "y_impact": 1538.9131554108621, "max_mach_number": 0.6332410416867227, "impact_velocity": -5.438667710776041, "apogee_y": -31.110200613208693, "frontal_surface_wind": 3.2482117894949485, "apogee_time": 22.012730956262807, "initial_stability_margin": 2.5880936935376786, "out_of_rail_stability_margin": 2.670639338168283, "apogee": 2350.2240572980627, "out_of_rail_velocity": 22.138828877605505, "out_of_rail_time": 0.40506081670704785, "t_final": 242.97072360606083, "x_impact": 846.8496958473787} +{"lateral_surface_wind": 3.258921076232997, "apogee_x": 463.0604370385062, "y_impact": 2581.075315859727, "max_mach_number": 0.912278460539635, "impact_velocity": -5.28005084946257, "apogee_y": -21.97376995836362, "frontal_surface_wind": 2.8458801329396795, "apogee_time": 26.66512942990573, "initial_stability_margin": 2.5928008639220326, "out_of_rail_stability_margin": 2.663960567745098, "apogee": 3730.139112771743, "out_of_rail_velocity": 26.785419928316482, "out_of_rail_time": 0.34600124502854146, "t_final": 319.9653740706663, "x_impact": 1461.0053523283837} +{"lateral_surface_wind": 2.419116717003515, "apogee_x": 298.16729764670157, "y_impact": 3044.5494252346502, "max_mach_number": 0.9765628439325258, "impact_velocity": -5.265070758156308, "apogee_y": -46.54957942989374, "frontal_surface_wind": 4.579362312775893, "apogee_time": 27.497395119370758, "initial_stability_margin": 2.61868011953851, "out_of_rail_stability_margin": 2.6842207400916616, "apogee": 4025.7328977277216, "out_of_rail_velocity": 27.94070128946958, "out_of_rail_time": 0.33473862004686256, "t_final": 340.99717728864556, "x_impact": 1679.8355180089868} +{"lateral_surface_wind": 4.1667036229377326, "apogee_x": 584.5827690033274, "y_impact": 2724.970317509106, "max_mach_number": 0.8632764306976225, "impact_velocity": -5.409625645139554, "apogee_y": -23.343122363870567, "frontal_surface_wind": 3.087650964472235, "apogee_time": 26.110760244964784, "initial_stability_margin": 2.60983713145674, "out_of_rail_stability_margin": 2.683337313339261, "apogee": 3520.15361905143, "out_of_rail_velocity": 25.99171407778338, "out_of_rail_time": 0.35486345345002485, "t_final": 313.91829476750024, "x_impact": 1100.5003935932498} +{"lateral_surface_wind": 4.7079798339295165, "apogee_x": 278.6298564080252, "y_impact": 1809.709745600041, "max_mach_number": 0.6628070987630311, "impact_velocity": -5.333514137505738, "apogee_y": -254.85877422849546, "frontal_surface_wind": 4.243922609327896, "apogee_time": 22.446262947130315, "initial_stability_margin": 2.586382948596373, "out_of_rail_stability_margin": 2.666762161402572, "apogee": 2471.9476628443967, "out_of_rail_velocity": 22.6560146042778, "out_of_rail_time": 0.3971081078878966, "t_final": 255.44166575536684, "x_impact": 808.012390223267} +{"lateral_surface_wind": 4.801146157924523, "apogee_x": 396.0152261709813, "y_impact": 2267.922011607994, "max_mach_number": 0.7000490854460343, "impact_velocity": -5.368568614143474, "apogee_y": -184.30683201239054, "frontal_surface_wind": 5.2221517438904455, "apogee_time": 23.1599664640527, "initial_stability_margin": 2.551222988565357, "out_of_rail_stability_margin": 2.6292920462297644, "apogee": 2657.6535395898377, "out_of_rail_velocity": 23.301878142146847, "out_of_rail_time": 0.3878580798121074, "t_final": 262.52462086625223, "x_impact": 1112.2357983223628} +{"lateral_surface_wind": 2.5065942743997933, "apogee_x": 437.8287223981141, "y_impact": 2892.1800445181916, "max_mach_number": 0.9123838192148466, "impact_velocity": -5.481737434140503, "apogee_y": 31.16356998521223, "frontal_surface_wind": 4.5320712732374595, "apogee_time": 27.058942164469613, "initial_stability_margin": 2.78149430096868, "out_of_rail_stability_margin": 2.8469519793228177, "apogee": 3813.237064741396, "out_of_rail_velocity": 26.85083031619545, "out_of_rail_time": 0.3451838273398605, "t_final": 323.0571403974312, "x_impact": 1737.4122731901007} +{"lateral_surface_wind": 3.53550418193619, "apogee_x": 525.4349896771467, "y_impact": 2485.519934973577, "max_mach_number": 0.961707777336973, "impact_velocity": -5.331433170089991, "apogee_y": -52.80910418450278, "frontal_surface_wind": 1.7104135970907126, "apogee_time": 27.25348753424913, "initial_stability_margin": 2.450789981491505, "out_of_rail_stability_margin": 2.5218768577480732, "apogee": 3941.413882687414, "out_of_rail_velocity": 27.56880835807902, "out_of_rail_time": 0.33822542165675756, "t_final": 328.85355669532584, "x_impact": 1126.536048780056} +{"lateral_surface_wind": 4.3349636350360905, "apogee_x": 554.983347636827, "y_impact": 3220.637197840383, "max_mach_number": 1.0038681931877476, "impact_velocity": -5.309096085236599, "apogee_y": -105.1479102976792, "frontal_surface_wind": 2.6971177196452367, "apogee_time": 27.72723055980883, "initial_stability_margin": 2.5727925951376953, "out_of_rail_stability_margin": 2.6400276643729335, "apogee": 4116.258023608742, "out_of_rail_velocity": 28.357404635818604, "out_of_rail_time": 0.33094973960881174, "t_final": 349.0345988241537, "x_impact": 1512.6235990939206} +{"lateral_surface_wind": 4.364337019692114, "apogee_x": 562.3831100398116, "y_impact": 2740.714723801298, "max_mach_number": 0.8446038980522294, "impact_velocity": -5.379135587399855, "apogee_y": -109.54475713249228, "frontal_surface_wind": 4.1254899768370725, "apogee_time": 25.8403777669325, "initial_stability_margin": 2.702243766639886, "out_of_rail_stability_margin": 2.772600930650117, "apogee": 3427.928663099078, "out_of_rail_velocity": 25.718204662101552, "out_of_rail_time": 0.3575744078611582, "t_final": 305.2584286267337, "x_impact": 1610.5047932060897} +{"lateral_surface_wind": 1.8155162299378005, "apogee_x": 412.0595364275673, "y_impact": 2466.7242265854043, "max_mach_number": 0.9075550844043756, "impact_velocity": -5.21049478749217, "apogee_y": 102.02489757939469, "frontal_surface_wind": 3.251158294171713, "apogee_time": 26.443935861912333, "initial_stability_margin": 2.3842235839135433, "out_of_rail_stability_margin": 2.4584850336121993, "apogee": 3677.9957636466183, "out_of_rail_velocity": 26.68463218645425, "out_of_rail_time": 0.34711860765903113, "t_final": 331.8370783898201, "x_impact": 1664.2635627483444} +{"lateral_surface_wind": 3.572730632195239, "apogee_x": 501.4677249793548, "y_impact": 2861.524691678086, "max_mach_number": 0.9178124970889913, "impact_velocity": -5.3761182204565925, "apogee_y": -13.450220153393339, "frontal_surface_wind": 3.184597551791234, "apogee_time": 26.88790556874959, "initial_stability_margin": 2.643678284128461, "out_of_rail_stability_margin": 2.711627819177894, "apogee": 3785.711535621671, "out_of_rail_velocity": 26.92961165254647, "out_of_rail_time": 0.3451238270198537, "t_final": 332.0259548194881, "x_impact": 1249.3401096212635} +{"lateral_surface_wind": 3.5895484239705464, "apogee_x": 389.9612480027067, "y_impact": 2358.67632122753, "max_mach_number": 0.8179754106374714, "impact_velocity": -5.35390112174488, "apogee_y": -125.57343024045194, "frontal_surface_wind": 3.4968911509773792, "apogee_time": 25.29094914829534, "initial_stability_margin": 2.7131405969052196, "out_of_rail_stability_margin": 2.786048222171217, "apogee": 3272.3761866666146, "out_of_rail_velocity": 25.27448591582177, "out_of_rail_time": 0.3628751621709379, "t_final": 297.84423103146804, "x_impact": 1350.9351995759782} +{"lateral_surface_wind": 2.379514656445856, "apogee_x": 484.9332496087104, "y_impact": 2226.923185854036, "max_mach_number": 0.8713778763752605, "impact_velocity": -5.383122413010916, "apogee_y": 93.16522926535045, "frontal_surface_wind": 3.0832891303066354, "apogee_time": 26.24917247176152, "initial_stability_margin": 2.605400948547016, "out_of_rail_stability_margin": 2.675997509769154, "apogee": 3566.473356450117, "out_of_rail_velocity": 26.165574146473592, "out_of_rail_time": 0.35289417427181985, "t_final": 304.723765231983, "x_impact": 1413.0210831190532} +{"lateral_surface_wind": 4.887972258605299, "apogee_x": 430.428209924929, "y_impact": 2654.167694140981, "max_mach_number": 0.7891740193815702, "impact_velocity": -5.4581368302171285, "apogee_y": -228.2893816571652, "frontal_surface_wind": 5.140972715846334, "apogee_time": 24.887124005760185, "initial_stability_margin": 2.699224554117616, "out_of_rail_stability_margin": 2.7713253926849397, "apogee": 3135.7662311724207, "out_of_rail_velocity": 24.815784235659365, "out_of_rail_time": 0.36843629486034235, "t_final": 290.5032677232307, "x_impact": 1357.0470404754342} +{"lateral_surface_wind": 3.2510480285071677, "apogee_x": 368.57941830423135, "y_impact": 2321.8880956673247, "max_mach_number": 0.8420035282943593, "impact_velocity": -5.418186931045389, "apogee_y": -91.66402866454851, "frontal_surface_wind": 3.6386478610558575, "apogee_time": 25.76347992956344, "initial_stability_margin": 2.669363649226116, "out_of_rail_stability_margin": 2.741390718637899, "apogee": 3412.6957353491794, "out_of_rail_velocity": 25.67503867153628, "out_of_rail_time": 0.3584409676189778, "t_final": 300.1590990385541, "x_impact": 1321.7268064630844} +{"lateral_surface_wind": 3.4731109229217294, "apogee_x": 469.11978370342683, "y_impact": 2568.80696773578, "max_mach_number": 0.9129554824591114, "impact_velocity": -5.37044829306572, "apogee_y": -78.96585862694916, "frontal_surface_wind": 2.5801358160488728, "apogee_time": 26.79640599715538, "initial_stability_margin": 2.7164981468291978, "out_of_rail_stability_margin": 2.7832732089957157, "apogee": 3758.5941845395787, "out_of_rail_velocity": 26.873558678437078, "out_of_rail_time": 0.3453110471442775, "t_final": 322.5861244349031, "x_impact": 1499.8854661007258} +{"lateral_surface_wind": 3.526952814593711, "apogee_x": 759.6994758160706, "y_impact": 2554.1685932475284, "max_mach_number": 0.8908314990591599, "impact_velocity": -5.282592611730465, "apogee_y": 118.29053133189596, "frontal_surface_wind": 1.727978106698861, "apogee_time": 26.374163765542566, "initial_stability_margin": 2.5450222480984186, "out_of_rail_stability_margin": 2.6143009129587997, "apogee": 3620.783505315129, "out_of_rail_velocity": 26.479586559334532, "out_of_rail_time": 0.3491857579019327, "t_final": 322.669664589113, "x_impact": 1307.4096112161578} +{"lateral_surface_wind": 3.465765031854186, "apogee_x": 638.2665956477858, "y_impact": 2250.09777035357, "max_mach_number": 0.8338671762545226, "impact_velocity": -5.306789048184778, "apogee_y": 73.02665563054626, "frontal_surface_wind": 1.8476409926113433, "apogee_time": 25.453399924489194, "initial_stability_margin": 2.6059697027304725, "out_of_rail_stability_margin": 2.680527610064082, "apogee": 3330.8437207720913, "out_of_rail_velocity": 25.510221761343832, "out_of_rail_time": 0.36009555164907175, "t_final": 304.3926305730375, "x_impact": 1076.2495759496921} +{"lateral_surface_wind": 4.223931813069628, "apogee_x": 412.7368482582427, "y_impact": 3010.1019336386253, "max_mach_number": 0.9492951184459933, "impact_velocity": -5.363292001189534, "apogee_y": -209.6537983751081, "frontal_surface_wind": 4.269134011597261, "apogee_time": 27.29815925232366, "initial_stability_margin": 2.6388005094078486, "out_of_rail_stability_margin": 2.704632006999692, "apogee": 3928.7571993435517, "out_of_rail_velocity": 27.437284776568617, "out_of_rail_time": 0.3394602874826203, "t_final": 328.5455536365843, "x_impact": 1637.329486790102} +{"lateral_surface_wind": 4.9464977661233664, "apogee_x": 300.15669845257435, "y_impact": 2056.6878949966563, "max_mach_number": 0.6618914818845998, "impact_velocity": -5.268593614183279, "apogee_y": -257.1211702131012, "frontal_surface_wind": 5.084686137384292, "apogee_time": 22.31229422524794, "initial_stability_margin": 2.6405935246566936, "out_of_rail_stability_margin": 2.7207965673609538, "apogee": 2446.9945618207007, "out_of_rail_velocity": 22.653506066651936, "out_of_rail_time": 0.3975400711421847, "t_final": 254.85786508917687, "x_impact": 934.8477413189737} +{"lateral_surface_wind": 4.799248200288131, "apogee_x": 783.1947054931477, "y_impact": 3392.305557430546, "max_mach_number": 0.9641449747202469, "impact_velocity": -5.403430220124138, "apogee_y": -0.44096258345813677, "frontal_surface_wind": 4.1679014964986525, "apogee_time": 27.246778668618195, "initial_stability_margin": 2.630651418792198, "out_of_rail_stability_margin": 2.6950850640475994, "apogee": 3939.7264241820913, "out_of_rail_velocity": 27.743646465878772, "out_of_rail_time": 0.3368872909391241, "t_final": 334.02672792116033, "x_impact": 1971.4563710936127} +{"lateral_surface_wind": 3.0497337019909105, "apogee_x": 507.55041945510766, "y_impact": 2470.055174762187, "max_mach_number": 0.9119666307399014, "impact_velocity": -5.304625339528465, "apogee_y": 2.5259639336133843, "frontal_surface_wind": 2.5539909543252284, "apogee_time": 26.766652005170595, "initial_stability_margin": 2.64537766170419, "out_of_rail_stability_margin": 2.715423505337729, "apogee": 3749.3205363123366, "out_of_rail_velocity": 26.79794189571429, "out_of_rail_time": 0.3460326896213459, "t_final": 324.0394117197845, "x_impact": 1553.9266144963442} +{"lateral_surface_wind": 2.416041452334598, "apogee_x": 366.04673269731944, "y_impact": 1835.0814597235208, "max_mach_number": 0.7646266688929048, "impact_velocity": -5.28762581873071, "apogee_y": 18.21695072835545, "frontal_surface_wind": 3.054751309339046, "apogee_time": 24.328115777219708, "initial_stability_margin": 2.5546625643042304, "out_of_rail_stability_margin": 2.6306830318846277, "apogee": 2993.434051831223, "out_of_rail_velocity": 24.4168664218967, "out_of_rail_time": 0.3737305820584968, "t_final": 284.50420203369845, "x_impact": 1102.061627504594} +{"lateral_surface_wind": 1.1755412488364911, "apogee_x": 229.06323909080115, "y_impact": 1410.4177083919371, "max_mach_number": 0.790979811421843, "impact_velocity": -5.3072716903839465, "apogee_y": 36.903799881882904, "frontal_surface_wind": 2.5998788638223154, "apogee_time": 24.8288466309658, "initial_stability_margin": 2.571104516441069, "out_of_rail_stability_margin": 2.645317750094469, "apogee": 3142.3672937000565, "out_of_rail_velocity": 24.865056050283908, "out_of_rail_time": 0.36770058998288113, "t_final": 297.23223548864456, "x_impact": 1096.7264283765146} +{"lateral_surface_wind": 5.063408547073825, "apogee_x": 348.6092324392742, "y_impact": 2711.8046920590746, "max_mach_number": 0.8315860075438215, "impact_velocity": -5.342894990656672, "apogee_y": -329.78054759969115, "frontal_surface_wind": 4.968276074393529, "apogee_time": 25.447690947938533, "initial_stability_margin": 2.6543856611364216, "out_of_rail_stability_margin": 2.729095517040938, "apogee": 3324.73928122727, "out_of_rail_velocity": 25.43099366444244, "out_of_rail_time": 0.3610380904904329, "t_final": 301.4491562420939, "x_impact": 1341.2661518991047} +{"lateral_surface_wind": 2.3530039812421153, "apogee_x": 606.9047477281716, "y_impact": 2547.9632104935904, "max_mach_number": 0.9066557246133927, "impact_velocity": -5.395940499903602, "apogee_y": 189.4645890665936, "frontal_surface_wind": 3.1035679669642238, "apogee_time": 26.812539717479854, "initial_stability_margin": 2.6068716326309875, "out_of_rail_stability_margin": 2.6771287991662835, "apogee": 3746.13357987821, "out_of_rail_velocity": 26.700913701410514, "out_of_rail_time": 0.34706283235099344, "t_final": 321.25915155956767, "x_impact": 1657.4108301582687} +{"lateral_surface_wind": 4.180038427274532, "apogee_x": 628.3523360230631, "y_impact": 3051.892756215406, "max_mach_number": 0.9567167411175718, "impact_velocity": -5.340947918044078, "apogee_y": -50.53250021496243, "frontal_surface_wind": 2.3146746092451664, "apogee_time": 27.256897091375208, "initial_stability_margin": 2.6090566247537437, "out_of_rail_stability_margin": 2.67843358524585, "apogee": 3930.283872475981, "out_of_rail_velocity": 27.504367357696758, "out_of_rail_time": 0.33883504967541966, "t_final": 330.844002024884, "x_impact": 1676.7515747152054} +{"lateral_surface_wind": 2.876251531557852, "apogee_x": 416.425567344904, "y_impact": 2702.4219305181446, "max_mach_number": 0.8948384031347382, "impact_velocity": -5.393528398188064, "apogee_y": -33.20999446196376, "frontal_surface_wind": 3.996759261966174, "apogee_time": 26.542928413998787, "initial_stability_margin": 2.4896003053785796, "out_of_rail_stability_margin": 2.5639353470506223, "apogee": 3668.489081296794, "out_of_rail_velocity": 26.43740068481115, "out_of_rail_time": 0.35002395382159013, "t_final": 321.5463384753121, "x_impact": 1814.6415672291075} +{"lateral_surface_wind": 4.9781411318741275, "apogee_x": 449.58635601463146, "y_impact": 2779.4082972158926, "max_mach_number": 0.8506881797675085, "impact_velocity": -5.426983088125906, "apogee_y": -250.36813978516773, "frontal_surface_wind": 5.053709937967791, "apogee_time": 25.884795133652577, "initial_stability_margin": 2.525797280881734, "out_of_rail_stability_margin": 2.600362478137971, "apogee": 3446.1175511452243, "out_of_rail_velocity": 25.731448535108083, "out_of_rail_time": 0.3576724530877091, "t_final": 298.486521005377, "x_impact": 1474.245215119225} +{"lateral_surface_wind": 3.1727583058281263, "apogee_x": 509.44333972631784, "y_impact": 3164.3814928916877, "max_mach_number": 1.0381399787611694, "impact_velocity": -5.339898795755372, "apogee_y": 9.654462749491657, "frontal_surface_wind": 3.2791437844569393, "apogee_time": 27.99899134932148, "initial_stability_margin": 2.546230744846051, "out_of_rail_stability_margin": 2.6144589427185005, "apogee": 4234.596046539211, "out_of_rail_velocity": 28.910029684321053, "out_of_rail_time": 0.32586816070563807, "t_final": 355.1134793190372, "x_impact": 1724.5002737525915} +{"lateral_surface_wind": 3.3076152091533086, "apogee_x": 600.6378672525483, "y_impact": 2585.8092962266605, "max_mach_number": 0.8756008836260984, "impact_velocity": -5.431718533597732, "apogee_y": 75.40957884921075, "frontal_surface_wind": 2.7891364147983366, "apogee_time": 26.3274690115876, "initial_stability_margin": 2.679854258172151, "out_of_rail_stability_margin": 2.7497355665837433, "apogee": 3587.480646940856, "out_of_rail_velocity": 26.224798556553445, "out_of_rail_time": 0.3520046005003867, "t_final": 311.3502464871489, "x_impact": 1561.1007500373955} +{"lateral_surface_wind": 3.780449901858658, "apogee_x": 548.8507303711805, "y_impact": 1660.1435917205126, "max_mach_number": 0.7051814983572907, "impact_velocity": -5.2768569788747355, "apogee_y": 10.677377752730614, "frontal_surface_wind": 2.080677335610736, "apogee_time": 23.182124276763247, "initial_stability_margin": 2.5412897182092924, "out_of_rail_stability_margin": 2.6213772424996336, "apogee": 2671.2160512847227, "out_of_rail_velocity": 23.4254756112198, "out_of_rail_time": 0.3877244089299242, "t_final": 255.76371756505782, "x_impact": 900.3019485954655} +{"lateral_surface_wind": 4.45377392042594, "apogee_x": 394.54092023104334, "y_impact": 2386.00691519864, "max_mach_number": 0.8964745670739478, "impact_velocity": -5.374015968334413, "apogee_y": -242.85431687343836, "frontal_surface_wind": 3.506857502508216, "apogee_time": 26.528488079523726, "initial_stability_margin": 2.579724155142104, "out_of_rail_stability_margin": 2.6517900553806655, "apogee": 3669.1364828777364, "out_of_rail_velocity": 26.511625386062473, "out_of_rail_time": 0.3490544262783374, "t_final": 314.1314018396868, "x_impact": 1083.9396539266525} +{"lateral_surface_wind": 4.017858706486002, "apogee_x": 312.5402939219618, "y_impact": 3077.8360861960523, "max_mach_number": 1.0138702435170706, "impact_velocity": -5.503627724389089, "apogee_y": -276.18456141006743, "frontal_surface_wind": 4.463621465262576, "apogee_time": 28.237273782879747, "initial_stability_margin": 2.7473315658155872, "out_of_rail_stability_margin": 2.810839724802553, "apogee": 4246.744337453045, "out_of_rail_velocity": 28.52563522368014, "out_of_rail_time": 0.3295525054716337, "t_final": 334.46531691975053, "x_impact": 1617.544545262205} +{"lateral_surface_wind": 2.8340543146324197, "apogee_x": 548.133312441742, "y_impact": 2656.946548832517, "max_mach_number": 0.9504011930800221, "impact_velocity": -5.398725120654311, "apogee_y": 23.22963773082473, "frontal_surface_wind": 3.508948997885022, "apogee_time": 27.36334711690326, "initial_stability_margin": 2.686240608816443, "out_of_rail_stability_margin": 2.753467255622601, "apogee": 3945.641352874514, "out_of_rail_velocity": 27.455824453404823, "out_of_rail_time": 0.33954288520377646, "t_final": 323.4904851857466, "x_impact": 2008.4895377296798} +{"lateral_surface_wind": 2.697790794211759, "apogee_x": 269.33545028008206, "y_impact": 2233.238271357385, "max_mach_number": 0.8517713431251036, "impact_velocity": -5.397968508368638, "apogee_y": -117.75432724107084, "frontal_surface_wind": 3.614763029399191, "apogee_time": 25.997302815728332, "initial_stability_margin": 2.5257138504293346, "out_of_rail_stability_margin": 2.5979650585589553, "apogee": 3478.8088920178384, "out_of_rail_velocity": 25.799063335430564, "out_of_rail_time": 0.35723646713707924, "t_final": 309.4797116806392, "x_impact": 1503.0345452078896} +{"lateral_surface_wind": 4.1274250265449535, "apogee_x": 504.80258503907146, "y_impact": 2225.609541607327, "max_mach_number": 0.7380139913377773, "impact_velocity": -5.115043703956983, "apogee_y": -32.45848555376478, "frontal_surface_wind": 2.4072395914047267, "apogee_time": 23.579434638448564, "initial_stability_margin": 2.3446660731809907, "out_of_rail_stability_margin": 2.423890949443798, "apogee": 2803.146674328477, "out_of_rail_velocity": 23.975756433639205, "out_of_rail_time": 0.38004567638893216, "t_final": 283.90966607246406, "x_impact": 1019.8235096577872} +{"lateral_surface_wind": 4.565764080260827, "apogee_x": 489.8836683165989, "y_impact": 2710.866611904015, "max_mach_number": 0.9344075028358741, "impact_velocity": -5.317543043924863, "apogee_y": -216.28071878457942, "frontal_surface_wind": 2.2847652120315627, "apogee_time": 27.01396282557005, "initial_stability_margin": 2.6862400384917478, "out_of_rail_stability_margin": 2.755785376077868, "apogee": 3841.0346837581988, "out_of_rail_velocity": 27.144256703728225, "out_of_rail_time": 0.34328342828333025, "t_final": 324.87648164589797, "x_impact": 1267.9014774712316} +{"lateral_surface_wind": 1.0815329835300977, "apogee_x": 340.8315913738788, "y_impact": 1839.941441982384, "max_mach_number": 0.9160229858138564, "impact_velocity": -5.380490415959961, "apogee_y": 133.84320063878744, "frontal_surface_wind": 2.640370000549649, "apogee_time": 26.841893819323115, "initial_stability_margin": 2.523232912477131, "out_of_rail_stability_margin": 2.5934849050249578, "apogee": 3780.0007850406796, "out_of_rail_velocity": 26.872551274721378, "out_of_rail_time": 0.3453643178108936, "t_final": 323.3069911816135, "x_impact": 1442.41949557} +{"lateral_surface_wind": 3.2913573167877552, "apogee_x": 667.0672216270136, "y_impact": 3264.748201921647, "max_mach_number": 1.0367274789073835, "impact_velocity": -5.190203978125182, "apogee_y": 134.35129655075085, "frontal_surface_wind": 2.808303282304835, "apogee_time": 27.706321372841426, "initial_stability_margin": 2.591993587373635, "out_of_rail_stability_margin": 2.660622380703548, "apogee": 4165.655814134801, "out_of_rail_velocity": 28.936050203809096, "out_of_rail_time": 0.3256538349675374, "t_final": 354.73269085433503, "x_impact": 1996.546785442135} +{"lateral_surface_wind": 4.646348568696249, "apogee_x": 746.336289793133, "y_impact": 3885.5153941706, "max_mach_number": 1.1206885674962663, "impact_velocity": -5.302173406485398, "apogee_y": -0.8808212652531612, "frontal_surface_wind": 4.337698831253606, "apogee_time": 28.658567662830144, "initial_stability_margin": 2.681011886838882, "out_of_rail_stability_margin": 2.7459753170616414, "apogee": 4516.121486876265, "out_of_rail_velocity": 30.325562240199442, "out_of_rail_time": 0.3138975266828763, "t_final": 364.85495680285555, "x_impact": 2218.011497313854} +{"lateral_surface_wind": 2.6798699609114784, "apogee_x": 241.41048600138834, "y_impact": 2945.13309899062, "max_mach_number": 1.0062592626980034, "impact_velocity": -5.2666370709683425, "apogee_y": -128.5075265771901, "frontal_surface_wind": 4.431814738316839, "apogee_time": 27.76627669824602, "initial_stability_margin": 2.468210715634711, "out_of_rail_stability_margin": 2.538656085838662, "apogee": 4133.041797396143, "out_of_rail_velocity": 28.334678877338753, "out_of_rail_time": 0.3312837140138982, "t_final": 339.50442125861025, "x_impact": 1615.2474297516394} +{"lateral_surface_wind": 3.775588816248092, "apogee_x": 617.52303251784, "y_impact": 2755.5361360008037, "max_mach_number": 0.9824934988454693, "impact_velocity": -5.403620247632108, "apogee_y": -10.532280793797328, "frontal_surface_wind": 1.8192864757668774, "apogee_time": 27.683931738644258, "initial_stability_margin": 2.5988359287383322, "out_of_rail_stability_margin": 2.66548087729699, "apogee": 4069.136864928412, "out_of_rail_velocity": 27.971648968771774, "out_of_rail_time": 0.3341313084133993, "t_final": 335.5614730754803, "x_impact": 1465.1856709723447} +{"lateral_surface_wind": 3.72244587701365, "apogee_x": 422.67558459740803, "y_impact": 1792.9931709523546, "max_mach_number": 0.774389069504557, "impact_velocity": -5.435766728382583, "apogee_y": -95.82387086047447, "frontal_surface_wind": 1.9256871197029943, "apogee_time": 24.720143067718187, "initial_stability_margin": 2.675124978494003, "out_of_rail_stability_margin": 2.749033171413942, "apogee": 3080.081149546866, "out_of_rail_velocity": 24.567015769090276, "out_of_rail_time": 0.37146916898642673, "t_final": 279.8033255757748, "x_impact": 795.4586842933309} +{"lateral_surface_wind": 4.198502452517267, "apogee_x": 381.02335511314624, "y_impact": 2672.6211933457084, "max_mach_number": 0.859747409143752, "impact_velocity": -5.412761644690437, "apogee_y": -208.56012380586225, "frontal_surface_wind": 4.294145121749461, "apogee_time": 26.10428594275839, "initial_stability_margin": 2.5378810356082244, "out_of_rail_stability_margin": 2.610560471740878, "apogee": 3511.4213434845274, "out_of_rail_velocity": 25.903199807164118, "out_of_rail_time": 0.35543358892001775, "t_final": 307.5332448697636, "x_impact": 1427.501588055444} +{"lateral_surface_wind": 4.220448055741034, "apogee_x": 503.6685489514, "y_impact": 2649.4905983999765, "max_mach_number": 0.8361097823491901, "impact_velocity": -5.347446002357551, "apogee_y": -104.05611948272788, "frontal_surface_wind": 4.272578071753624, "apogee_time": 25.457952143176172, "initial_stability_margin": 2.5883389079537142, "out_of_rail_stability_margin": 2.6619065244326743, "apogee": 3338.2768769259173, "out_of_rail_velocity": 25.56640157527549, "out_of_rail_time": 0.35956254538780164, "t_final": 299.03773436361433, "x_impact": 1496.0898884682626} +{"lateral_surface_wind": 4.1044493285905315, "apogee_x": 374.8084116234313, "y_impact": 2837.337594122744, "max_mach_number": 0.8758156286016486, "impact_velocity": -5.266112239129506, "apogee_y": -184.4154523868703, "frontal_surface_wind": 4.3841305728126905, "apogee_time": 26.046255072292347, "initial_stability_margin": 2.5486582238495523, "out_of_rail_stability_margin": 2.617334678022839, "apogee": 3532.8958588978903, "out_of_rail_velocity": 26.270125268976933, "out_of_rail_time": 0.35162793613195514, "t_final": 319.02469640333555, "x_impact": 1469.3869118879327} +{"lateral_surface_wind": 3.6258567641240127, "apogee_x": 685.021021436682, "y_impact": 2771.3662020842057, "max_mach_number": 0.9842385408461766, "impact_velocity": -5.4154192241013765, "apogee_y": 87.07777006777373, "frontal_surface_wind": 2.3396970661697787, "apogee_time": 27.708690001380713, "initial_stability_margin": 2.697994656054446, "out_of_rail_stability_margin": 2.761891810091758, "apogee": 4077.5681783311707, "out_of_rail_velocity": 28.069924179123397, "out_of_rail_time": 0.3334134447010096, "t_final": 341.61070936600146, "x_impact": 1573.9199568812583} +{"lateral_surface_wind": 2.628328148747052, "apogee_x": 477.87650796605953, "y_impact": 2543.4542335141623, "max_mach_number": 0.9092847976929187, "impact_velocity": -5.489252872165745, "apogee_y": 25.99450211043112, "frontal_surface_wind": 3.6655801819833145, "apogee_time": 27.047624295076425, "initial_stability_margin": 2.7707883432279177, "out_of_rail_stability_margin": 2.8368611206202443, "apogee": 3803.098806584287, "out_of_rail_velocity": 26.789017139782036, "out_of_rail_time": 0.3460835254556024, "t_final": 315.4847035389743, "x_impact": 1855.4438657500843} +{"lateral_surface_wind": 4.690720457003327, "apogee_x": 318.7274332653963, "y_impact": 2109.1267633929656, "max_mach_number": 0.6568230958973368, "impact_velocity": -5.352158419419325, "apogee_y": -213.9659242395457, "frontal_surface_wind": 5.133733750990443, "apogee_time": 22.273507302802177, "initial_stability_margin": 2.629934450303631, "out_of_rail_stability_margin": 2.709496370180234, "apogee": 2430.8941097141633, "out_of_rail_velocity": 22.54130049880091, "out_of_rail_time": 0.3985523948709876, "t_final": 251.62707019928902, "x_impact": 971.9097880979358} +{"lateral_surface_wind": 3.043427041866787, "apogee_x": 421.6010743582288, "y_impact": 2407.520980490051, "max_mach_number": 0.9725793583115588, "impact_velocity": -5.344223042220189, "apogee_y": -64.67439742725183, "frontal_surface_wind": 2.5615029355181806, "apogee_time": 27.503279072624895, "initial_stability_margin": 2.552303192254105, "out_of_rail_stability_margin": 2.62472329857188, "apogee": 4016.029733194197, "out_of_rail_velocity": 27.699952773861607, "out_of_rail_time": 0.3374913142277127, "t_final": 320.8795364711829, "x_impact": 1488.904302389326} +{"lateral_surface_wind": 3.4081171213769887, "apogee_x": 466.110960609052, "y_impact": 2617.2793906887396, "max_mach_number": 0.9594501765586989, "impact_velocity": -5.258877990568425, "apogee_y": -52.36832442875337, "frontal_surface_wind": 1.9519329344468028, "apogee_time": 27.208250453052, "initial_stability_margin": 2.5126474608029006, "out_of_rail_stability_margin": 2.5828859960515933, "apogee": 3929.4504182833825, "out_of_rail_velocity": 27.562452509576072, "out_of_rail_time": 0.3383717366720255, "t_final": 341.6050104858138, "x_impact": 1086.8559211387076} +{"lateral_surface_wind": 3.3604334970775454, "apogee_x": 199.4115745367973, "y_impact": 1971.2086188440442, "max_mach_number": 0.7826306262483552, "impact_velocity": -5.457000266138114, "apogee_y": -229.4333920169935, "frontal_surface_wind": 3.2849374110568252, "apogee_time": 24.865145768916477, "initial_stability_margin": 2.592280544971295, "out_of_rail_stability_margin": 2.668457135201181, "apogee": 3123.7035610401363, "out_of_rail_velocity": 24.668148250454745, "out_of_rail_time": 0.3707540467277227, "t_final": 289.2062620409554, "x_impact": 1038.3586910641918} +{"lateral_surface_wind": 3.393311821669383, "apogee_x": 394.8201392256306, "y_impact": 2136.5128315017064, "max_mach_number": 0.7862363459023736, "impact_velocity": -5.361729886430379, "apogee_y": -98.46867981164677, "frontal_surface_wind": 3.2509632362978746, "apogee_time": 24.857877718115343, "initial_stability_margin": 2.746488256213622, "out_of_rail_stability_margin": 2.819319804797503, "apogee": 3129.0829584461753, "out_of_rail_velocity": 24.770746052374314, "out_of_rail_time": 0.3688226519165057, "t_final": 291.356176817392, "x_impact": 1271.620238933513} +{"lateral_surface_wind": 3.8534312398553077, "apogee_x": 769.9634360370682, "y_impact": 3014.062554785989, "max_mach_number": 1.0034796913515245, "impact_velocity": -5.405138134320265, "apogee_y": 59.205945936056125, "frontal_surface_wind": 1.648011489642327, "apogee_time": 27.80043952090213, "initial_stability_margin": 2.547760516802745, "out_of_rail_stability_margin": 2.614839247048285, "apogee": 4126.529266046867, "out_of_rail_velocity": 28.33630280171217, "out_of_rail_time": 0.33106295409903186, "t_final": 348.542836665454, "x_impact": 1706.4873980042128} +{"lateral_surface_wind": 4.310385391786445, "apogee_x": 428.30918872985904, "y_impact": 1582.5591385015032, "max_mach_number": 0.640218346796836, "impact_velocity": -5.509481347086633, "apogee_y": -84.8749980175336, "frontal_surface_wind": 2.7362257737591107, "apogee_time": 22.122079468004596, "initial_stability_margin": 2.6419930398436065, "out_of_rail_stability_margin": 2.721269989803765, "apogee": 2377.7082677478897, "out_of_rail_velocity": 22.284331556617364, "out_of_rail_time": 0.4026178529926363, "t_final": 236.14430141129623, "x_impact": 668.5776197107127} +{"lateral_surface_wind": 2.1650760798815245, "apogee_x": 314.37195369961125, "y_impact": 1609.1871924343031, "max_mach_number": 0.6978541201095201, "impact_velocity": -5.29153077449311, "apogee_y": 19.682744937376867, "frontal_surface_wind": 2.873620751889632, "apogee_time": 23.204489697026112, "initial_stability_margin": 2.534362235557784, "out_of_rail_stability_margin": 2.6102207629264504, "apogee": 2669.881084329029, "out_of_rail_velocity": 23.31833161492587, "out_of_rail_time": 0.38737359712728464, "t_final": 268.03237027906795, "x_impact": 1050.2332404521671} +{"lateral_surface_wind": 3.345704541874325, "apogee_x": 306.4577138876521, "y_impact": 1367.5856702246774, "max_mach_number": 0.5776453140705659, "impact_velocity": -5.280901978881351, "apogee_y": -74.64707080052163, "frontal_surface_wind": 2.865040917804028, "apogee_time": 20.678079111819322, "initial_stability_margin": 2.6528588185240802, "out_of_rail_stability_margin": 2.7378986162879366, "apogee": 2049.9162354278224, "out_of_rail_velocity": 21.17074620750191, "out_of_rail_time": 0.4208588406085814, "t_final": 232.1846094882107, "x_impact": 679.842166156302} +{"lateral_surface_wind": 3.288312585819976, "apogee_x": 420.5900835524449, "y_impact": 2017.7552776293976, "max_mach_number": 0.7544792417737499, "impact_velocity": -5.432237262267617, "apogee_y": -47.49740757003258, "frontal_surface_wind": 3.1632545841714803, "apogee_time": 24.399570963545525, "initial_stability_margin": 2.5734652898993486, "out_of_rail_stability_margin": 2.647663455937709, "apogee": 2983.1250192940147, "out_of_rail_velocity": 24.2475867967627, "out_of_rail_time": 0.37606424487047796, "t_final": 282.9857142679908, "x_impact": 1129.701038934272} +{"lateral_surface_wind": 4.007563771052614, "apogee_x": 499.0216575649494, "y_impact": 2608.7101821671845, "max_mach_number": 0.9079624474825485, "impact_velocity": -5.279863155600427, "apogee_y": -125.03449938120826, "frontal_surface_wind": 2.6163903298337314, "apogee_time": 26.7037020254481, "initial_stability_margin": 2.5933289853708157, "out_of_rail_stability_margin": 2.66113179931869, "apogee": 3727.9118452643443, "out_of_rail_velocity": 26.75706809597618, "out_of_rail_time": 0.34607200231433505, "t_final": 323.7983009587968, "x_impact": 1200.2806591392284} +{"lateral_surface_wind": 4.754503830287933, "apogee_x": 512.691666318725, "y_impact": 3225.6453493989975, "max_mach_number": 0.9484013189847905, "impact_velocity": -5.226935586816855, "apogee_y": -166.9356764751145, "frontal_surface_wind": 2.921348231744502, "apogee_time": 26.86261157634272, "initial_stability_margin": 2.4567076182122163, "out_of_rail_stability_margin": 2.5285807159973506, "apogee": 3831.5413720039983, "out_of_rail_velocity": 27.335094852741737, "out_of_rail_time": 0.3404943093421634, "t_final": 327.103113866909, "x_impact": 1365.7853668668554} +{"lateral_surface_wind": 3.4570266188574252, "apogee_x": 545.041594077335, "y_impact": 2964.2885532116675, "max_mach_number": 0.9522538497315061, "impact_velocity": -5.431784147453094, "apogee_y": -17.94502089754379, "frontal_surface_wind": 2.3089766945168355, "apogee_time": 27.34150225784916, "initial_stability_margin": 2.622697687562993, "out_of_rail_stability_margin": 2.6899922726659082, "apogee": 3943.816240778536, "out_of_rail_velocity": 27.504429917966714, "out_of_rail_time": 0.33937329759320356, "t_final": 336.25388567464324, "x_impact": 1475.9273799549348} +{"lateral_surface_wind": 2.510640208143112, "apogee_x": 425.45728728249946, "y_impact": 1843.3405840059702, "max_mach_number": 0.7616431930617635, "impact_velocity": -5.411258866932217, "apogee_y": 36.52140416638598, "frontal_surface_wind": 2.977490152219281, "apogee_time": 24.442765541724274, "initial_stability_margin": 2.6358715362046006, "out_of_rail_stability_margin": 2.707067214497734, "apogee": 3007.198345199932, "out_of_rail_velocity": 24.415817729449582, "out_of_rail_time": 0.3733893016774354, "t_final": 281.3154495733697, "x_impact": 1169.5884679716812} +{"lateral_surface_wind": 2.8658831577795545, "apogee_x": 456.1918017238491, "y_impact": 1864.6422577296953, "max_mach_number": 0.7334788480852997, "impact_velocity": -5.471884776237799, "apogee_y": -4.806710498498502, "frontal_surface_wind": 3.483001672982719, "apogee_time": 24.05842228522087, "initial_stability_margin": 2.6150530375256476, "out_of_rail_stability_margin": 2.694170702000763, "apogee": 2879.91913341373, "out_of_rail_velocity": 23.8287756498478, "out_of_rail_time": 0.3806179671397067, "t_final": 273.31527990531595, "x_impact": 1403.474736754629} +{"lateral_surface_wind": 4.293358686923815, "apogee_x": 342.4304569982958, "y_impact": 1696.3900929421304, "max_mach_number": 0.6455455572303863, "impact_velocity": -5.373329012108986, "apogee_y": -149.83507428070897, "frontal_surface_wind": 2.9089652361663867, "apogee_time": 22.154136147879246, "initial_stability_margin": 2.5354867154418264, "out_of_rail_stability_margin": 2.618620641545183, "apogee": 2395.227757250663, "out_of_rail_velocity": 22.384538234393112, "out_of_rail_time": 0.40234420237558277, "t_final": 249.22804518056859, "x_impact": 520.7794393054926} +{"lateral_surface_wind": 3.374510678248141, "apogee_x": 336.7763862735062, "y_impact": 3184.8277853877285, "max_mach_number": 1.0807811599195385, "impact_velocity": -5.28386213188599, "apogee_y": -156.54875737128137, "frontal_surface_wind": 3.2704747002890593, "apogee_time": 28.364470549792657, "initial_stability_margin": 2.5388441978456067, "out_of_rail_stability_margin": 2.603010113461448, "apogee": 4387.73456593107, "out_of_rail_velocity": 29.699390963044358, "out_of_rail_time": 0.3190400926693954, "t_final": 363.15070473089355, "x_impact": 1860.3146030275907} +{"lateral_surface_wind": 4.125462233709645, "apogee_x": 398.6436433827143, "y_impact": 2462.752967122, "max_mach_number": 0.8091555221685659, "impact_velocity": -5.393936445475652, "apogee_y": -165.24227284542863, "frontal_surface_wind": 4.364363244354624, "apogee_time": 25.171758799365257, "initial_stability_margin": 2.629016750712299, "out_of_rail_stability_margin": 2.703062756589625, "apogee": 3231.949621955495, "out_of_rail_velocity": 25.114212033566023, "out_of_rail_time": 0.3646886795784185, "t_final": 290.6856723356391, "x_impact": 1318.1937501545785} +{"lateral_surface_wind": 1.1742955508211959, "apogee_x": 468.7570605587068, "y_impact": 1897.3514923731173, "max_mach_number": 0.9301066140274298, "impact_velocity": -5.299760129241652, "apogee_y": 196.58522781822623, "frontal_surface_wind": 2.6004417497009262, "apogee_time": 26.965694677948587, "initial_stability_margin": 2.610473011597023, "out_of_rail_stability_margin": 2.682728653890517, "apogee": 3828.8450209858606, "out_of_rail_velocity": 27.059747468470228, "out_of_rail_time": 0.34362038456394567, "t_final": 321.1363195937316, "x_impact": 1583.8870403130213} +{"lateral_surface_wind": 4.341251251707769, "apogee_x": 413.3020169789183, "y_impact": 1548.4066979080526, "max_mach_number": 0.6138413079244804, "impact_velocity": -5.44323338094406, "apogee_y": -86.92982616253755, "frontal_surface_wind": 2.6869855377830674, "apogee_time": 21.539844161785293, "initial_stability_margin": 2.5225087911885455, "out_of_rail_stability_margin": 2.6086067466908966, "apogee": 2237.9680214804066, "out_of_rail_velocity": 21.75594851398841, "out_of_rail_time": 0.41110536889635063, "t_final": 234.48938107900747, "x_impact": 620.8609247577918} +{"lateral_surface_wind": 4.099369976919585, "apogee_x": 617.1797786020668, "y_impact": 2772.194403190886, "max_mach_number": 0.848851607731758, "impact_velocity": -5.271194838279036, "apogee_y": -29.662359380460988, "frontal_surface_wind": 3.1445788367683623, "apogee_time": 25.699888063124273, "initial_stability_margin": 2.699979819610299, "out_of_rail_stability_margin": 2.7703010758702424, "apogee": 3409.2831197288106, "out_of_rail_velocity": 25.825929078023357, "out_of_rail_time": 0.3566020993083333, "t_final": 314.25455003199295, "x_impact": 1591.309021215172} +{"lateral_surface_wind": 3.6061568314860915, "apogee_x": 509.0466196891872, "y_impact": 2503.0140340744697, "max_mach_number": 0.8355259954296634, "impact_velocity": -5.519018162813808, "apogee_y": -51.3172147091856, "frontal_surface_wind": 3.4797612729236933, "apogee_time": 25.84170914510294, "initial_stability_margin": 2.60852827108582, "out_of_rail_stability_margin": 2.6793893909574056, "apogee": 3410.8776550072257, "out_of_rail_velocity": 25.539371793017896, "out_of_rail_time": 0.35939199181365694, "t_final": 298.33051278916366, "x_impact": 1542.5460623125334} +{"lateral_surface_wind": 3.6631216336848933, "apogee_x": 615.8125450244486, "y_impact": 2457.8606223016004, "max_mach_number": 0.9319395517838951, "impact_velocity": -5.459391004836834, "apogee_y": 21.317557942458606, "frontal_surface_wind": 2.280911995719485, "apogee_time": 27.263209102946025, "initial_stability_margin": 2.626741066667374, "out_of_rail_stability_margin": 2.6920557141083044, "apogee": 3888.468745610172, "out_of_rail_velocity": 27.16622294444157, "out_of_rail_time": 0.3427775393602044, "t_final": 321.4874914640252, "x_impact": 1380.8133370325365} +{"lateral_surface_wind": 4.862390983315005, "apogee_x": 398.35486927529405, "y_impact": 3677.9292274213776, "max_mach_number": 0.9878389778255277, "impact_velocity": -5.40663485008576, "apogee_y": -300.2131213085516, "frontal_surface_wind": 4.971441899206391, "apogee_time": 27.570784445494553, "initial_stability_margin": 2.7541176571237096, "out_of_rail_stability_margin": 2.8196203891216176, "apogee": 4051.2631548182217, "out_of_rail_velocity": 28.046356306212214, "out_of_rail_time": 0.3335846640315729, "t_final": 339.8091822872966, "x_impact": 1620.522660749942} +{"lateral_surface_wind": 3.0356522420953573, "apogee_x": 802.2528918768268, "y_impact": 3540.194268274863, "max_mach_number": 1.146253986416132, "impact_velocity": -5.462343528982677, "apogee_y": 222.20235902041608, "frontal_surface_wind": 2.570712141196619, "apogee_time": 29.299201942603222, "initial_stability_margin": 2.434977133497862, "out_of_rail_stability_margin": 2.496715915671673, "apogee": 4710.175058017091, "out_of_rail_velocity": 30.73510510507177, "out_of_rail_time": 0.3104832456871451, "t_final": 376.04558161267715, "x_impact": 2393.7757946101924} +{"lateral_surface_wind": 3.4016360844517046, "apogee_x": 470.51325349268853, "y_impact": 1803.869575724223, "max_mach_number": 0.7200645945111142, "impact_velocity": -5.374440170325552, "apogee_y": 11.664163923222276, "frontal_surface_wind": 1.9632056546773575, "apogee_time": 23.562203751501862, "initial_stability_margin": 2.5221863090910746, "out_of_rail_stability_margin": 2.5998724613728217, "apogee": 2767.2990643843327, "out_of_rail_velocity": 23.65644944438387, "out_of_rail_time": 0.38304810715994114, "t_final": 276.88275403239487, "x_impact": 729.9979713115491} +{"lateral_surface_wind": 3.8231104098434967, "apogee_x": 575.0775042003188, "y_impact": 2961.5386225220095, "max_mach_number": 0.9701407917036644, "impact_velocity": -5.193253597356729, "apogee_y": -9.115498736471563, "frontal_surface_wind": 2.879217346996785, "apogee_time": 27.137562814554183, "initial_stability_margin": 2.405885291338534, "out_of_rail_stability_margin": 2.4765349171225424, "apogee": 3931.3272187049383, "out_of_rail_velocity": 27.751878643244797, "out_of_rail_time": 0.33707966368325254, "t_final": 338.9097673467164, "x_impact": 1365.3612934653822} +{"lateral_surface_wind": 4.780878731048085, "apogee_x": 495.45888912864143, "y_impact": 2836.6162919688218, "max_mach_number": 0.8341559069261171, "impact_velocity": -5.311478257832064, "apogee_y": -162.39735673334707, "frontal_surface_wind": 2.8779820573366006, "apogee_time": 25.41193466583849, "initial_stability_margin": 2.5768134562792606, "out_of_rail_stability_margin": 2.6472242822126253, "apogee": 3323.811165869477, "out_of_rail_velocity": 25.57828626793775, "out_of_rail_time": 0.35956739156006434, "t_final": 309.131640170797, "x_impact": 1144.5907181765099} +{"lateral_surface_wind": 3.130620114573627, "apogee_x": 598.0000743610234, "y_impact": 2627.4374152189944, "max_mach_number": 0.9435484652217296, "impact_velocity": -5.346911732180592, "apogee_y": 78.68492196490867, "frontal_surface_wind": 3.0986151810828075, "apogee_time": 27.169656715299286, "initial_stability_margin": 2.5818313127079935, "out_of_rail_stability_margin": 2.6513999454013644, "apogee": 3893.2840162385223, "out_of_rail_velocity": 27.316461799639757, "out_of_rail_time": 0.3406035819302987, "t_final": 333.1198892781264, "x_impact": 1670.6173509947907} +{"lateral_surface_wind": 3.371064847864769, "apogee_x": 550.695495548947, "y_impact": 2905.090477758652, "max_mach_number": 1.0710317953063453, "impact_velocity": -5.3229283399773495, "apogee_y": -26.981747690918517, "frontal_surface_wind": 2.8351578675093756, "apogee_time": 28.270238385126024, "initial_stability_margin": 2.5219309985947413, "out_of_rail_stability_margin": 2.587839475656142, "apogee": 4351.852279091577, "out_of_rail_velocity": 29.54312711282561, "out_of_rail_time": 0.3204150776418734, "t_final": 365.1116847983471, "x_impact": 1864.0685326177686} +{"lateral_surface_wind": 3.5067876097087516, "apogee_x": 496.477470052183, "y_impact": 1767.8587030168933, "max_mach_number": 0.7375884776840411, "impact_velocity": -5.319019269123643, "apogee_y": -16.489417687665973, "frontal_surface_wind": 1.768543229325837, "apogee_time": 23.863659161682996, "initial_stability_margin": 2.520727074222086, "out_of_rail_stability_margin": 2.6014728976265675, "apogee": 2852.129983858514, "out_of_rail_velocity": 23.891824422941703, "out_of_rail_time": 0.38000879821830746, "t_final": 275.81874609925035, "x_impact": 770.5291701910247} +{"lateral_surface_wind": 4.783489329479021, "apogee_x": 459.4939958871513, "y_impact": 2778.9910420365914, "max_mach_number": 0.855962604001558, "impact_velocity": -5.284333221838069, "apogee_y": -212.445887417663, "frontal_surface_wind": 4.185978500571274, "apogee_time": 25.811911833933827, "initial_stability_margin": 2.62269278057938, "out_of_rail_stability_margin": 2.6924155414853743, "apogee": 3446.5478419383785, "out_of_rail_velocity": 25.931053889282236, "out_of_rail_time": 0.35581768593759977, "t_final": 311.6806121250843, "x_impact": 1367.67265388356} +{"lateral_surface_wind": 3.835039073406187, "apogee_x": 577.2159932714792, "y_impact": 1899.8607120400513, "max_mach_number": 0.7390845769937989, "impact_velocity": -5.359055021219472, "apogee_y": -14.016588037546976, "frontal_surface_wind": 1.9782555297117561, "apogee_time": 23.98040234030871, "initial_stability_margin": 2.6451315603701007, "out_of_rail_stability_margin": 2.7228202642228525, "apogee": 2873.3919310928936, "out_of_rail_velocity": 23.972865327225822, "out_of_rail_time": 0.37950519376963515, "t_final": 280.86375527211845, "x_impact": 1012.5353519478043} +{"lateral_surface_wind": 3.3771027008792136, "apogee_x": 262.28225655672645, "y_impact": 1361.395039155299, "max_mach_number": 0.6090568623412339, "impact_velocity": -5.31330148581713, "apogee_y": -120.60734234205621, "frontal_surface_wind": 3.0682823491423106, "apogee_time": 21.403923593178092, "initial_stability_margin": 2.6376241985167455, "out_of_rail_stability_margin": 2.7186801873444217, "apogee": 2213.5667898984266, "out_of_rail_velocity": 21.74083233465552, "out_of_rail_time": 0.41102048707474137, "t_final": 238.57746063973735, "x_impact": 692.4205403531469} +{"lateral_surface_wind": 4.867067515707627, "apogee_x": 483.17465041159744, "y_impact": 2507.203052876137, "max_mach_number": 0.7968667075534159, "impact_velocity": -5.350967049171744, "apogee_y": -190.4206826857862, "frontal_surface_wind": 4.088500944114869, "apogee_time": 24.95422085973808, "initial_stability_margin": 2.6391428975619236, "out_of_rail_stability_margin": 2.709417805309455, "apogee": 3165.8781346725864, "out_of_rail_velocity": 24.99956498482408, "out_of_rail_time": 0.3661493854190251, "t_final": 290.226645734724, "x_impact": 1252.7891139141723} +{"lateral_surface_wind": 3.2360666705949055, "apogee_x": 556.1487510378116, "y_impact": 2278.5144248389342, "max_mach_number": 0.8202857107086181, "impact_velocity": -5.449355755120299, "apogee_y": 38.419970566542325, "frontal_surface_wind": 3.2166833431049344, "apogee_time": 25.480442657068775, "initial_stability_margin": 2.6029411402146034, "out_of_rail_stability_margin": 2.681520343521927, "apogee": 3311.07332123182, "out_of_rail_velocity": 25.2550140728115, "out_of_rail_time": 0.36398967124639775, "t_final": 291.9842735432374, "x_impact": 1376.9392936086838} +{"lateral_surface_wind": 2.452366884104759, "apogee_x": 269.9917666729495, "y_impact": 1951.4276507870945, "max_mach_number": 0.8316660403013834, "impact_velocity": -5.452313268180598, "apogee_y": -78.60367448178302, "frontal_surface_wind": 3.0256666252338515, "apogee_time": 25.746816061412574, "initial_stability_margin": 2.5038155883485724, "out_of_rail_stability_margin": 2.576695240609671, "apogee": 3391.1684178815653, "out_of_rail_velocity": 25.4700353678097, "out_of_rail_time": 0.3602241871020485, "t_final": 299.3697279303441, "x_impact": 1112.6682507682028} +{"lateral_surface_wind": 3.8263299659485623, "apogee_x": 545.8991389014288, "y_impact": 2046.641428246883, "max_mach_number": 0.7905272717118336, "impact_velocity": -5.296405463933646, "apogee_y": -36.09834875031059, "frontal_surface_wind": 1.7099921584527842, "apogee_time": 24.76829839140337, "initial_stability_margin": 2.667428358160217, "out_of_rail_stability_margin": 2.7384092669159674, "apogee": 3119.1760375229014, "out_of_rail_velocity": 24.879263775442777, "out_of_rail_time": 0.3671587995591283, "t_final": 298.05888754774776, "x_impact": 992.2276242263385} +{"lateral_surface_wind": 3.2957672595425027, "apogee_x": 706.9991243165866, "y_impact": 2713.2590164036674, "max_mach_number": 1.0035873775282003, "impact_velocity": -5.330893101562376, "apogee_y": 97.9219094960066, "frontal_surface_wind": 2.922347774159937, "apogee_time": 27.89393471163863, "initial_stability_margin": 2.6284513780852246, "out_of_rail_stability_margin": 2.692873210784631, "apogee": 4153.45517997334, "out_of_rail_velocity": 28.406049436897977, "out_of_rail_time": 0.33038478464919585, "t_final": 336.4957087841486, "x_impact": 1858.450199867325} +{"lateral_surface_wind": 3.441457910239686, "apogee_x": 585.6042671669627, "y_impact": 2460.91258366096, "max_mach_number": 0.8300696555038379, "impact_velocity": -5.375857288424364, "apogee_y": 38.661276619804944, "frontal_surface_wind": 2.3321178939666383, "apogee_time": 25.509397062624213, "initial_stability_margin": 2.5885146290063803, "out_of_rail_stability_margin": 2.6630109460136664, "apogee": 3335.7633314570407, "out_of_rail_velocity": 25.422512172422845, "out_of_rail_time": 0.36059537208121434, "t_final": 304.5217027454269, "x_impact": 1240.3091836224667} +{"lateral_surface_wind": 2.605039364199757, "apogee_x": 431.58113065914415, "y_impact": 2546.3357628662793, "max_mach_number": 0.8949781978287348, "impact_velocity": -5.368989443499961, "apogee_y": 8.611726926958253, "frontal_surface_wind": 3.682167410509014, "apogee_time": 26.59685276611407, "initial_stability_margin": 2.5668786511150996, "out_of_rail_stability_margin": 2.639154754159643, "apogee": 3682.4047290299027, "out_of_rail_velocity": 26.48908377424712, "out_of_rail_time": 0.3493700776422764, "t_final": 321.1549983960284, "x_impact": 1800.489480399857} +{"lateral_surface_wind": 4.732434502936994, "apogee_x": 486.87933243352944, "y_impact": 2028.531216070635, "max_mach_number": 0.6730964101633558, "impact_velocity": -5.413044823318399, "apogee_y": -92.49595477650779, "frontal_surface_wind": 2.9569656472050627, "apogee_time": 22.658294378284104, "initial_stability_margin": 2.5202343509635807, "out_of_rail_stability_margin": 2.603177507179772, "apogee": 2520.8124769546557, "out_of_rail_velocity": 22.774365425467547, "out_of_rail_time": 0.3953988741748643, "t_final": 255.1958653820007, "x_impact": 761.6173316064998} +{"lateral_surface_wind": 3.672019701952931, "apogee_x": 438.0470494681088, "y_impact": 1889.6627443930997, "max_mach_number": 0.6881587389954146, "impact_velocity": -5.34519633569178, "apogee_y": -64.85909856992241, "frontal_surface_wind": 3.213307151346758, "apogee_time": 22.99157065465026, "initial_stability_margin": 2.5076711265181935, "out_of_rail_stability_margin": 2.5864449343000326, "apogee": 2609.7050204469115, "out_of_rail_velocity": 23.122306827721534, "out_of_rail_time": 0.3905016024990762, "t_final": 267.96648582486046, "x_impact": 1093.6924001214607} +{"lateral_surface_wind": 3.36941043820566, "apogee_x": 552.2315581468805, "y_impact": 2848.872360556147, "max_mach_number": 1.1032975340310285, "impact_velocity": -5.33345523413242, "apogee_y": -28.026080081281393, "frontal_surface_wind": 2.8371238325319137, "apogee_time": 28.63602694939983, "initial_stability_margin": 2.481726333152048, "out_of_rail_stability_margin": 2.5482468991119775, "apogee": 4488.960238397937, "out_of_rail_velocity": 30.041029715911638, "out_of_rail_time": 0.3164578909093281, "t_final": 357.87832688650496, "x_impact": 1856.6335034210877} +{"lateral_surface_wind": 2.4221881372428884, "apogee_x": 502.46590475186406, "y_impact": 2211.65726859466, "max_mach_number": 0.7705570314146788, "impact_velocity": -5.408022615023605, "apogee_y": 135.76928690930265, "frontal_surface_wind": 3.8049430423916677, "apogee_time": 24.63662396315625, "initial_stability_margin": 2.6600133750171606, "out_of_rail_stability_margin": 2.73126105229693, "apogee": 3058.2652411851236, "out_of_rail_velocity": 24.557700621989653, "out_of_rail_time": 0.3716998277194738, "t_final": 288.7737340183997, "x_impact": 1569.4356610807895} +{"lateral_surface_wind": 2.3829508477096817, "apogee_x": 518.5073922755442, "y_impact": 2394.0547512717335, "max_mach_number": 0.8849830011335834, "impact_velocity": -5.479954629934612, "apogee_y": 60.418755153122696, "frontal_surface_wind": 2.695699522343986, "apogee_time": 26.602337645962134, "initial_stability_margin": 2.6049072002723523, "out_of_rail_stability_margin": 2.678534062244224, "apogee": 3662.1779693832264, "out_of_rail_velocity": 26.29436448344662, "out_of_rail_time": 0.351547943815949, "t_final": 312.01930571559734, "x_impact": 1773.4732162071584} +{"lateral_surface_wind": 2.6782898613799038, "apogee_x": 473.17295672098555, "y_impact": 2700.493363774484, "max_mach_number": 0.8780008743594558, "impact_velocity": -5.316883899705854, "apogee_y": 60.69168205374655, "frontal_surface_wind": 4.132029875174053, "apogee_time": 26.298129979385383, "initial_stability_margin": 2.616111468920129, "out_of_rail_stability_margin": 2.682467482050258, "apogee": 3588.2710924220323, "out_of_rail_velocity": 26.369929630640833, "out_of_rail_time": 0.3511113737061131, "t_final": 315.2012370500443, "x_impact": 1818.5358957024587} +{"lateral_surface_wind": 1.8499053168863822, "apogee_x": 319.01844087945125, "y_impact": 1765.9376441264233, "max_mach_number": 0.765787302761705, "impact_velocity": -5.3522208624079655, "apogee_y": 33.210008436363104, "frontal_surface_wind": 3.2317146769918565, "apogee_time": 24.49876102033881, "initial_stability_margin": 2.630384425609191, "out_of_rail_stability_margin": 2.7048011410718997, "apogee": 3028.122917748022, "out_of_rail_velocity": 24.445855936502642, "out_of_rail_time": 0.373374550364947, "t_final": 282.3986386566256, "x_impact": 1217.3058804680645} +{"lateral_surface_wind": 4.736874837142108, "apogee_x": 445.28859663938033, "y_impact": 2855.760752138323, "max_mach_number": 0.8732471113592329, "impact_velocity": -5.483637147495614, "apogee_y": -229.81653623039261, "frontal_surface_wind": 5.280519864863815, "apogee_time": 26.387358951369045, "initial_stability_margin": 2.634983877096902, "out_of_rail_stability_margin": 2.704599147359984, "apogee": 3591.0796521999237, "out_of_rail_velocity": 26.14969575807569, "out_of_rail_time": 0.35297799373481314, "t_final": 300.2102687612983, "x_impact": 1510.2861054484972} +{"lateral_surface_wind": 3.1707700717649545, "apogee_x": 433.7521628521482, "y_impact": 3138.400882899335, "max_mach_number": 1.0388860143984757, "impact_velocity": -5.243053028693681, "apogee_y": -47.98341555652214, "frontal_surface_wind": 3.468363336624525, "apogee_time": 27.918704602358112, "initial_stability_margin": 2.587218727470646, "out_of_rail_stability_margin": 2.6556459004289876, "apogee": 4217.992705407432, "out_of_rail_velocity": 28.91779770602583, "out_of_rail_time": 0.32574806187784755, "t_final": 353.40110560552125, "x_impact": 1872.5405410294068} +{"lateral_surface_wind": 4.437011255103695, "apogee_x": 648.8358444243802, "y_impact": 2697.118187489012, "max_mach_number": 0.8866114342370052, "impact_velocity": -5.332999364443105, "apogee_y": -63.68847330541021, "frontal_surface_wind": 2.684760451491322, "apogee_time": 26.400533338019436, "initial_stability_margin": 2.6740431139230165, "out_of_rail_stability_margin": 2.7441076595439813, "apogee": 3622.803646612925, "out_of_rail_velocity": 26.399810838554988, "out_of_rail_time": 0.35013213186696573, "t_final": 314.85491157027855, "x_impact": 1190.432052745544} +{"lateral_surface_wind": 4.360007893171103, "apogee_x": 464.7811227585314, "y_impact": 2442.75439273383, "max_mach_number": 0.8365085837823203, "impact_velocity": -5.191298996340967, "apogee_y": -136.19058157793827, "frontal_surface_wind": 2.8080845306533107, "apogee_time": 25.363936722940338, "initial_stability_margin": 2.395617392970007, "out_of_rail_stability_margin": 2.4718767869695886, "apogee": 3323.72597594447, "out_of_rail_velocity": 25.547336663718557, "out_of_rail_time": 0.35964678983486614, "t_final": 306.88241347552713, "x_impact": 899.4524050927663} +{"lateral_surface_wind": 3.427874252897319, "apogee_x": 343.4528205974608, "y_impact": 2173.128235648793, "max_mach_number": 0.8071259878667537, "impact_velocity": -5.3212285194478675, "apogee_y": -128.71398571651395, "frontal_surface_wind": 2.352038376735026, "apogee_time": 25.13448257256199, "initial_stability_margin": 2.56235043957856, "out_of_rail_stability_margin": 2.640325064612422, "apogee": 3223.354554560795, "out_of_rail_velocity": 25.054190448638188, "out_of_rail_time": 0.3662038231621899, "t_final": 299.6869658153279, "x_impact": 905.5020457206507} +{"lateral_surface_wind": 5.055320682094494, "apogee_x": 580.8389836654969, "y_impact": 3322.0026937909333, "max_mach_number": 0.9327828824044638, "impact_velocity": -5.360562242143853, "apogee_y": -202.38550265286585, "frontal_surface_wind": 4.976505407126479, "apogee_time": 27.014047254548075, "initial_stability_margin": 2.6977835969385167, "out_of_rail_stability_margin": 2.767506527036944, "apogee": 3832.4066504155785, "out_of_rail_velocity": 27.0877750240131, "out_of_rail_time": 0.342951342627784, "t_final": 329.0013525858957, "x_impact": 1858.42166706692} +{"lateral_surface_wind": 1.7971645112849204, "apogee_x": 316.16530307832033, "y_impact": 2144.0949811762157, "max_mach_number": 0.8716250013737681, "impact_velocity": -5.322123269002683, "apogee_y": 29.288791386851774, "frontal_surface_wind": 3.26133855254359, "apogee_time": 26.214097365736468, "initial_stability_margin": 2.6669051970758977, "out_of_rail_stability_margin": 2.737245687359528, "apogee": 3563.723359945211, "out_of_rail_velocity": 26.162245376050958, "out_of_rail_time": 0.3525907090322884, "t_final": 310.0701917455553, "x_impact": 1430.0781575725323} +{"lateral_surface_wind": 4.039225843189079, "apogee_x": 649.1510604632387, "y_impact": 3416.0786649750385, "max_mach_number": 1.0338262874861626, "impact_velocity": -5.289751439551567, "apogee_y": -2.0572430922734055, "frontal_surface_wind": 3.221469362889335, "apogee_time": 27.930955689162122, "initial_stability_margin": 2.429323778916241, "out_of_rail_stability_margin": 2.4971059395443618, "apogee": 4209.357604185121, "out_of_rail_velocity": 28.867530312263312, "out_of_rail_time": 0.32643399116688687, "t_final": 348.7709029344791, "x_impact": 1972.1861836421583} +{"lateral_surface_wind": 4.350110127481488, "apogee_x": 506.4846058030251, "y_impact": 2744.115336027605, "max_mach_number": 0.9143512654810156, "impact_velocity": -5.368548723749812, "apogee_y": -136.16989940450472, "frontal_surface_wind": 2.6726196118214465, "apogee_time": 26.832877236088212, "initial_stability_margin": 2.5722983469718503, "out_of_rail_stability_margin": 2.63896299414759, "apogee": 3766.315658311323, "out_of_rail_velocity": 26.883844495612156, "out_of_rail_time": 0.3450202046932374, "t_final": 321.499264395624, "x_impact": 1264.2731232512265} +{"lateral_surface_wind": 3.518920189519149, "apogee_x": 583.6137102917502, "y_impact": 2818.444182818655, "max_mach_number": 0.9289448905353961, "impact_velocity": -5.428618040934967, "apogee_y": -22.03041348058159, "frontal_surface_wind": 2.5173003420273314, "apogee_time": 27.152594915194154, "initial_stability_margin": 2.712713300178052, "out_of_rail_stability_margin": 2.779683605507634, "apogee": 3860.776690210679, "out_of_rail_velocity": 27.09902420424665, "out_of_rail_time": 0.342993260831421, "t_final": 334.9983002909339, "x_impact": 1734.814904817531} +{"lateral_surface_wind": 4.438677187749002, "apogee_x": 832.1395303682076, "y_impact": 3547.0031734734603, "max_mach_number": 1.0834547497358475, "impact_velocity": -5.4512132661893595, "apogee_y": 56.93926051737006, "frontal_surface_wind": 2.522795777241242, "apogee_time": 28.63869423639419, "initial_stability_margin": 2.5910257840208164, "out_of_rail_stability_margin": 2.654471313472138, "apogee": 4447.10132603217, "out_of_rail_velocity": 29.716077626098105, "out_of_rail_time": 0.3188418616218385, "t_final": 351.9326027003878, "x_impact": 1943.993956781574} +{"lateral_surface_wind": 4.1856875713672475, "apogee_x": 647.6882393816538, "y_impact": 3097.9935967085394, "max_mach_number": 0.9734475709097494, "impact_velocity": -5.269096376559725, "apogee_y": -34.94363663135062, "frontal_surface_wind": 2.3044433937673006, "apogee_time": 27.44025254262254, "initial_stability_margin": 2.563578170009392, "out_of_rail_stability_margin": 2.631535479652685, "apogee": 3999.0746616671686, "out_of_rail_velocity": 27.81016276890789, "out_of_rail_time": 0.33584971693442867, "t_final": 333.6495709637967, "x_impact": 1719.5001836504152} +{"lateral_surface_wind": 4.6934612724482685, "apogee_x": 636.7871036890492, "y_impact": 3377.169979240638, "max_mach_number": 0.9365825432273137, "impact_velocity": -5.174374576910019, "apogee_y": -50.57907526773675, "frontal_surface_wind": 3.018443878452545, "apogee_time": 26.67126618335087, "initial_stability_margin": 2.487055419309347, "out_of_rail_stability_margin": 2.5590079958870233, "apogee": 3767.9204632244514, "out_of_rail_velocity": 27.152077109819405, "out_of_rail_time": 0.34246188085116536, "t_final": 330.3388547164161, "x_impact": 1497.8736697887382} +{"lateral_surface_wind": 5.002916246569035, "apogee_x": 371.6276532560429, "y_impact": 2586.83904512774, "max_mach_number": 0.7735873021349465, "impact_velocity": -5.368181117281311, "apogee_y": -268.59231533458114, "frontal_surface_wind": 5.029185052847731, "apogee_time": 24.44950271615326, "initial_stability_margin": 2.5330534469705914, "out_of_rail_stability_margin": 2.6097467921442954, "apogee": 3024.587209057804, "out_of_rail_velocity": 24.51032769589047, "out_of_rail_time": 0.3726947161968655, "t_final": 290.63613021999146, "x_impact": 1260.0562896177482} +{"lateral_surface_wind": 3.1937592249551634, "apogee_x": 551.2131032309098, "y_impact": 2617.087882694441, "max_mach_number": 0.8813772692346872, "impact_velocity": -5.392834566913396, "apogee_y": 45.852473443089764, "frontal_surface_wind": 3.447205983960827, "apogee_time": 26.343316717028596, "initial_stability_margin": 2.6587080715757323, "out_of_rail_stability_margin": 2.73045129313837, "apogee": 3601.047870506198, "out_of_rail_velocity": 26.273596270552982, "out_of_rail_time": 0.3515599187340375, "t_final": 309.8967958760571, "x_impact": 1651.2130440803194} +{"lateral_surface_wind": 4.485998568174654, "apogee_x": 768.2738732266992, "y_impact": 2737.7747079567107, "max_mach_number": 0.903841398074756, "impact_velocity": -5.398332221015537, "apogee_y": 3.464822942936134, "frontal_surface_wind": 2.437656775890443, "apogee_time": 26.684555937924245, "initial_stability_margin": 2.6686683468666734, "out_of_rail_stability_margin": 2.7352904000187266, "apogee": 3709.4069779687393, "out_of_rail_velocity": 26.716077520161143, "out_of_rail_time": 0.34689176193026605, "t_final": 308.94638416536515, "x_impact": 1510.9180697887157} +{"lateral_surface_wind": 3.6454046630968997, "apogee_x": 311.7542056990366, "y_impact": 2037.4794589533712, "max_mach_number": 0.7600269099935153, "impact_velocity": -5.481007086666526, "apogee_y": -174.14352430732157, "frontal_surface_wind": 3.4386233367562533, "apogee_time": 24.476759964175685, "initial_stability_margin": 2.6801893487277906, "out_of_rail_stability_margin": 2.7530392185045165, "apogee": 3007.0145314643114, "out_of_rail_velocity": 24.332872307333933, "out_of_rail_time": 0.37473936301149935, "t_final": 277.8451296164775, "x_impact": 1111.235066956895} +{"lateral_surface_wind": 4.67661112764232, "apogee_x": 439.5843400475155, "y_impact": 2889.7654934913576, "max_mach_number": 1.035005402416844, "impact_velocity": -5.403435310589012, "apogee_y": -271.17577649044813, "frontal_surface_wind": 3.203663533827551, "apogee_time": 28.136843249215353, "initial_stability_margin": 2.6586581556040936, "out_of_rail_stability_margin": 2.7235893126264075, "apogee": 4260.233277527869, "out_of_rail_velocity": 28.88635602207053, "out_of_rail_time": 0.3258546692246448, "t_final": 353.3648118618416, "x_impact": 1372.9856845567795} +{"lateral_surface_wind": 2.553962463614088, "apogee_x": 363.90525047267994, "y_impact": 2712.2481780077383, "max_mach_number": 0.9023333027247865, "impact_velocity": -5.495287756317761, "apogee_y": -30.295904617556324, "frontal_surface_wind": 4.505547759885395, "apogee_time": 26.867093494777457, "initial_stability_margin": 2.687858375327727, "out_of_rail_stability_margin": 2.7559410411623393, "apogee": 3754.1031347715725, "out_of_rail_velocity": 26.684272863109857, "out_of_rail_time": 0.3475531719579656, "t_final": 314.9035140034033, "x_impact": 1604.4027458393534} +{"lateral_surface_wind": 3.00928250051739, "apogee_x": 325.90190994956464, "y_impact": 2071.178728251356, "max_mach_number": 0.854725603075427, "impact_velocity": -5.356859886793838, "apogee_y": -103.90010897697233, "frontal_surface_wind": 2.6015311414461446, "apogee_time": 25.932168789865727, "initial_stability_margin": 2.5033804149318195, "out_of_rail_stability_margin": 2.5756910242025532, "apogee": 3472.0880348388637, "out_of_rail_velocity": 25.860519507292334, "out_of_rail_time": 0.35594950119814506, "t_final": 302.37325806667036, "x_impact": 1185.3348744759912} +{"lateral_surface_wind": 3.377394943726275, "apogee_x": 375.23639422331934, "y_impact": 1832.8628416715962, "max_mach_number": 0.6614891188393192, "impact_velocity": -5.373067693994734, "apogee_y": -35.68791621519947, "frontal_surface_wind": 3.702203263450769, "apogee_time": 22.503458454340787, "initial_stability_margin": 2.562670332994363, "out_of_rail_stability_margin": 2.6438517162977884, "apogee": 2479.869170400819, "out_of_rail_velocity": 22.634803756890268, "out_of_rail_time": 0.3975894694428318, "t_final": 253.31428304319564, "x_impact": 973.6578941524369} +{"lateral_surface_wind": 4.5050815292568975, "apogee_x": 562.1524942721703, "y_impact": 2328.942001902165, "max_mach_number": 0.7960107950079349, "impact_velocity": -5.3444960572405105, "apogee_y": -83.38204766512467, "frontal_surface_wind": 3.4406964544860306, "apogee_time": 24.927366414455324, "initial_stability_margin": 2.655298078395518, "out_of_rail_stability_margin": 2.7301271050214733, "apogee": 3158.308855544483, "out_of_rail_velocity": 24.920939117383252, "out_of_rail_time": 0.3672372305801648, "t_final": 295.71706589764926, "x_impact": 1143.961691751729} +{"lateral_surface_wind": 4.850483515056907, "apogee_x": 367.4431860943988, "y_impact": 2674.070800538398, "max_mach_number": 0.8599547902392888, "impact_velocity": -5.264243107894163, "apogee_y": -284.1804397787277, "frontal_surface_wind": 4.108162100337055, "apogee_time": 25.740088959975722, "initial_stability_margin": 2.599044256556105, "out_of_rail_stability_margin": 2.666931304551601, "apogee": 3441.423405110843, "out_of_rail_velocity": 26.043651068143213, "out_of_rail_time": 0.3540305484986467, "t_final": 309.84900564513697, "x_impact": 1251.2253070730644} +{"lateral_surface_wind": 2.341502243755287, "apogee_x": 178.1016184249337, "y_impact": 1437.0777143931073, "max_mach_number": 0.6897631542668906, "impact_velocity": -5.3551509892209355, "apogee_y": -101.03345737095141, "frontal_surface_wind": 3.1122546656397905, "apogee_time": 23.062762810077537, "initial_stability_margin": 2.6648976326568965, "out_of_rail_stability_margin": 2.742416048378238, "apogee": 2630.7171004162037, "out_of_rail_velocity": 23.17749962813104, "out_of_rail_time": 0.3900445806525927, "t_final": 261.88492977879616, "x_impact": 757.9447405726119} +{"lateral_surface_wind": 4.683743254641185, "apogee_x": 486.36313611589344, "y_impact": 3312.079163609174, "max_mach_number": 0.9821216901488822, "impact_velocity": -5.389762383352653, "apogee_y": -211.38977278507767, "frontal_surface_wind": 4.2972939505097605, "apogee_time": 27.669398259878797, "initial_stability_margin": 2.5883219657609056, "out_of_rail_stability_margin": 2.6530257036943263, "apogee": 4066.8990614471313, "out_of_rail_velocity": 28.01140864313003, "out_of_rail_time": 0.333937075032094, "t_final": 344.71648135708955, "x_impact": 1709.8708509306812} +{"lateral_surface_wind": 3.6761602490089405, "apogee_x": 786.0711390481436, "y_impact": 3226.8451066386647, "max_mach_number": 1.108031583769913, "impact_velocity": -5.389081699652521, "apogee_y": 153.323987191658, "frontal_surface_wind": 2.25983748508468, "apogee_time": 28.81641379884516, "initial_stability_margin": 2.438766853005707, "out_of_rail_stability_margin": 2.502550012631643, "apogee": 4531.633922994979, "out_of_rail_velocity": 30.12537594660361, "out_of_rail_time": 0.31539655203177436, "t_final": 369.31858890637494, "x_impact": 1911.3699139752614} +{"lateral_surface_wind": 4.313149506240061, "apogee_x": 738.5235346289584, "y_impact": 3595.563311525672, "max_mach_number": 1.0814477383491998, "impact_velocity": -5.373100108662482, "apogee_y": 38.841961240810534, "frontal_surface_wind": 2.8795397022145512, "apogee_time": 28.522249789910727, "initial_stability_margin": 2.6020024503029933, "out_of_rail_stability_margin": 2.6651983315126047, "apogee": 4422.475530609659, "out_of_rail_velocity": 29.74144606444093, "out_of_rail_time": 0.3187815292460894, "t_final": 361.035358761711, "x_impact": 1565.0457602734416} +{"lateral_surface_wind": 2.9904069854976845, "apogee_x": 393.8151458833962, "y_impact": 2128.1303231293346, "max_mach_number": 0.8304664238812034, "impact_velocity": -5.247443061043601, "apogee_y": -42.319359387335915, "frontal_surface_wind": 2.623206341277965, "apogee_time": 25.467480241491593, "initial_stability_margin": 2.425436899293336, "out_of_rail_stability_margin": 2.5036304219396777, "apogee": 3332.787739765545, "out_of_rail_velocity": 25.384800841525063, "out_of_rail_time": 0.361387693924066, "t_final": 304.7818000589112, "x_impact": 1237.3642304988373} +{"lateral_surface_wind": 3.143420030972033, "apogee_x": 579.1720998275189, "y_impact": 2619.8215543150372, "max_mach_number": 0.9551221924066213, "impact_velocity": -5.480862606389195, "apogee_y": 10.40124027765882, "frontal_surface_wind": 2.4377563366173534, "apogee_time": 27.54790605746678, "initial_stability_margin": 2.660942780483611, "out_of_rail_stability_margin": 2.7276546373405464, "apogee": 3992.912275508478, "out_of_rail_velocity": 27.518951021810018, "out_of_rail_time": 0.3388168118328589, "t_final": 329.617390329553, "x_impact": 1731.956364611877} +{"lateral_surface_wind": 3.420188401289634, "apogee_x": 464.97776092445935, "y_impact": 1955.5400122015699, "max_mach_number": 0.7905280755393922, "impact_velocity": -5.2876168840546764, "apogee_y": -22.54290181903305, "frontal_surface_wind": 1.9307034451942475, "apogee_time": 24.786405891824426, "initial_stability_margin": 2.5685011470843198, "out_of_rail_stability_margin": 2.6423505111203758, "apogee": 3124.4329191957627, "out_of_rail_velocity": 24.84396232150074, "out_of_rail_time": 0.3678250720245865, "t_final": 291.2787332658924, "x_impact": 808.899729937} +{"lateral_surface_wind": 3.2967482402487476, "apogee_x": 374.69599524859836, "y_impact": 2587.454781089997, "max_mach_number": 0.9128192989812863, "impact_velocity": -5.394618837105116, "apogee_y": -119.68497685671109, "frontal_surface_wind": 3.3488472827613878, "apogee_time": 26.845207741486515, "initial_stability_margin": 2.602323970275969, "out_of_rail_stability_margin": 2.672306100281672, "apogee": 3766.8439671100923, "out_of_rail_velocity": 26.76933488960524, "out_of_rail_time": 0.34600667723435696, "t_final": 320.68718038457257, "x_impact": 1538.7409544026352} +{"lateral_surface_wind": 2.8539332809663023, "apogee_x": 401.1152706456062, "y_impact": 2318.222704381423, "max_mach_number": 0.8228055020152965, "impact_velocity": -5.278854195586801, "apogee_y": -26.575352992986552, "frontal_surface_wind": 4.012726292521608, "apogee_time": 25.41696895107406, "initial_stability_margin": 2.6006158875845586, "out_of_rail_stability_margin": 2.6742996524543776, "apogee": 3306.873755130249, "out_of_rail_velocity": 25.338307828075727, "out_of_rail_time": 0.36192895918303913, "t_final": 296.7891414887586, "x_impact": 1572.3919979948269} +{"lateral_surface_wind": 3.1417257302555845, "apogee_x": 560.7988138264827, "y_impact": 3056.135302732008, "max_mach_number": 0.9962429782696837, "impact_velocity": -5.2908585855781824, "apogee_y": 55.32790447869089, "frontal_surface_wind": 3.3088878285904397, "apogee_time": 27.607086777124326, "initial_stability_margin": 2.706136896926402, "out_of_rail_stability_margin": 2.7715713312439525, "apogee": 4078.986895261067, "out_of_rail_velocity": 28.26987838761585, "out_of_rail_time": 0.3316195831828407, "t_final": 345.6626968343415, "x_impact": 1711.5754972983584} +{"lateral_surface_wind": 3.38120514728785, "apogee_x": 465.3608866033972, "y_impact": 2310.092157250318, "max_mach_number": 0.8467167784508824, "impact_velocity": -5.439752514236949, "apogee_y": -41.9849797722587, "frontal_surface_wind": 2.699454030749654, "apogee_time": 26.024076538457944, "initial_stability_margin": 2.5262402796063865, "out_of_rail_stability_margin": 2.596926199137703, "apogee": 3472.604076623901, "out_of_rail_velocity": 25.762690727170874, "out_of_rail_time": 0.35736883088292826, "t_final": 301.28297398273463, "x_impact": 1323.2540921762052} +{"lateral_surface_wind": 2.5549758514047425, "apogee_x": 311.11757777845867, "y_impact": 2004.1429895270246, "max_mach_number": 0.7972627632970841, "impact_velocity": -5.288585069371175, "apogee_y": -51.33522844945486, "frontal_surface_wind": 3.7170802152742874, "apogee_time": 24.955748242250177, "initial_stability_margin": 2.6691896762427474, "out_of_rail_stability_margin": 2.7424593934219565, "apogee": 3172.6708395418045, "out_of_rail_velocity": 24.97023641856611, "out_of_rail_time": 0.36659383513780164, "t_final": 288.750874408698, "x_impact": 1357.465733588586} +{"lateral_surface_wind": 3.1767896974095726, "apogee_x": 431.0781617957039, "y_impact": 1899.5660289106986, "max_mach_number": 0.7968935967476531, "impact_velocity": -5.438001821268519, "apogee_y": -62.19784591810267, "frontal_surface_wind": 2.394107906145141, "apogee_time": 25.08634448037754, "initial_stability_margin": 2.707708377216792, "out_of_rail_stability_margin": 2.777381214094361, "apogee": 3194.392143891173, "out_of_rail_velocity": 24.991537564585215, "out_of_rail_time": 0.36595151461096365, "t_final": 285.0702491964097, "x_impact": 1185.4055551841293} +{"lateral_surface_wind": 4.432032471018593, "apogee_x": 363.54612020965845, "y_impact": 1353.8745272268939, "max_mach_number": 0.5294956617140161, "impact_velocity": -5.430534987664165, "apogee_y": -96.3340694059893, "frontal_surface_wind": 2.69297154378682, "apogee_time": 19.60551812639655, "initial_stability_margin": 2.6376940730656044, "out_of_rail_stability_margin": 2.7272378504747934, "apogee": 1811.569010318425, "out_of_rail_velocity": 20.222794628264786, "out_of_rail_time": 0.4371748617829293, "t_final": 212.64875110965374, "x_impact": 464.4354876271771} +{"lateral_surface_wind": 5.120999965722182, "apogee_x": 504.8607579020819, "y_impact": 3055.5172454084823, "max_mach_number": 0.8857354818248923, "impact_velocity": -5.362782079077641, "apogee_y": -250.62116849368977, "frontal_surface_wind": 4.908893217115733, "apogee_time": 26.304314288263626, "initial_stability_margin": 2.6292552174529025, "out_of_rail_stability_margin": 2.702773933311168, "apogee": 3597.0388054717587, "out_of_rail_velocity": 26.296647945218037, "out_of_rail_time": 0.3514259634304738, "t_final": 316.5522753673425, "x_impact": 1653.9502299523185} +{"lateral_surface_wind": 2.298573410456435, "apogee_x": 309.3309689591445, "y_impact": 2637.823293525093, "max_mach_number": 0.9573332230511061, "impact_velocity": -5.341995889083252, "apogee_y": -51.8171467416147, "frontal_surface_wind": 2.7679976398307424, "apogee_time": 27.361383737380574, "initial_stability_margin": 2.577007011193985, "out_of_rail_stability_margin": 2.6451726765097434, "apogee": 3961.6333075875223, "out_of_rail_velocity": 27.543094582696394, "out_of_rail_time": 0.33833809887978794, "t_final": 338.29652527148204, "x_impact": 1740.474790441034} +{"lateral_surface_wind": 4.767652324229601, "apogee_x": 569.7127816851478, "y_impact": 2767.1479618345966, "max_mach_number": 0.8119088622236186, "impact_velocity": -5.358757509502721, "apogee_y": -102.39204864974609, "frontal_surface_wind": 2.899840250532337, "apogee_time": 25.09246228593911, "initial_stability_margin": 2.621711864740344, "out_of_rail_stability_margin": 2.6951839518251517, "apogee": 3217.3042007752283, "out_of_rail_velocity": 25.170568317967753, "out_of_rail_time": 0.3642827405020406, "t_final": 300.558276715988, "x_impact": 1174.9238143889522} +{"lateral_surface_wind": 3.4202651105022888, "apogee_x": 541.8036517111177, "y_impact": 2175.294282788903, "max_mach_number": 0.8357737859513803, "impact_velocity": -5.409422291597488, "apogee_y": -24.991749119788693, "frontal_surface_wind": 3.0200936740811044, "apogee_time": 25.744187008246666, "initial_stability_margin": 2.7215879197593638, "out_of_rail_stability_margin": 2.7913085802253486, "apogee": 3394.3016085979657, "out_of_rail_velocity": 25.609082934559147, "out_of_rail_time": 0.35916154433978803, "t_final": 288.73395487218727, "x_impact": 1355.8824175152547} +{"lateral_surface_wind": 2.4705639232530183, "apogee_x": 340.03385379753587, "y_impact": 1593.6726867051148, "max_mach_number": 0.7003328490350602, "impact_velocity": -5.276203184221072, "apogee_y": -0.2763957234402258, "frontal_surface_wind": 3.010826425157774, "apogee_time": 23.19052307376245, "initial_stability_margin": 2.522888476227057, "out_of_rail_stability_margin": 2.604543753226636, "apogee": 2670.477763636487, "out_of_rail_velocity": 23.2960086223867, "out_of_rail_time": 0.3882543415782159, "t_final": 266.4000868851404, "x_impact": 967.6837160574855} +{"lateral_surface_wind": 3.9134192107801042, "apogee_x": 503.7721316567916, "y_impact": 2217.652107910419, "max_mach_number": 0.7835758471905061, "impact_velocity": -5.244376724907114, "apogee_y": -57.42824521999448, "frontal_surface_wind": 2.7552161109063915, "apogee_time": 24.588222590025747, "initial_stability_margin": 2.5882001670224177, "out_of_rail_stability_margin": 2.6626353556220224, "apogee": 3073.106195470975, "out_of_rail_velocity": 24.74566910841616, "out_of_rail_time": 0.3693418345588794, "t_final": 292.9981934392205, "x_impact": 1009.6231876366069} +{"lateral_surface_wind": 3.4572608237711138, "apogee_x": 351.5764974237043, "y_impact": 2874.299986253447, "max_mach_number": 0.9734732184900923, "impact_velocity": -5.4929151240816605, "apogee_y": -170.7700923650193, "frontal_surface_wind": 3.627733894076413, "apogee_time": 27.71599330233901, "initial_stability_margin": 2.798967040292785, "out_of_rail_stability_margin": 2.8634431114467147, "apogee": 4062.4210332466787, "out_of_rail_velocity": 27.829265199755945, "out_of_rail_time": 0.3356677254482405, "t_final": 331.46664829510263, "x_impact": 1697.6083392960431} +{"lateral_surface_wind": 3.417021811245677, "apogee_x": 376.63231162612027, "y_impact": 1583.5906627690124, "max_mach_number": 0.6815339201755101, "impact_velocity": -5.383980788528211, "apogee_y": -79.81880659031631, "frontal_surface_wind": 3.0237627499219, "apogee_time": 22.89583927826912, "initial_stability_margin": 2.5804362107986383, "out_of_rail_stability_margin": 2.6605870537088934, "apogee": 2582.881312399418, "out_of_rail_velocity": 22.98989632651651, "out_of_rail_time": 0.39242837585275536, "t_final": 251.9429757701339, "x_impact": 916.556288373535} +{"lateral_surface_wind": 3.479050019599129, "apogee_x": 618.7576994394065, "y_impact": 2948.193522277082, "max_mach_number": 0.9445836489249929, "impact_velocity": -5.389607925878515, "apogee_y": 25.274604174342144, "frontal_surface_wind": 2.2756575709974456, "apogee_time": 27.20323599838824, "initial_stability_margin": 2.596407226541102, "out_of_rail_stability_margin": 2.6668303729645992, "apogee": 3898.0988291021717, "out_of_rail_velocity": 27.29206957407979, "out_of_rail_time": 0.3410261855795357, "t_final": 333.03424483298005, "x_impact": 1532.425754513474} +{"lateral_surface_wind": 4.768416167484526, "apogee_x": 389.67702947636263, "y_impact": 2816.928998026028, "max_mach_number": 0.7804534988900267, "impact_velocity": -5.3363513472460165, "apogee_y": -229.32493414377444, "frontal_surface_wind": 5.061648731933112, "apogee_time": 24.62936176022536, "initial_stability_margin": 2.561297917366808, "out_of_rail_stability_margin": 2.6359193252256787, "apogee": 3070.985404882965, "out_of_rail_velocity": 24.63781806042887, "out_of_rail_time": 0.3705417146066664, "t_final": 293.41225834216783, "x_impact": 1278.2507567207604} +{"lateral_surface_wind": 3.7773310344056497, "apogee_x": 686.0778508640542, "y_impact": 2477.826531059828, "max_mach_number": 0.959530712744752, "impact_velocity": -5.426483767421978, "apogee_y": 17.698607028159824, "frontal_surface_wind": 2.0863340796486236, "apogee_time": 27.53348991749355, "initial_stability_margin": 2.6531836998317795, "out_of_rail_stability_margin": 2.720831731507646, "apogee": 3994.3820188332306, "out_of_rail_velocity": 27.566166233924353, "out_of_rail_time": 0.3381743690952135, "t_final": 322.631922603172, "x_impact": 1485.1169257965523} +{"lateral_surface_wind": 4.826288096429953, "apogee_x": 409.6425197362712, "y_impact": 2371.606120183504, "max_mach_number": 0.7774450321758849, "impact_velocity": -5.419518494351519, "apogee_y": -227.32094714854162, "frontal_surface_wind": 2.8011650029225175, "apogee_time": 24.60472790023395, "initial_stability_margin": 2.6425608880937763, "out_of_rail_stability_margin": 2.7171820441928727, "apogee": 3060.9255504459925, "out_of_rail_velocity": 24.571382722031316, "out_of_rail_time": 0.3711574500239867, "t_final": 284.75211452632914, "x_impact": 892.1044703415995} +{"lateral_surface_wind": 4.300006157211573, "apogee_x": 614.9357055754588, "y_impact": 2220.748695616541, "max_mach_number": 0.7593397934522963, "impact_velocity": -5.476520459731266, "apogee_y": -55.443606971044936, "frontal_surface_wind": 2.0833595100506686, "apogee_time": 24.384835022617878, "initial_stability_margin": 2.6783651375588917, "out_of_rail_stability_margin": 2.7550811124642145, "apogee": 2983.0235174666263, "out_of_rail_velocity": 24.277305383665034, "out_of_rail_time": 0.37577259036887023, "t_final": 278.37867550887546, "x_impact": 1211.076539455518} +{"lateral_surface_wind": 3.1336501715429197, "apogee_x": 469.36441690791975, "y_impact": 2017.5536323536269, "max_mach_number": 0.732529686646664, "impact_velocity": -5.475058195221115, "apogee_y": -18.895884488396447, "frontal_surface_wind": 3.9320384618467696, "apogee_time": 23.94115304772571, "initial_stability_margin": 2.763525329094319, "out_of_rail_stability_margin": 2.8361477172574614, "apogee": 2856.757625918381, "out_of_rail_velocity": 23.911962794599066, "out_of_rail_time": 0.379535746814976, "t_final": 265.6525090451076, "x_impact": 1265.402588764818} +{"lateral_surface_wind": 3.3805009016217373, "apogee_x": 363.0500408262846, "y_impact": 1798.3108757106922, "max_mach_number": 0.6977314244927219, "impact_velocity": -5.256864564519784, "apogee_y": -80.72552189107277, "frontal_surface_wind": 3.2642825761530143, "apogee_time": 23.057867186881285, "initial_stability_margin": 2.602358513294396, "out_of_rail_stability_margin": 2.684290066364845, "apogee": 2639.985236952526, "out_of_rail_velocity": 23.23560701935679, "out_of_rail_time": 0.38896771008514, "t_final": 267.779213945475, "x_impact": 1018.8272557595423} +{"lateral_surface_wind": 4.2491459324187195, "apogee_x": 594.3069268778435, "y_impact": 2622.738052047174, "max_mach_number": 0.8680269972208315, "impact_velocity": -5.413091211236943, "apogee_y": -86.95151260608507, "frontal_surface_wind": 2.185222790743647, "apogee_time": 26.194165420866376, "initial_stability_margin": 2.7016454915304284, "out_of_rail_stability_margin": 2.7711553777695985, "apogee": 3543.4154432531463, "out_of_rail_velocity": 26.09651394063893, "out_of_rail_time": 0.353439441080202, "t_final": 305.9485712179197, "x_impact": 1438.7321100615923} +{"lateral_surface_wind": 3.895298571460426, "apogee_x": 543.8335663818481, "y_impact": 2377.534277736566, "max_mach_number": 0.8130859400636976, "impact_velocity": -5.402495608290281, "apogee_y": -40.69442685894276, "frontal_surface_wind": 2.7807759306134825, "apogee_time": 25.255919556097336, "initial_stability_margin": 2.626815248435198, "out_of_rail_stability_margin": 2.6991173547920617, "apogee": 3255.1339774233656, "out_of_rail_velocity": 25.226223389388107, "out_of_rail_time": 0.3636462374814251, "t_final": 301.0205330700426, "x_impact": 1115.2902622604233} +{"lateral_surface_wind": 3.2216824852893837, "apogee_x": 237.29871130116834, "y_impact": 1341.6303516146036, "max_mach_number": 0.5887596723033157, "impact_velocity": -5.308270387302994, "apogee_y": -107.02413713960316, "frontal_surface_wind": 3.231089783698924, "apogee_time": 20.97292252365564, "initial_stability_margin": 2.5760483737493116, "out_of_rail_stability_margin": 2.6594509293093744, "apogee": 2112.875062253327, "out_of_rail_velocity": 21.374098347896055, "out_of_rail_time": 0.4176191460042892, "t_final": 235.90311042921778, "x_impact": 645.5225831068537} +{"lateral_surface_wind": 3.803993587010752, "apogee_x": 947.9743949845563, "y_impact": 3316.6456513159205, "max_mach_number": 1.0800574914916197, "impact_velocity": -5.36015731281796, "apogee_y": 222.93766726275948, "frontal_surface_wind": 1.759121081752761, "apogee_time": 28.39509850916935, "initial_stability_margin": 2.4338614615512633, "out_of_rail_stability_margin": 2.4984651422623845, "apogee": 4380.73096164794, "out_of_rail_velocity": 29.718387785984792, "out_of_rail_time": 0.319500917475642, "t_final": 352.6257975888612, "x_impact": 1977.6002074341536} +{"lateral_surface_wind": 3.4117899228260478, "apogee_x": 409.58408407566856, "y_impact": 1749.3522958249512, "max_mach_number": 0.7025600410453066, "impact_velocity": -5.4078372221574895, "apogee_y": -46.79695351711645, "frontal_surface_wind": 2.6606934875477553, "apogee_time": 23.365140006997972, "initial_stability_margin": 2.6427383611041386, "out_of_rail_stability_margin": 2.719925370899298, "apogee": 2701.841691631053, "out_of_rail_velocity": 23.367906245703963, "out_of_rail_time": 0.3868904911349051, "t_final": 264.00078466791155, "x_impact": 931.4372755293907} +{"lateral_surface_wind": 4.7523338419720265, "apogee_x": 662.9450467904493, "y_impact": 3641.7020811909506, "max_mach_number": 1.083436096928815, "impact_velocity": -5.3260248126116405, "apogee_y": -93.08291493160438, "frontal_surface_wind": 4.221316053902145, "apogee_time": 28.47177665685333, "initial_stability_margin": 2.6124332873630824, "out_of_rail_stability_margin": 2.677253847974358, "apogee": 4412.192578673274, "out_of_rail_velocity": 29.70622514352519, "out_of_rail_time": 0.3187288331352759, "t_final": 355.4653740190434, "x_impact": 2044.5990689421637} +{"lateral_surface_wind": 5.18509054575456, "apogee_x": 394.67011321874827, "y_impact": 3056.224168959192, "max_mach_number": 0.9298043727613423, "impact_velocity": -5.520328568704359, "apogee_y": -363.3421508687153, "frontal_surface_wind": 4.841147518749878, "apogee_time": 27.244553868078228, "initial_stability_margin": 2.7998660529288744, "out_of_rail_stability_margin": 2.863209741735317, "apogee": 3877.504015710655, "out_of_rail_velocity": 27.112921128728097, "out_of_rail_time": 0.34257002692198085, "t_final": 320.97962115549603, "x_impact": 1624.941394927328} +{"lateral_surface_wind": 4.194935867044082, "apogee_x": 363.36223233350296, "y_impact": 1775.8159851596286, "max_mach_number": 0.6588042015102401, "impact_velocity": -5.350600842719608, "apogee_y": -124.13105977461942, "frontal_surface_wind": 3.0491836007685507, "apogee_time": 22.463074481352276, "initial_stability_margin": 2.6316751062797024, "out_of_rail_stability_margin": 2.7100544274282568, "apogee": 2469.9703291432847, "out_of_rail_velocity": 22.65291083270145, "out_of_rail_time": 0.3977898976571119, "t_final": 253.41837934482731, "x_impact": 558.4350797801252} +{"lateral_surface_wind": 4.120860118603699, "apogee_x": 453.67457730703467, "y_impact": 3107.20653822109, "max_mach_number": 0.951737539505196, "impact_velocity": -5.35373347474893, "apogee_y": -166.05055544524222, "frontal_surface_wind": 4.368708854265721, "apogee_time": 27.291859610514287, "initial_stability_margin": 2.718352408679554, "out_of_rail_stability_margin": 2.786302341914151, "apogee": 3931.2076158166815, "out_of_rail_velocity": 27.454574358626346, "out_of_rail_time": 0.3397126087792538, "t_final": 332.4108761546751, "x_impact": 1707.3694371960949} +{"lateral_surface_wind": 2.746813287992456, "apogee_x": 405.92322691177657, "y_impact": 1608.6397828490758, "max_mach_number": 0.7254105267237461, "impact_velocity": -5.520753286573688, "apogee_y": -32.48597608985691, "frontal_surface_wind": 2.761119088742056, "apogee_time": 23.943366427557606, "initial_stability_margin": 2.6694802692153465, "out_of_rail_stability_margin": 2.7441022783708857, "apogee": 2846.01804059907, "out_of_rail_velocity": 23.773072748536396, "out_of_rail_time": 0.38163470915442715, "t_final": 267.0101255659421, "x_impact": 1080.6477469705992} +{"lateral_surface_wind": 4.679894835632965, "apogee_x": 702.1327530291621, "y_impact": 3163.7633043925944, "max_mach_number": 0.9070325498544816, "impact_velocity": -5.355352786453009, "apogee_y": -1.7976074023970443, "frontal_surface_wind": 3.03943522562256, "apogee_time": 26.648250639425722, "initial_stability_margin": 2.539204384031634, "out_of_rail_stability_margin": 2.609192620178384, "apogee": 3706.1133382075163, "out_of_rail_velocity": 26.694186060223554, "out_of_rail_time": 0.3472055008722834, "t_final": 311.0900858042159, "x_impact": 1496.5500312244264} +{"lateral_surface_wind": 4.463512873633541, "apogee_x": 586.0568437249966, "y_impact": 2959.1460578240176, "max_mach_number": 0.9037155061291903, "impact_velocity": -5.266587971031335, "apogee_y": -124.48628099713086, "frontal_surface_wind": 4.017979342573309, "apogee_time": 26.488784997053752, "initial_stability_margin": 2.6048135307098774, "out_of_rail_stability_margin": 2.677509047843766, "apogee": 3671.339949590683, "out_of_rail_velocity": 26.611757194314393, "out_of_rail_time": 0.34781823643594534, "t_final": 320.8386557046237, "x_impact": 1747.0171599312898} +{"lateral_surface_wind": 2.8370837192067433, "apogee_x": 263.773197502431, "y_impact": 1608.385675439308, "max_mach_number": 0.616800442501124, "impact_velocity": -5.256981481959889, "apogee_y": -63.932935183315266, "frontal_surface_wind": 4.151101761371951, "apogee_time": 21.51139028786294, "initial_stability_margin": 2.57328465533382, "out_of_rail_stability_margin": 2.6578413960015244, "apogee": 2243.416152976811, "out_of_rail_velocity": 21.835748972097594, "out_of_rail_time": 0.4096893216696165, "t_final": 242.87819110619392, "x_impact": 871.1094097358243} +{"lateral_surface_wind": 4.071206111418994, "apogee_x": 493.5253969922474, "y_impact": 2838.7320856291135, "max_mach_number": 0.87252070792591, "impact_velocity": -5.375163230816277, "apogee_y": -96.96723908297454, "frontal_surface_wind": 4.415018229722594, "apogee_time": 26.23690878126845, "initial_stability_margin": 2.5862218414644627, "out_of_rail_stability_margin": 2.655980351934829, "apogee": 3562.8011288398793, "out_of_rail_velocity": 26.17429254329779, "out_of_rail_time": 0.35253016719390934, "t_final": 310.1493144718508, "x_impact": 1579.2125887924342} +{"lateral_surface_wind": 4.740662087652769, "apogee_x": 554.0194976404193, "y_impact": 2086.1536199806424, "max_mach_number": 0.7824075028162714, "impact_velocity": -5.4738474318791175, "apogee_y": -147.86026455439884, "frontal_surface_wind": 3.108098236519576, "apogee_time": 24.763856396158946, "initial_stability_margin": 2.7139147477507244, "out_of_rail_stability_margin": 2.7876555324403216, "apogee": 3100.4343186562337, "out_of_rail_velocity": 24.701579949364135, "out_of_rail_time": 0.369624021656795, "t_final": 279.95755053162685, "x_impact": 1090.7947101976526} +{"lateral_surface_wind": 3.260742169435201, "apogee_x": 620.9412460525771, "y_impact": 2668.8069020049497, "max_mach_number": 0.9663569086902388, "impact_velocity": -5.215966373484729, "apogee_y": 63.27551963072632, "frontal_surface_wind": 2.9613778628666845, "apogee_time": 27.19398814254786, "initial_stability_margin": 2.467307937515581, "out_of_rail_stability_margin": 2.5372015489383095, "apogee": 3938.6049597513047, "out_of_rail_velocity": 27.707717571829164, "out_of_rail_time": 0.33736808997879014, "t_final": 340.05140660196014, "x_impact": 1724.9480915800352} +{"lateral_surface_wind": 2.6640133854103105, "apogee_x": 343.87159805469616, "y_impact": 2037.5670885469513, "max_mach_number": 0.7429165381935612, "impact_velocity": -5.415454547643134, "apogee_y": -17.29858572855198, "frontal_surface_wind": 4.141248622487665, "apogee_time": 24.131855279415426, "initial_stability_margin": 2.572533869052755, "out_of_rail_stability_margin": 2.651508224561305, "apogee": 2912.9283522162086, "out_of_rail_velocity": 23.983270146652416, "out_of_rail_time": 0.3785626110710759, "t_final": 275.92874028628677, "x_impact": 1338.4057843035837} +{"lateral_surface_wind": 4.184571294769018, "apogee_x": 822.6634204029857, "y_impact": 3291.6005505632397, "max_mach_number": 0.9800669417781719, "impact_velocity": -5.347663805153006, "apogee_y": 91.57698339000444, "frontal_surface_wind": 2.3064697871793487, "apogee_time": 27.52697048411257, "initial_stability_margin": 2.5503678048234666, "out_of_rail_stability_margin": 2.6172643895397867, "apogee": 4024.968489904183, "out_of_rail_velocity": 27.94698584683673, "out_of_rail_time": 0.3347705365632582, "t_final": 335.1239209735431, "x_impact": 1945.3347043007766} +{"lateral_surface_wind": 4.896140734535488, "apogee_x": 477.8833238076104, "y_impact": 2790.3226467687473, "max_mach_number": 0.8467490224550992, "impact_velocity": -5.295778662975403, "apogee_y": -198.57626485621765, "frontal_surface_wind": 2.677197801986556, "apogee_time": 25.687862738216626, "initial_stability_margin": 2.352112774307271, "out_of_rail_stability_margin": 2.4250739427241146, "apogee": 3400.969304968627, "out_of_rail_velocity": 25.70821911395631, "out_of_rail_time": 0.35781554411128336, "t_final": 306.98125194515234, "x_impact": 1133.5005511776055} +{"lateral_surface_wind": 2.86242562144494, "apogee_x": 515.2260949383409, "y_impact": 3071.1642184119364, "max_mach_number": 0.9913893115222914, "impact_velocity": -5.444980341867935, "apogee_y": 35.42793587030912, "frontal_surface_wind": 4.006672813269987, "apogee_time": 27.788534427663535, "initial_stability_margin": 2.5464002666684697, "out_of_rail_stability_margin": 2.6125678440202513, "apogee": 4108.626627421779, "out_of_rail_velocity": 28.12805973480365, "out_of_rail_time": 0.3328204365917537, "t_final": 336.208767936421, "x_impact": 2110.3275216631823} +{"lateral_surface_wind": 4.622204347249421, "apogee_x": 323.86743365689387, "y_impact": 2557.881756364526, "max_mach_number": 0.9177579664233999, "impact_velocity": -5.5073678811252655, "apogee_y": -330.06148774146385, "frontal_surface_wind": 4.337185746877813, "apogee_time": 27.073876159489313, "initial_stability_margin": 2.6026773309443767, "out_of_rail_stability_margin": 2.6696908225923064, "apogee": 3822.189073422089, "out_of_rail_velocity": 26.887888900773014, "out_of_rail_time": 0.34493948037413386, "t_final": 317.93453888211235, "x_impact": 1317.2416328784784} +{"lateral_surface_wind": 3.054616805695225, "apogee_x": 267.0642879137038, "y_impact": 1354.0605580135214, "max_mach_number": 0.5591996594739104, "impact_velocity": -5.3458180714982895, "apogee_y": -46.5133058437917, "frontal_surface_wind": 3.173564953262204, "apogee_time": 20.351414192339746, "initial_stability_margin": 2.5490970022148636, "out_of_rail_stability_margin": 2.634043898142637, "apogee": 1971.6394312392579, "out_of_rail_velocity": 20.831011329989266, "out_of_rail_time": 0.4264445874594225, "t_final": 226.82196747889793, "x_impact": 615.1941982561123} +{"lateral_surface_wind": 4.778838840973904, "apogee_x": 727.1408166528915, "y_impact": 3686.452925191847, "max_mach_number": 1.0069409193141068, "impact_velocity": -5.34683191751625, "apogee_y": -37.6217993734019, "frontal_surface_wind": 2.881367990267566, "apogee_time": 27.857588462533066, "initial_stability_margin": 2.628396801556231, "out_of_rail_stability_margin": 2.695555621088182, "apogee": 4143.483680767965, "out_of_rail_velocity": 28.359596077977336, "out_of_rail_time": 0.3310007457970511, "t_final": 339.38793332713016, "x_impact": 1758.054060753766} +{"lateral_surface_wind": 0.9649408951766258, "apogee_x": 381.8499194825977, "y_impact": 2090.440085748636, "max_mach_number": 1.0117713205052805, "impact_velocity": -5.37042086936246, "apogee_y": 197.79633440348618, "frontal_surface_wind": 2.6851734400373104, "apogee_time": 27.99386772964694, "initial_stability_margin": 2.682829167377969, "out_of_rail_stability_margin": 2.749502355134519, "apogee": 4197.07021598798, "out_of_rail_velocity": 28.48719097386248, "out_of_rail_time": 0.32980495296136625, "t_final": 334.92676013178, "x_impact": 1606.7156835427143} +{"lateral_surface_wind": 2.010615274996951, "apogee_x": 184.9051372059925, "y_impact": 1377.6928343179095, "max_mach_number": 0.6859478902534539, "impact_velocity": -5.360440785291602, "apogee_y": -70.15957846834718, "frontal_surface_wind": 3.1342551987478657, "apogee_time": 23.022044447549618, "initial_stability_margin": 2.5813088638150954, "out_of_rail_stability_margin": 2.6579365231005108, "apogee": 2617.4794149902, "out_of_rail_velocity": 23.10781760669196, "out_of_rail_time": 0.39046590736239084, "t_final": 261.0897719367252, "x_impact": 907.4061252574136} +{"lateral_surface_wind": 3.222322313607182, "apogee_x": 488.6653823525199, "y_impact": 2123.903712794304, "max_mach_number": 0.8111269044543415, "impact_velocity": -5.355332709447376, "apogee_y": -4.003339215672116, "frontal_surface_wind": 3.003137900503254, "apogee_time": 25.20735773881433, "initial_stability_margin": 2.686293739597577, "out_of_rail_stability_margin": 2.7576541193065705, "apogee": 3246.2396642683125, "out_of_rail_velocity": 25.23949748533722, "out_of_rail_time": 0.3636830252802998, "t_final": 298.5477049033145, "x_impact": 1275.1942052130585} +{"lateral_surface_wind": 2.5400078098540826, "apogee_x": 361.71605505825244, "y_impact": 2422.47417928522, "max_mach_number": 0.8231717981413674, "impact_velocity": -5.468119625019625, "apogee_y": -18.54419224249534, "frontal_surface_wind": 4.513429428720284, "apogee_time": 25.684561303430904, "initial_stability_margin": 2.646030890688752, "out_of_rail_stability_margin": 2.7176523201654614, "apogee": 3361.8537152501663, "out_of_rail_velocity": 25.36920874192794, "out_of_rail_time": 0.3616326774700557, "t_final": 297.96598858056257, "x_impact": 1476.2347063775337} +{"lateral_surface_wind": 3.7906095921716645, "apogee_x": 575.1075151513757, "y_impact": 2427.320299713448, "max_mach_number": 0.841661996742022, "impact_velocity": -5.361653719559784, "apogee_y": 1.0031925170534932, "frontal_surface_wind": 2.92187348405729, "apogee_time": 25.745712785245626, "initial_stability_margin": 2.675536227985088, "out_of_rail_stability_margin": 2.7471504785251386, "apogee": 3405.208848752063, "out_of_rail_velocity": 25.661539813700767, "out_of_rail_time": 0.35813363306201307, "t_final": 299.4014285272712, "x_impact": 1169.9934421541104} +{"lateral_surface_wind": 3.045694552635677, "apogee_x": 537.3501283680753, "y_impact": 1783.1943312301435, "max_mach_number": 0.7125409560150933, "impact_velocity": -5.6062184352648705, "apogee_y": 64.92863062637903, "frontal_surface_wind": 2.5588063896824313, "apogee_time": 23.682841830324183, "initial_stability_margin": 2.7588469670391653, "out_of_rail_stability_margin": 2.836208116414786, "apogee": 2771.6829578575253, "out_of_rail_velocity": 23.51316571689546, "out_of_rail_time": 0.38487550649863195, "t_final": 263.6072171408287, "x_impact": 1154.5019925015097} +{"lateral_surface_wind": 3.324469382581483, "apogee_x": 822.1978520843185, "y_impact": 3177.173905168494, "max_mach_number": 0.9381595323442128, "impact_velocity": -5.367455787914835, "apogee_y": 253.8040948178233, "frontal_surface_wind": 2.4960588421727934, "apogee_time": 26.94886660162908, "initial_stability_margin": 2.5907669487156526, "out_of_rail_stability_margin": 2.6612394582804457, "apogee": 3826.377470728893, "out_of_rail_velocity": 27.210166741296202, "out_of_rail_time": 0.34178850174104564, "t_final": 331.5455616824237, "x_impact": 1741.3955960340616} +{"lateral_surface_wind": 4.610175597374659, "apogee_x": 594.5229903686959, "y_impact": 2376.9634806269155, "max_mach_number": 0.8257533414139459, "impact_velocity": -5.334622682714909, "apogee_y": -92.82528010208507, "frontal_surface_wind": 3.298550081253217, "apogee_time": 25.413615894874244, "initial_stability_margin": 2.6174610165857857, "out_of_rail_stability_margin": 2.6885960804191376, "apogee": 3308.746809426714, "out_of_rail_velocity": 25.421385419903224, "out_of_rail_time": 0.3606170199749223, "t_final": 300.50472781602974, "x_impact": 1218.336442452668} +{"lateral_surface_wind": 2.6786150728789764, "apogee_x": 348.36036532203235, "y_impact": 1732.9675749914804, "max_mach_number": 0.7635452062006369, "impact_velocity": -5.523607686552456, "apogee_y": -60.170325294685725, "frontal_surface_wind": 2.827327917425434, "apogee_time": 24.67788032700256, "initial_stability_margin": 2.648389028046182, "out_of_rail_stability_margin": 2.7200216112334457, "apogee": 3053.5281575358927, "out_of_rail_velocity": 24.425411953557955, "out_of_rail_time": 0.3736355152652968, "t_final": 280.1851793953645, "x_impact": 1084.9810117992085} +{"lateral_surface_wind": 2.588858116982171, "apogee_x": 242.0436826628625, "y_impact": 2497.6059785502384, "max_mach_number": 0.8669311488662501, "impact_velocity": -5.378215650684302, "apogee_y": -109.67366155821924, "frontal_surface_wind": 4.4855878691977, "apogee_time": 26.18346423580636, "initial_stability_margin": 2.4744329623328785, "out_of_rail_stability_margin": 2.5468554878653977, "apogee": 3546.5743802983025, "out_of_rail_velocity": 26.049794986102583, "out_of_rail_time": 0.35392805734109445, "t_final": 310.3533619160437, "x_impact": 1410.742060245638} +{"lateral_surface_wind": 3.4592569752081, "apogee_x": 479.8405575848482, "y_impact": 2088.3240821039785, "max_mach_number": 0.8230261818468364, "impact_velocity": -5.2205611502694005, "apogee_y": -29.56212752254909, "frontal_surface_wind": 1.8597972128904772, "apogee_time": 25.236601723214264, "initial_stability_margin": 2.5516702940319553, "out_of_rail_stability_margin": 2.62419649964195, "apogee": 3272.8468742291398, "out_of_rail_velocity": 25.403692181201638, "out_of_rail_time": 0.36176397346410044, "t_final": 302.4933006281816, "x_impact": 870.2452319030748} +{"lateral_surface_wind": 2.847800093165599, "apogee_x": 455.2761220249883, "y_impact": 2903.9680179885636, "max_mach_number": 1.0094654402995717, "impact_velocity": -5.340681087204096, "apogee_y": 13.854224146688663, "frontal_surface_wind": 2.777369272747195, "apogee_time": 27.918874143158266, "initial_stability_margin": 2.523603280921167, "out_of_rail_stability_margin": 2.593736283425655, "apogee": 4170.787686537832, "out_of_rail_velocity": 28.35867037546528, "out_of_rail_time": 0.3306883838801297, "t_final": 352.9364401938557, "x_impact": 1738.9438647295974} +{"lateral_surface_wind": 3.695400474367538, "apogee_x": 522.0575993566848, "y_impact": 2269.8405731421326, "max_mach_number": 0.8603875357758342, "impact_velocity": -5.366002909310683, "apogee_y": -28.985042460875665, "frontal_surface_wind": 1.9770911775459705, "apogee_time": 26.019540173305003, "initial_stability_margin": 2.5626912123506123, "out_of_rail_stability_margin": 2.6349716153107674, "apogee": 3496.23196243436, "out_of_rail_velocity": 25.932653680884112, "out_of_rail_time": 0.35485550523083653, "t_final": 308.84580286604677, "x_impact": 1108.6892732108593} +{"lateral_surface_wind": 3.356619890046674, "apogee_x": 440.56231716773163, "y_impact": 1860.6206716133854, "max_mach_number": 0.7194227291159385, "impact_velocity": -5.359869675377601, "apogee_y": -14.478363385968809, "frontal_surface_wind": 2.729963960553226, "apogee_time": 23.591941143382407, "initial_stability_margin": 2.640791683762023, "out_of_rail_stability_margin": 2.718419878613856, "apogee": 2772.750215141025, "out_of_rail_velocity": 23.646665087396286, "out_of_rail_time": 0.38377048678702025, "t_final": 270.7062043941972, "x_impact": 1002.2408298095461} +{"lateral_surface_wind": 3.476045228439931, "apogee_x": 461.29708001844836, "y_impact": 1973.6770558160301, "max_mach_number": 0.7527218014220097, "impact_velocity": -5.227738907469013, "apogee_y": -34.27130905112907, "frontal_surface_wind": 2.28024472132942, "apogee_time": 24.014796205596802, "initial_stability_margin": 2.56770451062285, "out_of_rail_stability_margin": 2.6474825399017474, "apogee": 2909.81700967112, "out_of_rail_velocity": 24.162134869675537, "out_of_rail_time": 0.3771985616608074, "t_final": 281.7575641916905, "x_impact": 902.3730776065785} diff --git a/docs/notebooks/monte_carlo_analysis/monte_carlo_class_usage.ipynb b/docs/notebooks/monte_carlo_analysis/monte_carlo_class_usage.ipynb index 5e5be5a08..46b3bd6cb 100644 --- a/docs/notebooks/monte_carlo_analysis/monte_carlo_class_usage.ipynb +++ b/docs/notebooks/monte_carlo_analysis/monte_carlo_class_usage.ipynb @@ -28,9 +28,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 78, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The autoreload extension is already loaded. To reload it, use:\n", + " %reload_ext autoreload\n" + ] + } + ], "source": [ "# We import these lines for debugging purposes, only works on Jupyter Notebook\n", "%load_ext autoreload\n", @@ -47,7 +56,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 79, "metadata": {}, "outputs": [], "source": [ @@ -76,7 +85,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 80, "metadata": {}, "outputs": [], "source": [ @@ -106,9 +115,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 81, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Impulse of the Solid Motor: 6026.35 Ns\n" + ] + } + ], "source": [ "# Environment\n", "env = Environment(latitude=39.389700, longitude=-8.288964, elevation=113)\n", @@ -208,9 +225,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 82, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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2tpatO3dd9+NZ599NiJ+u/L7+eefj0suuaSwJDbAdEu/ziqxb9++qK2tLfxlq6WlJZYuXRqPPPJIjI2NRcTpM/7Af4VIhjNQUlJStPhHylaqamhoiG+//bbolIyenp4YHh6O235dtKG0tDQOHz4cL774Ymzbti2uvPLK6fsFpsnkErJHjhwpLBM+ef/aa68tjJmcQ3rSiRMnYmRkpPDz9fX1cSSbx3fy/l8tUwsR3odnoqSkJI4dOxavv/56bNiwISJ+ieGUUsybNy927tw5w88QZp6Ph3AW8hWgJuP499+43HLLLbFz58648MILIyLim2++ie3bt0djY2N0dHTMyVWkGhsbo76+Prq7uwvbxsbGoq+vr3BednNzc4yOjkZ/f39hzO7du+PUqVOFRV6am5ujt7e3aCGNrq6uaGpqmhN/4mZqeR+emdHR0Vi0aFGsXLmysO33/y9Z4IP/vBm+cBD+MzZv3pxuv/329Pbbb6eUZu+sFkePHk0DAwNpYGAgRUTasWNHGhgYSJ9//nlK6Zept6qrq9Mbb7yR9u/fn1atWvWHU29dd911qa+vL73zzjvpiiuuKJp6a3R0NNXV1aX77rsvHThwIL366qvpggsumBNTb/Hv8D4EpppIhiny+3lBe3t705133lk0PdxstWfPnhQRp93WrVuXUvptEYe6urpUUVGRWlpa0qFDh4oeY3h4OLW3t6fKyspUVVWV1q9f/5eLOCxcuDBt3bp1un5FZgHvw3/PbP3ADlOtJKVfF1sHpszExEQcP348KisrZ/qpAABnQCQDAEDGhXsAAJARyQAAkBHJAACQEckAAJARyQAAkBHJAACQEckAAJARyQAAkBHJAACQEckAZ6G3tzfuuOOOaGhoiJKSkujs7Czaf//990dJSUnRrbW1tWjMyMhIrF27NqqqqqK6ujo2btwY4+PjRWP2798fN910U5x//vmxaNGi2Lx584wc98knn/z/XjCAWUYkA5yFH374IZYuXRrPPPPMn45pbW2Nr776qnDbtWtX0f61a9fGwYMHo6urK958883o7e2Njo6Owv6xsbFYvnx5LF68OPr7+2Pbtm3x0ksvxcmTJ6f9uFu2bInnnnvun75MALNW6Uw/AYDZqK2tLdra2v5yTEVFRdTX1//hvo8//jjeeuut+PDDD+P666+PiIinn346brvttti+fXs0NDTEK6+8Ej///HO88MILUV5eHldddVUMDg5GZ2dnrF69etqPu2PHjqKYBpjLfJMMMEX27t0b8+fPj6ampnjggQdieHi4sO+9996L6urqQqhGRNx6661x3nnnRV9fX2HMzTffHOXl5YUxK1asiEOHDsV33313zh0XYC4RyQBToLW1NV5++eXo7u6OJ554Inp6eqKtrS1OnjwZERFDQ0Mxf/78op8pLS2N2traGBoaKoypq6srGjN5f3LMuXJcgLnG6RYAU2DNmjWFf1999dVxzTXXxGWXXRZ79+6NlpaWOXdcgLnGN8kA0+DSSy+NefPmxSeffBIREfX19fH1118XjTlx4kSMjIwUzieur6+PI0eOFI2ZvP9n5xyfK8cFmO1EMsA0OHz4cAwPD8eCBQsiIqK5uTlGR0ejv7+/MGb37t1x6tSpuOGGGwpjent7Y2JiojCmq6srmpqaoqam5pw+LsBsJ5IBzsL4+HgMDg7G4OBgRER8+umnMTg4GF988UWMj4/Hww8/HO+//3589tln0d3dHatWrYrLL788VqxYERERS5YsidbW1ti0aVN88MEHsW/fvnjwwQdjzZo10dDQEBER99xzT5SXl8fGjRvj4MGD8dprr8VTTz0Vd91114wc96GHHpreFxlgJiUA/rE9e/akiDjttm7duvTjjz+m5cuXp4svvjiVlZWlxYsXp02bNqWhoaGixxgeHk7t7e2psrIyVVVVpfXr16ejR48Wjfnoo4/SjTfemCoqKtLChQtTR0fHjBx369atU/NCApyjSlJKaaYCHQAAzkVOtwAAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgIxIBgCAjEgGAICMSAYAgMz/ABYCflX/u1RNAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "test_flight.plots.trajectory_3d()" ] @@ -261,9 +289,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 83, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reporting the attributes of the `StochasticEnvironment` object:\n", + "\n", + "Constant Attributes:\n", + "\tdatum SIRGAS2000\n", + "\televation 113\n", + "\tgravity Function from R1 to R1 : (height (m)) → (gravity (m/s²))\n", + "\tlatitude 39.3897\n", + "\tlongitude -8.288964\n", + "\ttimezone UTC\n", + "\n", + "Stochastic Attributes:\n", + "\twind_velocity_x_factor 1.00000 ± 0.00000 (normal)\n", + "\twind_velocity_y_factor 1.00000 ± 0.00000 (normal)\n", + "\n", + "Stochastic Attributes with choice of values:\n", + "\tensemble_member [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]\n" + ] + } + ], "source": [ "stochastic_env = StochasticEnvironment(\n", " environment=env,\n", @@ -293,9 +344,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 84, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2.5548847507536157, 1.2065420428505167, 2.2949783982999095, 0.8583363979528841, 0.052434924000638206]\n" + ] + } + ], "source": [ "wind_speed_at_1000m = []\n", "for i in range(5):\n", @@ -333,9 +392,45 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 85, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reporting the attributes of the `StochasticSolidMotor` object:\n", + "\n", + "Constant Attributes:\n", + "\tburn_out_time 3.9\n", + "\tcenter_of_dry_mass_position 0.317\n", + "\tcoordinate_system_orientation nozzle_to_combustion_chamber\n", + "\tdry_I_11 0.125\n", + "\tdry_I_12 0\n", + "\tdry_I_13 0\n", + "\tdry_I_22 0.125\n", + "\tdry_I_23 0\n", + "\tdry_I_33 0.002\n", + "\tdry_mass 1.815\n", + "\tgrain_number 5\n", + "\tinterpolate linear\n", + "\tthrust_source [[0, 0], [0.055, 100.0], [0.092, 1500.0], [0.1, 2000.0], [0.15, 2200.0], [0.2, 1800.0], [0.5, 1950.0], [1.0, 2034.0], [1.5, 2000.0], [2.0, 1900.0], [2.5, 1760.0], [2.9, 1700.0], [3.0, 1650.0], [3.3, 530.0], [3.4, 350.0], [3.9, 0.0]]\n", + "\n", + "Stochastic Attributes:\n", + "\tburn_start_time 0.00000 ± 0.10000 (binomial)\n", + "\tgrain_density 1815.00000 ± 50.00000 (normal)\n", + "\tgrain_initial_height 0.12000 ± 0.00100 (normal)\n", + "\tgrain_initial_inner_radius 0.01500 ± 0.00038 (normal)\n", + "\tgrain_outer_radius 0.03300 ± 0.00038 (normal)\n", + "\tgrain_separation 0.00500 ± 0.00100 (normal)\n", + "\tgrains_center_of_mass_position 0.39700 ± 0.00100 (normal)\n", + "\tnozzle_position 0.00000 ± 0.00100 (normal)\n", + "\tnozzle_radius 0.03300 ± 0.00050 (normal)\n", + "\tthroat_radius 0.01100 ± 0.00050 (normal)\n", + "\ttotal_impulse 6500.00000 ± 1000.00000 (normal)\n" + ] + } + ], "source": [ "stochastic_motor = StochasticSolidMotor(\n", " solid_motor=motor,\n", @@ -385,9 +480,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 86, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[5475.6970899461085, 7318.610604243551, 6801.759141032717, 5908.113692253106, 8070.502878711937]\n" + ] + } + ], "source": [ "total_impulse = []\n", "for i in range(5):\n", @@ -414,9 +517,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 87, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reporting the attributes of the `StochasticRocket` object:\n", + "\n", + "Constant Attributes:\n", + "\tI_12_without_motor 0\n", + "\tI_13_without_motor 0\n", + "\tI_23_without_motor 0\n", + "\tcoordinate_system_orientation tail_to_nose\n", + "\tpower_off_drag Function from R1 to R1 : (Mach Number) → (Drag Coefficient with Power Off)\n", + "\tpower_on_drag Function from R1 to R1 : (Mach Number) → (Drag Coefficient with Power On)\n", + "\n", + "Stochastic Attributes:\n", + "\tI_11_without_motor 6.32100 ± 0.00000 (normal)\n", + "\tI_22_without_motor 6.32100 ± 0.01000 (normal)\n", + "\tI_33_without_motor 0.03400 ± 0.01000 (normal)\n", + "\tcenter_of_mass_without_motor 0.00000 ± 0.00000 (normal)\n", + "\tmass 15.42600 ± 0.50000 (normal)\n", + "\tpower_off_drag_factor 1.00000 ± 0.00000 (normal)\n", + "\tpower_on_drag_factor 1.00000 ± 0.00000 (normal)\n", + "\tradius 0.06350 ± 0.00001 (normal)\n" + ] + } + ], "source": [ "stochastic_rocket = StochasticRocket(\n", " rocket=rocket,\n", @@ -441,7 +570,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 88, "metadata": {}, "outputs": [], "source": [ @@ -491,7 +620,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 89, "metadata": {}, "outputs": [], "source": [ @@ -525,9 +654,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 90, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reporting the attributes of the `StochasticRocket` object:\n", + "\n", + "Constant Attributes:\n", + "\tI_12_without_motor 0\n", + "\tI_13_without_motor 0\n", + "\tI_23_without_motor 0\n", + "\tcoordinate_system_orientation tail_to_nose\n", + "\tpower_off_drag Function from R1 to R1 : (Mach Number) → (Drag Coefficient with Power Off)\n", + "\tpower_on_drag Function from R1 to R1 : (Mach Number) → (Drag Coefficient with Power On)\n", + "\n", + "Stochastic Attributes:\n", + "\tI_11_without_motor 6.32100 ± 0.00000 (normal)\n", + "\tI_22_without_motor 6.32100 ± 0.01000 (normal)\n", + "\tI_33_without_motor 0.03400 ± 0.01000 (normal)\n", + "\tcenter_of_mass_without_motor 0.00000 ± 0.00000 (normal)\n", + "\tmass 15.42600 ± 0.50000 (normal)\n", + "\tpower_off_drag_factor 1.00000 ± 0.00000 (normal)\n", + "\tpower_on_drag_factor 1.00000 ± 0.00000 (normal)\n", + "\tradius 0.06350 ± 0.00001 (normal)\n" + ] + } + ], "source": [ "stochastic_rocket.visualize_attributes()" ] @@ -550,9 +705,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 91, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Reporting the attributes of the `StochasticFlight` object:\n", + "\n", + "Constant Attributes:\n", + "\trail_length 5\n", + "\n", + "Stochastic Attributes:\n", + "\theading 53.00000 ± 2.00000 (normal)\n", + "\tinclination 84.70000 ± 1.00000 (normal)\n" + ] + } + ], "source": [ "stochastic_flight = StochasticFlight(\n", " flight=test_flight,\n", @@ -582,9 +752,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 92, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following input file was imported: monte_carlo_analysis_outputs/monte_carlo_class_example.inputs.txt\n", + "A total of 158 simulations results were loaded from the following output file: monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt\n", + "\n", + "The following error file was imported: monte_carlo_analysis_outputs/monte_carlo_class_example.errors.txt\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\guiga\\Documents\\github\\RocketPy\\rocketpy\\simulation\\monte_carlo.py:112: UserWarning: This class is still under testing and some attributes may be changed in next versions\n", + " warnings.warn(\n" + ] + } + ], "source": [ "test_dispersion = MonteCarlo(\n", " filename=\"monte_carlo_analysis_outputs/monte_carlo_class_example\",\n", @@ -607,9 +796,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 95, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Completed 819 iterations. Total CPU time: 921.0 s. Total wall time: 1557.1 stime left: 0 s \n", + "Saving results. \n", + "Results saved to monte_carlo_analysis_outputs/monte_carlo_class_example.outputs.txt\n" + ] + } + ], "source": [ "test_dispersion.simulate(number_of_simulations=1000, append=False)" ] @@ -641,7 +840,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 96, "metadata": {}, "outputs": [], "source": [ @@ -651,18 +850,58 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 97, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "819" + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "test_dispersion.num_of_loaded_sims" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 98, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Monte Carlo Simulation by RocketPy\n", + "Data Source: monte_carlo_analysis_outputs/monte_carlo_class_example\n", + "Number of simulations: 819\n", + "Results: \n", + "\n", + " Parameter Mean Std. Dev.\n", + "------------------------------------------------------------\n", + " lateral_surface_wind 3.537 0.908\n", + " apogee_x 463.938 141.323\n", + " y_impact 2426.761 588.981\n", + " max_mach_number 0.849 0.132\n", + " impact_velocity -5.360 0.080\n", + " apogee_y -54.065 118.707\n", + " frontal_surface_wind 3.222 0.877\n", + " apogee_time 25.574 2.064\n", + " initial_stability_margin 2.600 0.081\n", + "out_of_rail_stability_margin 2.673 0.080\n", + " apogee 3405.949 629.080\n", + " out_of_rail_velocity 25.772 2.216\n", + " out_of_rail_time 0.360 0.026\n", + " t_final 303.347 35.011\n", + " x_impact 1334.886 396.894\n" + ] + } + ], "source": [ "test_dispersion.prints.all()" ] @@ -677,18 +916,180 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 99, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABDoAAAMzCAYAAABHhXL/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAABcSAAAXEgFnn9JSAAEAAElEQVR4nOzdeZxbdbk/8E/WycxkMtkz+9KFYkGQpcVSSlukeGUpUJACKhRZRK8XLXAR/IEgoriwqnjFSwVBxStrgSuLLC1YoYqgFq7QZdqZ7Ps6mezn98fhZLLnZJtk0uf9euU1nZOzfHNypjPnyfN9HgHDMAwIIYQQQgghhBBC2oCw2QMghBBCCCGEEEIIqRcKdBBCCCGEEEIIIaRtUKCDEEIIIYQQQgghbYMCHYQQQgghhBBCCGkbFOgghBBCCCGEEEJI26BAByGEEEIIIYQQQtoGBToIIYQQQgghhBDSNijQQQghhBBCCCGEkLZBgQ5CCCGEEEIIIYS0DQp0EEIIIYQQQgghpG1QoIMQQgghhBBCCCFtgwIdhBBCCCGEEEIIaRsU6CCEEEIIIYQQQkjboEAHIYQQQgghhBBC2gYFOgghhBBCCCGEENI2KNBBCCGEEEIIIYSQtkGBDkIIIaQFbdq0CQKBAJs2bWr2UAipq/l6bZcad7XPEUIIaQwKdBBCSAsLh8N4/vnncdttt2HDhg0YHR2FQCCAQCDALbfc0uzhleR2u/Hggw/i85//PJYuXYru7m50dHRgaGgIZ511Fp566qlmD7FtvfPOO/j2t7+N9evX49BDD4VGo4FEIoFGo8HKlSvx3e9+Fx6Pp2nju+WWW9LXsUAgwO9+97uy25x22mlZ2xw4cKDxA+XpoYcewi233IJt27Y1eygAgGQyid///ve46KKLcMghh0CpVEIqlUKv1+OEE07ADTfcgPfee6/Zw2yK3Guv3IMQQsj8JG72AAghhBT3l7/8Baeeemqzh1GVvr4+JBKJ9PcymQwSiQRmsxlmsxlbt27FZz7zGTz++OPo6upq4kjbzy9/+Uvcd9996e9lMhk6Ozvh8Xjw5z//GX/+859xzz334JlnnsGKFSuaOFLWgw8+iPPPP7/o8xaLBS+++OIcjqgyDz30ELZv3w4AWLNmTVPH8tZbb+Hiiy/G7t2708skEgl6enrgdruxY8cO7NixA9///vexYcMGPProo5BKpU0ccfMYDIY5OU5/fz+WLFmC/v7+OTkeIYQQyugghJCWp1Kp8KlPfQr/+Z//iUcffRR9fX3NHhIviUQCy5cvx89+9jPs27cPMzMzCIVC2L9/Py699FIAwPPPP48vfelLTR5p+1m+fDl+9KMf4c0334TX68XMzAwCgQCCwSB+9atfQafTweVy4ayzzoLf72/aOLVaLbq7u/Hyyy/DZDIVXe/hhx9GMpnE2NjY3A1uHnr22WexZs0a7N69GxqNBrfffjt2796NWCwGt9uNWCyGv/71r7j++uuhUCjw5JNPIhwON3vYTWOz2co+6uH222/HBx98gNtvv70u+yOEEFIeBToIIaSFrVq1Ch6PBy+//DJ++MMf4vzzz0dHR0ezh8XLq6++ip07d+LLX/4yFixYkF4+NjaGBx54IB3g+PWvfw2j0disYbaliy66CNdeey0++clPQqlUppfL5XJcdNFF+PWvfw0AcDgceO6555o0SqC7uxvnnnsuUqkUHnrooaLrPfjggwBANQ5K2LNnDz7/+c8jGo1i6dKl+Pvf/47rr78eixcvTq8jEolw7LHH4vbbb8f+/ftx5plnNnHEhBBCSONQoIMQQlqYSCSqy36ee+45fPazn8XY2Bi6urpKzkl/4IEH6nLMtWvXlnyey+oAgLfffnvOx+/1erFlyxacd955+PjHPw61Wg2ZTIbR0VFceOGFeOutt4puu2bNmnSdFIZh8N///d847rjjoFAo0NPTgxUrVqSDCaX85je/wcqVK9HT04Pe3l4cd9xx+MUvfgGGYXi9hmp98pOfTP+7VCYF0Phr55JLLgGAooGOP/3pT9i9ezcWLFiAE088sez+tm3bhs9+9rMYHBxER0cHtFotPvWpT+HBBx9EMpksuE217+dDDz0EgUCQnrby7W9/O++cFKolcuDAAXz961/HYYcdBrlcjq6uLhx66KH42te+hqmpqbKvsZAbb7wRgUAAMpkMTz31FIaGhkqur1ar8fTTT6O3tzdreb1+LuLxOO68804ce+yxUCqVEAgEFdUwqeZ9bFWlipFmnrNYLIbvf//7OOKII9Dd3Q2VSoV169bh+eefL7n///mf/8FnPvMZGAwGSCQSKJVKLF68GOvXr8d9992HSCRScLtarsNqj0kIIXOGIYQQMq+Mjo4yAJibb7657LrhcJhZv349A4ABwAgEAkapVDJisTi9LPfx17/+tfEvgmGYf/7zn+ljPvbYY3M+/ptvvjm9jUgkYlQqFdPR0ZF1rHvvvbfgtqtXr2YAMDfeeCNz5plnMgAYsVjMKBSKrLF861vfKrh9KpViLrnkkqxjqVQqRigUMgCY888/n7n44osZAMzFF1/M6/VU4rnnnmuJcz86OsqkUilm4cKFDABm+/bteet+8YtfZAAwt956K/Paa6+lj7V///68dTdv3pw3XpFIlF520kknMYFAIG+7at/P3/3ud4zBYGAkEgkDgOnu7mYMBkPWY2pqKmubX//611nXWUdHB9PZ2Zn+vqenh3nxxRd5nUeOzWZLXzuXXnppRdvmqsfPxTe+8Q3m+OOPT59HlUrFCAQC5rXXXmMYhil7bVf7Plb6+ipVatzVPsedsxtuuIFZtWpV+pwplcqsa6/Y//eZ/48AYORyOdPV1ZW1rNDPSi3XYbXHJISQuUSBDkIImWcqCXScddZZ6RuWm266ibHb7QzDMMzMzAxz9913p/8oPe6445gHH3yQefDBB5lIJNLgV8D68Y9/nD7+Bx98MOfjv//++5mbb76Zefvtt5loNMowDBuAmJiYYL72ta8xAoGAEYlEzDvvvJO3LXdzolKpmN7eXuahhx5iwuEwwzAMYzQamTPOOIMBwAiFQmb37t152997773psX/1q19lnE4nwzAM4/P5mFtuuSV9c1fPQEckEmH279/P/OQnP2FUKhUDgFm0aFHR89XIc58Z6GAYhvnOd75T8LWGQiFGLpczQqGQmZqaKhno+MlPfpJ+7oorrmCsVmt6H3fffXc6QLNx48a88dT6fnLbl/uZfOmllxihUMiIxWLmuuuuY/bv38+kUikmlUoxH3zwAfPZz36WAcAoFApmcnKS17lkGIZ59NFH06/9ueee471dIfX4uZDL5YxcLmcefPDB9Hl0uVyM2+1mGKb0jX8t7yMfrRro6O3tZTo6Opif//znzMzMDMMwDDM1NcWce+656fFu3bo1a9s33ngjfV3+4Ac/SJ9fhmHP94svvshcfPHFjNlsztquluuw2mMSQshco0AHIYTMM3wDHQ8//HD6D+QHHnig4DobN25kADAajaYBIy3O6/Uy/f39DABm1apVBddp9vj//d//vegn5NzNCQDm1VdfzXs+EokwAwMDDADmtttuy3puZmaGUavVDADmC1/4QsFjX3/99en91xroyPzUNvOxcuXKojfTjT73uYGOqakpRigUMt3d3UwwGEyv98tf/pIBwKxbt45hGKZooCMcDqfP6QUXXFDwmJmBtbfffjvruVrez8ztS/1MJpNJZvHixQwA5v777y+6HpdF87Wvfa3oOrluvPHG9PgbfYPJ9+fimWeeKbqPYjf+tb6PfGQGOnKzb3IfV111Fa9x1/Jc5jnbsmVL3vPJZJI58cQTGQDMYYcdlvXcD37wAwYAc8opp/B+/bVeh9UckxBCmoFqdBBCSBtiGAbf+c53AABnnXVWVj2MTGeccQYAwO12w2q1zsnYUqkUvvCFL8BqtUImk+GnP/1p3jqtMP7TTjsNAFsjopiVK1cWrEXS0dGBT3/60wCAf/7zn1nPvfTSS/B4PACAb33rWwX3e/3110Mmk1U17lx9fX0wGAzo7u5OL1u7di3uuecejIyM5K3fjHM/PDyMk08+GdPT0/j973+fXs4VIf3iF79Ycvs//vGP6XN6yy23FFznK1/5Srq9529/+9uC61TzfvL1+uuvY8+ePdBqtbjsssuKrnfRRRcBQEXtdN1ud/rfarW6qvHxxefn4rDDDktfH5Wo1/vIl91uL/mYy45Ew8PD6Xo1mYRCIW688UYAwPvvv49du3aln+MKDTudTt51S2q9Dqs5JiGENAMFOgghpA29+eab2LNnDwDg2muvLbqeRqNJ/zsejzd8XADwta99Ld3p47777sMRRxyRt85cjX9iYgLXXnstjjnmGCiVSohEonQRyVNPPRVA6WKdxx13XNHnBgYGACB948bhCq8ODw9j0aJFBbft7e3FMcccU9FrKebAgQOw2WwIhUKw2+2444478Pe//x3Lly8vGGhp1rXD3eT98pe/BADs3bsXb7zxBlQqFc4666yS22ae00MOOaTgOiKRCCeddFLW+rmqeT/52rFjBwDA7/djYGAAfX19BR+XX345AGBycrKq49RDrT8XK1eurOq49Xof+WLYzOaij1KdgOqNK0payKpVqyAWiwFkv+ZPfepTkMlkePfdd7Fq1Sps2bIF+/fvL3mcWq/Dao5JCCHNIG72AAghhNTfK6+8AoD9NH/FihVF13M4HADYTw37+voaPq5rr702ncFx9913F/2kfi7G/9RTT+GCCy5ANBpNL1MoFJDJZBAIBIjFYvB6vZie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cceRSCR4+eWXWbduHX/961+5/fbbU8bxv//7v5x11llEo1EOO+ww+vv7eeuttzj22GPzFm3S8fv9PPbYY1RXV3PeeefR3t7OkUceycsvv8wTTzzBaaedprrvV77yFX7xi19w/PHH8/GPf5zNmzdz++23s3nzZl588UWam2c80AKBACtXruSNN97AZDKxdu1axsfHefbZZ3nxxRd55ZVXWL9+fcrxX3nlFU444QRCoRAHHnggy5YtY+vWrZx88sl86UtfUhxTPB7nwgsvZOPGjTQ2NvLJT36StrY2/vrXv/Jv//Zv/PGPf+T5559PiWKfmJhgzZo1PPfcc7S3t3PEEUdQW1vLa6+9xtVXX81zzz3HI488UhF+WIL8KKnQ8d3vfpdbb71VVWUDaZKm0WiE0CEQFInb7cbvn2Jysgq7vbAnMJXE+Pg4ExOg01UvqFjddNHA5wOlhwz5TPyXLoWbby5+LPlO2mcjTqSzejV8+GHm8nwrMNJ9R1askJbnipEtFYWOPzk+1misx263V4w4WQhC5BAI5if/8i//wg9/+EN2797N4sWLOfvsszn66KM59NBDOfDAA4v6fbVz506ampr45z//OV0p8txzz7Fq1Sr+v//v/2NqaopHH32UNWvWAFKC3JFHHsmf//xnnn/+eVauXFnSa5Q588wzufLKK+nr60tZfs8993DJJZfw9a9/nWeffRaAo48+mqOPPppf/epXGI1G1QSXiy++mLfffpuvfe1r/Md//Ac1NdLnkZGREdauXcsdd9zBmjVrOPnkkwFJKLjkkkuIRqP813/9FxdffDEgzY+uv/56/uM//qOoa3vwwQcJh8OcccYZtO8pdbzwwgt5+eWXuf/++7MKHffffz+vvPIKhx56KCC1BZ9xxhk8++yzfPe73+W2226b3vbb3/42b7zxBitXrmTTpk00NUkPmj744AOOO+44fvrTn7J69WrWrl0LSILFunXrCIVC/OAHP+Db3/729LE2bNjAZZddpjimH//4x2zcuJHjjz+ejRs3TseOT01NcdVVV7Fhwwb+7d/+jX//93+f3ueb3/wmzz33HOeffz533XUXLS0tgHTPP/vZz/LYY4/xi1/8gi984QuF3l7BAqVkHwVvvvlmvv/97xMOh1mzZg1XX3013/3udzNe3/ve9/jud79bqtMKBPsUiUSC4eFhnE5ob7fs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/9xOFmH9lRuYF1xbW8tbb73VGW196623qK2t5b777utRXzdUtbW1rFmzpvMjkHrXdVsgYpuWlsYNN9zA4YcfzpYtW3juuedYvXo12dnZXHvttXz22We9lpKce+65rFq1ipNPPpn169fzyiuvUFZWxuOPP87vf//7kPtMnTqV9evXc9FFF1FbW8sLL7yA0Wjk1ltv5Y033hhT6dYyempra7HZ/JhM8cTGjm6N63i1P9ARmVeH4Sz3MBrh4os73vG/6KKhv+AdTmZGuIItIyHw/BQX+zn77AZqa3eTnOwmLy+aoqIpZGfnjIsSpkMPhSef7Pg8WjweD3v2bMFstlNQEMW0aVNDTgoTkdE3bx588EHH57HoZz/7GU899RTf+ta3iImJ4e2332bp0qV8/vnnzJ49m7vuuouPP/44Yv0EsrKyWLVqFaeffjqVlZX897//JSkpieXLl7NwkPWfy5Yt45ZbbiEjI4P//ve/rFu3jsWLF/P++++TnJwccp8777yTH//4x3g8Hp599lkeffTRzjdSoSNL4t133+WPf/wjs2bNYv369SxdupRPPvmEkpISfve733HdddcFHTPQ3PWEE07gs88+4+WXXyYnJ4e33nqLo48+etDPUUDXa6DuH4FhCDfffDNPPPEEBx10EKtXr+b111/n4IMP5v333+eIML4oSE1NZfXq1fzwhz/E7/fz4osvsmfPHn7zm99w3333he08vTEYDDz77LPceeed5OTk8N///pc1a9bwrW99ixUrVlBXV4fBYBixNwTy8vL48MMPufbaa4mOjub5559n3bp1fO1rX+N///sf11xzzYicN6C/n9vJwuAfTHthGTMC42V7Gz87XrjdbsxmMy6Xa0KX8/j9fj799FO2bHGTllaiaSsD9MUXX7Brl5/c3FJMppFLmQ1MJHE4oMsUOGJjO8bBdsmWJT8ffv3roQcqwjH9ZM0a6Jr5+ZOfwOzZA9t382b4xz/gwguh+0j2SE9maW9vo7Z2HyaTi/R0SE1NIisrK+SYQungdrvYs2crVquT/Pxopk6dOurNAkXGA5/Px+Yvux5Pnz59XARORST8ysvLKS4upqysjE2bNkV6OWPGYH5Hjpfr0PE9ykBknAiMlPV4TCQkJEd6OWPCo4/CSy/1vKheuBAuvTSwpeNGo3FkS1d6m0jS2tpz23DLPcIx/SSQmVFR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27dTWlo6oGPIwHm9Xnw+iIqaFP80RAakoaGG2toKNRwVERERkXFhUlzN2e12gD5HHVqtVmw2W2egI7BPX/sF3slsaWkZ8LlC7SNjh8/nw+dDafgigNvtYt++XXi9LRQWQmZmIoWFherFISIiIiJj2qQIdIxnGzduDLm9t0wPGR6fz4ffD1FRk6KqS6RXNls9NTV7SU72kpVlZMqUfDIyMiK9LBERERGRfk2KQEd8fDwAra2tvd7H4XAAkJCQELRPYL/ExMR+9xnIuULtI2OH3+/H7weDQYEOGV2PPgovvQR+//5tBgMsXAiXXjp66/B4PFRV7cbptDFlCqSnWykqKiI2Nnb0FiEiIiIiMgyT4mquoKAAgPLy8pC3OxwObDYbKSkpnQGIxMREkpKS+twvsL2wsHDA5wq1j4wdKl2RSHn/faiogH379n9UVMCaNaO3hpYWGzt2bCQ62kZpqYGysjymT5+uIIeIiIiIjCuTItAxffp0YmJiqK2tpaKiosftH330EUBnQ9GAgw8+OOj2rtxuN5999hmxsbFMmzZtQPv0dS4ZGwKlK0bjpPinIWPIokWht59//sif2+PxUFGxk+rq7eTmeigutjBr1gyNjRURERGRcWlSXM1ZLBbmz58PwL/+9a8ety9duhSAM844I2j7aaedFnR7V//5z39wOp2ceOKJQe92Bvb597//TXt7e9A+1dXVvP3226SkpHDMMccM4xHJSFHpikTK/PlQUhK8rbS0Y/tIstub2LnzcwyGBoqLoawsm5kzZ/bZvFlEREREZCybNFdz11xzDQB33HEHW7du7dz+3nvv8dBDD5GcnMyl3Qrhv/e975GYmMiyZct4/vnnO7fX1NTw05/+FIBrr702aJ/Zs2dzzDHHUFNTww033NC53ePx8KMf/Qi3282VV16JyWQK+2OU4VPpikSK0Qjf/37wtssu69g+ErxeL/v27aKychs5OW5KSmI54IAZ5OXl6edfRERERMa1cduM9OWXX+ZXv/pV59culwuAo446qnPbrbfe2plhceKJJ3LVVVexZMkSDjnkEBYsWIDL5WL58uX4/X4ee+wxkpOTg86RmprKX//6V84//3zOO+88jj/+eNLS0nj99dex2Wxcc801HH/88T3W9thjjzFnzhyWLFnCihUrmDVrFh9++CE7duzg6KOP5qabbgr/EyJhodIV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o5Fp06Zx1llnUVBQEHSfzZs3097eTkZGBvn5+T2OcdhhhwHwySefBG3fsGFD0O1dmc1mDjzwQNauXcuWLVs46KCDwvWQRERERERERIRJGui44447gr6+7rrruPXWW7n11ls7t+3ZswcgZJADwGq1kpycTGNjIy0tLSQkJNDc3ExTU1Of++Xn57N27Vp2796tQIeIiIiIiIhImE2qQMexxx7L9773PY4++mhycnLYu3cvS5cu5Y477uDnP/85iYmJXHXVVQDY7XYA4uLiej2e1WrFZrN1BjoC+/S1n9VqBaClpWVAaw40e+lu+/btlJaWDugYIiIiIiIiIpPFpOrRcfvtt/Otb32LkpISLBYL06ZN4+abb+bFF18E4LbbbqOtrS2yixQRERERERGRIZtUGR29OemkkzjiiCNYu3Yta9as4fjjjyc+Ph6A1tbWXvdzOBwAJCQkAHTuE9gvMTGx333609vYnt4yPUREREREREQms0mV0dGXwPjYyspKgM7mpOXl5SHv73A4sNlspKSkdAYtEhMTSUpK6nO/wPbCwsLwLV5EREREREREAAU6OjU2NgL7e2hMnz6dmJgYamtrqaio6HH/jz76CKBHQ9GDDz446Pau3G43n332GbGxsUybNi2s6xcRERERERERBToAqK2t5e233wb2j4W1WCzMnz8fgH/961899lm6dCkAZ5xxRtD20047Lej2rv7zn//gdDo58cQTiY2NDd8DEBERERERERFgEgU63n33XV588UW8Xm/Q9l27dnH22WfjcDhYuHBh0FjYa665BugYR7t169bO7e+99x4PPfQQycnJXHrppUHH+973vkdiYiLLli3j+eef79xeU1PDT3/6UwCuvfbasD8+EREREREREZlEzUi3bNnCxRdfTHZ2NocddhjJycns3r2bdevW4XQ6OeCAA3j44YeD9jnxxBO56qqrWLJkCYcccggLFizA5XKxfPly/H4/jz32GMnJyUH7pKam8te//pXzzz+f8847j+OPP560tDRef/11bDYb11xzDccff/zoPXARERERERGRScTg9/v9kV7EaNi0aRP33Xcfa9asYe/evTQ2NmK1Wpk5cybf+MY3+OEPf4jFYgm57+OPP87999/Ppk2bMJvNHHXUUdx6660cffTRvZ5v9erV3HHHHbz//vu4XC5mzZrFj3/8Y7773e+G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K1Hn2rVrPXJ0ZGdnuwMX7f3tb3+Tnemxc+dOAK1LW1zi4+MBdC9YMXPmTACtW9b2p8OHD0MIgVmzZvVrvURERIGCyUiJiIio1y1cuNDnuZEjR+KFF14AADzwwANYtWoVMjIyMHbsWEyZMgU1NTXIzMzErbfeiqysLBQUFHiU/9Of/oQnn3wSEydORFpaGoQQOHbsGE6fPo3IyEg8+eST7munTZuGYcOGYePGjbjyyiuRnJwMpVKJRYsW4YorrujwGcaNG4ekpCQcOnQIVqu115Kcdubrr78GANx88839Uh8REVGgYaCDiIiIet3777/v89zEiRPdgY6oqCgcPnwYTz31FDIzM7Ft2zYkJSXhxRdfxJNPPomUlBSv8q+//jo+//xzHDlyBJ999hmA1lkcjz/+OB5//HGPnU50Oh127NiBpUuXIisrC9988w2EEJgxY0angQ6FQoEHH3wQzzzzDDIyMnDHHXd056Posg0bNiA6Ohrz5s3rl/qIiIgCjUL4u/iViIiI6DxTXl6OpKQkXHvttcjIyOjz+v7zn//giiuuwB/+8IdeS6pKRER0vmGODiIiIiIfYmNj8dhjj2HHjh344Ycf+ry+FStWwGg0+sxPQkRERJ1joIOIiIioA0uXLkVERAT+9Kc/9Wk9R48exbZt2/DHP/4RkZGRfVoXERFRIOPSFSIiIiIiIiIKGJzRQUREREREREQBg4EOIiIiIiIiIgoYDHQQERERERERUcBgoIOIiIiIiIiIAgYDHUREREREREQUMBjoICIiIiIiIqKAwUAHEREREREREQUMBjqIiIiIiIiIKGAw0EFEREREREREAYOBDiIiIiIiIiIKGAx0EBEREREREVHAYKCDiIiIiIiIiAIGAx1EREREREREFDAY6CAiIiIiIiKigMFABxEREREREREFjP8f+pAwpamHFZYAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "test_dispersion.plots.ellipses(xlim=(-200, 3500), ylim=(-200, 3500))" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 100, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABCqElEQVR4nO3deVxU9f7H8feAMqLCEAoiiYpLKq6l5U6alppZpi2a5Zp6u5gLWcYt10zMyswyzVtJt/Ja5tLNrhouiZWaS2SpmRqkpbghIJjIcn5/9HOuI6CMDAwcX8/H4zxyvuc753zODMbb7/mecyyGYRgCAAAwKQ93FwAAAFCcCDsAAMDUCDsAAMDUCDsAAMDUCDsAAMDUCDsAAMDUCDsAAMDUCDsAAMDUCDsAAMDUCDu4LtSuXVuDBw92dxmm9/LLL6tOnTry9PRUixYtCuw3ePBg1a5du8TqcrXExERZLBbFxMS4u5R8paen6/HHH1dQUJAsFovGjh3r7pJcrjh+hsr6zyUKRthBmRMTEyOLxaIdO3bku75Tp05q0qRJkffz3//+V1OmTCnydq4XX375pZ555hm1b99eixYt0owZM4plPzNmzNDKlSuLZdtmMWPGDMXExOiJJ57QBx98oMcee8zdJQFuVc7dBQAlYf/+/fLwcC7b//e//9W8efMIPIW0YcMGeXh46N1335WXl1ex7WfGjBl64IEH1Lt372LbR1m3YcMGtWnTRpMnT3Z3KcXmn//8p3Jzc91dBsoIRnZwXbBarSpfvry7y3BKRkaGu0twyokTJ+Tt7V2sQae4nD9/vsz/4szNzdX58+cl/fVd+Pn5ubegYla+fHlZrVZ3l4EygrCD68Llc3aysrI0depU1a9fXxUqVFCVKlXUoUMHxcbGSvrr3P28efMkSRaLxb5clJGRoaeeekohISGyWq1q0KCBXnnlFRmG4bDfP//8U6NHj1bVqlXl4+Oje++9V3/88YcsFovDiNGUKVNksVi0d+9ePfLII7rhhhvUoUMHSdLu3bs1ePBg1alTRxUqVFBQUJCGDh2q06dPO+zr4jZ++eUXPfroo7LZbAoICNDEiRNlGIaOHDmi++67T76+vgoKCtKrr75aqM8uOztbL7zwgurWrSur1aratWvrH//4hzIzM+19LBaLFi1apIyMDPtn5ex8lldeeUXt2rVTlSpV5O3trZYtW+rTTz916GOxWJSRkaH333/fvp9Lv9c//vhDQ4cOVbVq1WS1WtW4cWO99957Dtv46quvZLFYtGTJEj3//PO68cYbVbFiRaWlpSk5OVnjx49X06ZNVblyZfn6+qpHjx764YcfnDqWgrzxxhtq3LixKlasqBtuuEGtWrXS4sWL7esLmjNy8bu9/LMYNWqUPvroIzVu3FhWq1Vr1qyRxWJRQkKCvvjiC/tnlJiYqAsXLmjSpElq2bKlbDabKlWqpI4dO2rjxo159pebm6vXX39dTZs2VYUKFRQQEKDu3bvnOXX84YcfqmXLlvL29pa/v7/69eunI0eOFPrzSElJkaenp+bOnWtvO3XqlDw8PFSlShWHv09PPPGEgoKCCvysLs6jeuWVV7Rw4UL7z+utt96q7du359n3ypUr1aRJE1WoUEFNmjTRihUrCl03yh5OY6HMSk1N1alTp/K0Z2VlXfW9U6ZMUXR0tB5//HHddtttSktL044dO7Rr1y7deeedGjlypI4eParY2Fh98MEHDu81DEP33nuvNm7cqGHDhqlFixZau3atnn76af3xxx967bXX7H0HDx6sTz75RI899pjatGmjTZs2qWfPngXW9eCDD6p+/fqaMWOG/X/0sbGx+vXXXzVkyBAFBQVpz549Wrhwofbs2aOtW7fm+SX48MMPq1GjRpo5c6a++OILTZ8+Xf7+/nr77bd1xx136KWXXtJHH32k8ePH69Zbb1V4ePgVP6vHH39c77//vh544AE99dRT2rZtm6Kjo7Vv3z77L4gPPvhACxcu1Hfffad33nlHktSuXburfg+Xev3113XvvfdqwIABunDhgpYsWaIHH3xQq1atsn9mH3zwgf07GzFihCSpbt26kqTjx4+rTZs29hAQEBCg1atXa9iwYUpLS8szSfeFF16Ql5eXxo8fr8zMTHl5eWnv3r1auXKlHnzwQYWGhur48eN6++23dfvtt2vv3r0KDg526pgu9c9//lOjR4/WAw88oDFjxuj8+fPavXu3tm3bpkceeeSatrlhwwZ98sknGjVqlKpWrarq1avrgw8+0Lhx41SjRg099dRTkqSAgAClpaXpnXfeUf/+/TV8+HCdPXtW7777rrp166bvvvvOYUL5sGHDFBMTox49eujxxx9Xdna2Nm/erK1bt6pVq1aSpBdffFETJ07UQw89pMcf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ubPeffddh/aUlJQ8I2PXolKlSnr44Yf18MMP68KFC+rTp49efPFFRUVFqUKFCrrhhhuUkpKS532uGEH79NNPVadOHS1fvtzhM7z8dFXdunW1du1aJScnFzi6U7duXRmGodDQUN10001Frq1jx46Ki4tTaGioWrRoIR8fHzVv3lw2m01r1qzRrl277IGwqC7+zOb3d+jiqTSYD3N2cF26/PRN5cqVVa9ePYfTJ5UqVZKkPL987r77buXk5OjNN990aH/ttddksVjUo0cPSVK3bt0kSW+99ZZDvzfeeKPQdV78V+rl/yqdM2dOobdRFHfffXe++5s9e7YkXfHKMmd4enrKYrE4jGAkJibme6fkSpUq5flOPD091bdvXy1btkw//fRTnvecPHmy0HVc/lkvXbpUf/zxR6HefyWX/8x5eXkpLCxMhmHYTynVrVtXqamp2r17t73fsWPHXHJZdH4/S9u2bdOWLVsc+vXt21eGYeQbLi6+t0+fPvL09NTUqVPzfF6GYVz19OjlOnbsqMTERH388cf201oeHh5q166dZs+eraysrELN1ymM6tWrq0WLFnr//fcdTgPHxsZq7969LtkHSh9GdnBdCgsLU6dOndSyZUv5+/trx44d+vTTTzVq1Ch7n5YtW0qSRo8erW7dusnT01P9+vVTr1691LlzZz333HNKTExU8+bN9eWXX+qzzz7T2LFj7ZdCt2zZUn379tWcOXN0+vRp+6Xnv/zyi6TCnRry9fVVeHi4Zs2apaysLN1444368ssvlZCQUAyfSl7NmzfXoEGDtHDhQqWkpOj222/Xd999p/fff1+9e/dW586dXbKfnj17avbs2erevbseeeQRnThxQvPmzVO9evUcfvFLf32u69at0+zZs+2nQFq3bq2ZM2dq48aNat26tYYPH66wsDAlJydr165dWrdunZKTk69axz333KNp06ZpyJAhateunX788Ud99NFHqlOnTpGP8a677lJQUJDat2+vatWqad++fXrzzTfVs2dP+whhv379NGHCBN1///0aPXq0zp07p/nz5+umm24q8lySe+65R8uXL9f999+vnj17KiEhQQsWLFBYWJjS09Pt/Tp37qzHHntMc+fO1YEDB+ynSzdv3qzOnTtr1KhRqlu3rqZPn66oqCglJiaqd+/e8vHxUUJCglasWKERI0Zo/Pjxha7t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EXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpEXYAAICpuTXsxMXFqVevXgoODpbFYtHKlSsd1lsslnyXl19+2d6ndu3aedbPnDmzhI8EAACUVm4NOxkZGWrevLnmzZuX7/pjx445LO+9954sFov69u3r0G/atGkO/Z588smSKB8AAJQB5dy58x49eqhHjx4Frg8KCnJ4/dlnn6lz586qU6eOQ7uPj0+evgAAAFIZmrNz/PhxffHFFxo2bFiedTNnzlSVKlV088036+WXX1Z2dvYVt5WZmam0tDSHBQAAmJNbR3ac8f7778vHx0d9+vRxaB89erRuueUW+fv769tvv1VUVJSOHTum2bNnF7it6OhoTZ06tbhLBgAApUCZCTvvvfeeBgwYoAoVKji0R0ZG2v/crFkzeXl5aeTIkYqOjpbVas13W1FRUQ7vS0tLU0hISPEUDgAA3KpMhJ3Nmzdr//79+vjjj6/at3Xr1srOzlZiYqIaNGiQbx+r1VpgEAIAAOZSJubsvPvuu2rZsqWaN29+1b7x8fHy8PBQYGBgCVQGAABKO7eO7KSnp+vgwYP21wkJCYqPj5e/v79q1qwp6a9TTEuXLtWrr76a5/1btmzRtm3b1LlzZ/n4+GjLli0aN26cHn30Ud1www0ldhwAAKD0cmvY2bFjhzp37mx/fXEezaBBgxQTEyNJWrJkiQzDUP/+/fO832q1asmSJZoyZYoyMzMVGhqqcePGOczHAQAA1zeLYRiGu4twt7S0NNlsNqWmpsrX19fd5QBwsdrPfuHuEpyWOLOnu0sASr3C/v4uE3N2AAAArhVhBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmBphBwAAmJpbw05cXJx69eql4OBgWSwWrVy50mH94MGDZbFYHJbu3bs79ElOTtaAAQPk6+srPz8/DRs2TOnp6SV4FAAAoDRza9jJyMhQ8+bNNW/evAL7dO/eXceOHbMv//73vx3WDxgwQHv27FFsbKxWrVqluLg4jRgxorhLBwAAZUQ5d+68R48e6tGjxxX7WK1WBQUF5btu3759WrNmjbZv365WrVpJkt544w3dfffdeuWVVxQcHOzymgEAQNlS6ufsfPXVVwoMDFSDBg30xBNP6PTp0/Z1W7ZskZ+fnz3oSFLXrl3l4eGhbdu2FbjNzMxMpaWlOSwAAMCcSnXY6d69u/71r39p/fr1eumll7Rp0yb16NFDOTk5kqSkpCQFBgY6vKdcuXLy9/dXUlJSgduNjo6WzWazLyEhIcV6HAAAwH2cDju7du3Sjz/+aH/92WefqXfv3vrHP/6hCxcuuLS4fv366d5771XTpk3Vu3dvrVq1Stu3b9dXX31VpO1GRUUpNTXVvhw5csQ1BQMAgFLH6bAzcuRI/fLLL5KkX3/9Vf369VPFihW1dOlSPfPMMy4v8FJ16tRR1apVdfDgQUlSUFCQTpw44dAnOztbycnJBc7zkf6aB+Tr6+uwAAAAc3I67Pzyyy9q0aKFJGnp0qUKDw/X4sWLFRMTo2XLlrm6Pge///67Tp8+rerVq0uS2rZtq5SUFO3cudPeZ8OGDcrNzVXr1q2LtRYAAFA2OH01lmEYys3NlSStW7dO99xzjyQpJCREp06dcmpb6enp9lEaSUpISFB8fLz8/f3l7++vqVOnqm/fvgoKCtKhQ4f0zDPPqF69eurWrZskqVGjRurevbuGDx+uBQsWKCsrS6NGjVK/fv24EgsAAEi6hpGdVq1aafr06frggw+0adMm9ezZU9JfQaVatWpObWvHjh26+eabdfPNN0uSIiMjdfPNN2vSpEny9PTU7t27de+99+qmm27SsGHD1LJlS23evFlWq9W+jY8++kgNGzZUly5ddPfdd6tDhw5auHChs4cFAABMyumRnTlz5mjAgAFauXKlnnvuOdWrV0+S9Omnn6pdu3ZObatTp04yDKPA9WvXrr3qNvz9/bV48WKn9gsAAK4fToedZs2aOVyNddHLL78sT09PlxQFAADgKtd0n52UlBS98847ioqKUnJysiRp7969ea6MAgAAcDenR3Z2796tLl26yM/PT4mJiRo+fLj8/f21fPlyHT58WP/617+Ko04AAIBr4vTITmRkpIYMGaIDBw6oQoUK9va7775bcXFxLi0OAACgqJwOO9u3b9fIkSPztN94441XfEQDAACAOzgddqxWa74Pzvzll18UEBDgkqIAAABcxemwc++992ratGnKysqSJFksFh0+fFgTJkxQ3759XV4gAABAUTgddl599VWlp6crMDBQf/75p26//XbVq1dPPj4+evHFF4ujRgAAgGvm9NVYNptNsbGx+uabb/TDDz8oPT1dt9xyi7p27Voc9QEAABSJ02Hnovbt26t9+/aurAUAAMDlnD6NNXr0aM2dOzdP+5tvvqmxY8e6oiYAAACXcTrsLFu2LN8RnXbt2unTTz91SVEAAACu4nTYOX36tGw2W552X19fnTp1yiVFAQAAuIrTYadevXpas2ZNnvbVq1erTp06LikKAADAVZyeoBwZGalRo0bp5MmTuuOOOyRJ69ev16uvvqo5c+a4uj4AAIAicTrsDB06VJmZmXrxxRf1wgsvSJJq166t+fPna+DAgS4vEAAAoCiu6dLzJ554Qk888YROnjwpb29vVa5c2dV1AQAAuMQ132dHEs/CAgAApZ7TE5SPHz+uxx57TMHBwSpXrpw8PT0dFgAAgNLE6ZGdwYMH6/Dhw5o4caKqV68ui8VSHHUBAAC4hNNh5+uvv9bmzZvVokWLYigHAADAtZw+jRUSEiLDMIqjFgAAAJdzOuzMmTNHzz77rBITE4uhHAAAANdy+jTWww8/rHPnzqlu3bqqWLGiypcv77A+OTnZZcUBAAAUldNhh7skAwCAssTpsDNo0KDiqAMAAKBYOD1nR5IOHTqk559/Xv3799eJEyck/fUg0D179ri0OAAAgKJyOuxs2rRJTZs21bZt27R8+XKlp6dLkn744QdNnjzZ5QUCAAAUhdNh59lnn9X06dMVGxsrLy8ve/sdd9yhrVu3urQ4AACAonI67Pz444+6//7787QHBgbq1KlTLikKAADAVZwOO35+fjp27Fie9u+//1433nijS4oCAABwFafDTr9+/TRhwgQlJSXJYrEoNzdX33zzjcaPH6+BAwcW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ivNBoAAAAM5yOuyMHTvW4XVWVpa+//57rVmzRk8//bSr6gIAAHAJp8POmDFj8m2fN2+eduzYUeSCAAAAXMllc3Z69OihZcuWuWpzAAAALuGysPPpp5/K39/fVZsDAABwCadPY918880OE5QNw1BSUpJOnjypt956y6XFAQAAFJXTYad3794Orz08PBQQEKBOnTqpYcOGrqoLAADAJZwOO5MnTy6OOgAAAIoFNxUEAACmVuiRHQ8PjyveTFCSLBaLsrOzi1wUAACAqxQ67KxYsaLAdVu2bNHcuXOVm5vrkqIAAABcpdBh57777svTtn//fj377LP6/PPPNWDAAE2bNs2lxQEAABTVNc3ZOXr0qIYPH66mTZsqOztb8fHxev/991WrVi1X1wcAAFAkToWd1NRUTZgwQfXq1dOePXu0fv16ff7552rSpElx1QcAAFAkhT6NNWvWLL300ksKCgrSv//973xPawEAAJQ2FsMwjMJ09PDwkLe3t7p27SpPT88C+y1fvtxlxZWUtLQ02Ww2paamytfX193l4DpR+9kv3F0CgDIocWZPd5dQahT293ehR3YGDhx41UvPAQAASptCh52YmJhiLAMAAKB4cAdlAABgaoQdAABgaoQdAABgaoQdAABgaoQdAABgaoQdAABgaoQdAABgaoQdAABgaoQdAABgaqU67EyZMkUWi8VhadiwoX39+fPnFRERoSpVqqhy5crq27evjh8/7saKAQBAaVOqw44kNW7cWMeOHbMvX3/9tX3duHHj9Pnnn2vp0qXatGmTjh49qj59+rixWgAAUNoU+tlY7lKuXDkFBQXlaU9NTdW7776rxYsX64477pAkLVq0SI0aNdLWrVvVpk2bAreZmZmpzMxM++u0tDTXFw4AAEqFUj+yc+DAAQUHB6tOnToaMGCADh8+LEnauXOnsrKy1LVrV3vfhg0bqmbNmtqyZcsVtxkdHS2bzWZfQkJCivUYAACA+5TqsNO6dWvFxMRozZo1mj9/vhISEtSxY0edPXtWSUlJ8vLykp+fn8N7qlWrpqSkpCtuNyoqSqmpqfblyJEjxXgUAADAnUr1aawePXrY/9ysWTO1bt1atWrV0ieffCJvb+9r3q7VapXVanVFiQAAlKjaz37h7hKcljizp1v3X6pHdi7n5+enm266SQcPHlRQUJAuXLiglJQUhz7Hjx/P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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAA8gUlEQVR4nO3deXQUVf7+8aeTkLBlIUASomFH9k1Q1kEQHLYfyogLDEoCiFuQJSjLOIDgkgiiDII4jAqOoo4oooIE2QRRZDWyiOwYBQJCSJoEDUn6/v7w0F/bBEiTbjop3q9z6pi6dbv6U10z9uOtW9U2Y4wRAACARfn5ugAAAABvIuwAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAJVTNmjUVFxfn6zIsb/r06apdu7b8/f3VokULX5cDwAsIO8BVsGDBAtlsNm3durXQ7Z07d1aTJk2K/T6fffaZnnrqqWLv51rx+eefa+zYserQoYPmz5+v5557ztclAfCCAF8XAKBwe/fulZ+fe/898tlnn2nOnDkEniJas2aN/Pz89PrrryswMNDX5QDwEkZ2gBIqKChIZcqU8XUZbsnOzvZ1CW45efKkypUrR9ABLI6wA5RQf56zk5ubqylTpqhevXoqW7asKleurI4dO2rlypWSpLi4OM2ZM0eSZLPZnMsF2dnZGjNmjGJiYhQUFKT69evrhRdekDHG5X1//fVXjRgxQlWqVFFwcLBuv/12HT16VDabzWXE6KmnnpLNZtP333+vv//976pUqZI6duwoSdqxY4fi4uJUu3ZtlS1bVlFRURoyZIhOnz7t8l4X9rFv3z7dd999Cg0NVdWqVTVx4kQZY/TTTz/pjjvuUEhIiKKiojRjxowifXZ5eXl6+umnVadOHQUFBalmzZr6xz/+oZycHGcfm82m+fPnKzs72/lZLViw4KL7/PLLL3X33XerevXqCgoKUkxMjEaPHq1ff/3VpV9cXJwqVqyoQ4cOqXv37qpQoYKio6M1derUAp+1p8+JJB09elRDhgxRZGSkgoKC1LhxY73xxhsFjicnJ0eTJ09W3bp1ncczduxYl8/ock6ePKmqVauqc+fOLjUfOHBAFSpU0L333lvkfQHexGUs4CrKzMzUqVOnCrTn5uZe9rVPPfWUEhMT9cADD+jmm2+W3W7X1q1btX37dt1222166KGHdOzYMa1cuVJvvfWWy2uNMbr99tu1du1aDR06VC1atNCKFSv0xBNP6OjRo3rppZecfePi4vT+++/r/vvvV9u2bbVu3Tr17t37onXdfffdqlevnp577jnnF97KlSt16NAhDR48WFFRUdq9e7fmzZun3bt365tvvnEJYZJ07733qmHDhkpKStKyZcv0zDPPKDw8XP/+979166236vnnn9fChQv1+OOP66abblKnTp0u+Vk98MADevPNN3XXXXdpzJgx2rRpkxITE7Vnzx599NFHkqS33npL8+bN0+bNm/Xaa69Jktq3b3/RfS5atEjnzp3TI488osqVK2vz5s16+eWX9fPPP2vRokUuffPz89WjRw+1bdtW06ZNU3JysiZPnqy8vDxNnTrVa+fkxIkTatu2rWw2m4YPH66qVatq+fLlGjp0qOx2u0aNGiVJcjgcuv3227VhwwY9+OCDatiwoXbu3KmXXnpJ+/bt05IlSy75+V4QERGhuXPn6u6779bLL7+sESNGyOFwKC4uTsHBwXrllVeKtB/A6wwAr5s/f76RdMmlcePGLq+pUaOGiY2Nda43b97c9O7d+5LvEx8fbwr7v/WSJUuMJPPMM8+4tN91113GZrOZAwcOGGOM2bZtm5FkRo0a5dIvLi7OSDKTJ092tk2ePNlIMgMGDCjwfufOnSvQ9u677xpJZv369QX28eCDDzrb8vLyzPXXX29sNptJSkpytp85c8aUK1fO5TMpTEpKipFkHnjgAZf2xx9/3Egya9ascbbFxsaaChUqXHJ/lzqmxMREY7PZzI8//uiyT0nmsccec7Y5HA7Tu3dvExgYaH755RdjjHfOydChQ021atXMqVOnXPr279/fhIaGOo/hrbfeMn5+fubLL7906ffqq68aSearr74q0mdywYABA0z58uXNvn37zPTp040ks2TJErf2AXgTl7GAq2jOnDlauXJlgaVZs2aXfW1YWJh2796t/fv3u/2+n332mfz9/TVixAiX9jFjxsgYo+XLl0uSkpOTJUmPPvqoS7/HHnvsovt++OGHC7SVK1fO+fdvv/2mU6dOqW3btpKk7du3F+j/wAMPOP/29/dX69atZYzR0KFDne1hYWGqX7++Dh06dNFapN+PVZISEhJc2seMGSNJWrZs2SVffzF/PKbs7GydOnVK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HQAAAF5xxbeeHzhwQCtWrNCvv/4q6fffzAIAAChp3A47p0+fVteuXXXDDTeoV69eOn78uCRp6NChGjNmjMcLBAAAKA63w87o0aNVpkwZpaamqnz58s72e++9V8nJyR4tDgAAoLjcnrPz+eefa8WKFbr++utd2uvVq6cff/zRY4UBAAB4gtsjO9nZ2S4jOhekp6crKCjII0UBAAB4itth5y9/+Yv++9//OtdtNpscDoemTZumLl26eLQ4SapZs6ZsNluBJT4+XpLUuXPnAtsefvhhj9cBAABKJ7cvY02bNk1du3bV1q1bdf78eY0dO1a7d+9Wenq6vvrqK48XuGXLFuXn5zvXd+3apdtuu0133323s23YsGGaOnWqc72wkScAAHBtcjvsNGnSRPv27dPs2bMVHBysrKws3XnnnYqPj1e1atU8XmDVqlVd1pOSklSnTh3dcsstzrby5csrKirK4+8NAABKP7fDjiSFhobqySef9HQtl3X+/Hm9/fbbSkhIcHla88KFC/X2228rKipKffr00cSJEy85upOTk6OcnBznut1u92rdAADAd64o7Jw5c0avv/669uzZI0lq1KiRBg8erPDwcI8W92dLlixRRkaG4uLinG1///vfVaNGDUVHR2vHjh0aN26c9u7dq8WLF190P4mJiZoyZYpXawUAACWDzbj56OP169erT58+Cg0NVevWrSVJ27ZtU0ZGhj799FN16tTJK4VKUvfu3RUYGKhPP/30on3WrFmjrl276sCBA6pTp06hfQob2YmJiVFmZqZCQkI8Xje8r+b4Zb4uAbjmHUnq7esScI2x2+0KDQ297Pe32yM78fHxuvfeezV37lz5+/tLkvLz8/Xoo48qPj5eO3fuvPKqL+HHH3/UqlWrLjliI0lt2rSRpEuGnaCgIG6TBwDgGuH2recHDhzQmDFjnEFHkvz9/ZWQkKADBw54tLg/mj9/viIiItS796X/yyElJUWSvDJZGgAAlD5uh50bb7zROVfnj/bs2aPmzZt7pKg/czgcmj9/vmJjYxUQ8H+DUQcPHtTTTz+tbdu26ciRI/rkk080aNAgderUSc2aNfNKLQAAoHQp0mWsHTt2OP8eMWKERo4cqQMHDqht27aSpG+++UZz5sxRUlKSV4pctWqVUlNTNWTIEJf2wMBArVq1SjNnzlR2drZiYmLUr18//fOf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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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/fr162dIMiZPnmxtmzx5siHJ6NGjR7b3u379era2jz/+2JBk7Ny5M9s+Bg0aZG1LT083HnnkEcNisRgzZ860tl++fNnw9va2+UxycvDgQUOS8cILL9i0jx492pBkbN261drWt29f46GHHrrr/rK0aNHCkGR89NFH1raffvrJkGS4ubkZu3fvtrZv2LDBkGTExMRY23L6TOLi4gxJxvvvv2/T/u9//9uQZHz44YfG7t27DXd392zfyb3Ex8cbkozSpUsbV65csbZHRUUZkox69eoZaWlp1vYePXoYHh4exo0bN+5a8+DBg41ixYpZ+6WnpxuVKlUyKlSoYFy+fNmmb2ZmpvXnvn37GpKMadOm2fQJDQ01wsLC7Bpb1ndx++eWmppqBAYGGl27drW2Zf29i4+Pt3n9tm3bDEnGtm3bsu0zr99v1p/lTp062bzXSy+9ZEgyvv/+e8MwDCMhIcFwd3c3Xn31VZt+P/zwg1GkSBGb9qyaFi9enPsPB4UaMzswhUWLFmnTpk3ZHnXr1r3na/39/XX48GGdOHHC7vddu3at3N3dNXz4cJv2l19+WYZhWP81vH79eknSSy+9ZNNv2LBhd9z37TMQWby9va0/37hxQxcuXNBjjz0mSdaZqNu98MIL1p/d3d3VsGFDGYahAQMGWNv9/f1VrVo1nT59+o61SLfGKinbjNXLL78sSVqzZs1dX383xYsXt5kdqlatmvz9/VWjRg01btzY2p718+213v6ZpKWl6eLFi6pSpYr8/f2zfSaDBg1S27ZtNWzYMPXu3VshISF5PlPs2WeflZ+fX7baevXqpSJFiti037x5U7/99luONV+7dk0XLlzQE088oevXr+unn36SJB04cEDx8fEaOXKk/P39bd779sOoWf765+WJJ56453eak+LFi6tXr17W5x4eHmrUqFGe9nX7PvP6/WYZMmSIzfOsvztZfy5XrFihzMxMdevWzWZ2NzAwUFWrVtW2bdtsXu/p6an+/fvneUwoXDgbC6bQqFEjNWzYMFt7iRIl7nl9jmnTpumZZ57Ro48+qtq1a6tdu3bq3bt3roLSzz//rKCgIPn4+Ni016hRw7o9679ubm6qVKmSTb8qVarccd9/7StJly5d0tSpU7V8+XKbtSfSrUN5f1W+fHmb535+fvLy8lKpUqWytf913c9fZY3hrzUHBgbK39/fOta8eOSRR7L9Avfz81NwcHC2NunWYZEsf/75p6KjoxUTE6PffvvN5nBeTp/JkiVLFBISohMnTmjXrl02wcMeOX22knJV8+HDhzVhwgRt3bpVSUlJNv2zaj516pQk5erSCV5eXipdurRNW4kSJWzeM7dy+i5KlCihQ4cO2b2vu+0zt99vlqpVq9o8DwkJkZubm3Xd0IkTJ2QYRrZ+Wf56UsLDDz/MAvoHCGEHD7zmzZvr1KlT+uKLL7Rx40b95z//0bx587R48WKbmZH8ltMv4W7dumnXrl165ZVXVL9+fRUvXlyZmZlq166dMjMzs/V3d3fPVZukHNf85CSnWYX7daeaclPrsGHDFBMTo5EjR6pJkyby8/OTxWJRREREjp/J9u3brQuqf/jhBzVp0iRfa75y5YpatGghX19fTZs2TSEhIfLy8tL+/fs1duzYHGvOay15kZvP/E5/Bu60IPp+vt87+WsNmZmZslgsWrduXY77/euFF/MaclE4EXYASQEBAerfv7/69++v5ORkNW/eXFOmTLGGnTv9z71ChQravHmzrl27ZjO7k3UookKFCtb/ZmZmKj4+3uZfnidPnsx1jZcvX9aWLVs0depUTZo0ydqel8NveZE1hhMnTlhnriTp3LlzunLlinWs+e2zzz5T3759bc4ou3HjRrYFqZJ09uxZDRs2TE8//bQ8PDw0evRotW3bNl9r3759uy5evKgVK1bYLNyOj4+36RcSEiJJ+vHHH9WmTZt8qy83SpQoIUnZPuP7md27lxMnTtjMdp48eVKZmZmqWLGipFufl2EYqlSpkh599FGn1YHCiTU7eOD99fBN8eLFVaVKFZvTqbPO1Pnr/9zDw8OVkZGht956y6Z93rx5slgsat++vSSpbdu2kqS3337bpt/ChQtzXWfWv1b/+q/e+fPn53of9yM8PDzH95s7d64k3fXMMmdyd3fP9pksXLgwx1mGgQMHKjMzU0uWLNG7776rIkWKaMCAAbme1XKEnL7HmzdvZvuz0aBBA1WqVEnz58/P9ucuP+vNSVYQu/0MvoyMjDyd/ZVbWZd/yJL1dyfr71iXLl3k7u6uqVOnZvt8DMO452FamBszO3jg1axZUy1btlRYWJgCAgK0d+9effbZZxo6dKi1T1hYmCRp+PDhatu2rdzd3RUREaGOHTuqVatWGj9+vBISElSvXj1t3LhRX3zxhUaOHGn9pRAWFqauXbtq/vz5unjxoh577DHt2LFDx48fl5S7Q0O+vr5q3ry5Zs2apbS0ND388MPauHFjthkBZ6lXr5769u2rd99913oo5ttvv9V7772nzp07u+zU3b///e/64IMP5Ofnp5o1ayouLk6bN29WyZIlbfrFxMRozZo1io2N1SOPPCLp1i/MXr166Z133sm2eNxZHn/8cZUoUUJ9+/bV8OHDZbFY9MEHH2T7Be3m5qZ33nlHHTt2VP369dW/f3+VK1dOP/30kw4fPqwNGzbkS705qVWrlh577DFFRUXp0qVLCggI0PLly5Wenu6094yPj1enTp3Url07xcXF6cMPP9Rzzz2nevXqSboVwGbMmKGoqCglJCSoc+fO8vHxUXx8vFauXKlBgwZluwQAHhyEHTzwhg8fri+//FIbN25UamqqKlSooBkzZuiVV16x9unSpYuGDRum5cuX68MPP5RhGIqIiJCbm5u+/PJLTZo0SZ988oliYmJUsWJFzZ4923qWUpb3339fgYGB+vjjj7Vy5Uq1adNGn3zyiapVqyYvL69c1frRRx9p2LBhWrRokQzD0NNPP61169YpKCjIoZ/JnfznP/9R5cqVFRsbq5UrVyowMFBRUVGaPHlyvrx/Tt588025u7tr2bJlunHjhpo2barNmzdbZ9Mk6ddff9WoUaPUsWNH9e3b19res2dPff755xozZozat2+f46JwRytZsqRWr16tl19+WRMmTFCJEiXUq1cvtW7d2qZm6daM4LZt2zR16lTNmTNHmZmZCgkJsV53yZWWLVumwYMHa+bMmfL399eAAQPUqlUr6zWpHO2TTz6xXouoSJEiGjp0qGbPnm3TZ9y4cXr00Uc1b948TZ06VdKtBeNPP/20OnXq5JS6UDhYDFfPhwIPsIMHDyo0NFQffvihevbs6epyAMCUWLMD5JM///wzW9v8+fPl5uZ2zysMAwDyjsNYQD6ZNWuW9u3bp1atWqlIkSJat26d1q1bp0GDBmW73gjyX0ZGhv7444+79ilevHi2U5gLg0uXLunmzZt33O7u7p7tOj2AmXAYC8gnmzZt0tSpU3XkyBElJyerfPny6t27t8aPH29zxV24RkJCwj3X7EyePNnmpq2FRcuWLbVjx447bq9QoUK2m3oCZkLYAQDdujbP119/fdc+lStXVuXK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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkMAAAGzCAYAAAAsQxMfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABDV0lEQVR4nO3df3xP9f//8ftrm82wvWZsZm9jfkdE9E4ov8NIlAqRH0kqP7L1g7374WdNIi5Kv975UaEfJJXe1FAUS6ElEqaJYn7N9rLJ7Mf5/uHr9enVhr3m9dprL+d2vVzOJed5nue8HufYvO6d8zznWAzDMAQAAGBSPp4uAAAAwJMIQwAAwNQIQwAAwNQIQwAAwNQIQwAAwNQIQwAAwNQIQwAAwNQIQwAAwNQIQwAAwNQIQ0AJREdHa+jQoZ4u46r34osvqk6dOvL19VXz5s0v2m/o0KGKjo4utbrMwmKxaNKkSW7Z9oEDB2SxWLRo0SK3bB9wBmEIprdo0SJZLBZt3bq1yOUdOnRQkyZNrvhz/ve//7nti+Vq9OWXX+rJJ59U27ZttXDhQj3//POeLsntzpw5o0mTJunrr7/2dCkewe8IPMXP0wUA3mjPnj3y8XHu/yX+97//ad68efxjX0zr16+Xj4+P5s+fL39//0v2/e9//6uCgoJSqsx9zpw5o8mTJ0s6H8KvZrVq1dJff/2lcuXK2dv4HYGnEIaAEggICPB0CU7Lzs5WxYoVPV1GsR07dkyBgYGXDUKSHL5Q4R0sFovKly/v6TIASVwmA0rkn2OGcnNzNXnyZNWvX1/ly5dXlSpVdPPNNysxMVHS+TEt8+bNk3T+S+DCdEF2drYee+wxRUVFKSAgQA0bNtTMmTNlGIbD5/71118aO3asqlatqqCgIN1+++36888/C43tmDRpkiwWi3755Rfde++9qly5sm6++WZJ0o4dOzR06FDVqVNH5cuXV0REhO6//36dPHnS4bMubGPv3r0aNGiQrFarwsLC9Mwzz8gwDB06dEi9e/dWcHCwIiIiNGvWrGIdu7y8PE2dOlV169ZVQECAoqOj9Z///Ec5OTn2PhaLRQsXLlR2drb9WF1qbMk/xwxdGI8yc+ZMzZs3T3Xq1FGFChXUtWtXHTp0SIZhaOrUqapRo4YCAwPVu3dvpaenO2wzOjpat912m7788ks1b95c5cuXV+PGjbVixQqHfunp6Xr88cfVtGlTVapUScHBwYqJidFPP/1UqM6zZ89q0qRJatCggcqXL6/q1avrzjvv1P79+3XgwAGFhYVJkiZPnmzf7+KcJTl69Kj8/PzsZ5X+bs+ePbJYLHrllVfsbRkZGRo3bpz9561evXp64YUXinV27ccff1RMTIyCg4NVqVIlde7cWd99912hfhkZGYqNjVV0dLQCAgJUo0YNDR48WCdOnJBUeMzQxX5HDMNQdHS0evfuXeTxtFqtGjly5GXrBi6FM0PA/5eZmWn/h/rvcnNzL7vupEmTlJCQoAceeEA33nijbDabtm7dqu3bt+vWW2/VyJEjdfjwYSUmJurdd991WNcwDN1+++366quvNHz4cDVv3lxffPGFnnjiCf3555+aPXu2ve/QoUP14Ycf6r777tNNN92kDRs2qGfPnhet6+6771b9+vX1/PPP24NVYmKifvvtNw0bNkwRERHatWuX3nzzTe3atUvfffedQ0iTpH79+qlRo0aaPn26Pv/8c02bNk2hoaF644031KlTJ73wwgtasmSJHn/8cf373/9Wu3btLnmsHnjgAb399tu666679Nhjj2nLli1KSEjQ7t279fHHH0uS3n33Xb355pv6/vvv9dZbb0mS2rRpc9m/h39asmSJzp07pzFjxig9PV0zZszQPffco06dOunrr7/W+PHjlZKSopdfflmPP/64FixY4LD+vn371K9fPz300EMaMmSIFi5cqLvvvltr1qzRrbfeKkn67bfftHLlSt19992qXbu2jh49qjfeeEPt27fXL7/8osjISElSfn6+brvtNq1bt079+/fXo48+qtOnTysxMVE7d+5Uly5d9Nprr+nhhx/WHXfcoTvvvFOSdN111112P6tVq6b27dvrww8/1MSJEx2WffDBB/L19dXdd98t6fyluPbt2+vPP//UyJEjVbNmTW3evFnx8fE6cuSI5syZc9HP2bVrl2655RYFBwfrySefVLly5fTGG2+oQ4cO2rBhg1q1aiVJysrK0i233KLdu3fr/vvvV4sWLXTixAl9+umn+uOPP1S1atVC277Y74jFYtGgQYM0Y8YMpaenKzQ01L7ss88+k81m06BBgy57jIBLMgCTW7hwoSHpktO1117rsE6tWrWMIUOG2OebNWtm9OzZ85KfM2rUKKOoX7mVK1cakoxp06Y5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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABDLElEQVR4nO3dd3xUVf7/8fckJEMoSQgQQjR0pDdh6YtiUNqifMUCoiTI0jaIEFSICgiWIDZWRF1WAXVBVpSyioA0QTGglEiVXqSEFkhI0JByfn/4y+iYABkywySX1/PxmIfMuWfufO4ZYt6ce+4dmzHGCAAAwKJ8vF0AAACAJxF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2gCKqWrVqio6O9nYZlvfKK6+oRo0a8vX1VdOmTb1dDgAPIOwA18GsWbNks9m0cePGfLfffvvtatiwYaHf58svv9Rzzz1X6P3cKL766is99dRTateunWbOnKmXXnrJ2yUB8IAS3i4AQP52794tHx/X/j3y5Zdfatq0aQSeAlq1apV8fHz0/vvvy9/f39vlAPAQZnaAIsput8vPz8/bZbgkPT3d2yW45NSpUwoICCDoABZH2AGKqD+v2cnMzNSECRNUu3ZtlSxZUuXLl1f79u21fPlySVJ0dLSmTZsmSbLZbI5HrvT0dI0aNUoRERGy2+2qU6eOXn31VRljnN73l19+0fDhw1WhQgWVLVtWd999t44dOyabzeY0Y/Tcc8/JZrNp586deuihh1SuXDm1b99ekrR161ZFR0erRo0aKlmypMLCwvToo4/q7NmzTu+Vu489e/bo4YcfVlBQkCpWrKixY8fKGKOff/5Z99xzjwIDAxUWFqbXXnutQGOXlZWl559/XjVr1pTdble1atX09NNPKyMjw9HHZrNp5syZSk9Pd4zVrFmzLrvPb775Rvfff7+qVKkiu92uiIgIjRw5Ur/88otTv+joaJUpU0YHDhxQ586dVbp0aYWHh2vixIl5xtrdn4kkHTt2TI8++qgqVaoku92uBg0aaMaMGXmOJyMjQ+PHj1etWrUcx/PUU085jdHVzJw5UzabTVu2bMmz7aWXXpKvr6+OHTtW4P0BnsJpLOA6SklJ0ZkzZ/K0Z2ZmXvW1zz33nOLj4/X3v/9dLVu2VGpqqjZu3KjNmzfrzjvv1ODBg3X8+HEtX75cH330kdNrjTG6++67tXr1ag0YMEBNmzbVsmXL9OSTT+rYsWN64403HH2jo6P1ySef6JFHHlHr1q21Zs0ade/e/bJ13X///apdu7Zeeuklxy/p5cuX68CBA+rfv7/CwsK0Y8cOTZ8+XTt27ND69eudQpgkPfjgg6pXr54mTZqkxYsX64UXXlBISIj+9a9/6Y477tDLL7+s2bNn64knntBf/vIXdejQ4Ypj9fe//10ffPCB7rvvPo0aNUobNmxQfHy8du3apQULFkiSPvroI02fPl3ff/+93nvvPUlS27ZtL7vPefPm6eLFixo6dKjKly+v77//XlOnTtXRo0c1b948p77Z2dnq0qWLWrdurcmTJ2vp0qUaP368srKyNHHiRI99JidPnlTr1q1ls9k0bNgwVaxYUUuWLNGAAQOUmpqqESNGSJJycnJ0991369tvv9WgQYNUr149bdu2TW+88Yb27NmjhQsXXnF8c913332KiYnR7Nmz1axZM6dts2fP1u23366bbrqpQPsCPMoA8LiZM2caSVd8NGjQwOk1VatWNVFRUY7nTZo0Md27d7/i+8TExJj8fqwXLlxoJJkXXnjBqf2+++4zNpvN7Nu3zxhjzKZNm4wkM2LECKd+0dHRRpIZP368o238+PFGkunTp0+e97t48WKeto8//thIMmvXrs2zj0GDBjnasrKyzM0332xsNpuZNGmSo/3cuXMmICDAaUzyk5iYaCSZv//9707tTzzxhJFkVq1a5WiLiooypUuXvuL+rnRM8fHxxmazmcOHDzvtU5J57LHHHG05OTmme/fuxt/f35w+fdoY45nPZMCAAaZy5crmzJkzTn179+5tgoKCHMfw0UcfGR8fH/PNN9849Xv33XeNJLNu3boCjYkxxvTp08eEh4eb7OxsR9vmzZuNJDNz5swC7wfwJE5jAdfRtGnTtHz58jyPxo0bX/W1wcHB2rFjh/bu3evy+3755Zfy9fXV8OHDndpHjRolY4yWLFkiSVq6dKkk6R//+IdTv8cee+yy+x4yZEietoCAAMeff/31V505c0atW7eWJG3evDlP/7///e+OP/v6+qpFixYyxmjAgAGO9uDgYNWpU0cHDhy4bC3Sb8cqSbGxsU7to0aNkiQtXrz4iq+/nD8eU3p6us6cOaO2bdvKGJPv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oCgh7ABw0rZtWy1fvlzPP/+80tLSVKVKFT333HN65plnvF3aDcsbn8njjz+uDz744Ip9jDGaOHGivvvuO7Vr186lq/aA64k1OwCAPHbu3Knjx49fsc/V7ucDFBWEHQAAYGksUAYAAJbGmh39dmv348ePq2zZsm79Ph0AAOA5xhhduHBB4eHh8vG5/PwNYUfS8ePHucoEAIBi6ueff9bNN9982e1eDTvx8fGaP3++fvrpJwUEBKht27Z6+eWXVadOHUefX3/9VaNGjdLcuXOVkZGhzp076+2331alSpUcfY4cOaKhQ4dq9erVKlOmjKKiohQfH1/g72bJ/RK+n3/+WYGBge49SAAA4BGpqamKiIhw+jLd/Hg17KxZs0YxMTH6y1/+oqysLD399NO66667tHPnTscXGo4cOVKLFy/WvHnzFBQUpGHDhunee+/VunXrJEnZ2dnq3r27wsLC9N133+nEiRPq16+f/Pz89NJLLxWojtxTV4GBgYQdAACKmastQSlSV2OdPn1aoaGhWrNmjTp06KCUlBRVrFhRc+bM0X333SdJ+umnn1SvXj0lJCSodevWWrJkif72t7/p+PHjjtmed999V6NHj9bp06fl7+9/1fdNTU1VUFCQUlJSCDsAABQTBf39XaSuxkpJSZEkhYSESJI2bdqkzMxMp3s51K1bV1WqVFFCQoIkKSEhQY0aNXI6rdW5c2elpqZqx44d+b5PRkaGUlNTnR4AAMCaikzYycnJ0YgRI9SuXTs1bNhQkpSUlCR/f38FBwc79a1UqZKSkpIcff4YdHK3527LT3x8vIKCghwPFicDAGBdRSbsxMTEaPv27Zo7d67H3ysuLk4pKSmOx88//+zx9wQAAN5RJC49HzZsmL744gutXbvW6dKxsLAwXbp0SefPn3ea3Tl58qTCwsIcfb7//nun/Z08edKxLT92u112u93NRwEAAIoir87sGGM0bNgwLViwQKtWrVL16tWdtjdv3lx+fn5auXKlo2337t06cuSI2rRpI0lq06aNtm3bplOnTjn6LF++XIGBgapfv/71ORAAAFBkeXVmJyYmRnPmzNGiRYtUtmxZxxqboKAgBQQEKCgoSAMGDFBsbKxCQkIUGBioxx57TG3atFHr1q0lSXfddZfq16+vRx55RJMnT1ZSUpKeffZZxcTEMHsDAAC8e+n55a6Lnzlz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nz59dOrUKUm/fRHojh073FocAABAYbkcdtasWaNGjRppw4YNmj9/vtLS0iRJP/74o8aPH+/SvtauXasePXooPDxcNptNCxcudGzLzMzU6NGj1ahRI5UuXVrh4eHq16+fjh8/7rSPatWqyWazOT0mTZrk6mEBAACLcjnsjBkzRi+88IKWL18uf39/R/sdd9yh9evXu7Sv9PR0NWnSRNOmTcuz7eLFi9q8ebPGjh2rzZs3a/78+dq9e7fuvvvuPH0nTpyoEydOOB6PPfaYq4cFAAAsyuU1O9u2bdOcOXPytIeGhurMmTMu7atr167q2rVrvtuCgoK0fPlyp7a33npLLVu21JEjR1SlShVHe9myZRUWFubSewMAgBuDyzM7wcHBOnHiRJ72LVu26KabbnJLUZeTkpIim82m4OBgp/ZJkyapfPnyatasmV555RVlZWVdcT8ZGRlKTU11egAAAGtyOez07t1bo0ePVlJSkmw2m3JycrRu3To98cQT6tevnydqlCT9+uuvGj16tPr06aPAwEBH+/DhwzV37lytXr1agwcP1ksvvaSnnnrqivuKj49XUFCQ4xEREeGxugEAgHfZjIvf/XDp0iXFxMRo1qxZys7OVokSJZSdna2HHnpIs2bNuuZvPrfZbFqwYIF69uyZZ1tmZqZ69eqlo0eP6uuvv3YKO382Y8YMDR48WGlpabLb7fn2ycjIUEZGhuN5amqqIiIilJKScsV9A5CqjVns7RJuCIcmdfd2CUCRl5qaqqCgoKv+/nZpzY4xRklJSXrzzTc1btw4bdu2TWlpaWrWrJlq165d6KLzk5mZqQceeECHDx/WqlWrrhpGWrVqpaysLB06dEh16tTJt4/dbr9sEAIAANbictipVauWduzYodq1a3v89E9u0Nm7d69Wr16t8uXLX/U1iYmJ8vHxUWhoqEdrAwAAxYNLYcfHx0e1a9fW2bNn3TKTk5aWpn379jmeHzx4UImJiQoJCVHlypV13333afPmzfriiy+UnZ2tpKQkSVJISIj8/f2VkJCgDRs2qGPHjipbtqwSEhI0cuRIPfzwwypXrlyh6wMAAMWfywuUJ02apCeffFLbt28v9Jtv3LhRzZo1U7NmzSRJsbGxatasmcaNG6djx47pf//7n44ePaqmTZuqcuXKjsd3330n6bfTUXPnztVtt92mBg0a6MUXX9TI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19KlS1WyZEnHa2bPnq1hw4YpMjJSPj4+6tWrl958883rfiwAAKBospnclcY3sNTUVAUFBSklJUWBgYHeLgc3iGpjFnu7BMCtDk3q7u0ScIMp6O/vAq3ZufXWW3Xu3DlJv12CfvHiRfdUCQAA4GEFCju7du1Senq6JGnChAl89xQAACg2CrRmp2nTpurfv7/at28vY4xeffVVlSlTJt++48aNc2uBAAAAhVGgsDNr1iyNHz9eX3zxhWw2m5YsWaISJfK+1GazEXYAAECRUqCwU6dOHc2dO1eS5OPjo5UrV+b5mgYAAICiyOVLz3NycjxRBwAAgEdc03129u/frylTpmjXrl2SpPr16+vxxx9XzZo13VocAABAYbn8dRHLli1T/fr19f3336tx48Zq3LixNmzYoAYNGmj58uWeqBEAAOCauTyzM2bMGI0cOVKTJk3K0z569GjdeeedbisOAACgsFye2dm1a5cGDBiQp/3RRx/Vzp073VIUAACAu7gcdipWrKjExMQ87YmJiVyhBQAAihyXT2MNHDhQgwYN0oEDB9S2bVtJ0rp16/Tyyy87vsgTAACgqHA57IwdO1Zly5bVa6+9pri4OElSeHi4nnvuOQ0fPtztBQIAABSGy2HHZrNp5MiRGjlypC5cuCBJKlu2rNsLAwAAcIdrus9OLkIOAAAo6lxeoAwAAFCcEHYAAIClEXYAAICluRR2MjMzFRkZqb1793qqHgAAALdyKez4+flp69atnqoFAADA7Vw+jfXwww/r/fff90QtAAAAbufypedZWVmaMWOGVqxYoebNm6t06dJO219//XW3FQcAAFBYLoed7du369Zbb5Uk7dmzx2mbzWZzT1UAAABu4nLYWb16tSfqAAAA8IhrvvR83759WrZsmX755RdJkjHGbUUBAAC4i8th5+zZs4qMjNQtt9yibt266cSJE5KkAQMGaNSoUW4vEAAAoDBcDjsjR46Un5+fjhw5olKlSjnaH3zwQS1dutStxQEAABSWy2t2vvrqKy1btkw333yzU3vt2rV1+PBhtxUGAADgDi7P7KSnpzvN6ORKTk6W3W53S1EAAADu4nLY+etf/6oPP/zQ8dxmsyknJ0eTJ09Wx44d3VocAABAYbl8Gmvy5MmKjIzUxo0bdenSJT311FPasWOHkpOTtW7dOk/UCAAAcM1cntlp2LCh9uzZ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pRYtWqhly5aaMmWK0tPT1b9/f2+XBgAAvMwSYefBBx/U6dOnNW7cOCUlJalp06ZaunRpnkXLhWG32zV+/Pg8p79uRIzF7xiL3zEWv2EcfsdY/I6x+J03xsJmrna9FgAAQDFW7NfsAAAAXAlhBwAAWBphBwAAWBphBwAAWBphBwAAWBph5woyMjLUtGlT2Ww2JSYmOm3bunWr/vrXv6pkyZKKiIjQ5MmT87x+3rx5qlu3rkqWLKlGjRrpyy+/vE6Vu8/dd9+tKlWqqGTJkqpcubIeeeQRHT9+3KmP1cfi0KFDGjBggKpXr66AgADVrFlT48eP16VLl5z6WX0ccr344otq27atSpUqddk7jx85ckTdu3dXqVKlFBoaqieffFJZWVlOfb7++mvdeuutstvtqlWrlmbNmuX54q+DadOmqVq1aipZsqRatWql77//3tslud3atWvVo0cPhYeHy2azaeHChU7bjTEaN26cKleurICAAHXq1El79+516pOcnKy+ffsqMDBQwcHBGjBggNLS0q7jURRefHy8/vKXv6hs2bIKDQ1Vz549tXv3bqc+v/76q2JiYlS+fHmVKVNGvXr1ynPH/4L8vBR177zzjho3buy4K3KbNm20ZMkSx3avj4PBZQ0fPtx07drVSDJbtmxxtKekpJhKlSqZvn37mu3bt5uPP/7YBAQEmH/961+OPuvWrTO+vr5m8uTJZufOnebZZ581fn5+Ztu2bV44kmv3+uuvm4SEBHPo0CGzbt0606ZNG9OmTRvH9hthLJYsWWKio6PNsmXLzP79+82iRYtMaGioGTVqlKPPjTAOucaNG2def/11Exsba4KCgvJsz8rKMg0bNjSdOnUyW7ZsMV9++aWpUKGCiYuLc/Q5cOCAKVWqlImNjTU7d+40U6dONb6+vmbp0qXX8Ujcb+7cucbf39/MmDHD7NixwwwcONAEBwebkydPers0t/ryyy/NM888Y+bPn28kmQULFjhtnzRpkgkKCjILFy40P/74o7n77rtN9erVzS+//OLo06VLF9OkSROzfv16880335hatWqZPn36XOcjKZzOnTubmTNnmu3bt5vExETTrVs3U6VKFZOWluboM2TIEBMREWFWrlxpNm7caFq3bm3atm3r2F6Qn5fi4H//+59ZvHix2bNnj9m9e7d5+umnjZ+fn9m+fbsxxvvjQNi5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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABGF0lEQVR4nO3deVyVZf7/8fcBBEwFRAUkUUnNPfd9yYWJ1DTLSh3H3NKmNBdKw2+5tqBWZpZpzZhak9OMljbpuJB75oqSpo5buJSClQKCiQjX7w8fnl9HQDlyEM7d6/l4nEee677OfT7XuTDe3vd138dmjDECAACwKI+iLgAAAKAwEXYAAIClEXYAAIClEXYAAIClEXYAAIClEXYAAIClEXYAAIClEXYAAIClEXYAAIClEXbwh1C1alUNHDiwqMuwvDfeeEP33HOPPD091bBhw5v2/eSTT1SrVi2VKFFCAQEBd6Q+V7PZbJo8eXJRl5Grq1evaty4cQoLC5OHh4d69uxZ1CW53OTJk2Wz2Yr9PlH0CDtwOwsXLpTNZtPu3btz3d6hQwfVq1evwO/z3//+t9j+IiuO1q5dq3HjxqlNmzZasGCBXn/99Tz7/u9//9PAgQNVrVo1/e1vf9OHH354Byu9ZvHixZo1a9Ydf9875aOPPtIbb7yhxx57TIsWLdKYMWOKuiSgyHgVdQHAnXD48GF5eDiX7f/73/9qzpw5BJ58Wr9+vTw8PDR//nx5e3vftO/GjRuVnZ2td955R9WrV79DFTpavHixvv/+e40ePbpI3r+wrV+/Xnfffbfefvvtoi6l0Lz88suKjo4u6jLgBjiygz8EHx8flShRoqjLcEp6enpRl+CUc+fOqWTJkrcMOtf7Srrl6StjjH777TdXlPeH8PvP69y5c257ejC/vLy85OvrW9RlwA0QdvCHcOOanczMTE2ZMkU1atSQr6+vypUrp7Zt2yo2NlaSNHDgQM2ZM0fStXUZ1x/Xpaen6/nnn1dYWJh8fHxUs2ZNvfnmmzLGOLzvb7/9ppEjR6p8+fIqU6aMevTooZ9++inHWo/r6wQOHjyoP//5zypbtqzatm0rSdq3b58GDhyoe+65R76+vgoJCdHgwYP166+/OrzX9X0cOXJEf/nLX+Tv768KFSpowoQJMsbo9OnTevjhh+Xn56eQkBC99dZb+frsrl69qldeeUXVqlWTj4+Pqlatqv/7v/9TRkaGvY/NZtOCBQuUnp5u/6wWLlyY51xMmjRJklShQgWHz6Jq1ap66KGHtGbNGjVt2lQlS5bUBx98IEn64Ycf9PjjjyswMFB33XWXWrZsqZUrVzrse+PGjbLZbPr3v/+t1157TZUqVZKvr686d+6sY8eO2ft16NBBK1eu1MmTJ+31Vq1aVZJ05coVTZw4UU2aNJG/v79KlSqldu3aacOGDfn6vG7ls88+U5MmTVSmTBn5+fmpfv36euedd+zb81ozcv307YkTJ+xteX1eNptNGzZs0IEDB+zj27hxoyTpzTffVOvWrVWuXDmVLFlSTZo00dKlS3Ot9R//+IeaN2+uu+66S2XLllX79u21du1ahz6rVq1Su3btVKpUKZUpU0bdunXTgQMH8v15GGNUvnx5RUVF2duys7MVEBAgT09PJScn29unT58uLy8vpaWl5flZ2Ww2jRgxQsuXL1e9evXk4+OjunXravXq1Tne+5tvvlGzZs3k6+uratWq2X/WYD2cxoLbSklJ0S+//JKjPTMz85avnTx5smJiYvTUU0+pefPmSk1N1e7du7Vnzx796U9/0tNPP60zZ84oNjZWn3zyicNrjTHq0aOHNmzYoCFDhqhhw4Zas2aNxo4dq59++snhtMHAgQP173//W/3791fLli21adMmdevWLc+6Hn/8cdWoUUOvv/66PTjFxsbqhx9+0KBBgxQSEqIDBw7oww8/1IEDB7R9+/Yc/7Pv3bu3ateurWnTpmnlypV69dVXFRgYqA8++ECdOnXS9OnT9emnn+qFF15Qs2bN1L59+5t+Vk899ZQWLVqkxx57TM8//7x27NihmJgYHTp0SMuWLZN0bbHxhx9+qJ07d+rvf/+7JKl169a57m/WrFn6+OOPtWzZMs2dO1elS5fWfffdZ99++PBh9e3bV08//bSGDh2qmjVrKikpSa1bt9alS5c0cuRIlStXTosWLVKPHj20dOlSPfLIIw7vMW3aNHl4eOiFF15QSkqKZsyYoX79+mnHjh2SpJdeekkpKSn68ccf7fNVunRpSVJqaqr+/ve/q2/fvho6dKguXryo+fPnKzIyUjt37rzlwuubiY2NVd++fdW5c2dNnz5dknTo0CFt3bpVo0aNuq193vh5VapUSZ988olee+01paWlKSYmRpJUu3ZtSdI777yjHj16qF+/frpy5Yo+++wzPf7441qxYoXDz+aUKVM0efJktW7dWlOnTpW3t7d27Nih9evX64EHHpB0bd4HDBigyMhITZ8+XZcuXdLcuXPVtm1b7d271x4gb8Zms6lNmzbavHmzvW3fvn1KSUmRh4eHtm7daq9ry5YtatSokX2u8vLNN9/oiy++0LPPPqsyZcpo9uzZ6tWrl06dOqVy5cpJkvbv368HHnhAFSpU0OTJk3X16lVNmjRJwcHB+f/w4T4M4GYWLFhgJN30UbduXYfXVKlSxQwYMMD+vEGDBqZbt243fZ/hw4eb3P6KLF++3Egyr776qkP7Y489Zmw2mzl27Jgxxpi4uDgjyYwePdqh38CBA40kM2nSJHvbpEmTjCTTt2/fHO936dKlHG3//Oc/jSSzefPmHPsYNmyYve3q1aumUqVKxmazmWnTptnbL1y4YEqWLOnwmeQmPj7eSDJPPfWUQ/sLL7xgJJn169fb2wYMGGBKlSp10/3dWOvPP//s0F6lShUjyaxevdqhffTo0UaS2bJli73t4sWLJjw83FStWtVkZWUZY4zZsGGDkWRq165tMjIy7H3feecdI8ns37/f3tatWzdTpUqVHLVdvXrV4bXGXPu8goODzeDBgx3ab5zHWxk1apTx8/MzV69ezbPP9c/mRtd/7hMSEuxteX1exhhz//335/h7YEzOn6crV66YevXqmU6dOtnbjh49ajw8PMwjjzxi/2yvy87ONsZc+/wDAgLM0KFDHbYnJiYaf3//HO0388YbbxhPT0+TmppqjDFm9uzZpkqVKqZ58+bmxRdfNMYYk5WVZQICAsyYMWPsr8vts5JkvL297X8PjTHmu+++M5LMu+++a2/r2bOn8fX1NSdPnrS3HTx40Hh6eub6+cO9cRoLbmvOnDmKjY3N8fj9UYK8BAQE6MCBAzp69KjT7/vf//5Xnp6eGjlypEP7888/L2OMVq1aJUn2w+bPPvusQ7/nnnsuz33/9a9/zdFWsmRJ+58vX76sX375RS1btpQk7dmzJ0f/p556yv5nT09PNW3aVMYYDRkyxN4eEBCgmjVr6ocffsizFunaWCU5nGKQro1VUo7TSK4QHh6uyMjIHHU0b97cfmpPunYkZtiwYTpx4oQOHjzo0H/QoEEOa4fatWsnSbccr3TtM7v+2uzsbJ0/f15Xr15V06ZNc/28nREQEKD09HT76VJXyO3zupnf/zxduHBBKSkpateuncPYli9fruzsbE2cODHHwv7rRxJjY2OVnJysvn376pdffrE/PD091aJFC6dO+7Vr105ZWVn69ttvJV07gtOuXTu1a9dOW7ZskSR9//33Sk5Ots/lzURERKhatWr25/fdd5/8/Pzs85+VlaU1a9aoZ8+eqly5sr1f7dq1nfos4T4IO3BbzZs3V0RERI5H2bJlb/naqVOnKjk5Wffee6/q16+vsWPHat++ffl635MnTyo0NFRlypRxaL9+muDkyZP2/3p4eCg8PNyh382uPrqxrySdP39eo0aNUnBwsEqWLKkKFSrY+6WkpOTo//v/eUuSv7+/fH19Vb58+RztFy5cyLOW34/hxppDQkIUEBBgH6sr5fYZnDx5UjVr1szRfuNnft2Nn8H1n4lbjfe6RYsW6b777rOv56pQoYJWrlyZ6+ftjGeffVb33nuvunTpokqVKmnw4MG5riVxRm6f182sWLFCLVu2lK+vrwIDA1WhQgXNnTvXYWzHjx+Xh4eH6tSpk+d+rv9DoVOnTqpQoYLDY+3atfZF6PnRuHFj3XXXXfZgcz3stG/fXrt379bly5ft234fePNy4/xL134Grs//zz//rN9++001atTI0S+3nzO4P9bs4A+pffv2On78uL788kutXbtWf//73/X2229r3rx5DkdG7rTf/6v7uieeeELffvutxo4dq4YNG6p06dLKzs7Wgw8+qOzs7Bz9PT0989UmKceC6rzcyZus5fYZOKsg4/3HP/6hgQMHqmfPnho7dqyCgoLk6empmJgYHT9+vEB1BQUFKT4+XmvWrNGqVau0atUqLViwQE8++aQWLVokKe/POisrK9d2Zz6vLVu2qEePHmrfvr3ef/99VaxYUSVKlNCCBQu0ePFip8Zy/Wfvk08+UUhISI7tXl75//VSokQJtWjRQps3b9axY8eUmJiodu3aKTg4WJmZmdqxY4e2bNmiWrVqqUKFCrfcX0F/3mE9hB38YQUGBmrQoEEaNGiQ0tLS1L59e02ePNkedvL6pVOlShV9/fXXunjxosPRnf/973/27df/m52drYSEBId/Qf7+qqBbuXDhgtatW6cpU6Zo4sSJ9vbbOf12O66P4ejRo/ajKJKUlJSk5ORk+1jvRB2HDx/O0X7jZ+6MvOZ36dKluuee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9qxmz55dWDXdcampqfL391dKSor8/Pxcuu+q0Stduj8AzjsxrVtRl+A0d/x/hzt+znBv+f397fSRnZ07d2r9+vVasWKF6tatm2OB8hdffOF8tQAAAIXE6bATEBCgRx99tDBqAQAAcDmnw87vv7oBAACguCv82yADAAAUIaeP7ISHh9/0fjqu/n4sAACAgnA67IwePdrheWZmpvbu3avVq1dr7NixrqoLAADAJZwOO6NGjcq1fc6cOdq9e3eBCwIAAHAll63Z6dKli/07qwAAAIoLl4WdpUuXKjAw0FW7AwAAcAmnT2M1atTIYYGyMUaJiYn6+eef9f7777u0OAAAgIJyOuzc+AWbHh4eqlChgjp06KBatWq5qi4AAACXcDrsTJo0qTDqAAAAKBTcVBAAAFhavo/seHh43PRmgpJks9l09erVAhcFAADgKvkOO8uWLctz27Zt2zR79mxlZ2e7pCgAAABXyXfYefjhh3O0HT58WNHR0frqq6/Ur18/TZ061aXFAQAAFNRtrdk5c+aMhg4dqvr16+vq1auKj4/XokWLVKVKFVfXBwAAUCBOhZ2UlBS9+OKLql69ug4cOKB169bpq6++Ur169QqrPgAAgALJ92msGTNmaPr06QoJCdE///nPXE9rAQAAFDf5DjvR0dEqWbKkqlevrkWLFmnRokW59vviiy9cVhwAAEBB5TvsPPnkk7e89BwAAKC4yXfYWbhwYSGWAQAAUDi4gzIAALA0p78bCwDcTdXolUVdAoAixJEdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaVx6DgBwCXe8xP/EtG5FXQLuAI7sAAAASyPsAAAAS3OrsDNt2jTZbDaNHj3a3nb58mUNHz5c5cqVU+nSpdWrVy8lJSUVXZEAAKBYcZuws2vXLn3wwQe67777HNrHjBmjr776SkuWLNGmTZt05swZPfroo0VUJQAAKG7cIuykpaWpX79++tvf/qayZcva21NSUjR//nzNnDlTnTp1UpMmTbRgwQJ9++232r59e577y8jIUGpqqsMDAABYk1uEneHDh6tbt26KiIhwaI+Li1NmZqZDe61atVS5cmVt27Ytz/3FxMTI39/f/ggLCyu02gEAQNEq9mHns88+0549exQTE5NjW2Jiory9vRUQEODQHhwcrMTExDz3OX78eKWkpNgf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s7p3767Q0FDZbDYtX778pv03btwom82W45GYmHhnCnZSTEyMmjVrpjJlyigoKEg9e/bU4cOHb/m6JUuWqFatWvL19VX9+vX13//+9w5Ue3tuZ4wLFy7MMYe+vr53qGLnzZ07V/fdd5/9TqWtWrXSqlWrbvoad5pDyfkxutsc5mbatGmy2WwaPXr0Tfu521z+Xn7G6G5zOXny5Bz11qpV66avcbc5dHaM7jKHf9iwk56ergYNGmjOnDlOve7w4cM6e/as/REUFFRIFRbMpk2bNHz4cG3fvl2xsbHKzMzUAw88oPT09Dxf8+2336pv374aMmSI9u7dq549e6pnz576/vvv72Dl+Xc7Y5Su3eL893N48uTJO1Sx8ypVqqRp06YpLi5Ou3fvVqdOnfTwww/rwIEDufZ3tzmUnB+j5F5zeKNdu3bpgw8+0H333XfTfu44l9fld4yS+81l3bp1Her95ptv8uzrrnPozBglN5lDAyPJLFu27KZ9NmzYYCSZCxcu3JGaXO3cuXNGktm0aVOefZ544gnTrVs3h7YWLVqYp59+urDLc4n8jHHBggXG39//zhVVCMqWLWv+/ve/57rN3efwupuN0Z3n8OLFi6ZGjRomNjbW3H///WbUqFF59nXXuXRmjO42l5MmTTINGjTId393nENnx+guc/iHPbJzuxo2bKiKFSvqT3/6k7Zu3VrU5eRbSkqKJCkwMDDPPtu2bVNERIRDW2RkpLZt21aotblKfsYoSWlpaapSpYrCwsJueQShOMnKytJnn32m9PT0PL/3zd3nMD9jlNx3DocPH65u3brlmKPcuOtcOjNGyf3m8ujRowoNDdU999yjfv366dSpU3n2ddc5dGaMknvMIWEnnypWrKh58+bp888/1+eff66wsDB16NBBe/bsKerSbik7O1ujR49WmzZtVK9evTz7JSYm5viKjeDg4GK7Lun38jvGmjVr6qOPPtKXX36pf/zjH8rOzlbr1q31448/3sFqnbN//36VLl1aPj4++utf/6ply5apTp06ufZ11zl0ZozuOIeS9Nlnn2nPnj2KiYnJV393nEtnx+huc9miRQstXLhQq1ev1ty5c5WQkKB27drp4sWLufZ3xzl0doxuM4dFfWipOFA+TmPlpn379uYvf/mL6wtysb/+9a+mSpUq5vTp0zftV6JECbN48WKHtjlz5pigoKDCLM8l8jvGG125csVUq1bNvPzyy4VUWcFlZGSYo0ePmt27d5vo6GhTvnx5c+DAgVz7uuscOjPGG7nDHJ46dcoEBQWZ7777zt52q1M87jaXtzPGG7nDXP7ehQsXjJ+fX56nXN1tDnNzqzHeqLjOoSW+CLSoNG/e/JYLt4raiBEjtGLFCm3evFmVKlW6ad+QkBAlJSU5tCUlJSkkJKQwSywwZ8Z4oxIlSqhRo0Y6duxYIVVXcN7e3qpevbokqUmTJtq1a5feeecdffDBBzn6uuscOjPGG7nDHMbFxencuXNq3LixvS0rK0ubN2/We++9p4yMDHl6ejq8xt3m8nbGeCN3mMvfCwgI0L333ptnve42h7m51RhvVFznkNNYBRAfH6+KFSsWdRm5MsZoxIgRWrZsmdavX6/w8PBbvqZVq1Zat26dQ1tsbOxN104UpdsZ442ysrK0f//+YjuPucnOzlZGRkau29xtDvNyszHeyB3msHPnztq/f7/i4+Ptj6ZNm6pfv36Kj4/PNQS421zezhhv5A5z+XtpaWk6fvx4nvW62xzm5lZjvFGxncOiPrRUVC5evGj27t1r9u7daySZmTNnmr1795qTJ08aY4yJjo42/fv3t/d/++23zfLly83Ro0fN/v37zahRo4yHh4f5+uuvi2oIN/XMM88Yf39/s3HjRnP27Fn749KlS/Y+/fv3N9HR0fbnW7duNV5eXubNN980hw4dMpMmTTIlSpQw+/fvL4oh3NLtjHHKlClmzZo15vjx4yYuLs706dPH+Pr65vuUyZ0WHR1tNm3aZBISEsy+fftMdHS0sdlsZu3atcYY959DY5wfo7vNYV5uPMVjhbm80a3G6G5z+fzzz5uNGzeahIQEs3XrVhMREWHKly9vzp07Z4yxxhw6O0Z3mcM/bNi5fin5jY8BAwYYY4wZMGCAuf/+++39p0+fbqpVq2Z8fX1NYGCg6dChg1m/fn3RFJ8PuY1NklmwYIG9z/33328f73X//ve/zb333mu8vb1N3bp1zcqVK+9s4U64nTGOHj3aVK5c2Xh7e5vg4GDTtWtXs2fPnjtffD4NHjzYVKlSxXh7e5sKFSqYzp0720OAMe4/h8Y4P0Z3m8O83BgErDCXN7rVGN1tLnv37m0qVqxovL29zd1332169+5tjh07Zt9uhTl0dozuMoc2Y4y500eTAAAA7hTW7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEsj7AAAAEv7fxXSVR4oPqxuAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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FofDTkBAgNLS0gq0b9++XTfddJNTigIAAHAWh8POoEGDNH78eKWnp8tisSg/P18//PCDnn32WQ0ZMqQkagQAALhmDoedV155RY0aNVJYWJjOnDmjJk2aqHPnzurQoYNefPHFkqgRAADgmjl0nR3DMJSenq4333xTkyZN0s6dO3XmzBm1bt1aDRo0KKkaAQAArpnDYad+/fravXu3GjRooLCwsJKqCwAAwCkcOozl4eGhBg0a6M8//yypegAAAJzK4Tk706dP13PPPaddu3aVRD0AAABO5fC9sYYMGaKzZ8+qZcuW8vb2VoUKFeyWc9dzAADgTrjrOQAAMDWHwk5ubq4SExM1ceJE1a1bt6RqAgAAcBqH5ux4eXlp8eLFTnvz9evX6+6771ZoaKgsFouWLl1qW5abm6vx48erefPmqlSpkkJDQzVkyBClpqbaraNOnTqyWCx2j+nTpzutRgAAULY5PEG5X79+dqHkemRnZ6tly5aaM2dOgWVnz57Vtm3bNHHiRG3btk1ffvml9u7dq3vuuadA32nTpiktLc32GD16tFPqAwAAZZ/Dc3YaNGigadOm6YcfflDbtm1VqVIlu+Vjxowp9rp69+6t3r17F7rM399fCQkJdm1vv/22br/9dh05ckS1atWytfv6+iokJMSBrQAAADcKh8PO+++/r4CAAG3dulVbt261W2axWBwKO47KysqSxWJRQECAXfv06dP10ksvqVatWnr44YcVHR2tcuWK3rScnBzl5OTYnlut1pIqGQAAuJjDYefQoUMlUcdVnT9/XuPHj9dDDz0kPz8/W/uYMWPUpk0bBQYG6scff1RsbKzS0tI0c+bMItcVFxenqVOnlkbZAADAxRwOO66Qm5urgQMHyjAMvfvuu3bLYmJibH+3aNFC3t7eGjlypOLi4uTj41Po+mJjY+1eZ7VaufUFAAAm5XDYeeyxx664fN68eddcTGEuBZ3ffvtNa9eutdurU5h27drp4sWLOnz4sBo2bFhoHx8fnyKDEAAAMBeHw86pU6fsnufm5mrXrl3KzMxUt27dnFbYpXUPHDhQ+/fv17p161S1atWrviY5OVkeHh4KCgpyai0AAKBscjjsLFmypEBbfn6+nnrqKdWrV8+hdZ05c0YpKSm254cOHVJycrICAwNVo0YN3X///dq2bZtWrFihvLw8paenS5ICAwPl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OnVKb775purWrav169eXRI0AAADXzOE9O1FRUXrwwQf17rvvytPTU5KUl5enp59+WlFRUdq5c6fTiwQAALhWDu/ZSUlJ0bhx42xBR5I8PT0VExOjlJQUpxYHAABwvRwOO23atLHN1fm7PXv2qGXLlk4pCgAAwFmKdRhrx44dtr/HjBmjZ555RikpKWrfvr0kaePGjZozZ46mT59eMlUCAABcI4thGMbVOnl4eMhisehqXS0Wi/Ly8pxWXGmxWq3y9/dXVlaW/Pz8XF0OACerM2Glq0sAnObw9L6uLsFtFPf3u1h7dg4dOuS0wgAAAEpTscJO7dq1S7oOAACAEnFNFxVMTU3V999/r+PHjys/P99u2ZgxY5xS2CV16tTRb7/9VqD96aef1pw5c9SlSxclJibaLRs5cqTee+89p9YBAADKJofDzoIFCzRy5Eh5e3uratWqslgstmUWi8XpYeenn36ymwe0a9cu3XXXXXrggQdsbSNGjNC0adNszytWrOjUGgAAQNnlcNiZOHGiJk2apNjYWHl4OHzmusOqV69u93z69OmqV6+e7rzzTltbxYoVFRISUuK1AACAssfhtHL27FkNGjSoVILO5S5cuKCPPvpIjz32mN0epY8//ljVqlVTs2bNFBsbq7Nnz15xPTk5ObJarXYPAABgTg4nluHDh2vRokUlUctVLV26VJmZmYqMjLS1Pfzww/roo4+0bt06xcbG6sMPP9QjjzxyxfXExcXJ39/f9ggLCyvhygEAgKsU6zo7f5eXl6d//OMfOnfunJo3by4vLy+75TNnznRqgX8XEREhb29vLV++vMg+a9euVffu3ZWSkqJ69eoV2icnJ0c5OTm251arVWFhYVxnBzAprrMDM+E6O//j1Ovs/F1cXJy++eYbNWzYUJIKTFAuKb/99ptWr16tL7/88or92rVrJ0lXDDs+Pj7y8fFxeo0AAMD9OBx23njjDc2bN8/uUFJpmD9/voKCgtS375UTbXJysiSpRo0apVAVAABwdw6HHR8fH3Xs2LEkailSfn6+5s+fr6FDh6pcuf+VfODAAX3yySfq06ePqlatqh07dig6OlqdO3dWixYtSrVGAADgnhyeoPzMM8/orbfeKolairR69WodOXJEjz32mF27t7e3Vq9erZ49e6pRo0YaN26cBgwYcMU5PQAA4Mbi8J6dzZs3a+3a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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAA/8ElEQVR4nO3de3zO9eP/8ee1sRl2MMyMNYzI+VRyyLmEyJfKfPQxh5CcR7E+ckpNinwq6VNhJVKEQg5zrhyKWkpyHpUhh2027GDv3x/dXD+XHezaru3a3h732+265Xq939f7el7vXezZ+/16X5fFMAxDAAAAJuXi7AAAAAD5ibIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDU6hSpYr69+/v7Bim9/rrr6tatWpydXVVw4YNs1yvf//+qlKlSq6eY+rUqbJYLDlaNzIyUhaLRTExMXY/T14y5qebr2nfvn13XLdt27Zq27at9X5MTIwsFosiIyOtY/bsz7tVYX0vwHEoOyh07vSPfdu2bVW3bt08P8/XX3+tqVOn5nk7d4tNmzbphRdeUMuWLbVo0SK9+uqrBfbcr776qlavXl1gz5cXRSFrUcgIOJQBFDKLFi0yJBk//PBDpsvbtGlj1KlTx2bs+vXrRkpKil3PM3z4cIO/Ajk3YcIEw8XFxUhOTr7juikpKcb169dz9TypqanGtWvXbMZKlSplhIaGZlg3LS3NuHbtmpGenm7384SGhhpBQUG5ypidrLLm1J3e/7dKTk62+XmcPHnSkGQsWrTIOmbP/rxb5eX9iqKhmHOrFuAY7u7uzo5gt6SkJJUqVcrZMXLs/Pnz8vDwkJub2x3XLV68eK6fp1ixYipWLGf/NLm6usrV1TXXz1XU5eRnYc/+NAPDMHT9+nV5eHjk+DF5eb+iaOA0Fkzh9jk7qampmjZtmmrUqKESJUqobNmyatWqlaKioiT9c45+3rx5kiSLxWK93ZSUlKRx48YpMDBQ7u7uqlmzpt544w0ZhmHzvNeuXdOoUaNUrlw5eXp6qnv37vrrr79ksVhsTpHdnDfx22+/6V//+pfKlCmjVq1aSZIOHDig/v37q1q1aipRooT8/f01cOBAXbx40ea5bm7jyJEjevrpp+Xt7a3y5cvrpZdekmEY+uOPP/T444/Ly8tL/v7+mj17do72XVpaml5++WUFBwfL3d1dVapU0Ysvvqjk5GTrOhaLRYsWLVJSUpJ1X906L+R2t8+BuDmX5I033tD7779vfa77779fP/zwQ6av89bnTkpK0kcffWR97ps/68zm7Hz55Zfq2rWrAgIC5O7uruDgYL388su6ceNGjvZHdo4ePapevXrJ399fJUqUUOXKlRUSEqL4+Pg7Zj116pSee+451axZUx4eHipbtqyefPLJLOcbXb16VUOHDlXZsmXl5eWlfv366fLlyzbr3D5nJzM53Z/btm2TxWLRqlWrMmxj6dKlslgs2r17d4720/bt22WxWPT5559r2rRpqlSpkjw9PfXEE08oPj5eycnJGjNmjPz8/FS6dGkNGDDA5v0mSYsWLVL79u3l5+cnd3d31a5dW/Pnz8/wXFWqVNFjjz2mjRs3qmnTpvLw8ND//vc/Sf/s8+7du6tUqVLy8/PT2LFjtXHjRlksFm3fvt26jby8X1E03D11H0VOfHy8Lly4kGE8NTX1jo+dOnWqIiIi9Mwzz+iBBx5QQkKC9u3bpx9//FEPP/ywhg4dqjNnzigqKkqLFy+2eaxhGOrevbu2bdumQYMGqWHDhtq4caOef/55/fXXX3rzzTet6/bv31+ff/65/v3vf+vBBx/Ujh071LVr1yxzPfnkk6pRo4ZeffVVa3GKiorSiRMnNGDAAPn7++vgwYN6//33dfDgQe3ZsyfD5NLevXvrvvvu08yZM7Vu3TrNmDFDvr6++t///qf27dvrtdde05IlSzR+/Hjdf//9at26dbb76plnntFHH32kJ554QuPGjdPevXsVERGhQ4cOWX/xLV68WO+//76+//57ffjhh5KkFi1a3PHncLulS5fqypUrGjp0qCwWi2bNmqWePXvqxIkTWf7f9eLFi60/xyFDhkiSgoODs3yOyMhIlS5dWmFhYSpdurS2bt2qyZMnKyEhQa+//rrdmW9KSUlRp06dlJycrJEjR8rf319//fWX1q5dq7i4OHl7e2eb9YcfftCuXbsUEhKiypUrKyYmRvPnz1fbtm3122+/qWTJkjbPN2LECPn4+Gjq1Kk6fPiw5s+fr1OnTlmLRG5llfHBBx9UYGCglixZov/7v/+zecySJUsUHBys5s2b2/VcERER8vDw0MSJE3Xs2DG9/fbbKl68uFxcXHT58mVNnTpVe/bsUWRkpKpWrarJkydbHzt//nzVqVNH3bt3V7FixbRmzRo999xzSk9P1/Dhw22e5/Dhw+rTp4+GDh2qwYMHq2bNmkpKSlL79u0VGxur0aNHy9/fX0uXLtW2bdtynD8371cUUk49iQZk4uachexut8/ZCQoKspmD0KBBA6Nr167ZPk9Wc3ZWr15tSDJmzJhhM/7EE08YFovFOHbsmGEYhrF//35DkjFmzBib9fr3729IMqZMmWIdmzJliiHJ6NOnT4bnu3r1aoaxTz/91JBk7Ny5M8M2hgwZYh1LS0szKleubFgsFmPmzJnW8cuXLxseHh53nJcRHR1tSDKeeeYZm/Hx48cbkoytW7dax0JDQ41SpUplu71b1711PszNuSRly5Y1Ll26ZB3/8ssvDUnGmjVrMrzOW2U1x+Tme+XkyZPWscz259ChQ42SJUvazMuwd87OTz/9ZEgyli9fnu16WWXNLNfu3bsNScbHH39sHbv5mpo0aWIzD23WrFmGJOPLL7+0jrVp08Zo06aN9X5mc3bs2Z/h4eGGu7u7ERcXZx07f/68UaxYMZv3851s27bNkGTUrVvX5jX06dPHsFgsRufOnW3Wb968eYafRWb7q1OnTka1atVsxoKCggxJxoYNG2zGZ8+ebUgyVq9ebR27du2aUatWLUOSsW3bNut4Xt6vKBo4jYVCa968eYqKispwq1+//h0f6+Pjo4MHD+ro0aN2P+/XX38tV1dXjRo1ymZ83LhxMgxD69evlyRt2LBBkvTcc8/ZrDdy5Mgst/3ss89mGLt1bsH169d14cIFPfjgg5KkH3/8McP6zzzzjPXPrq6uatq0qQzD0KBBg6zjPj4+qlmzpk6cOJFlFumf1ypJYWFhNuPjxo2TJK1bty7bx9urd+/eKlOmjPX+Qw89JEl3zGmPW/fnlStXdOHCBT300EO6evWqfv/991xv19vbW5K0ceNGXb16NU+5UlNTdfHiRVWvXl0+Pj6Z/pyHDBlic/Rg2LBhKlasmPVnlh/69eun5ORkrVixwjr22WefKS0tTU8//XSutnfra2jWrJkMw9DAgQNt1mvWrJn++OMPpaWlWcdu3V83j/K2adNGJ06csJ42vKlq1arq1KmTzdiGDRtUqVIlde/e3TpWokQJDR48OMf5C+L9ioJB2UGh9cADD6hjx44Zbrf+45OV6dOnKy4uTvfee6/q1aun559/XgcOHMjR8546dUoBAQHy9PS0Gb/vvvusy2/+18XFRVWrVrVZr3r16llu+/Z1JenSpUsaPXq0KlSoIA8PD5UvX9663u3/qEvSPffcY3Pf29tbJUqUULly5TKM3z7H43Y3X8Ptmf39/eXj42N9rY5ye/abP8s75bTHwYMH9X//93/y9vaWl5eXypcvb/1Fndn+zKmqVasqLCxMH374ocqVK6dOnTpp3rx5Od7mtWvXNHnyZOs8sHLlyql8+fKKi4vLdBs1atSwuV+6dGlVrFgxV58plFO1atXS/fffryVLlljHlixZogcffDDb93VWMnuvSlJgYGCG8fT0dJv98N1336ljx44qVaqUfHx8VL58eb344ouSMv4cM/t7derUKQUHB2c45WfP6yiI9ysKBmUHptS6dWsdP35cCxcuVN26dfXhhx+qcePG1vkmzpLZFSJPPfWUPvjgAz377LNauXKlNm3aZD1qlJ6enmH9zK4+yuqKJOO2CdVZKagPnctrzjuJi4tTmzZt9PPPP2v69Olas2aNoqKi9Nprr0nKfH/aY/bs2Tpw4IBefPFF6+T0OnXq6M8//7zjY0eOHKlXXnlFTz31lD7//HNt2rRJUVFRKlu2bJ5zOVK/fv20Y8cO/fnnnzp+/Lj27NmTq6M6UtY/7zu9D44fP64OHTrowoULmjNnjtatW6eoqCiNHTtWUsafoz1XXtkjv9+vKDhMUIZp+fr6asCAARowYIASExPVunVrTZ061XoaKKtf8EFBQdq8ebOuXLlic3Tn5imQoKAg63/T09N18uRJm/8LP3bsWI4zXr58WVu2bNG0adNsJmfm5vRbbtx8DUePHrUeuZKkc+fOKS4uzvpanS2nZWz79u26ePGiVq5caTMx++TJkw7LUq9ePdWrV0+TJk3Srl271LJlS7333nuaMWNGtllXrFih0NBQm6vkrl+/rri4uEzXP3r0qNq1a2e9n5iYqNjYWHXp0iXPryG7/RkSEqKwsDB9+umnunbtmooXL67evXvn+TntsWbNGiUnJ+urr76yObpiz+TioKAg/fbbbzIMw+b12vP3E+bBkR2Y0u2XbZcuXVrVq1e3ubz15mfc3P7LpkuXLrpx44beeecdm/E333xTFotFnTt3liTrHIF3333XZr233347xzlv/p/j7f+nOHfu3BxvIy9u/uK8/fnmzJkjSdleWVaQSpUqlWUpuFVm+zMlJSXDzyg3EhISbOaUSP8UHxcXlwzvq8yyurq6Zvg5v/3221leEv/+++/bXHk4f/58paWlWd9/eZHd/ixXrpw6d+6sTz75REuWLNGjjz6a4RRpfsvs5xgfH69FixbleBudOnXSX3/9pa+++so6dv36dX3wwQeOC4oigyM7MKXatWurbdu2atKkiXx9fbVv3z6tWLFCI0aMsK7TpEkTSdKoUaPUqVMnubq6KiQkRN26dVO7du30n//8RzExMWrQoIE2bdqkL7/8UmPGjLFeStykSRP16tVLc+fO1cWLF62Xnh85ckRSzo5GeHl5qXXr1po1a5ZSU1NVqVIlbdq0yaFHIrLToEEDhYaG6v3337eeAvr+++/10UcfqUePHjZHFpypSZMm2rx5s+bMmaOAgABVrVpVzZo1y7BeixYtVKZMGYWGhmrUqFGyWCxavHixQ047bN26VSNGjNCTTz6pe++9V2lpaVq8eLFcXV3Vq1evO2Z97LHHtHjxYnl7e6t27dravXu3Nm/erLJly2b6fCkpKerQoYOeeuopHT58WO+++65atWplM+E2t+60P/v166cnnnhCkvTyyy/n+fns9cgjj8jNzU3dunXT0KFDlZiYqA8++EB+fn6KjY3N0TaGDh2qd955R3369NHo0aNVsWJFLVmyRCVKlJBUcKduUThQdmBKo0aN0ldffaVNmzYpOTlZQUFBmjFjhp5//nnrOj179tTIkSO1bNkyffLJJzIMQyEhIXJxcdFXX32lyZMn67PPPtOiRYtUpUoVvf7669arlG76+OOP5e/vr08//VSrVq1Sx44d9dlnn6lmzZrWf1TvZOnSpRo5cqTmzZsnwzD0yCOPaP369QoICHDoPsnKhx9+qGrVqikyMlKrVq2Sv7+/wsPDNWXKlAJ5/pyYM2eOhgwZokmTJunatWsKDQ3NtOyULVtWa9eu1bhx4zRp0iSVKVNGTz/9tDp06JDhah17NWjQQJ06ddKaNWv0119/qWTJkmrQoIHWr19vvXouu6z//e9/5erqqiVLluj69etq2bKlNm/enGWud955R0uWLNHkyZOVmpqqPn366K233nLIL+k77c9u3bqpTJkySk9Pd0i5slfNmjW1YsUKTZo0SePHj5e/v7+GDRum8uXLZ7iSKys3P2Np5MiR+u9//6vSpUurX79+atGihXr16pXjv58wB4vBTCvAoaKjo9WoUSN98skn6tu3r7PjAHZLS0tTQECAunXrpgULFjg7jkPNnTtXY8eO1Z9//qlKlSo5Ow4KCHN2gDy4du1ahrG5c+fKxcXljp9cDBRWq1ev1t9//61+/fo5O0qe3P738/r16/rf//6nGjVqUHTuMpzGAvJg1qxZ2r9/v9q1a6dixYpp/fr1Wr9+vYYMGZLhs0RQeF26dEkpKSlZLnd1dVX58uULMJFz7N27VwcOHNDLL7+sRo0aqU2bNjbLU1JSdOnSpWy34e3tnW+XgturZ8+euueee9SwYUPFx8frk08+0e+//27zOUK4SxT4ZzYDJrJp0yajZcuWRpkyZYzixYsbwcHBxtSpU43U1FRnR4Md2rRpk+3Xk9jztRJFWWhoqOHq6mo0adLE+OWXXzIsv/k1ENndbv2qCmd78803jTp16hilSpUySpQoYTRu3NhYtmyZs2PBCZizA+Cut3///mw/FdfDw0MtW7YswESF0+XLl7V///5s16lTp44qVqxYQImAnKHsAAAAU2OCMgAAMDUmKOuf71k5c+aMPD09+aApAACKCMMwdOXKFQUEBMjFJevjN5QdSWfOnOHKGQAAiqg//vhDlStXznI5ZUeyftnjH3/8IS8vLyenAQAAOZGQkKDAwECbL23ODGVH//87Ury8vCg7AAAUMXeagsIEZQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGrFnB0AQNFSZeI6Z0ewW8zMrs6OAMCJOLIDAABMjbIDAABMjbIDAABMjbIDAABMjbIDAABMjauxAJgeV5ABdzeO7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFOj7AAAAFNzatnZuXOnunXrpoCAAFksFq1evdpmucViyfT2+uuvW9epUqVKhuUzZ84s4FcCAAAKK6eWnaSkJDVo0EDz5s3LdHlsbKzNbeHChbJYLOrVq5fNetOnT7dZb+TIkQURHwAAFAFO/SLQzp07q3Pnzlku9/f3t7n/5Zdfql27dqpWrZrNuKenZ4Z1AQAApCI0Z+fcuXNat26dBg0alGHZzJkzVbZsWTVq1Eivv/660tLSst1WcnKyEhISbG4AAMCcnHpkxx4fffSRPD091bNnT5vxUaNGqXHjxvL19dWuXbsUHh6u2NhYzZkzJ8ttRUREaNq0afkdGQAAFAJFpuwsXLhQffv2VYkSJWzGw8LCrH+uX7++3NzcNHToUEVERMjd3T3TbYWHh9s8LiEhQYGBgfkTHAAAOFWRKDvffPONDh8+rM8+++yO6zZr1kxpaWmKiYlRzZo1M13H3d09yyIEAADMpUjM2VmwYIGaNGmiBg0a3HHd6Ohoubi4yM/PrwCSAQCAws6pR3YSExN17Ngx6/2TJ08qOjpavr6+uueeeyT9c4pp+fLlmj17dobH7969W3v37lW7du3k6emp3bt3a+zYsXr66adVpkyZAnsdAACg8HJq2dm3b5/atWtnvX9zHk1oaKgiIyMlScuWLZNhGOrTp0+Gx7u7u2vZsmWaOnWqkpOTVbVqVY0dO9ZmPg4AALi7WQzDMJwdwtkSEhLk7e2t+Ph4eXl5OTsOUKhVmbjO2RHuCjEzuzo7AlDo5fT3d5GYswMAAJBblB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqlB0AAGBqxZwdAACQUZWJ65wdwW4xM7s6OwKQKY7sAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU6PsAAAAU3Nq2dm5c6e6deumgIAAWSwWrV692mZ5//79ZbFYbG6PPvqozTqXLl1S37595eXlJR8fHw0aNEiJiYkF+CoAAEBh5tSyk5SUpAYNGmjevHlZrvPoo48qNjbWevv0009tlvft21cHDx5UVFSU1q5dq507d2rIkCH5HR0AABQRxZz55J07d1bnzp2zXcfd3V3+/v6ZLjt06JA2bNigH374QU2bNpUkvf322+rSpYveeOMNBQQEZPq45ORkJScnW+8nJCTk8hUAAIDCrtDP2dm+fbv8/PxUs2ZNDRs2TBcvXrQu2717t3x8fKxFR5I6duwoFxcX7d27N8ttRkREyNvb23oLDAzM19cAAACcp1CXnUcffVQff/yxtmzZotdee007duxQ586ddePGDUnS2bNn5efnZ/OYYsWKydfXV2fPns1yu+Hh4YqPj7fe/vjjj3x9HQAAwHmcehrrTkJCQqx/rlevnurXr6/g4GBt375dHTp0yPV23d3d5e7u7oiIAACgkCvUR3ZuV61aNZUrV07Hjh2TJPn7++v8+fM266SlpenSpUtZzvMBAAB3lyJVdv78809dvHhRFStWlCQ1b95ccXFx2r9/v3WdrVu3Kj09Xc2aNXNWTAAAUIg49TRWYmKi9SiNJJ08eVLR0dHy9fWVr6+vpk2bpl69esnf31/Hjx/XCy+8oOrVq6tTp06SpPvuu0+PPvqoBg8erPfee0+pqakaMWKEQkJCsrwSCwAA3F2cemRn3759atSokRo1aiRJCgsLU6NGjTR58mS5urrqwIED6t69u+69914NGjRITZo00TfffGMz32bJkiWqVauWOnTooC5duqhVq1Z6//33nfWSAABAIePUIztt27aVYRhZLt+4ceMdt+Hr66ulS5c6MhYAADCRIjVnBwAAwF6UHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGqUHQAAYGp2l50ff/xRv/zyi/X+l19+qR49eujFF19USkqKQ8MBAADkld1lZ+jQoTpy5Igk6cSJEwoJCVHJkiW1fPlyvfDCCw4PCAAAkBd2l50jR46oYcOGkqTly5erdevWWrp0qSIjI/XFF184Oh8AAECe2F12DMNQenq6JGnz5s3q0qWLJCkwMFAXLlxwbDoAAIA8srvsNG3aVDNmzNDixYu1Y8cOde3aVZJ08uRJVahQweEBAQAA8sLusjN37lz9+OOPGjFihP7zn/+oevXqkqQVK1aoRYsWDg8IAACQF8XsfUD9+vVtrsa66fXXX5erq6tDQgEAADhKrj5nJy4uTh9++KHCw8N16dIlSdJvv/2m8+fPOzQcAABAXtl9ZOfAgQPq0KGDfHx8FBMTo8GDB8vX11crV67U6dOn9fHHH+dHTgAAgFyx+8hOWFiYBgwYoKNHj6pEiRLW8S5dumjnzp0ODQcAAJBXdpedH374QUOHDs0wXqlSJZ09e9YhoQAAABzF7rLj7u6uhISEDONHjhxR+fLlHRIKAADAUewuO927d9f06dOVmpoqSbJYLDp9+rQmTJigXr16OTwgAABAXthddmbPnq3ExET5+fnp2rVratOmjapXry5PT0+98sor+ZERAAAg1+y+Gsvb21tRUVH67rvv9PPPPysxMVGNGzdWx44d8yMfAABAnthddm5q2bKlWrZs6cgsAAAADmf3aaxRo0bprbfeyjD+zjvvaMyYMY7IBAAA4DB2l50vvvgi0yM6LVq00IoVKxwSCgAAwFHsLjsXL16Ut7d3hnEvLy9duHDBIaEAAAAcxe6yU716dW3YsCHD+Pr161WtWjWHhAIAAHAUuycoh4WFacSIEfr777/Vvn17SdKWLVs0e/ZszZ0719H5AAAA8sTusjNw4EAlJyfrlVde0csvvyxJqlKliubPn69+/fo5PCAAAEBe5OrS82HDhmnYsGH6+++/5eHhodKlSzs6FwAAgEPk+nN2JPFdWAAAoNCze4LyuXPn9O9//1sBAQEqVqyYXF1dbW4AAACFid1lp3///vrxxx/10ksvacWKFVq5cqXNzR47d+5Ut27dFBAQIIvFotWrV1uXpaamasKECapXr55KlSqlgIAA9evXT2fOnLHZRpUqVWSxWGxuM2fOtPdlAQAAk7L7NNa3336rb775Rg0bNszzkyclJalBgwYaOHCgevbsabPs6tWr1lLVoEEDXb58WaNHj1b37t21b98+m3WnT5+uwYMHW+97enrmORsAADAHu8tOYGCgDMNwyJN37txZnTt3znTZzS8cvdU777yjBx54QKdPn9Y999xjHff09JS/v79DMgEAAHOx+zTW3LlzNXHiRMXExORDnOzFx8fLYrHIx8fHZnzmzJkqW7asGjVqpNdff11paWnZbic5OVkJCQk2NwAAYE52H9np3bu3rl69quDgYJUsWVLFixe3WX7p0iWHhbvV9evXNWHCBPXp00deXl7W8VGjRqlx48by9fXVrl27FB4ertjYWM2ZMyfLbUVERGjatGn5khMAABQudpcdZ3xKcmpqqp566ikZhqH58+fbLAsLC7P+uX79+nJzc9PQoUMVEREhd3f3TLcXHh5u87iEhAQFBgbmT3gAAOBUdped0NDQ/MiRpZtF59SpU9q6davNUZ3MNGvWTGlpaYqJiVHNmjUzXcfd3T3LIgQAAMzF7jk7knT8+HFNmjRJ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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABD8ElEQVR4nO3dd3gU5f7+8XsTSBFSSEghEgmEDtIFEaQrAqIookFQQESqSGIDlWoJgihH5WA5QGyoB8QK0pvSlHZQRHpEpAokIZSQ8vz+8Jf9uiSBbLLJJuP7dV1zyTwzO/OZJ5vs7cwzszZjjBEAAIBFebi7AAAAgKJE2AEAAJZG2AEAAJZG2AEAAJZG2AEAAJZG2AEAAJZG2AEAAJZG2AEAAJZG2AEAAJZG2EGxi4qKUv/+/d1dhuVNnTpV1apVk6enpxo1auTuclwuNTVVDz/8sMLDw2Wz2TRq1Khi23e7du3Url07+3xiYqJsNpsSEhKKrYb8ioqK0u23337V9VavXi2bzabVq1fb2/r376+oqCiH9Ww2myZMmODaIi2kJL8X/skIOyiUhIQE2Ww2bd68Odfl7dq1U/369Qu9n0WLFvEH1glLly7VU089pVatWmnOnDl66aWXim3f58+f14QJExw+NIvCSy+9pISEBA0dOlQffPCBHnjggSLdnzusX79eEyZMUFJSkrtLyVNpqBEo4+4C8M+ze/dueXg4l7MXLVqkGTNmEHjyaeXKlfLw8NCsWbPk5eVVrPs+f/68Jk6cKEkOZz9cbeXKlbrxxhs1fvz4IttHXpYuXVos+1m/fr0mTpyo/v37KzAwsEj31aZNG124cOGq75cLFy6oTJn/++gozhpLgypVqujChQsqW7asu0vB33BmB8XO29u71P0hOHfunLtLcMqJEyfk6+tb7EGnOJ04ccIlH67GGF24cMGp13h5eVmubz08POTj43PV/xHx8fFxCDtW5+zvvs1mk4+Pjzw9PYuoIhQEYQfF7vIxO+np6Zo4caJq1KghHx8fBQcHq3Xr1lq2bJmkv8YNzJgxQ9Jff0iyp2znzp3T448/rsjISHl7e6tWrVp65ZVXZIxx2O+FCxc0cuRIVaxYUX5+frrjjjv0xx9/5BiDMGHCBNlsNv3yyy+6//77VaFCBbVu3VqStGPHDvXv31/VqlWTj4+PwsPD9dBDD+nUqVMO+8rexp49e9S3b18FBAQoJCREY8eOlTFGv//+u+688075+/srPDxc06ZNy1ffZWRk6Pnnn1d0dLS8vb0VFRWlZ555RmlpafZ1bDab5syZo3Pnztn76mrjB+bNm6emTZvK19dXFStWVN++ffXHH384rHP5OJVsfx/XkZiYqJCQEEnSxIkT7ft35ozciRMnNHDgQIWFhcnHx0cNGzbUe++9Z1+ePbbk4MGDWrhwoX0fiYmJ+dp+9hiWJUuWqFmzZvL19dXbb78tSZozZ446dOig0NBQeXt7q27dupo5c2aObeTVF8564403VK9ePV1zzTWqUKGCmjVrprlz50r66z305JNPSpKqVq2a4zjzW2u2pUuXqlGjRvLx8VHdunW1YMECh+W5jdnJzd9/nleqsW3btmrYsGGu26hVq5Y6d+58te6xy74cvmPHDrVt21bXXHONqlevrvnz50uS1qxZoxYtWsjX11e1atXS8uXLHV7/22+/adiwYapVq5Z8fX0VHBysXr165XjPZF+WX7NmjYYNG6bQ0FBVrlzZvnzGjBmqVq2afH191bx5c3333Xf5Gr/Vv39/lS9fXn/88Yd69Oih8uXLKyQkRE888YQyMzPz3Q8ouH9OPEeRSk5O1p9//pmjPT09/aqvnTBhguLj4/Xwww+refPmSklJ0ebNm7V161bdcsstGjx4sI4cOaJly5bpgw8+cHitMUZ33HGHVq1apYEDB6pRo0ZasmSJnnzySf3xxx967bXX7Ov2799f//3vf/XAAw/oxhtv1Jo1a9StW7c86+rVq5dq1Kihl156yR6cli1bpgMHDmjAgAEKDw/Xzp079c4772jnzp3auHGjQwiTpPvuu0916tTR5MmTtXDhQr3wwgsKCgrS22+/rQ4dOujll1/WRx99pCeeeEI33HCD2rRpc8W+evjhh/Xee+/pnnvu0eOPP65NmzYpPj5eu3bt0ueffy5J+uCDD/TOO+/ohx9+0H/+8x9J0k033ZTnNhMSEjRgwADdcMMNio+P1/Hjx/Wvf/1L69at07Zt25w6exISEqKZM2dq6NChuuuuu3T33XdLkho0aJCv11+4cEHt2rXTvn37NGLECFWtWlXz5s1T//79lZSUpMcee0x16tTRBx98oNjYWFWuXFmPP/64fd/5tXv3bvXu3VuDBw/WoEGDVKtWLUnSzJkzVa9ePd1xxx0qU6aMvv76aw0bNkxZWVkaPnx4vrefH++++65Gjhype+65R4899pguXryoHTt2aNOmTbr//vt19913a8+ePfr444/12muvqWLFig7H6Uyte/fu1X333achQ4aoX79+mjNnjnr16qXFixfrlltuKfAxXKnGBx54QIMGDdLPP//sMG7vxx9/1J49e/Tcc885ta8zZ87o9ttvV0xMjHr16qWZM2cqJiZGH330kUaNGqUhQ4bo/vvv19SpU3XPPffo999/l5+fn32f69evV0xMjCpXrqzExETNnDlT7dq10y+//KJrrrnGYV/Dhg1TSEiIxo0bZz+zM3PmTI0YMUI333yzYmNjlZiYqB49eqhChQoOgSgvmZmZ6ty5s1q0aKFXXnlFy5cv17Rp0xQdHa2hQ4c61RcoAAMUwpw5c4ykK0716tVzeE2VKlVMv3797PMNGzY03bp1u+J+hg8fbnJ7u37xxRdGknnhhRcc2u+55x5js9nMvn37jDHGbNmyxUgyo0aNclivf//+RpIZP368vW38+PFGkundu3eO/Z0/fz5H28cff2wkmbVr1+bYxiOPPGJvy8jIMJUrVzY2m81MnjzZ3n7mzBnj6+vr0Ce52b59u5FkHn74YYf2J554wkgyK1eutLf169fPlCtX7orbM8aYS5cumdDQUFO/fn1z4cIFe/s333xjJJlx48bZ29q2bWvatm2bYxv9+vUzVapUsc+fPHkyR5/m1/Tp040k8+GHHzrU2LJlS1O+fHmTkpJib69SpcpV3ze5qVKlipFkFi9enGNZbj/fzp07m2rVqjm0Xd4XBw8eNJLMnDlz8l3HnXfemeN343JTp041kszBgwcLXGv28X722Wf2tuTkZFOpUiXTuHFje9uqVauMJLNq1Sp72+U/W2NMjp9tXjUmJSUZHx8f8/TTTzu0jxw50pQrV86kpqbmcdQ5tW3b1kgyc+fOtbf9+uuvRpLx8PAwGzdutLcvWbIkx88it77asGGDkWTef/99e1v237PWrVubjIwMe3taWpoJDg42N9xwg0lPT7e3JyQkGElXfS/069fPSDKTJk1yqKFx48amadOm+e4HFByXseASM2bM0LJly3JM+fk/+sDAQO3cuVN79+51er+LFi2Sp6enRo4c6dD++OOPyxijb7/9VpK0ePFiSX/9H9vfPfroo3lue8iQITnafH197f++ePGi/vzzT914442SpK1bt+ZY/+GHH7b/29PTU82aNZMxRgMHDrS3BwYGqlatWjpw4ECetUh/HaskxcXFObRnn9lYuHDhFV+fm82bN+vEiRMaNmyYfHx87O3dunVT7dq1C7TNwli0aJHCw8PVu3dve1vZsmU1cuRIpaamas2aNS7ZT9WqVXO9jPL3n2/22cq2bdvqwIEDSk5Odsm+swUGBurw4cP68ccfC/R6Z2qNiIjQXXfdZZ/39/fXgw8+qG3btunYsWMFO4CrCAgI0J133qmPP/7YfmY0MzNTn376qXr06KFy5co5tb3y5csrJibGPl+rVi0FBgaqTp06atGihb09+99//336e1+lp6fr1KlTql69ugIDA3P9vR00aJDDmJvNmzfr1KlTGjRokMN4pT59+qhChQr5PobL/6bcfPPNV/29h2sQduASzZs3V6dOnXJM+flDMGnSJCUlJalmzZq6/vrr9eSTT2rHjh352u9vv/2miIgI++nqbHXq1LEvz/6vh4eHqlat6rBe9erV89z25etK0unTp/XYY48pLCxMvr6+CgkJsa+X24fhdddd5zAfEBAgHx8f++n+v7efOXMmz1r+fgyX1xweHq7AwED7sToj+zXZl3H+rnbt2gXaZmH89ttvqlGjRo5Bspf/PAsrt5+tJK1bt06dOnVSuXLlFBgYqJCQED3zzDOScv/5FsbTTz+t8uXLq3nz5qpRo4aGDx+udevW5fv1ztRavXr1HJdYa9asKUn5HutUEA8++KAOHTqk7777TpK0fPlyHT9+vECPCahcuXKOYwgICFBkZGSONkkOv08XLlzQuHHj7OP6KlasqJCQECUlJeX6c738/ZH9vrv8d69MmTI5nkOUFx8fnxyXWitUqHDV33u4BmEHbtemTRvt379fs2fPVv369fWf//xHTZo0sY83cZe//99gtnvvvVfvvvuuhgwZogULFmjp0qX2s0ZZWVk51s/tjoy87tIwlw2ozsvlf/CLS177LY0DLHP72e7fv18dO3bUn3/+qVdffVULFy7UsmXLFBsbKyn3n29h1KlTR7t379Ynn3yi1q1b67PPPlPr1q3zdSt9cddaUJ07d1ZYWJg+/PBDSdKHH36o8PBwderUyelt5fV7k5/fp0cffVQvvvii7r33Xv33v//V0qVLtWzZMgUHB+faV7m9PwqLu7Pci7CDEiEoKEgDBgzQxx9/rN9//10NGjRwuIMnrw/aKlWq6MiRIzp79qxD+6+//mpfnv3frKwsHTx40GG9ffv25bvGM2fOaMWKFRo9erQmTpyou+66S7fccouqVauW720URvYxXH657/jx40pKSrIfq7PblP4asHu53bt3O2yzQoUKuT447vKzLYUJY1WqVNHevXtzfABd/vMsCl9//bXS0tL01VdfafDgweratas6depUJB982cqVK6f77rtPc+bM0aFDh9StWze9+OKLunjxoqS8+9LZWvft25cjTO/Zs0eS8n1mIi9X+nl7enrq/vvv1/z583XmzBl98cUX6t27d7F/8M+fP1/9+vXTtGnTdM899+iWW25R69at8/0gxOz33eV/LzIyMor0zBhch7ADt7v8tu3y5curevXqDrdTZ1/fv/yPU9euXZWZmak333zTof21116TzWZTly5dJMk+PuPf//63w3pvvPFGvuvM/gN9+YfG9OnT872NwujatWuu+3v11Vcl6Yp3luWlWbNmCg0N1VtvveXQ399++6127drlsM3o6Gj9+uuvOnnypL3tf//7X45LL9l3thTkibpdu3bVsWPH9Omnn9rbMjIy9MYbb6h8+fJq27at09vMr9x+vsnJyZozZ06R7O/y972Xl5fq1q0rY4z9Lsa83vfO1nrkyBH73XqSlJKSovfff1+NGjVSeHh4oY4jrxqzPfDAAzpz5owGDx6s1NRU9e3bt1D7KwhPT88cv7dvvPFGvs9KNmvWTMHBwXr33XeVkZFhb//oo4+4DFVKcOs53K5u3bpq166dmjZtqqCgIG3evFnz58/XiBEj7Os0bdpUkjRy5Eh17txZnp6eiomJUffu3dW+fXs9++yzSkxMVMOGDbV06VJ9+eWXGjVqlKKjo+2v79mzp6ZPn65Tp07Zbz3P/r/b/JyN8Pf3V5s2bTRlyhSlp6fr2muv1dKlS3OcLSoqDRs2VL9+/fTOO+8oKSlJbdu21Q8//KD33ntPPXr0UPv27Z3eZtmyZfXyyy9rwIABatu2rXr37m2/9TwqKsp+WUSSHnroIb366qvq3LmzBg4cqBMnTuitt95SvXr1lJKSYl/P19dXdevW1aeffqqaNWsqKChI9evXz9fXhjzyyCN6++231b9/f23ZskVRUVGaP3++1q1bp+nTp+cYm+VKt956q7y8vNS9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gxAAALCWUjFmZ9asWWratKkaNmx41XW3b98uDw8PhYaGFkNlAACgpHPrmZ3U1FTt27fPPn/w4EFt375dQUFBuu666yT9dYlp3rx5mjZtWo7Xb9iwQZs2bVL79u3l5+enDRs2KDY2Vn379lWFChWK7TgAAEDJ5daws3nzZrVv394+nz2Opl+/fkpISJAkffLJJzLGqHfv3jle7+3trU8++UQTJkxQWlqaqlatqtjYWIfxOAAA4J/NZowx7i7C3VJSUhQQEKDk5GT5+/u7uxygRIsavdDdJfwjJE7u5u4SgBIvv5/fpWLMDgAAQEERdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKWVcXcBAICcokYvdHcJTkuc3M3dJQC54swOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNMIOAACwNLeGnbVr16p79+6KiIiQzWbTF1984bC8f//+stlsDtNtt93msM7p06fVp08f+fv7KzAwUAMHDlRqamoxHgUAACjJ3Bp2zp07p4YNG2rGjBl5rnPbbbfp6NGj9unjjz92WN6nTx/t3LlTy5Yt0zfffKO1a9fqkUceKerSAQBAKeHWLwLt0qWLunTpcsV1vL29FR4enuuyXbt2afHixfrxxx/VrFkzSdIbb7yhrl276pVXXlFERITLawYAAKVLiR+zs3r1aoWGhqpWrVoaOnSoTp06ZV+2YcMGBQYG2oOOJHXq1EkeHh7atGlTnttMS0tTSkqKwwQAAKypRIed2267Te+//75WrFihl19+WWvWrFGXLl2UmZkpSTp27JhCQ0MdXlOmTBkFBQXp2LFjeW43Pj5eAQEB9ikyMrJIjwMAALiPWy9jXU1MTIz939dff70aNGig6OhorV69Wh07dizwdseMGaO4uDj7fEpKCoEHAACLKtFndi5XrVo1VaxYUfv27ZMkhYeH68SJEw7rZGRk6PTp03mO85H+Ggfk7+/vMAEAAGsqVWHn8OHDOnXqlCpVqiRJatmypZKSkrRlyxb7OitXrlRWVpZatGjhrjIBAEAJ4tbLWKmpqfazNJJ08OBBbd++XUFBQQoKCtLEiRPVs2dPhYeHa//+/XrqqadUvXp1de7cWZJUp04d3XbbbRo0aJDeeustpaena8SIEYqJieFOLAAAIMnNZ3Y2b96sxo0bq3HjxpKkuLg4NW7cWOPGjZOnp6d27NihO+64QzVr1tTAgQPVtGlTfffdd/L29rZv46OPPlLt2rXVsWNHde3aVa1bt9Y777zjrkMCAAAljFvP7LRr107GmDyXL1my5KrbCAoK0ty5c11ZFgAAsJBSNWYHAADAWYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaU6Hna1bt+qnn36yz3/55Zfq0aOHnnnmGV26dMmlxQEAABSW02Fn8ODB2rNnjyTpwIEDiomJ0TXXXKN58+bpqaeecnmBAAAAheF02NmzZ48aNWokSZo3b57atGmjuXPnKiEhQZ999pmr6wMAACgUp8OOMUZZWVmSpOXLl6tr166SpMjISP3555+urQ4AAKCQnA47zZo10wsvvKAPPvhAa9asUbdu3SRJBw8eVFhYmMsLBAAAKAynw8706dO1detWjRgxQs8++6yqV68uSZo/f75uuukmlxcIAABQGGWcfUGDBg0c7sbKNnXqVHl6erqkKAAAAFcp0HN2kpKS9J///EdjxozR6dOnJUm//PKLTpw44dLiAAAACsvpMzs7duxQx44dFRgYqMTERA0aNEhBQUFasGCBDh06pPfff78o6gQAACgQp8/sxMXFacCAAdq7d698fHzs7V27dtXatWtdWhwAAEBhOR12fvzxRw0ePDhH+7XXXqtjx465pCgAAABXcTrseHt7KyUlJUf7nj17FBIS4pKiAAAAXMXpsHPHHXdo0qRJSk9PlyTZbDYdOnRITz/9tHr27OnyAgEAAArD6bAzbdo0paamKjQ0VBcuXFDbtm1VvXp1+fn56cUXXyyKGgEAAArM6buxAgICtGzZMq1bt07/+9//lJqaqiZNmqhTp05FUR8AAEChOB12srVq1UqtWrVyZS0AAAAu5/RlrJEjR+r111/P0f7mm29q1KhRrqgJAADAZZwOO5999lmuZ3RuuukmzZ8/3yVFAQAAuIrTYefUqVMKCAjI0e7v768///zTJUUBAAC4itNhp3r16lq8eHGO9m+//VbVqlVzSVEAAACu4vQA5bi4OI0YMUInT55Uhw4dJEkrVqzQtGnTNH36dFfXBwAAUChOh52HHnpIaWlpevHFF/X8889LkqKiojRz5kw9+OCDLi8QAACgMAp06/nQoUM1dOhQnTx5Ur6+vipfvryr6wIAAHCJAj9nRxLfhQUAAEo8pwcoHz9+XA888IAiIiJUpkwZeXp6OkwAAAAlidNndvr3769Dhw5p7NixqlSpkmw2W1HUBQAA4BJOh53vv/9e3333nRo1alTona9du1ZTp07Vli1bdPToUX3++efq0aOHJCk9PV3PPfecFi1apAMHDiggIECdOnXS5MmTFRERYd9GVFSUfvvtN4ftxsfHa/To0YWuDwAAlH5OX8aKjIyUMcYlOz937pwaNmyoGTNm5Fh2/vx5bd26VWPHjtXWrVu1YMEC7d69W3fccUeOdSdNmqSjR4/ap0cffdQl9QEAgNLP6TM706dP1+jRo/X2228rKiqqUDvv0qWLunTpkuuy7G9X/7s333xTzZs316FDh3TdddfZ2/38/BQeHl6oWgAAgDU5fWbnvvvu0+rVqxUdHS0/Pz8FBQU5TEUpOTlZNptNgYGBDu2TJ09WcHCwGjdurKlTpyojI+OK20lLS1NKSorDBAAArKlAZ3bc4eLFi3r66afVu3dv+fv729tHjhypJk2aKCgoSOvXr9eYMWN09OhRvfrqq3luKz4+XhMnTiyOsgEAgJvZjKsG4BSSzWZzGKD8d+np6erZs6cOHz6s1atXO4Sdy82ePVuDBw9WamqqvL29c10nLS1NaWlp9vmUlBRFRkYqOTn5itsGIEWNXujuElBCJU7u5u4S8A+TkpKigICAq35+O30ZS5L279+v5557Tr1799aJEyck/fVFoDt37ixYtVeQnp6ue++9V7/99puWLVt21TDSokULZWRkKDExMc91vL295e/v7zABAABrcjrsrFmzRtdff702bdqkBQsWKDU1VZL0v//9T+PHj3dpcdlBZ+/evVq+fLmCg4Ov+prt27fLw8NDoaGhLq0FAACUTk6P2Rk9erReeOEFxcXFyc/Pz97eoUMHvfnmm05tKzU1Vfv27bPPHzx4UNu3b1dQUJAqVaqke+65R1u3btU333yjzMxMHTt2TJIUFBQkLy8vbdiw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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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bGys3nrrLaWnp+uOO+7Qhg0b9O6776pnz57q1KmT0+ts0KCB6tatq6eeekrHjh1TQECAPvvss0LX7hQoX768EhISFBsbq9atW2vZsmVaunSpnnnmGft1MqXxO5k+fbpWr16t1q1ba8iQIWrUqJHS0tK0efNmffvtt0pLS5Mk9evXT5988okee+wxrV69Wu3atVNeXp5+/vlnffLJJ1q+fHmR15YBHsdNd4EBKELBrecbN24scv4dd9xx2VvPp02bZm6//XYTFBRk/P39TYMGDcyLL75ozp07Z+9z/vx588QTT5jq1asbm83mcBv66dOnzejRo01YWJjx8fExkZGR5p///KfJz893+N7s7GwTFxdngoODTaVKlUzPnj3Nnj17jCSHW8ELbhsvuJX6r3799Vdz3333maCgIBMYGGjuv/9+c/z48WJvX794HcXdEl7UOBUlNzfXTJkyxURERBgfHx8THh5uJkyYYM6ePVui7ynKrl27THR0tKlUqZKpVq2aGTJkiNm6dauRZObPn19onQcOHDB33323qVChggkJCTGTJ082eXl5Dut09e/EGGNSU1NNXFycCQ8PNz4+PiY0NNR07tzZvPXWWw79zp07Z2bMmGEaN25s/Pz8TJUqVUzLli3NlClTTEZGRonGBHA3mzElvIoPAC4jOTlZt956q/7f//t/6tu3r7vL8WgDBgzQp59+qqysrFL9Hn4nANfsALhCF7/+QLpw/YuXl9dln1yM0sHvBCga1+wAuCIzZ85UUlKSOnXqJG9vby1btkzLli3T0KFDuSXZTfidAEUj7AC4Im3bttWKFSv0wgsvKCsrS7Vq1dLzzz+vZ5991t2lXbf4nQBF45odAABgaVyzAwAALI2wAwAALI1rdnThke3Hjx9X5cqVeSQ6AABlhDFGp0+fVlhYmLy8ij9+Q9iRdPz4ce5UAACgjDp69KhuvPHGYucTdiT7y/WOHj2qgIAAN1cDAABKIjMzU+Hh4Q4vyS0KYUf/986YgIAAwg4AAGXM5S5B4QJlAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaW4NO2vXrtU999yjsLAw2Ww2LVmypFCf3bt3695771VgYKAqVqyo2267TUeOHLHPP3v2rOLi4lS1alVVqlRJvXv3Vmpq6jXcCgAA4Mm83fnl2dnZatasmQYNGqRevXoVmn/gwAG1b99egwcP1pQpUxQQEKCdO3eqfPny9j6jR4/W0qVLtXDhQgUGBmr48OHq1auXfvzxx2u5KQDgUnXGL3V3CU47PL27u0sAiuTWsNO1a1d17dq12PnPPvusunXrppkzZ9rb6tata/85IyNDb7/9tj788EPdeeedkqT58+erYcOGWrdundq0aVPkenNycpSTk2P/nJmZebWbAgAAPJTHXrOTn5+vpUuX6uabb1ZMTIxq1Kih1q1bO5zqSkpKUm5urqKjo+1tDRo0UK1atZSYmFjsuuPj4xUYGGifwsPDS3NTAACAG3ls2Dlx4oSysrI0ffp0denSRd98843uu+8+9erVS2vWrJEkpaSkyNfXV0FBQQ7LhoSEKCUlpdh1T5gwQRkZGfbp6NGjpbkpAADAjdx6GutS8vPzJUk9evTQ6NGjJUnNmzfXTz/9pHnz5umOO+644nX7+fnJz8/PJXUCAADP5rFHdqpVqyZvb281atTIob1hw4b2u7FCQ0N17tw5paenO/RJTU1VaGjotSoVAAB4MI8NO76+vrrtttu0Z88eh/a9e/eqdu3akqSWLVvKx8dHK1eutM/fs2ePjhw5oqioqGtaLwAA8ExuPY2VlZWl/fv32z8fOnRIycnJCg4OVq1atTR27Fg9+OCD6tChgzp16qSEhAR9+eWX+u677yRJgYGBGjx4sMaMGaPg4GAFBAToiSeeUFRUVLF3YgEAgOuLW8POpk2b1KlTJ/vnMWPGSJJiY2O1YMEC3XfffZo3b57i4+M1YsQI1a9fX5999pnat29vX2bWrFny8vJS7969lZOTo5iYGL3xxhvXfFsAAIBnshljjLuLcLfMzEwFBgYqIyNDAQEB7i4HAHioIFACJf377bHX7AAAALgCYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFgaYQcAAFiaW9+NBQCwDl5xAU/FkR0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBpbg07a9eu1T333KOwsDDZbDYtWbKk2L6PPfaYbDabZs+e7dCelpamvn37KiAgQEFBQRo8eLCysrJKt3AAAFBmuDXsZGdnq1mzZpo7d+4l+y1evFjr1q1TWFhYoXl9+/bVzp07tWLFCn311Vdau3athg4dWlolAwCAMsbbnV/etWtXde3a9ZJ9jh07pieeeELLly9X9+7dHebt3r1bCQkJ2rhxo1q1aiVJeu2119StWze9/PLLRYYjAABwffHoa3by8/PVr18/jR07Vo0bNy40PzExUUFBQfagI0nR0dHy8vLS+vXri11vTk6OMjMzHSYAAGBNHh12ZsyYIW9vb40YMaLI+SkpKapRo4ZDm7e3t4KDg5WSklLseuPj4xUYGGifwsPDXVo3AADwHB4bdpKSkvSvf/1LCxYskM1mc+m6J0yYoIyMDPt09OhRl64fAAB4Do8NO99//71OnDihWrVqydvbW97e3vrll1/05JNPqk6dOpKk0NBQnThxwmG58+fPKy0tTaGhocWu28/PTwEBAQ4TAACwJrdeoHwp/fr1U3R0tENbTEyM+vXrp4EDB0qSoqKilJ6erqSkJLVs2VKStGrVKuXn56t169bXvGYAAOB53Bp2srKytH//fvvnQ4cOKTk5WcHBwapVq5aqVq3q0N/Hx0ehoaGqX7++JKlhw4bq0qWLhgwZonnz5ik3N1fDhw9Xnz59uBMLAABIcnPY2bRpkzp16mT/PGbMGElSbGysFixYUKJ1fPDBBxo+fLg6d+4sLy8v9e7dW3PmzCmNcgGUUXXGL3V3CQDcyK1hp2PHjjLGlLj/4cOHC7UFBwfrww8/dGFVAADASjz2AmUAAABXIOwAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLc2vYWbt2re655x6FhYXJZrNpyZIl9nm5ubkaN26cmjZtqooVKyosLEz9+/fX8ePHHdaRlpamvn37KiAgQEFBQRo8eLCysrKu8ZYAAABP5XTY2bx5s7Zv327//Pnnn6tnz5565plndO7cOafWlZ2drWbNmmnu3LmF5p05c0abN2/WxIkTtXnzZi1atEh79uzRvffe69Cvb9++2rlzp1asWKGvvvpKa9eu1dChQ53dLAAAYFE2Y4xxZoHbbrtN48ePV+/evXXw4EE1btxY9913nzZu3Kju3btr9uzZV1aIzabFixerZ8+exfbZuHGjbr/9dv3yyy+qVauWdu/erUaNGmnjxo1q1aqVJCkhIUHdunXTr7/+qrCwsBJ9d2ZmpgIDA5WRkaGAgIArqh+A56ozfqm7S4CHOjy9u7tLwFUo6d9vp4/s7N27V82bN5ckLVy4UB06dNCHH36oBQsW6LPPPrvigksiIyNDNptNQUFBkqTExEQFBQXZg44kRUdHy8vLS+vXry92PTk5OcrMzHSYAACANTkddowxys/PlyR9++236tatmyQpPDxcJ0+edG11f3H27FmNGzdODz30kD29paSkqEaNGg79vL29FRwcrJSUlGLXFR8fr8DAQPsUHh5eanUDAAD3cjrstGrVStOmTdP777+vNWvWqHv3C4cADx06pJCQEJcXKF24WPmBBx6QMUZvvvnmVa9vwoQJysjIsE9Hjx51QZUAAMATeTu7wOzZs9W3b18tWbJEzz77rOrVqydJ+vTTT9W2bVuXF1gQdH755RetWrXK4ZxcaGioTpw44dD//PnzSktLU2hoaLHr9PPzk5+fn8trBQAAnsfpsHPLLbc43I1V4J///KfKlSvnkqIKFASdffv2afXq1apatarD/KioKKWnpyspKUktW7aUJK1atUr5+flq3bq1S2sBAABlk9NhR5LS09P16aef6sCBAxo7dqyCg4O1a9cuhYSE6IYbbijxerKysrR//37750OHDik5OVnBwcGqWbOm/v73v2vz5s366quvlJeXZ78OJzg4WL6+vmrYsKG6dOmiIUOGaN68ecrNzdXw4cPVp0+fEt+JBQAArM3psLNt2zZ17txZQUFBOnz4sIYMGaLg4GAtWrRIR44c0XvvvVfidW3atEmdOnWyfx4zZowkKTY2Vs8//7y++OILSbLf/VVg9erV6tixoyTpgw8+0PDhw9W5c2d5eXmpd+/emjNnjrObBQAALMrpsDNmzBgNHDhQM2fOVOXKle3t3bp10z/+8Q+n1tWxY0dd6jE/JXkEUHBwsD788EOnvhcAAFw/nL4ba+PGjXr00UcLtd9www2XvN0bAADAHZwOO35+fkU+hG/v3r2qXr26S4oCAABwFafDzr333qupU6cqNzdX0oXXPBw5ckTjxo1T7969XV4gAADA1XA67LzyyivKyspSjRo19Oeff+qOO+5QvXr1VLlyZb344oulUSMAAMAVc/oC5cDAQK1YsUI//vijtm7dqqysLLVo0ULR0dGlUR8AAMBVuaLn7EhSu3bt1K5dO1fWAgAA4HJOn8YaMWJEkc+xef311zVq1ChX1AQAAOAyToedzz77rMgjOm3bttWnn37qkqIAAABcxemw88cffygwMLBQe0BAgE6ePOmSogAAAFzF6bBTr149JSQkFGpftmyZbrrpJpcUBQAA4CpX9LqI4cOH6/fff9edd94pSVq5cqVeeeUVzZ4929X1AQAAXBWnw86gQYOUk5OjF198US+88IIkqU6dOnrzzTfVv39/lxcIAABwNa7o1vNhw4Zp2LBh+v333+Xv769KlSq5ui4AAACXuOLn7EjiXVgAAMDjOX2Bcmpqqvr166ewsDB5e3urXLlyDhMAAIAncfrIzoABA3TkyBFNnDhRNWvWlM1mK426AHioOuOXursEAHCK02Hnhx9+0Pfff6/mzZuXQjkAAACu5fRprPDwcBljSqMWAAAAl3M67MyePVvjx4/X4cOHS6EcAAAA13L6NNaDDz6oM2fOqG7duqpQoYJ8fHwc5qelpbmsOAAAgKvldNjhKckAAKAscTrsxMbGlkYdAAAApcLpa3Yk6cCBA3ruuef00EMP6cSJE5IuvAh0586dLi0OAADgajkddtasWaOmTZtq/fr1WrRokbKysiRJW7du1eTJk11eIAAAwNVwOuyMHz9e06ZN04oVK+Tr62tvv/POO7Vu3TqXFgcAAHC1nA4727dv13333VeovUaNGjp58qRLigIAAHAVp8NOUFCQfvvtt0LtW7Zs0Q033OCSogAAAFzF6bDTp08fjRs3TikpKbLZbMrPz9ePP/6op556Sv379y+NGgEAAK6Y02HnpZdeUoMGDRQeHq6srCw1atRIHTp0UNu2bfXcc8+VRo0AAABXzKnn7BhjlJKSojlz5mjSpEnavn27srKydOuttyoyMrK0agQAALhiToedevXqaefOnYqM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2Wy6XFebzaa8vDyXFXetZGZmKjAwUBkZGQoICHB3ObiO8G4sAM46PL27u0vwGCX9+12i01iHDh3SwYMHdejQoUtOBw8edNkGFDh27JgefvhhVa1aVf7+/mratKk2bdpkn2+M0aRJk1SzZk35+/srOjpa+/btc3kdAACgbCrRaazatWuXdh1FOnXqlNq1a6dOnTpp2bJlql69uvbt26cqVarY+8ycOVNz5szRu+++q4iICE2cOFExMTHatWuXypcv75a6AQCA57iihwoeP35cP/zwg06cOKH8/HyHeSNGjHBJYZI0Y8YMhYeHa/78+fa2iIgI+8/GGM2ePVvPPfecevToIUl67733FBISoiVLlqhPnz4uqwUAAJRNToedBQsW6NFHH5Wvr6+qVq0qm81mn2ez2Vwadr744gvFxMTo/vvv15o1a3TDDTfo8ccf15AhQyRdOL2WkpKi6Oho+zKBgYFq3bq1EhMTiw07OTk5ysnJsX/OzMx0Wc0AAMCzOH3r+cSJEzVp0iRlZGTo8OHDpXrNzsGDB/Xmm28qMjJSy5cv17BhwzRixAi9++67kqSUlBRJUkhIiMNyISEh9nlFiY+PV2BgoH0KDw93ad0AAMBzOB12zpw5oz59+sjLy+lFnZafn68WLVropZde0q233qqhQ4dqyJAhmjdv3lWtd8KECcrIyLBPR48edVHFAADA0zidWAYPHqyFCxeWRi2F1KxZU40aNXJoa9iwoY4cOSJJCg0NlSSlpqY69ElNTbXPK4qfn58CAgIcJgAAYE1OX7MTHx+v//mf/1FCQoKaNm0qHx8fh/mvvvqqy4pr166d9uzZ49C2d+9e+91hERERCg0N1cqVK9W8eXNJF66/Wb9+vYYNG+ayOgAAQNl1RWFn+fLlql+/viQVukDZlUaPHq22bdvqpZde0gMPPKANGzborbfe0ltvvWX/vlGjRmnatGmKjIy033oeFhamnj17urQWAABQNjkddl555RW98847GjBgQCmU4+i2227T4sWLNWHCBE2dOlURERGaPXu2+vbta+/z9NNPKzs7W0OHDlV6errat2+vhIQEnrEDAAAklfB1EX8VGhqq77//XpGRkaVV0zXH6yLgLrwuAoCzeF3E/3Hp6yL+auTIkXrttdeuqjgAAIBrxenTWBs2bNCqVav01VdfqXHjxoUuUF60aJHLigMA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BQQE6IknnlBUVBR3YgEAAM8PO2+++aYkqWPHjg7t8+fP14ABAyRJs2bNkpeXl3r37q2cnBzFxMTojTfeuMaVAgAAT+TxYccYc9k+5cuX19y5czV37txrUBEAAChLPP6aHQAAgKvh8Ud2cO3VGb/U3SUAAOAyHNkBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACWRtgBAACW5u3uAqyuzvil7i4BAIDrGkd2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApRF2AACApVkm7MydO1d16tRR+fLl1bp1a23YsMHdJQEAAA9gibDzv//7vxozZowmT56szZs3q1mzZoqJidGJEyfcXRoAAHAzS4SdV199VUOGDNHAgQPVqFEjzZs3TxUqVNA777zj7tIAAICblfl3Y507d05JSUmaMGGCvc3Ly0vR0dFKTEwscpmcnBzl5OTYP2dkZEiSMjMzXV5ffs4Zl68TAICypDT+vv51vcaYS/Yr82Hn5MmTysvLU0hIiEN7SEiIfv755yKXiY+P15QpUwq1h4eHl0qNAABczwJnl+76T58+rcDAwGLnl/mwcyUmTJigMWPG2D/n5+crLS1NVatWlc1mc2NlF2RmZio8PFxHjx5VQECAu8txO8bDEePhiPFwxHg4YjwKs9KYGGN0+vRphYWFXbJfmQ871apVU7ly5ZSamurQnpqaqtDQ0CKX8fPzk5+fn0NbUFBQaZV4xQICAsr8juhKjIcjxsMR4+GI8XDEeBRmlTG51BGdAmX+AmVfX1+1bNlSK1eutLfl5+dr5cqVioqKcmNlAADAE5T5IzuSNGbMGMXGxqpVq1a6/fbbNXv2bGVnZ2vgwIHuLg0AALiZJcLOgw8+qN9//12TJk1SSkqKmjdvroSEhEIXLZcVfn5+mjx5cqFTbdcrxsMR4+GI8XDEeDhiPAq7HsfEZi53vxYAAEAZVuav2QEAALgUwg4AALA0wg4AALA0wg4AALA0wg4AALA0wk4pWbt2re655x6FhYXJZrNpyZIlDvMHDBggm83mMHXp0sWhT1pamvr27auAgAAFBQVp8ODBysrKcuizbds2/e1vf1P58uUVHh6umTNnlvamXZH4+Hjddtttqly5smrUqKGePXtqz549Dn3Onj2ruLg4Va1aVZUqVVLv3r0LPRn7yJEj6t69uypUqKAaNWpo7NixOn/+vEOf7777Ti1atJCfn5/q1aunBQsWlPbmOa0k49GxY8dC+8hjjz3m0Mcq4/Hmm2/qlltusT/RNSoqSsuWLbPPv572Deny43E97RtFmT59umw2m0aNGmVvu972kb8qajyu932kEINS8fXXX5tnn33WLFq0yEgyixcvdpgfGxtrunTpYn777Tf7lJaW5tCnS5cuplmzZmbdunXm+++/N/Xq1TMPPfSQfX5GRoYJCQkxffv2NTt27DAfffSR8ff3N//+97+vxSY6JSYmxsyfP9/s2LHDJCcnm27duplatWqZrKwse5/HHnvMhIeHm5UrV5pNmzaZNm3amLZt29rnnz9/3jRp0sRER0ebLVu2mK+//tpUq1bNTJgwwd7n4MGDpkKFCmbMmDFm165d5rXXXjPlypUzCQkJ13R7L6ck43HHHXeYIUOGOOwjGRkZ9vlWGo8vvvjCLF261Ozdu9fs2bPHPPPMM8bHx8fs2LHDGHN97RvGXH48rqd942IbNmwwderUMbfccosZOXKkvf1620cKFDce1/M+UhTCzjVQXNjp0aNHscvs2rXLSDIbN260ty1btszYbDZz7NgxY4wxb7zxhqlSpYrJycmx9xk3bpypX7++S+svDSdOnDCSzJo1a4wxxqSnpxsfHx+zcOFCe5/du3cbSSYxMdEYcyFAenl5mZSUFHufN9980wQEBNjH4OmnnzaNGzd2+K4HH3zQxMTElPYmXZWLx8OYC/+x+ut/vC5m5fEwxpgqVaqY//73v9f9vlGgYDyMuX73jdOnT5vIyEizYsUKhzG4XveR4sbDmOt3HykOp7Hc6LvvvlONGjVUv359DRs2TH/88Yd9XmJiooKCgtSqVSt7W3R0tLy8vLR+/Xp7nw4dOsjX19feJyYmRnv27NGpU6eu3YZcgYyMDElScHCwJCkpKUm5ubmKjo6292nQoIFq1aqlxMRESRe2t2nTpg5Pxo6JiVFmZqZ27txp7/PXdRT0KViHp7p4PAp88MEHqlatmpo0aaIJEybozJkz9nlWHY+8vDx9/PHHys7OVlRU1HW/b1w8HgWux30jLi5O3bt3L1T39bqPFDceBa7HfaQ4lnhdRFnUpUsX9erVSxERETpw4ICeeeYZde3aVYmJiSpXrpxSUlJUo0YNh2W8vb0VHByslJQUSVJKSooiIiIc+hTsuCkpKapSpcq12Rgn5efna9SoUWrXrp2aNGki6UK9vr6+hd4+HxIS4rC9F78C5K/be6k+mZmZ+vPPP+Xv718am3RVihoPSfrHP/6h2rVrKywsTNu2bdO4ceO0Z88eLVq0SJL1xmP79u2KiorS2bNnValSJS1evFiNGjVScnLydblvFDce0vW3b0jSxx9/rM2bN2vjxo2F5l2P//241HhI1+c+cimEHTfp06eP/eemTZvqlltuUd26dfXdd9+pc+fObqys9MXFxWnHjh364Ycf3F2KRyhuPIYOHWr/uWnTpqpZs6Y6d+6sAwcOqG7dute6zFJXv359JScnKyMjQ59++qliY2O1Zs0ad5flNsWNR6NGja67fePo0aMaOXKkVqxYofLly7u7HLcryXhcb/vI5XAay0PcdNNNqlatmvbv3y9JCg0N1YkTJxz6nD9/XmlpaQoNDbX3ufhug4LPBX08zfDhw/XVV19p9erVuvHGG+3toaGhOnfunNLT0x36p6amOrW9xfUJCAjwyP8LKW48itK6dWtJcthHrDQevr6+qlevnlq2bKn4+Hg1a9ZM//rXv67bfaO48SiK1feNpKQknThxQi1atJC3t7e8vb21Zs0azZkzR97e3goJCbmu9pHLjUdeXl6hZay+j1wOYcdD/Prrr/rjjz9Us2ZNSVJUVJTS09OVlJRk77Nq1Srl5+fbd9qoqCitXbtWubm59j4rVqxQ/fr1Pe4UljFGw4cP1+LFi7Vq1apCp99atmwpHx8frVy50t62Z88eHTlyxH6dQlRUlLZv3+4QAlesWKGAgAD74f2oqCiHdRT0+eu1Dp7gcuNRlOTkZEly2EesMh5Fyc/PV05OznW3bxSnYDyKYvV9o3Pnztq+fbuSk5PtU6tWrdS3b1/7z9fTPnK58ShXrlyhZay+j1yWu6+QtqrTp0+bLVu2mC1bthhJ5tVXXzVbtmwxv/zyizl9+rR56qmnTGJiojl06JD59ttvTYsWLUxkZKQ5e/asfR1dunQxt956q1m/fr354YcfTGRkpMOt5+np6SYkJMT069fP7Nixw3z88cemQoUKHnnr+bBhw0xgYKD57rvvHG6FPHPmjL3PY489ZmrVqmVWrVplNm3aZKKiokxUVJR9fsGtknfffbdJTk42CQkJpnr16kXeKjl27Fize/duM3fuXI+8VfJy47F//34zdepUs2nTJnPo0CHz+eefm5tuusl06NDBvg4rjcf48ePNmjVrzKFDh8y2bdvM+PHjjc1mM998840x5vraN4y59Hhcb/tGcS6+2+h620cu9tfxYB8pjLBTSlavXm0kFZpiY2PNmTNnzN13322qV69ufHx8TO3atc2QIUMcbgE0xpg//vjDPPTQQ6ZSpUomICDADBw40Jw+fdqhz9atW0379u2Nn5+fueGGG8z06dOv5WaWWFFjIcnMnz/f3ufPP/80jz/+uKlSpYqpUKGCue+++8xvv/3msJ7Dhw+brl27Gn9/f1OtWjXz5JNPmtzcXIc+q1evNs2bNze+vr7mpptucvgOT3G58Thy5Ijp0KGDCQ4ONn5+fqZevXpm7NixDs/JMMY64zFo0CBTu3Zt4+vra6pXr246d+5sDzrGXF/7hjGXHo/rbd8ozsVh53rbRy721/FgHynMZowx1/poEgAAwLXCNTsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDS/j+HnSP7cPfh4wAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABCVklEQVR4nO3df3zN9f//8fvZbDPsh2Fmmc2vyM/8eCeSXxPhXYl3RYohFMLWL3uXn/VuUuRbSb3f79DPd0WRiPxsSiiyRMKYVMzvbTbM2PP7h4vzceyHHc7Z2V5u18vlXDjP1+u8Xo/z3HZ23/P1fL1eNmOMEQAAgEV5eboAAAAAdyLsAAAASyPsAAAASyPsAAAASyPsAAAASyPsAAAASyPsAAAASyPsAAAASyPsAAAASyPs4LoWFRWlmJgYT5dheS+//LJq1aolb29v3XzzzZ4ux+UyMzP1yCOPKCwsTDabTWPGjCm2fXfo0EEdOnSwP9+3b59sNpvmzp1bbDXkx2azaeLEiW7Zdkl5jyg9CDuwjLlz58pms2nTpk35Lu/QoYMaNWp0zfv56quv3PYhbkXLly/X008/rdtuu01z5szRiy++WGz7PnXqlCZOnKhvvvnGrft58cUXNXfuXD322GN6//339fDDD7t1f8iLn0sUpoynCwA8aefOnfLyci7zf/XVV5o5cyYfrEW0evVqeXl56Z133pGvr2+x7vvUqVOaNGmSJDmMfrja6tWrdeutt2rChAlu20dBli9fXuz79LTIyEidPn1aPj4+9jZ+LlEYRnZwXfPz83P4wCwNsrKyPF2CUw4fPix/f/9iDzrF6fDhwwoODr7m7RhjdPr0aade4+vra+m+zY/NZlPZsmXl7e3t6VJQShB2cF27fM5OTk6OJk2apLp166ps2bKqVKmS2rZtqxUrVkiSYmJiNHPmTEkXPnAvPi7KysrSE088oYiICPn5+alevXp65ZVXZIxx2O/p06c1atQoVa5cWQEBAbr77rv1119/5ZnnMHHiRNlsNv3666968MEHVbFiRbVt21aStHXrVsXExKhWrVoqW7aswsLCNGjQIB07dsxhXxe3sWvXLj300EMKCgpSlSpVNG7cOBlj9Mcff+iee+5RYGCgwsLCNG3atCL13blz5/T888+rdu3a8vPzU1RUlP75z38qOzvbvo7NZtOcOXOUlZVl76srzbOYN2+eWrRoIX9/f1WuXFkPPfSQ/vrrL4d1Lp+nclFMTIyioqIkXZjXUaVKFUnSpEmT7Pt35i//w4cPa/DgwapatarKli2rpk2b6t1337Uv/+abb2Sz2ZSSkqIlS5bY97Fv374ibT8qKkp///vf9fXXX6tly5by9/fX22+/LUmaM2eOOnXqpNDQUPn5+alBgwaaNWtWnm0U1BdFdejQIZUpU8Y+AnapnTt3ymaz6Y033rC3paWlacyYMfbv8Tp16uill15Sbm7uFfe1ZcsWdevWTYGBgapQoYKio6O1YcOGPOulpaUpNjZWUVFR8vPzU/Xq1dW/f38dPXpUUt45OwX9XBpjFBUVpXvuuSfPPs6cOaOgoCANGzasSP2E0o3DWLCc9PR0+4fipXJycq742okTJyohIUGPPPKIbrnlFmVkZGjTpk366aefdMcdd2jYsGE6cOCAVqxYoffff9/htcYY3X333VqzZo0GDx6sm2++WV9//bWeeuop/fXXX3r11Vft68bExOjTTz/Vww8/rFtvvVWJiYnq0aNHgXXdd999qlu3rl588UV7cFqxYoX27t2rgQMHKiwsTNu3b9e///1vbd++XRs2bHAIYZL0wAMP6KabbtKUKVO0ZMkSvfDCCwoJCdHbb7+tTp066aWXXtKHH36oJ598Un/729/Url27QvvqkUce0bvvvqt//OMfeuKJJ7Rx40YlJCRox44dWrBggSTp/fff17///W/98MMP+u9//ytJatOmTYHbnDt3rgYOHKi//e1vSkhI0KFDh/T//t//07p167RlyxanRk+qVKmiWbNm6bHHHtO9996rXr16SZKaNGlSpNefPn1aHTp0UHJyskaOHKmaNWtq3rx5iomJUVpamkaPHq2bbrpJ77//vmJjY1W9enU98cQT9n0X1c6dO9W3b18NGzZMQ4YMUb169SRJs2bNUsOGDXX33XerTJky+vLLLzV8+HDl5uZqxIgRRd7+lVStWlXt27fXp59+mucw3CeffCJvb2/dd999ki4cFmzfvr3++usvDRs2TDVq1ND333+v+Ph4HTx4UDNmzChwP9u3b9ftt9+uwMBAPf300/Lx8dHbb7+tDh06KDExUa1atZJ0YbL37bffrh07dmjQoEFq3ry5jh49qkWLFunPP/9U5cqV82y7oJ9Lm82mhx56SFOnTtXx48cVEhJiX/bll18qIyNDDz300LV0H0oLA1jEnDlzjKRCHw0bNnR4TWRkpBkwYID9edOmTU2PHj0K3c+IESNMfj86CxcuNJLMCy+84ND+j3/8w9hsNpOcnGyMMWbz5s1GkhkzZozDejExMUaSmTBhgr1twoQJRpLp27dvnv2dOnUqT9v//vc/I8msXbs2zzaGDh1qbzt37pypXr26sdlsZsqUKfb2EydOGH9/f4c+yU9SUpKRZB555BGH9ieffNJIMqtXr7a3DRgwwJQvX77Q7RljzNmzZ01oaKhp1KiROX36tL198eLFRpIZP368va19+/amffv2ebYxYMAAExkZaX9+5MiRPH1aVDNmzDCSzAcffOBQY+vWrU2FChVMRkaGvT0yMvKK3zf5iYyMNJLMsmXL8izL7+vbtWtXU6tWLYe2y/siJSXFSDJz5swpch1vv/22kWR++eUXh/YGDRqYTp062Z8///zzpnz58mbXrl0O640dO9Z4e3ub/fv329su7/eePXsaX19fs2fPHnvbgQMHTEBAgGnXrp29bfz48UaS+fzzz/PUmZubW+B7LOjncufOnUaSmTVrlkP73XffbaKiouzbhLVxGAuWM3PmTK1YsSLPoyh/0QcHB2v79u3avXu30/v96quv5O3trVGjRjm0P/HEEzLGaOnSpZKkZcuWSZKGDx/usN7jjz9e4LYfffTRPG3+/v72/585c0ZHjx7VrbfeKkn66aef8qz/yCOP2P/v7e2tli1byhijwYMH29uDg4NVr1497d27t8BapAvvVZLi4uIc2i+ObCxZsqTQ1+dn06ZNOnz4sIYPH66yZcva23v06KH69etf1TavxVdffaWwsDD17dvX3ubj46NRo0YpMzNTiYmJLtlPzZo11bVr1zztl359L45Wtm/fXnv37lV6erpL9n1Rr169VKZMGX3yySf2tm3btunXX3/VAw88YG+bN2+ebr/9dlWsWFFHjx61Pzp37qzz589r7dq1+W7//PnzWr58uXr27KlatWrZ26tVq6YHH3xQ3333nTIyMiRJn332mZo2bap77703z3YuH60sihtvvFGtWrXShx9+aG87fvy4li5dqn79+l3VNlH6EHZgObfccos6d+6c51GxYsUrvnby5MlKS0vTjTfeqMaNG+upp57S1q1bi7Tf33//XeHh4QoICHBov+mmm+zLL/7r5eWl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7xUfH6+DBw9q+vTpBW4rISFBkyZNcnfJAACgBCg1YWf27Nnq16+fypYt69AeFxdn/3+TJk3k6+urYcOGKSEhQX5+fvluKz4+3uF1GRkZioiIcE/hAADAo0pF2Pn222+1c+dOffLJJ1dct1WrVjp37pz27dunevXq5buOn59fgUEIAABYS6mYs/POO++oRYsWatq06RXXTUpKkpeXl0JDQ4uhMgAAUNJ5dGQnMzNTycnJ9ucpKSlKSkpSSEiIatSoIenCIaZ58+Zp2rRpeV6/fv16bdy4UR07dlRAQIDWr1+v2NhYPfTQQ6pYsWKxvQ8AAFByeTTsbNq0SR07drQ/vziPZsCAAZo7d64k6eOPP5YxRn379s3zej8/P3388ceaOHGisrOzVbNmTcXGxjrMxwEAANc3mzHGeLoIT8vIyFBQUJDS09MVGBjo6XIAuFhpvBpxacQVlFHcivr7u1TM2QEAALhahB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBphB0AAGBpHg07a9eu1V133aXw8HDZbDYtXLjQYXlMTIxsNpvD484773RY5/jx4+rXr58CAwMVHByswYMHKzMzsxjfBQAAKMk8GnaysrLUtGlTzZw5s8B17rzzTh08eND++N///uewvF+/ftq+fbtWrFihxYsXa+3atRo6dKi7SwcAAKVEGU/uvFu3burWrVuh6/j5+SksLCzfZTt27NCyZcv0448/qmXLlpKk119/Xd27d9crr7yi8PBwl9cMAABKlxI/Z+ebb75RaGio6tWrp8cee0zHjh2zL1u/fr2Cg4PtQUeSOnfuLC8vL23cuLHAbWZnZysjI8PhAQAArKlEh50777xT7733nlatWqWXXnpJiYmJ6tatm86fPy9JSk1NVWhoqMNrypQpo5CQEKWmpha43YSEBAUFBdkfERERbn0f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omnTpl3xTC0AAIDi5nTYWbNmjTvqAAAAcAun5+ykpKRo9+7dedp3796tffv2uaImAAAAl3E67MTExOj777/P075x40bFxMS4oiYAAACXcTrsbNmyRbfddlue9ltvvVVJSUmuqAkAAMBlnA47NptNJ0+ezNOenp6u8+fPu6QoAAAAV3E67LRr104JCQkOweb8+fNKSEhQ27ZtndrW2rVrdddddyk8PFw2m00LFy50WG6M0fjx41WtWjX5+/urc+fOeeYLHT9+XP369VNgYKCCg4M1ePBgZWZmOvu2AACARTkddl566SWtXr1a9erV08CBAzVw4EDVq1dPa9eu1csvv+zUtrKystS0aVPNnDkz3+VTp07Va6+9prfeeksbN25U+fLl1bVrV505c8a+Tr9+/bR9+3atWLFCixcv1tq1azV06FBn3xYAALAomzHGOPuiAwcO6I033tDPP/8sf39/NWnSRCNHjlRISMjVF2KzacGCBerZs6ekC6M64eHheuKJJ/Tkk09KunCorGrVqpo7d6769OmjHTt2qEGDBvrxxx/VsmVLSdKyZcvUvXt3/fnnnwoPDy/SvjMyMhQUFKT09HQFBgZe9XsArgdRY5d4ugTAZfZN6eHpEnANivr72+nr7EhSeHi4XnzxxasurihSUlKUmpqqzp0729uCgoLUqlUrrV+/Xn369NH69esVHBxsDzqS1LlzZ3l5eWnjxo2699578912dna2srOz7c8zMjLc90YAAIBHOX0Ya86cOZo3b16e9nnz5undd991SVGSlJqaKkmqWrWqQ3vVqlXty1JTUxUaGuqwvEyZMgoJCbGvk5+EhAQFBQXZHxERES6rGwAAlCxOh52EhARVrlw5T3toaKjbR3tcJT4+Xunp6fbHH3/84emSAACAmzgddvbv36+aNWvmaY+MjNT+/ftdUpQkhYWFSZIOHTrk0H7o0CH7srCwMB0+fNhh+blz53T8+HH7Ovnx8/NTYGCgwwMAAFiT02EnNDRUW7duzdP+888/q1KlSi4pSpJq1qypsLAwrVq1yt6WkZGhjRs3qnXr1pKk1q1bKy0tTZs3b7avs3r1auXm5qpVq1YuqwUAAJReTk9Q7tu3r0aNGqWAgAC1a9dOkpSYmKjRo0erT58+Tm0rMzNTycnJ9ucpKSlKSkpSSEiIatSooTFjxuiFF15Q3bp1VbNm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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAj4AAAGzCAYAAAAv9B03AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAA75ElEQVR4nO3deVwW9f7//+cFCOIChLJEEuCS+xYmUqamlNtJPXYq/ZiKmfYxzZIW9ZRrHXGp9FPHtE0tq1PH1lOmZbiVoaZFlpqpQWoKLgiIFoK8f3+cn9e3SzC5cC4B53G/3a5bXe+Za+Y1b8bhycx75nIYY4wAAABswKuiCwAAALhUCD4AAMA2CD4AAMA2CD4AAMA2CD4AAMA2CD4AAMA2CD4AAMA2CD4AAMA2CD4AAMA2CD6Am6Kjo5WYmFjRZVz25syZo/r168vb21tt2rSp6HIsl5+fr3vuuUfh4eFyOBx68MEHL9m6u3Tpoi5dujjfZ2RkyOFwaMmSJZYsPzExUdHR0ZYsC7AawQe2tmTJEjkcDm3ZsqXU6V26dFGLFi0uej2ffPKJpk6detHLsYvPPvtMjz76qG644QYtXrxYM2bMuGTrPnXqlKZOnaq1a9d6dD0zZszQkiVLNGrUKC1dulSDBw/26PqsdvDgQU2dOlVpaWkVXQrgFp+KLgCoanbt2iUvL/f+Zvjkk080f/58wk8ZrV69Wl5eXnrllVfk6+t7Sdd96tQpTZs2TZJczopYbfXq1erQoYOmTJnisXWcz2effXbRyzh48KCmTZum6OjoEmfkXnrpJRUXF1/0OgBP4IwP4CY/Pz9Vq1atostwy8mTJyu6BLccPnxY/v7+lzz0XEqHDx9WUFDQRS/HGKPffvvNrc/4+vp6tG+rVasmPz8/jy0fuBgEH8BN547xKSws1LRp09SoUSNVr15dderUUceOHbVq1SpJ/x3vMH/+fEmSw+Fwvs46efKkHnroIUVGRsrPz0+NGzfWU089JWOMy3p/++03jR07VnXr1lXt2rXVp08f/frrr3I4HC5nkqZOnSqHw6EdO3bof/7nf3TFFVeoY8eOkqRt27YpMTFR9evXV/Xq1RUeHq67775bx44dc1nX2WX89NNPuuuuuxQYGKiQkBBNmjRJxhjt379fffv2VUBAgMLDw/X000+Xqe+Kior0xBNPqEGDBvLz81N0dLT+/ve/q6CgwDmPw+HQ4sWLdfLkSWdfXWjsybJlyxQbGyt/f3/VrVtXd911l3799VeXec4d13LWH8ejZGRkKCQkRJI0bdo05/rdOVN3+PBhDR8+XGFhYapevbpat26tV1991Tl97dq1cjgcSk9P1/Lly53ryMjIKNPyo6Oj9Ze//EWffvqp2rVrJ39/f73wwguSpMWLF6tr164KDQ2Vn5+fmjVrpgULFpRYxvn6oqzWrl2r6667TpI0bNiwEj+nc8f4nB1D9NRTT2n+/PmqX7++atSooVtuuUX79++XMUZPPPGE6tWrJ39/f/Xt21fZ2dkl1rtixQrdeOONqlmzpmrXrq3evXtr+/bt5d4O2BOXugBJubm5Onr0aIn2wsLCC3526tSpSk5O1j333KP27dsrLy9PW7Zs0TfffKObb75Z9957rw4ePKhVq1Zp6dKlLp81xqhPnz5as2aNhg8frjZt2ujTTz/VI488ol9//VVz5851zpuYmKh///vfGjx4sDp06KB169apd+/e563r9ttvV6NGjTRjxgxniFq1apV+/vlnDRs2TOHh4dq+fbtefPFFbd++XRs3bnQJZJJ05513qmnTppo5c6aWL1+uJ598UsHBwXrhhRfUtWtXzZo1S2+88YYefvhhXXfdderUqdOf9tU999yjV199VX/729/00EMPadOmTUpOTtbOnTv1/vvvS5KWLl2qF198UZs3b9bLL78sSbr++uvPu8wlS5Zo2LBhuu6665ScnKysrCz93//9nzZs2KBvv/3WrbMqISEhWrBggUaNGqW//vWv6t+/vySpVatWZfr8b7/9pi5dumjPnj0aM2aMYmJitGzZMiUmJionJ0cPPPCAmjZtqqVLl2rcuHGqV6+eHnroIee6y2rXrl0aOHCg7r33Xo0YMUKNGzeWJC1YsEDNmzdXnz595OPjo48++kj33XefiouLNXr06DIv/0KaNm2q6dOna/LkyRo5cqRuvPFGSX/+c5KkN954Q6dPn9b999+v7OxszZ49W3fccYe6du2qtWvXavz48dqzZ4+ee+45Pfzww1q0aJHzs0uXLtXQoUPVvXt3zZo1S6dOndKCBQvUsWNHffvttwymRtkZwMYWL15sJP3pq3nz5i6fiYqKMkOHDnW+b926tendu/efrmf06NGmtH9uH3zwgZFknnzySZf2v/3tb8bhcJg9e/YYY4zZunWrkWQefPBBl/kSExONJDNlyhRn25QpU4wkM3DgwBLrO3XqVIm2f/3rX0aSWb9+fYlljBw50tlWVFRk6tWrZxwOh5k5c6az/fjx48bf39+lT0qTlpZmJJl77rnHpf3hhx82kszq1audbUOHDjU1a9b80+UZY8zp06dNaGioadGihfntt9+c7R9//LGRZCZPnuxs69y5s+ncuXOJZQwdOtRERUU53x85cqREn5bVvHnzjCTz+uuvu9QYHx9vatWqZfLy8pztUVFRF9xvShMVFWUkmZUrV5aYVtrPt3v37qZ+/foubef2RXp6upFkFi9eXOY6vv766/N+5tw+Pbv8kJAQk5OT42yfOHGikWRat25tCgsLne0DBw40vr6+5vfffzfGGHPixAkTFBRkRowY4bKezMxMExgYWKId+DNc6gIkzZ8/X6tWrSrxKstf+kFBQdq+fbt2797t9no/+eQTeXt7a+zYsS7tDz30kIwxWrFihSRp5cqVkqT77rvPZb7777//vMv+3//93xJt/v7+zv///fffdfToUXXo0EGS9M0335SY/5577nH+v7e3t9q1aydjjIYPH+5sDwoKUuPGjfXzzz+ftxbpv9sqSUlJSS7tZ894LF++/E8/X5otW7bo8OHDuu+++1S9enVne+/evdWkSZNyLfNifPLJJwoPD9fAgQOdbdWqVdPYsWOVn5+vdevWWbKemJgYde/evUT7H3++Z89idu7cWT///LNyc3MtWffFuP322xUYGOh8HxcXJ0m666675OPj49J++vRp5+XKVatWKScnRwMHDtTRo0edL29vb8XFxWnNmjWXdkNQpXGpC5DUvn17tWvXrkT7FVdcUeolsD+aPn26+vbtq2uuuUYtWrRQjx49NHjw4DKFpl9++UURERGqXbu2S3vTpk2d08/+18vLSzExMS7zNWzY8LzLPndeScrOzta0adP01ltv6fDhwy7TSvvFePXVV7u8DwwMVPXq1VW3bt0S7eeOEzrX2W04t+bw8HAFBQU5t9UdZz9z9lLPHzVp0kRffvml28u8GL/88osaNWpU4q6/c3+eF6u0n60kbdiwQVOmTFFqaqpOnTrlMi03N9cldFSE0vYnSYqMjCy1/fjx45Lk/KOia9eupS43ICDA0jpxeSP4ABepU6dO2rt3rz788EN99tlnevnllzV37lwt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1qyZBg8erNmzZyszM1OPP/64Ro8ezVkdAADgokKDz4IFCyRJXbp0cWlfvHixEhMTJUlz586Vl5eXbrvtNhUUFKh79+56/vnnnfN6e3vr448/1qhRoxQfH6+aNWtq6NChmj59+qXaDAAAUEVUquf4VBSe41P18RwfALCfKv8cHwAAAE8i+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANsg+AAAANvwqegCALuKnrC8oksol4yZvSu6BAAoN874AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA2yD4AAAA23A7+HzzzTf6/vvvne8//PBD9evXT3//+991+vRpS4sDAACwktvB595779VPP/0kSfr55581YMAA1ahRQ8uWLdOjjz5qeYEAAABWcTv4/PTTT2rTpo0kadmyZerUqZPefPNNLVmyRO+++67V9QEAAFjG7eBjjFFxcbEk6fPPP1evXr0kSZGRkTp69Ki11QEAAFjI7eDTrl07Pfnkk1q6dKnWrVun3r17S5LS09MVFhZmeYEAAABWcTv4zJs3T998843GjBmjxx57TA0bNpQkvfPOO7r++ustLxAAAMAqPu5+oFWrVi53dZ01Z84ceXt7W1IUAACAJ5TrOT45OTl6+eWXNXHiRGVnZ0uSduzYocOHD1taHAAAgJXcPuOzbds2devWTUFBQcrIyNCIESMUHBys9957T/v27dNrr73miToBAAAumttnfJKSkjRs2DDt3r1b1atXd7b36tVL69evt7Q4AAAAK7kdfL7++mvde++9JdqvuuoqZWZmWlIUAACAJ7gdfPz8/JSXl1ei/aefflJISIglRQEAAHiC22N8+vTpo+nTp+vf//63JMnhcGjfvn0aP368brvtNssLxKUXPWF5RZcAAIBHuH3G5+mnn1Z+fr5CQ0P122+/qXPnzmrYsKFq166tf/zjH56oEQAAwBJun/EJDAzUqlWrtGHDBn333XfKz8/Xtddeq4SEBE/UBwAAYBm3g89ZN9xwg2644QYrawEAAPAoty91jR07Vs8++2yJ9n/+85968MEHragJAADAI9wOPu+++26pZ3quv/56vfPOO5YUBQAA4AluB59jx44pMDCwRHtAQICOHj1qSVEAAACe4HbwadiwoVauXFmifcWKFapfv74lRQEAAHiC24Obk5KSNGbMGB05ckRdu3aVJKWkpOjpp5/WvHnzrK4PAADAMm4Hn7vvvlsFBQX6xz/+oSeeeEKSFB0drQULFmjIkCGWFwgAAGCVct3OPmrUKI0aNUpHjhyRv7+/atWqZXVdAAAAliv3c3wk8d1cAACgSnF7cHNWVpYGDx6siIgI+fj4yNvb2+XljvXr1+vWW29VRESEHA6HPvjgA5fpiYmJcjgcLq8ePXq4zJOdna1BgwYpICBAQUFBGj58uPLz893dLAAAYANun/FJTEzUvn37NGnSJF155ZVyOBzlXvnJkyfVunVr3X333erfv3+p8/To0UOLFy92vvfz83OZPmjQIB06dEirVq1SYWGhhg0bppEjR+rNN98sd10AAODy5Hbw+fLLL/XFF1+oTZs2F73ynj17qmfPnn86j5+fn8LDw0udtnPnTq1cuVJff/212rVrJ0l67rnn1KtXLz311FOKiIgo9XMFBQUqKChwvs/LyyvnFgAAgKrE7UtdkZGRMsZ4opZSrV27VqGhoWrcuLFGjRqlY8eOOaelpqYqKCjIGXokKSEhQV5eXtq0adN5l5mcnKzAwEDnKzIy0qPbAAAAKge3g8+8efM0YcIEZWRkeKAcVz169NBrr72mlJQUzZo1S+vWrVPPnj115swZSVJmZqZCQ0NdPuPj46Pg4GBlZmaed7kTJ05Ubm6u87V//36PbgcAAKgc3L7Udeedd+rUqVNq0KCBatSooWrVqrlMz87Otqy4AQMGOP+/ZcuWatWqlRo0aKC1a9eqW7du5V6un59fibFCAADg8ud28KnIpzPXr19fdevW1Z49e9StWzeFh4fr8OHDLvMUFRUpOzv7vOOCAACAfbkdfIYOHeqJOsrkwIEDOnbsmK688kpJUnx8vHJycrR161bFxsZKklavXq3i4mLFxcVVWJ0AAKBycnuMjyTt3btXjz/+uAYOHOg847JixQpt377d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zNtvv21+/PFHk5qaatq3b29iY2NdlhMVFWWmT59uDh065Hzl5+d7fHsvxOr+MMaYoUOHmh49erhsa3Z2tstyevToYVq3bm02btxovvjiC9OwYUMzcOBAj25rWXmiT/7YF4cOHTKLFi0yDofD7N271zlPZd1HjHG/T85KT083V111lbnxxhtN3759XabNnDnTBAYGmg8++MB89913pk+fPiYmJsb89ttvznkq635idX9U9eOIMZ7ZR+x2LDnrz/rkUh1LCD6Xkfbt25vRo0c73585c8ZERESY5OTkMi+jbdu25vHHHz/v9M2bNxtJ5pdffnG2RUVFmblz55arZk/yRH8MHTq0xD/WP9qxY4eRZL7++mtn24oVK4zD4TC//vqrexvgAZdiH+nbt6/p2rWrS1tl3UeMKV+fFBUVmeuvv968/PLLJfaJ4uJiEx4ebubMmeNsy8nJMX5+fuZf//qXMaZy7ydW90dpqtJxxBjP9IkdjyXu7ieeOpZwqesycfr0aW3dulUJCQnONi8vLyUkJCg1NfWCnzfGKCUlRbt27VKnTp3OO19ubq4cDkeJL3WdOXOm6tSpo7Zt22rOnDkqKioq97ZYwZP9sXbtWoWGhqpx48YaNWqUjh075pyWmpqqoKAgtWvXztmWkJAgLy8vbdq0yYItK79LsY9kZWVp+fLlGj58eIlplW0fkcrfJ9OnT1doaGip25menq7MzEyXZQYGBiouLs65zMq6n3iiP0pTVY4jkmf7xG7HEnf2E08eSy6Lr6yAdPToUZ05c6bE13SEhYXpxx9/PO/ncnNzddVVV6mgoEDe3t56/vnndfPNN5c67++//67x48dr4MCBLt+mO3bsWF177bUKDg7WV199pYkTJ+rQoUN65plnrNm4cvBUf/To0UP9+/dXTEyM9u7dq7///e/q2bOnUlNT5e3trczMTIWGhros08fHR8HBwcrMzLR2I910KfaRV199VbVr11b//v1d2ivjPiKVr0++/PJLvfLKK0pLSyt1+tmfc2nLPDutsu4nnuiPc1Wl44jkuT6x27HE3f3Ek8cSgo/N1a5dW2lpacrPz1dKSoqSkpJUv359denSxWW+wsJC3XHHHTLGaMGCBS7TkpKSnP/fqlUr+fr66t5771VycnKV+16aC/XHgAEDnPO2bNlSrVq1UoMGDbR27Vp169atgqr2rLLuI5K0aNEiDRo0SNWrV3dpv1z2kRMnTmjw4MF66aWXVLdu3Youp8K52x92OI6UtU/sdCwpz78bTx5LCD6Xibp168rb21tZWVku7VlZWQoPDz/v57y8vNSwYUNJUps2bbRz504lJye7/FI7e7D65ZdftHr1ape/0koTFxenoqIiZWRkqHHjxuXfqIvgyf74o/r166tu3bras2ePunXrpvDwcB0+fNhlnqKiImVnZ//pei8FT/fJF198oV27duntt9++YC2VYR+R3O+TvXv3KiMjQ7feequzrbi4WNJ//xrftWuX83NZWVm68sorXZbZpk0bSaq0+4kn+qNBgwaSquZxRPJsn/zR5XwscbdPPH0sYYzPZcLX11exsbFKSUlxthUXFyslJUXx8fFlXk5xcbEKCgqc788erHbv3q3PP/9cderUueAy0tLS5OXlVeI07aXkqf4414EDB3Ts2DHnL7j4+Hjl5ORo69atznlWr16t4uJixcXFlWNLrOPpPnnllVcUGxur1q1bX3AZlWEfkdzvkyZNmuj7779XWlqa89WnTx/ddNNNSktLU2RkpGJiYhQeHu6yzLy8PG3atMm5zMq6n3iiP6SqexyRPNcn57qcjyXu9onHjyUXNTQalcpbb71l/Pz8zJIlS8yOHTvMyJEjTVBQkMnMzDTGGDN48GAzYcIE5/wzZswwn332mdm7d6/ZsWOHeeqpp4yPj4956aWXjDHGnD592vTp08fUq1fPpKWludw+WFBQYIwx5quvvjJz5841aWlpZu/eveb11183ISEhZsiQIZe+A85hdX+cOHHCPPzwwyY1NdWkp6ebzz//3Fx77bWmUaNG5vfff3cup0ePHqZt27Zm06ZN5ssvvzSNGjWqVLegWtknZ+Xm5poaNWqYBQsWlFhnZd5HjHG/T85V2t0pM2fONEFBQebDDz8027ZtM3379i31dvbKuJ9Y3R9V/ThijPV9YsdjybnOd1fXpTiWEHwuM88995y5+uqrja+vr2nfvr3ZuHGjc1rnzp3N0KFDne8fe+wx07BhQ1O9enVzxRVXmPj4ePPWW285p6enpxtJpb7WrFljjDFm69atJi4uzgQGBprq1aubpk2bmhkzZrj8461IVvbHqVOnzC233GJCQkJMtWrVTFRUlBkxYoTzH/pZx44dMwMHDjS1atUyAQEBZtiwYebEiRMe39aysrJPznrhhReMv7+/ycnJKTGtsu8jxrjXJ+cq7QBeXFxsJk2aZMLCwoyfn5/p1q2b2bVrl8s8lXk/sbI/LofjiDHW9okdjyXnOl/wuRTHEocxxpT9/BAAAEDVxRgfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgGwQfAABgG/8fCInHI9O5LCAAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAAA6KUlEQVR4nO3deXyNd97/8fcJEltWEZERsY5ShFJqaUqp9dZR5p5SHWsttQRRJdNa22mUKrdWufsrSduhOlpLx1aEMm1TbWjGUoNolA6hliQSbWS5fn/0kXP3yCInznFOLq/n43EedX2v7/mezzeXq3m7tmMxDMMQAACASXm4ugAAAABnIuwAAABTI+wAAABTI+wAAABTI+wAAABTI+wAAABTI+wAAABTI+wAAABTI+wAAABTI+wAJlSvXj0NHz7c1WWY3qJFi9SgQQNVqFBBrVq1uqufcze28fDhw1WvXj2nfgZwNxB2ADcXFxcni8WixMTEItd36dJFzZs3v+PP2bZtm+bOnXvH49wrdu7cqeeff16dOnVSbGysXnnllWL7rl27VkuXLnX65wAoWkVXFwDA8U6cOCEPD/v+LbNt2zYtX76cwFNKe/bskYeHh1atWiVPT88S+65du1ZHjx7VlClTHPY5ZdnGwL2KPQUwIS8vL1WqVMnVZdglKyvL1SXY5dKlS6pSpcptg46zPqc8bmPAVQg7gAndej1HTk6O5s2bp8aNG6ty5cqqUaOGOnfurF27dkn69dqM5cuXS5IsFov1VSArK0vTpk1TaGiovLy81KRJE7322msyDMPmc3/++WdFRkYqMDBQ3t7eevzxx/Wf//xHFovF5ojR3LlzZbFY9N133+mpp56Sv7+/OnfuLEk6fPiwhg8frgYNGqhy5coKDg7WyJEjdeXKFZvPKhjj5MmTevrpp+Xr66uaNWtq1qxZMgxD586d0x/+8Af5+PgoODhYixcvLtXPLjc3Vy+99JIaNmwoLy8v1atXT3/5y1+UnZ1t7WOxWBQbG6usrCzrzyouLq7I8bp06aKtW7fqhx9+sPYt7XUwJX3Ordu44HTnF198oaioKNWsWVPVqlXTE088oZ9++slm3M2bN6tv374KCQmRl5eXGjZsqJdeekl5eXmlqgsobziNBZQT6enpunz5cqH2nJyc27537ty5iomJ0TPPPKN27dopIyNDiYmJOnTokB577DGNHTtW58+f165du/T+++/bvNcwDD3++OPau3evRo0apVatWunTTz/V9OnT9Z///EdLliyx9h0+fLj+/ve/689//rMeeugh7du3T3379i22rv/+7/9W48aN9corr1iD065du/T9999rxIgRCg4O1rFjx/T222/r2LFj+uqrr2xCmCQ9+eSTatq0qRYsWKCtW7fq5ZdfVkBAgP73f/9Xjz76qF599VWtWbNGzz33nB588EFFRESU+LN65pln9O677+qPf/yjpk2bpgMHDigmJkbHjx/Xxo0bJUnvv/++3n77bX399dd65513JEkdO3YscrwXXnhB6enp+vHHH60/q+rVq5dYQwF7PqfApEmT5O/vrzlz5ujMmTNaunSpJk6cqA8//NDaJy4uTtWrV1dUVJSqV6+uPXv2aPbs2crIyNCiRYtKVRtQrhgA3FpsbKwhqcTX/fffb/OesLAwY9iwYdbl8PBwo2/fviV+zoQJE4yi/pewadMmQ5Lx8ssv27T/8Y9/NCwWi5GcnGwYhmEcPHjQkGRMmTLFpt/w4cMNScacOXOsbXPmzDEkGYMHDy70eTdu3CjU9sEHHxiSjP379xcaY8yYMda23Nxco06dOobFYjEWLFhgbb927ZpRpUoVm59JUZKSkgxJxjPPPGPT/txzzxmSjD179ljbhg0bZlSrVq3E8Qr07dvXCAsLK1XfWxX3Obdu44K/J927dzfy8/Ot7VOnTjUqVKhgpKWlWduK+hmPHTvWqFq1qvHLL7/YfHZZ6wbcCaexgHJi+fLl2rVrV6FXy5Ytb/tePz8/HTt2TKdOnbL7c7dt26YKFSooMjLSpn3atGkyDEPbt2+XJO3YsUOSNH78eJt+kyZNKnbscePGFWqrUqWK9c+//PKLLl++rIceekiSdOjQoUL9n3nmGeufK1SooLZt28owDI0aNcra7ufnpyZNmuj7778vthbp17lKUlRUlE37tGnTJElbt24t8f3uYMyYMTZHvx5++GHl5eXphx9+sLb99md8/fp1Xb58WQ8//LBu3Lihf//733e1XuBu4DQWUE60a9dObdu2LdTu7+9f5Omt35o/f77+8Ic/6Pe//72aN2+uXr166c9//nOpgtIPP/ygkJAQeXt727Q3bdrUur7gvx4eHqpfv75Nv0aNGhU79q19Jenq1auaN2+e1q1bp0uXLtms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bt1akhQVFaXWrVtr9uzZqlChgg4fPqzHH39cv//97zVq1Ci1adNG//znP+Xl5WUdY82aNbrvvvvUrVs39enTR507d9bbb7/tqikBAAA349IjO126dJFhGMWu//TTT287RkBAgNauXevIsgAAgImUq2t2AAAA7EXYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApkbYAQAApmZ32Dl06JCOHDliXd68ebP69++vv/zlL7p586ZDiwMAALhTdoedsWPH6uTJk5Kk77//XoMGDVLVqlW1fv16Pf/88w4vEAAA4E7YHXZOnjypVq1aSZLWr1+viIgIrV27VnFxcfr4448dXR8AAMAdsTvsGIah/Px8SdLu3bvVp08fSVJoaKguX77s2OoAAADukN1hp23btnr55Zf1/vvva9++ferbt68kKSUlRbVq1XJ4gQAAAHfC7rCzdOlSHTp0SBMnTtQLL7ygRo0aSZI++ugjdezY0eEFAgAA3ImK9r6hZcuWNndjFVi0aJEqVKjgkKIAAAAcpUzP2UlLS9M777yj6OhoXb16VZL03Xff6dKlSw4tDgAA4E7ZfWTn8OHD6tatm/z8/HTmzBmNHj1aAQEB2rBhg86ePav33nvPGXUCAACUid1HdqKiojRixAidOnVKlStXtrb36dNH+/fvd2hxAAAAd8rusPPNN99o7Nixhdp/97vfKTU11SFFAQAAOIrdYcfLy0sZGRmF2k+ePKmaNWs6pCgAAABHsTvsPP7445o/f75ycnIkSRaLRWfPntWMGTM0cOBAhxcIAABwJ+wOO4sXL1ZmZqaCgoL0888/65FHHlGjRo3k7e2tv/71r86oEQAAoMzsDju+vr7atWuXtmzZomXLlmnixInatm2b9u3bp2rVqtk11v79+9WvXz+FhITIYrFo06ZN1nU5OTmaMWOGWrRooWrVqikkJERDhw7V+fPnbcaoV6+eLBaLzWvBggX2TgsAAJiU3beeF+jUqZM6dep0Rx+elZWl8PBwjRw5UgMGDLBZd+PGDR06dEizZs1SeHi4rl27psmTJ+vxxx9XYmKiTd/58+dr9OjR1mVvb+87qgsAAJiH3WEnMjJSjRo1UmRkpE37m2++qeTkZC1durTUY/Xu3Vu9e/cucl3BEaRbP6Ndu3Y6e/as6tata2339vZWcHBw6ScBAADuGXafxvr444+LPKLTsWNHffTRRw4pqjjp6emyWCzy8/OzaV+wYIFq1Kih1q1ba9GiRcrNzS1xnOzsbGVkZNi8AACAOdl9ZOfKlSvy9fUt1O7j46PLly87pKii/PLLL5oxY4YGDx4sHx8fa3tkZKQeeOABBQQE6Msvv1R0dLQuXLig119/vdixYmJiNG/ePKfVCgAA3IfdR3YaNWqkHTt2FGrfvn27GjRo4JCibpWTk6M//elPMgxDK1assFkXFRWlLl26qGXLlho3bpwWL16sN954Q9nZ2cWOFx0drfT0dOvr3LlzTqkbAAC4nt1HdqKiojRx4kT99NNPevTRRyVJ8fHxWrx4sV3X65RWQdD54YcftGfPHpujOkVp3769cnNzdebMGTVp0qTIPl5eXvLy8nJ4rQAAwP3YHXZGjhyp7Oxs/fWvf9VLL70k6dfbv1esWKGhQ4c6tLiCoHPq1Cnt3btXNWrUuO17kpKS5OHhoaCgIIfWAgAAyqcy3Xr+7LPP6tlnn9VPP/2kKlWqqHr16mX68MzMTCUnJ1uXU1JSlJSUpICAANWuXVt//OMfdejQIW3ZskV5eXnW794KCAiQp6enEhISdODAAXXt2lXe3t5KSEjQ1KlT9fTTT8vf379MNQEAAHMp83N2JN3xd2ElJiaqa9eu1uWoqChJ0rBhwzR37lx98sknkqRWrVrZvG/v3r3q0qWLvLy8tG7dOs2dO1fZ2dmqX7++pk6dah0HAADA7rBz8eJFPffcc4qPj9elS5dkGIbN+ry8vFKP1aVLl0Lv/62S1knSAw88oK+++qrUnwfgztWbudXVJQCAXewOO8OHD9fZs2c1a9Ys1a5dWxaLxRl1AQAAOITdYefzzz/XP//5z0KnlgAAANyR3c/ZCQ0Nve3pJQAAAHdhd9hZunSpZs6cqTNnzjihHAAAAMey+zTWk08+qRs3bqhhw4aqWrWqKlWqZLP+6tWrDisOAADgTtkddpzxlGQAAABnsTvsDBs2zBl1AAAAOIXd1+xI0unTp/Xiiy9q8ODBunTpkqRfvwj02LFjDi0OAADgTtkddvbt26cWLVrowIED2rBhgzIzMyVJ//rXvzRnzhyHFwgAAHAn7A47M2fO1Msvv6xdu3bJ09PT2v7oo4/yNGMAAOB27A47R44c0RNPPFGoPSgoSJcvX3ZIUQAAAI5id9jx8/PThQsXCrV/++23+t3vfueQogAAABzF7rAzaNAgzZgxQ6mpqbJYLMrPz9cXX3yh5557TkOHDnVGjQAAAGVmd9h55ZVXdN999yk0NFSZmZlq1qyZIiIi1LFjR7344ovOqBEAAKDM7HrOjmEYSk1N1bJlyzR79mwdOXJEmZmZat26tRo3buysGgEAAMrM7rDTqFEjHTt2TI0bN1ZoaKiz6gIAAHAIu05jeXh4qHHjxrpy5Yqz6gEAAHAou6/ZWbBggaZPn66jR486ox4AAACHsvu7sYYOHaobN24oPDxcnp6eqlKlis16vvUcAAC4E771HAAAmJpdYScnJ0f79u3TrFmzVL9+fWfVBAAA4DB2XbNTqVIlffzxx86qBQAAwOHsvkC5f//+2rRpkxNKAQAAcDy7r9lp3Lix5s+fry+++EJt2rRRtWrVbNZHRkY6rDgAAIA7ZXfYWbVqlfz8/HTw4EEdPHjQZp3FYiHsAAAAt2J32ElJSXFGHQAAAE5h9zU7AAAA5YndR3ZGjhxZ4vrVq1eXuRgAAABHszvsXLt2zWY5JydHR48eVVpamh599FGHFQYAAOAIdoedjRs3FmrLz8/Xs88+q4YNGzqkKAAAAEdxyDU7Hh4eioqK0pIlSxwxHAAAgMM47ALl06dPKzc311HDAQAAOITdp7GioqJslg3D0IULF7R161YNGzbMYYUBAAA4gt1h59tvv7VZ9vDwUM2aNbV48eLb3qkFAABwt9kddvbu3euMOgAAAJzC7mt2UlJSdOrUqULtp06d0pkzZxxREwAAgMPYHXaGDx+uL7/8slD7gQMHNHz4cEfUBAAA4DB2h51vv/1WnTp1KtT+0EMPKSkpyRE1AQAAOIzdYcdisej69euF2tPT05WXl+eQogAAABzF7rATERGhmJgYm2CTl5enmJgYde7c2a6x9u/fr379+ikkJEQWi0WbNm2yWW8YhmbPnq3atWurSpUq6t69e6Hrha5evaohQ4bIx8dHfn5+GjVqlDIzM+2dFgAAMCm7w86rr76qPXv2qEmTJhoxYoRGjBihJk2aaP/+/Vq0aJFdY2VlZSk8PFzLly8vcv3ChQu1bNkyrVy5UgcOHFC1atXUs2dP/fLLL9Y+Q4YM0bFjx7Rr1y5t2bJF+/fv15gxY+ydFgAAMCmLYRiGvW86f/683nzzTf3rX/9SlSpV1LJlS02cOFEBAQFlL8Ri0caNG9W/f39Jvx7VCQkJ0bRp0/Tcc89J+vVUWa1atRQXF6dBgwbp+PHjatasmb755hu1bdtWkrRjxw716dNHP/74o0JCQkr12RkZGfL19VV6erp8fHzKPAfgXlBv5lZXlwA4zJkFfV1dAu5AaX9/2/2cHUkKCQnRK6+8UubiSiMlJUWpqanq3r27tc3X11ft27dXQkKCBg0apISEBPn5+VmDjiR1795dHh4eOnDggJ544okix87OzlZ2drZ1OSMjw3kTAQAALmX3aazY2FitX7++UPv69ev17rvvOqQoSUpNTZUk1apVy6a9Vq1a1nWpqakKCgqyWV+xYkUFBARY+xQlJiZGvr6+1ldoaKjD6gYAAO7F7rATExOjwMDAQu1BQUFOP9rjKNHR0UpPT7e+zp075+qSAACAk9gdds6ePav69esXag8LC9PZs2cdUpQkBQcHS5IuXrxo037x4kXruuDgYF26dMlmfW5urq5evWrtUxQvLy/5+PjYvAAAgDnZHXaCgoJ0+PDhQu3/+te/VKNGDYcUJUn169dXcHCw4uPjrW0ZGRk6cOCAOnToIEnq0KGD0tLSdPDgQWufPXv2KD8/X+3bt3dYLQAAoPyy+wLlwYMHKzIyUt7e3oqIiJAk7du3T5MnT9agQYPsGiszM1PJycnW5ZSUFCUlJSkgIEB169bVlClT9PLLL6tx48aqX7++Zs2apZCQEOsdW02bNlWvXr00evRorVy5Ujk5OZo4caIGDRpU6juxAACAudkddl566SWdOXNG3bp1U8WKv749Pz9fQ4cOtfuancTERHXt2tW6HBUVJUkaNmyY4uLi9PzzzysrK0tjxoxRWlqaOnfurB07dqhy5crW96xZs0YTJ05Ut27d5OHhoYEDB2rZsmX2TgsAAJhUmZ6zI0knT560PmenRYsWCgsLc3Rtdw3P2QFKj+fswEx4zk755tTn7EhSQECAunbtWuSdWQAAAO7CrguU09LSNGHCBAUGBqpWrVqqVauWAgMDNXHiRKWlpTmpRAAAgLIr9ZGdq1evqkOHDvrPf/6jIUOGqGnTppKk7777TnFxcYqPj9eXX34pf39/pxULAABgr1KHnfnz58vT01OnT58u9FTj+fPnq0ePHpo/f76WLFni8CIBAADKqtSnsTZt2qTXXnutUNCRfn2438KFC7Vx40aHFgcAAHCnSh12Lly4oPvvv7/Y9c2bNy/x+6gAAABcodRhJzAwUGfOnCl2fUpKigICAhxREwAAgMOUOuz07NlTL7zwgm7evFloXXZ2tmbNmqVevXo5tDgAAIA7ZdcFym3btlXjxo01YcIE3XfffTIMQ8ePH9dbb72l7Oxsvf/++86sFQAAwG6lDjt16tRRQkKCxo8fr+joaBU8eNliseixxx7Tm2++qdDQUKcVCgAAUBZ2PUG5fv362r59u65du6ZTp05Jkho1asS1OgAAwG2V6esi/P391a5dO0fXAgAA4HB2fV0EAABAeUPYAQAApkbYAQAAplaqsPPAAw/o2rVrkn69Bf3GjRtOLQoAAMBRShV2jh8/rqysLEnSvHnzlJmZ6dSiAAAAHKVUd2O1atVKI0aMUOfOnWUYhl577TVVr169yL6zZ892aIEAAAB3olRhJy4uTnPmzNGWLVtksVi0fft2VaxY+K0Wi4WwAwAA3Eqpwk6TJk20bt06SZKHh4fi4+MVFBTk1MIAAAAcwe6HCubn5zujDgAAAKco0xOUT58+raVLl+r48eOSpGbNmmny5Mlq2LChQ4sDAAC4U3Y/Z+fTTz9Vs2bN9PXXX6tly5Zq2bKlDhw4oPvvv1+7du1yRo0AAABlZveRnZkzZ2rq1KlasGBBofYZM2bosccec1hxAAAAd8ruIzvHjx/XqFGjCrWPHDlS3333nUOKAgAAcBS7w07NmjWVlJRUqD0pKYk7tAAAgNux+zTW6NGjNWbMGH3//ffq2LGjJOmLL77Qq6++qqioKIcXCAAAcCfsDjuzZs2St7e3Fi9erOjoaElSSEiI5s6dq8jISIcXCAAAcCcshmEYZX3z9evXJUne3t4OK8gVMjIy5Ovrq/T0dPn4+Li6HMCt1Zu51dUlAPe0Mwv6uroEt1Ha399les5OgfIecgAAgPnZfYEyAABAeULYAQAApkbYAQAApmZX2MnJyVG3bt106tQpZ9UDAADgUHaFnUqVKunw4cPOqgUAAMDh7D6N9fTTT2vVqlXOqAUAAMDh7L71PDc3V6tXr9bu3bvVpk0bVatWzWb966+/7rDiAAAA7pTdYefo0aN64IEHJEknT560WWexWBxTFQAAgIPYHXb27t3rjDqKVa9ePf3www+F2sePH6/ly5erS5cu2rdvn826sWPHauXKlXerRAAA4MbK/ATl5ORknT59WhEREapSpYoMw3DKkZ1vvvlGeXl51uWjR4/qscce03//939b20aPHq358+dbl6tWrerwOgAAQPlkd9i5cuWK/vSnP2nv3r2yWCw6deqUGjRooFGjRsnf31+LFy92aIE1a9a0WV6wYIEaNmyoRx55xNpWtWpVBQcHO/RzAQCAOdh9N9bUqVNVqVIlnT171uYIypNPPqkdO3Y4tLhb3bx5U3/72980cuRIm6NIa9asUWBgoJo3b67o6GjduHGjxHGys7OVkZFh8wIAAOZk95GdnTt36tNPP1WdOnVs2hs3blzktTWOtGnTJqWlpWn48OHWtqeeekphYWEKCQnR4cOHNWPGDJ04cUIbNmwodpyYmBjNmzfPqbUCAAD3YHfYycrKKvKamKtXr8rLy8shRRVn1apV6t27t0JCQqxtY8aMsf65RYsWql27trp166bTp0+rYcOGRY4THR2tqKgo63JGRoZCQ0OdVzgAAHAZu09jPfzww3rvvfesyxaLRfn5+Vq4cKG6du3q0OJ+64cfftDu3bv1zDPPlNivffv2kn69gLo4Xl5e8vHxsXkBAABzsvvIzsKFC9WtWzclJibq5s2bev7553Xs2DFdvXpVX3zxhTNqlCTFxsYqKChIffv2LbFfUlKSJKl27dpOqwUAAJQfdoed5s2b6+TJk3rzzTfl7e2tzMxMDRgwQBMmTHBawMjPz1dsbKyGDRumihX/r+TTp09r7dq16tOnj2rUqKHDhw9r6tSpioiIUMuWLZ1SCwAAKF/K9JwdX19fvfDCC46upVi7d+/W2bNnNXLkSJt2T09P7d69W0uXLlVWVpZCQ0M1cOBAvfjii3etNgAA4N7KFHauXbumVatW6fjx45KkZs2aacSIEQoICHBocQV69OghwzAKtYeGhhZ6ejIAAMBv2X2B8v79+1WvXj0tW7ZM165d07Vr17Rs2TLVr19f+/fvd0aNAAAAZWb3kZ0JEyboySef1IoVK1ShQgVJUl5ensaPH68JEyboyJEjDi8SAACgrOw+spOcnKxp06ZZg44kVahQQVFRUSXe7g0AAOAK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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGzCAYAAADJ3dZzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy80BEi2AAAACXBIWXMAAA9hAAAPYQGoP6dpAABBn0lEQVR4nO3deVyU9f7//+eAMOACiAtIoZKae2paipq5cMLl5NpJy5NLnmzBTDFT6rhmoR4zj+VSndLqZH2OpbaYGLmWobmRuRxXTE8GVAqIJqK8f3/4c75NgDE6OMPV4367zS3mfb3nPa9rLmGeXdf7ui6bMcYIAADAonw8XQAAAEBpIuwAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAZUDt2rU1ZMgQT5dhef/4xz900003ydfXV82bNy/191u8eLFsNpuOHj1a6u8F/JERdoDr7PIX3LZt24pc3rFjRzVp0uSa3+fTTz/V5MmTr3mcP4rPPvtMTz31lNq1a6dFixbp+eef93RJZcr8+fO1ePFiT5cBFKmcpwsA8Pv2798vHx/X/t/k008/1bx58wg8JbR27Vr5+Pjo9ddfl7+//3V5zwceeEADBgyQ3W6/Lu9XmubPn6+qVauyBxJeiT07QBlgt9vl5+fn6TJccubMGU+X4JLMzEwFBgZet6AjSb6+vgoICJDNZrtu7wn8ERF2gDLgt3N28vPzNWXKFNWrV08BAQGqUqWK2rdvr+TkZEnSkCFDNG/ePEmSzWZzPC47c+aMxowZo8jISNntdtWvX1+zZs2SMcbpfX/55ReNHDlSVatWVaVKldSzZ099//33stlsTnuMJk+eLJvNpr179+r+++9X5cqV1b59e0nSrl27NGTIEN10000KCAhQeHi4HnzwQf38889O73V5jAMHDuivf/2rgoODVa1aNU2YMEHGGB0/fly9evVSUFCQwsPD9cILL5Tos7tw4YKeffZZ1alTR3a7XbVr19bTTz+tvLw8Rx+bzaZFixbpzJkzjs+quEMy+/btU2BgoAYNGuTU/uWXX8rX11fjxo0rUV1S0XN2ateurT//+c9av369WrVqpcDAQDVt2lTr16+XJC1btkxNmzZVQECAWrZsqZ07dzqNOWTIEFWsWFFHjhxRbGysKlSooIiICE2dOrXQ9p01a5batm2rKlWqKDAwUC1bttT7779fZK3//ve/dfvtt6t8+fKqXLmyOnTooM8++8xR8549e7RhwwbH59exY8cSfw5AaeMwFuAh2dnZ+umnnwq15+fn/+5rJ0+erMTERP3tb3/T7bffrpycHG3btk07duzQn/70Jz388MM6ceKEkpOT9fbbbzu91hijnj17at26dRo2bJiaN2+u1atXa+zYsfr+++/14osvOvoOGTJE//nPf/TAAw+oTZs22rBhg3r06FFsXX/5y19Ur149Pf/8844v1uTkZB05ckRDhw5VeHi49uzZo1dffVV79uzR5s2bC+3V6N+/vxo2bKjp06dr5cqVmjZtmkJDQ/XKK6+oc+fOmjFjht555x09+eSTuu2229ShQ4crflZ/+9vf9Oabb+qee+7RmDFjtGXLFiUmJmrfvn1avny5JOntt9/Wq6++qq+//lr/+te/JElt27YtcryGDRvq2Wef1dixY3XPPfeoZ8+eOnPmjIYMGaIGDRpo6tSpV6ynJA4dOqT7779fDz/8sP76179q1qxZuvvuu7Vw4UI9/fTTeuyxxyRJiYmJuvfeewsd5rx48aK6du2qNm3aaObMmUpKStKkSZN04cIFp/r++c9/qmfPnho4cKDOnz+v9957T3/5y1/0ySefOG3nKVOmaPLkyWrbtq2mTp0qf39/bdmyRWvXrtVdd92lOXPm6PHHH1fFihX1zDPPSJLCwsKu+XMA3MYAuK4WLVpkJF3x0bhxY6fX1KpVywwePNjxvFmzZqZHjx5XfJ+4uDhT1K/4ihUrjCQzbdo0p/Z77rnH2Gw2c+jQIWOMMdu3bzeSzKhRo5z6DRkyxEgykyZNcrRNmjTJSDL33Xdfofc7e/ZsobZ3333XSDIbN24sNMbw4cMdbRcuXDA33nijsdlsZvr06Y72U6dOmcDAQKfPpCipqalGkvnb3/7m1P7kk08aSWbt2rWOtsGDB5sKFSpccbzLLl68aNq3b2/CwsLMTz/9ZOLi4ky5cuXM1q1bS/T6yy7/W0hLS3O01apVy0gyX331laNt9erVRpIJDAw03333naP9lVdeMZLMunXrnNZDknn88ccdbQUFBaZHjx7G39/f/Pjjj472326b8+fPmyZNmpjOnTs72g4ePGh8fHxMnz59zMWLF536FxQUOH5u3LixufPOO11af+B64TAW4CHz5s1TcnJyocctt9zyu68NCQnRnj17dPDgQZff99NPP5Wvr69Gjhzp1D5mzBgZY7Rq1SpJUlJSkiQ59iJc9vjjjxc79iOPPFKoLTAw0PHzuXPn9NNPP6lNmzaSpB07dhTq/7e//c3xs6+vr1q1aiVjjIYNG+ZoDwkJUf369XXkyJFia5EuraskxcfHO7WPGTNGkrRy5corvr44Pj4+Wrx4sXJzc9WtWzfNnz9fCQkJatWq1VWN91uNGjVSdHS043nr1q0lSZ07d1bNmjULtRf1OYwYMcLxs81m04gRI3T+/Hl9/vnnjvZfb5tTp04pOztbd9xxh9N2WbFihQoKCjRx4sRCk+SZa4SygsNYgIfcfvvtRX45Vq5cucjDW782depU9erVSzfffLOaNGmirl276oEHHihRUPruu+8UERGhSpUqObU3bNjQsfzyf318fBQVFeXUr27dusWO/du+knTy5ElNmTJF7733njIzM52WZWdnF+r/6y9zSQoODlZAQICqVq1aqP23835+6/I6/Lbm8PBwhYSEONb1atSpU0eTJ0/W2LFj1aRJE02YMOGqx/qtoj4DSYqMjCyy/dSpU07tPj4+uummm5zabr75Zklymh/0ySefaNq0aUpNTS00h+myw4cPy8fHR40aNbrKtQE8jz07QBnUoUMHHT58WG+88YaaNGmif/3rX7r11lsd80085dd7Ci6799579dprr+mRRx7RsmXL9Nlnnzn2GhUUFBTq7+vrW6I2SYUm3BantPZAXJ6ge+LEid8NXq4obn2v9XP4tS+++EI9e/ZUQECA5s+fr08//VTJycm6//77r2o8wJsRdoAyKjQ0VEOHDtW7776r48eP65ZbbnE6Q6q4L/hatWrpxIkTOn36tFP7f//7X8fyy/8tKChQWlqaU79Dhw6VuMZTp05pzZo1Gj9+vKZMmaI+ffroT3/6U6G9DqXl8jr89nBfRkaGsrKyHOt6NRYuXKjk5GQ999xzOn/+vB5++OFrLddtCgoKCh3aOnDggKRLZ05J0gcffKCAgACtXr1aDz74oLp166aYmJhCY9WpU0cFBQXau3fvFd+TQ1rwZoQdoAz67V6EihUrqm7duk6HIipUqCBJysrKcurbvXt3Xbx4US+//LJT+4svviibzaZu3bpJkmJjYyVduljcr7300kslrvPynojf7imYM2dOice4Ft27dy/y/WbPni1JVzyz7ErS0tI0duxY9evXT08//bRmzZqljz76SG+99dY11etOv96+xhi9/PLL8vPzU5cuXSRd2jY2m00XL1509Dt69KhWrFjhNE7v3r3l4+OjqVOnFtoT9+vtWqFChUL/1gBvwZwdoAxq1KiROnbsqJYtWyo0NFTbtm3T+++/7zQptWXLlpKkkSNHKjY2Vr6+vhowYIDuvvtuderUSc8884yOHj2qZs2a6bPPPtOHH36oUaNGqU6dOo7X9+vXT3PmzNHPP//sOPX88h6CkvyffFBQkDp06KCZM2cqPz9fN9xwgz777LNCe4tKS7NmzTR48GC9+uqrysrK0p133qmvv/5ab775pnr37q1OnTq5PKYxRg8++KACAwO1YMECSdLDDz+sDz74QE888YRiYmIUERHh7lVxSUBAgJKSkjR48GC1bt1aq1at0sqVK/X000+rWrVqki4FvdmzZ6tr1666//77lZmZqXnz5qlu3bratWuXY6y6devqmWee0bPPPqs77rhDffv2ld1u19atWxUREaHExERJl/69LFiwQNOmTVPdunVVvXp1de7c2SPrDxTisfPAgD+oy6cbF3ea8p133vm7p55PmzbN3H777SYkJMQEBgaaBg0amOeee86cP3/e0efChQvm8ccfN9WqVTM2m83pNPTTp0+b0aNHm4iICOPn52fq1atn/vGPfzidSmyMMWfOnDFxcXEmNDTUVKxY0fTu3dvs37/fSHI6FfzyaeO/Pq35sv/973+mT58+JiQkxAQHB5u//OUv5sSJE8Wevv7bMYo7Jbyoz6ko+fn5ZsqUKSYqKsr4+fmZyMhIk5CQYM6dO1ei9/mtf/7zn0aS+eCDD5zajx07ZoKCgkz37t1/d4zLijv1vKjLCkgycXFxTm1paWlGkvnHP/5RaD0OHz5s7rrrLlO+fHkTFhZmJk2aVOjU8ddff93Uq1fP2O1206BBA7No0SLHdvitN954w7Ro0cLY7XZTuXJlc+edd5rk5GTH8vT0dNOjRw9TqVIlI4nT0OFVbMYwEw1AyaWmpqpFixb697//rYEDB3q6HPzGkCFD9P777ys3N9fTpQBegzk7AIr1yy+/FGqbM2eOfHx8fvfKxQDgLZizA6BYM2fO1Pbt29WpUyeVK1dOq1at0qpVqzR8+PBC13zB/5Obm/u7e1aqVatW7KnkANyLsAOgWG3btlVycrKeffZZ5ebmqmbNmpo8ebLj/kco2qxZszRlypQr9klLS3OcBg6gdDFnBwDc7MiRI797K4v27dsrICDgOlUE/LERdgAAgKUxQRkAAFgac3Z06dLqJ06cUKVKlbjkOQAAZYQxRqdPn1ZERIR8fIrff0PY0aWb+HFmCQAAZdPx48d14403FrucsCOpUqVKki59WEFBQR6uBgAAlEROTo4iIyMd3+PFIezo/93jJygoiLADAEAZ83tTUJigDAAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALI2wAwAALK2cpwsAULbUHr/S0yW47Oj0Hp4uAYAHsWcHAABYGmEHAABYGmEHAABYGmEHAABYmkfDzsaNG3X33XcrIiJCNptNK1asKNRn37596tmzp4KDg1WhQgXddtttOnbsmGP5uXPnFBcXpypVqqhixYrq16+fMjIyruNaAAAAb+bRsHPmzBk1a9ZM8+bNK3L54cOH1b59ezVo0EDr16/Xrl27NGHCBAUEBDj6jB49Wh9//LGWLl2qDRs26MSJE+rbt+/1WgUAAODlPHrqebdu3dStW7dilz/zzDPq3r27Zs6c6WirU6eO4+fs7Gy9/vrrWrJkiTp37ixJWrRokRo2bKjNmzerTZs2pVc8AAAoE7x2zk5BQYFWrlypm2++WbGxsapevbpat27tdKhr+/btys/PV0xMjKOtQYMGqlmzplJSUoodOy8vTzk5OU4PAABgTV4bdjIzM5Wbm6vp06era9eu+uyzz9SnTx/17dtXGzZskCSlp6fL399fISEhTq8NCwtTenp6sWMnJiYqODjY8YiMjCzNVQEAAB7ktWGnoKBAktSrVy+NHj1azZs31/jx4/XnP/9ZCxcuvKaxExISlJ2d7XgcP37cHSUDAAAv5LW3i6hatarKlSunRo0aObU3bNhQX375pSQpPDxc58+fV1ZWltPenYyMDIWHhxc7tt1ul91uL5W6AQCAd/HaPTv+/v667bbbtH//fqf2AwcOqFatWpKkli1bys/PT2vWrHEs379/v44dO6bo6OjrWi8AAPBOHt2zk5ubq0OHDjmep6WlKTU1VaGhoapZs6bGjh2r/v37q0OHDurUqZOSkpL08ccfa/369ZKk4OBgDRs2TPHx8QoNDVVQUJAef/xxRUdHcyYWAACQ5OGws23bNnXq1MnxPD4+XpI0ePBgLV68WH369NHChQuVmJiokSNHqn79+vrggw/Uvn17x2tefPFF+fj4qF+/fsrLy1NsbKzmz59/3dcFAAB4J5sxxni6CE/LyclRcHCwsrOzFRQU5OlyAK9We/xKT5fgsqPTe3i6BACloKTf3147ZwcAAMAdCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSCDsAAMDSynm6AAAobbXHr/R0CS47Or2Hp0sALIM9OwAAwNLYswN4UFnc4wAAZQ17dgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKURdgAAgKV5NOxs3LhRd999tyIiImSz2bRixYpi+z7yyCOy2WyaM2eOU/vJkyc1cOBABQUFKSQkRMOGDVNubm7pFg4AAMoMj4adM2fOqFmzZpo3b94V+y1fvlybN29WREREoWUDBw7Unj17lJycrE8++UQbN27U8OHDS6tkAABQxpTz5Jt369ZN3bp1u2Kf77//Xo8//rhWr16tHj16OC3bt2+fkpKStHXrVrVq1UqS9NJLL6l79+6aNWtWkeEIAAD8sXj1nJ2CggI98MADGjt2rBo3blxoeUpKikJCQhxBR5JiYmLk4+OjLVu2FDtuXl6ecnJynB4AAMCavDrszJgxQ+XKldPIkSOLXJ6enq7q1as7tZUrV06hoaFKT08vdtzExEQFBwc7HpGRkW6tGwAAeA+vDTvbt2/XP//5Ty1evFg2m82tYyckJCg7O9vxOH78uFvHBwAA3sNrw84XX3yhzMxM1axZU+XKlVO5cuX03XffacyYMapdu7YkKTw8XJmZmU6vu3Dhgk6ePKnw8PBix7bb7QoKCnJ6AAAAa/LoBOUreeCBBxQTE+PUFhsbqwceeEBDhw6VJEVHRysrK0vbt29Xy5YtJUlr165VQUGBWrdufd1rBgAA3sejYSc3N1eHDh1yPE9LS1NqaqpCQ0NVs2ZNValSxam/n5+fwsPDVb9+fUlSw4YN1bVrVz300ENauHCh8vPzNWLECA0YMIAzsQAAgCQPH8batm2bWrRooRYtWkiS4uPj1aJFC02cOLHEY7zzzjtq0KCBunTpou7du6t9+/Z69dVXS6tkAABQxnh0z07Hjh1ljClx/6NHjxZqCw0N1ZIlS9xYFQAAsBKvnaAMAADgDoQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaYQdAABgaV57bywA+COrPX6lp0tw2dHpPTxdAlAk9uwAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLI+wAAABLczns7NixQ99++63j+YcffqjevXvr6aef1vnz591aHAAAwLVyOew8/PDDOnDggCTpyJEjGjBggMqXL6+lS5fqqaeecnuBAAAA18LlsHPgwAE1b95ckrR06VJ16NBBS5Ys0eLFi/XBBx+4uz4AAIBr4nLYMcaooKBAkvT555+re/fukqTIyEj99NNP7q0OAADgGrkcdlq1aqVp06bp7bff1oYNG9SjRw9JUlpamsLCwlwaa+PGjbr77rsVEREhm82mFStWOJbl5+dr3Lhxatq0qSpUqKCIiAgNGjRIJ06ccBrj5MmTGjhwoIKCghQSEqJhw4YpNzfX1dUCAAAW5XLYmTNnjnbs2KERI0bomWeeUd26dSVJ77//vtq2bevSWGfOnFGzZs00b968QsvOnj2rHTt2aMKECdqxY4eWLVum/fv3q2fPnk79Bg4cqD179ig5OVmffPKJNm7cqOHDh7u6WgAAwKJsxhjjjoHOnTsnX19f+fn5XV0hNpuWL1+u3r17F9tn69atuv322/Xdd9+pZs2a2rdvnxo1aqStW7eqVatWkqSkpCR1795d//vf/xQREVGi987JyVFwcLCys7MVFBR0VfUDV6P2+JWeLgFwm6PTe3i6BPzBlPT7+6qus5OVlaV//etfSkhI0MmTJyVJe/fuVWZm5tVVW0LZ2dmy2WwKCQmRJKWkpCgkJMQRdCQpJiZGPj4+2rJlS7Hj5OXlKScnx+kBAACsyeWws2vXLtWrV08zZszQrFmzlJWVJUlatmyZEhIS3F2fw7lz5zRu3Djdd999jvSWnp6u6tWrO/UrV66cQkNDlZ6eXuxYiYmJCg4OdjwiIyNLrW4AAOBZLoed+Ph4DR06VAcPHlRAQICjvXv37tq4caNbi7ssPz9f9957r4wxWrBgwTWPl5CQoOzsbMfj+PHjbqgSAAB4o3KuvmDr1q165ZVXCrXfcMMNV9ybcrUuB53vvvtOa9eudTomFx4eXujQ2YULF3Ty5EmFh4cXO6bdbpfdbnd7rQAAwPu4vGfHbrcXOcflwIEDqlatmluKuuxy0Dl48KA+//xzValSxWl5dHS0srKytH37dkfb2rVrVVBQoNatW7u1FgAAUDa5HHZ69uypqVOnKj8/X9Kls6iOHTumcePGqV+/fi6NlZubq9TUVKWmpkq6dK2e1NRUHTt2TPn5+brnnnu0bds2vfPOO7p48aLS09OVnp7uuAdXw4YN1bVrVz300EP6+uuvtWnTJo0YMUIDBgwo8ZlYAADA2lw+9Tw7O9sRQk6fPq2IiAilp6crOjpan376qSpUqFDisdavX69OnToVah88eLAmT56sqKioIl+3bt06dezYUdKliwqOGDFCH3/8sXx8fNSvXz/NnTtXFStWLHEdnHoOT+HUc1gJp57jeivp97fLc3aCg4OVnJysTZs26ZtvvlFubq5uvfVWxcTEuFxkx44ddaWsVZIcFhoaqiVLlrj83gAA4I/B5bBzWbt27dSuXTt31gIAAOB2Ls/ZGTlypObOnVuo/eWXX9aoUaPcURMAAIDbuBx2PvjggyL36LRt21bvv/++W4oCAABwF5fDzs8//6zg4OBC7UFBQfrpp5/cUhQAAIC7uBx26tatq6SkpELtq1at0k033eSWogAAANzF5QnK8fHxGjFihH788Ud17txZkrRmzRq98MILmjNnjrvrAwAAuCYuh50HH3xQeXl5eu655/Tss89KkmrXrq0FCxZo0KBBbi8QAADgWlzVqeePPvqoHn30Uf34448KDAx06QJ+AAAA19NVX2dHktvvhQUAAOBuLk9QzsjI0AMPPKCIiAiVK1dOvr6+Tg8AAABv4vKenSFDhujYsWOaMGGCatSoIZvNVhp1AQAAuIXLYefLL7/UF198oebNm5dCOQAAAO7l8mGsyMjIEt2gEwAAwBu4HHbmzJmj8ePH6+jRo6VQDgAAgHu5fBirf//+Onv2rOrUqaPy5cvLz8/PafnJkyfdVhwAAMC1cjnscJVkAABQlrgcdgYPHlwadQAAAJQKl+fsSNLhw4f197//Xffdd58yMzMlXboR6J49e9xaHAAAwLVyOexs2LBBTZs21ZYtW7Rs2TLl5uZKkr755htNmjTJ7QUCAABcC5fDzvjx4zVt2jQlJyfL39/f0d65c2dt3rzZrcUBAABcK5fDzrfffqs+ffoUaq9evbp++ukntxQFAADgLi6HnZCQEP3www+F2nfu3KkbbrjBLUUBAAC4i8thZ8CAARo3bpzS09Nls9lUUFCgTZs26cknn9SgQYNKo0YAAICr5nLYef7559WgQQNFRkYqNzdXjRo1UocOHdS2bVv9/e9/L40aAQAArppL19kxxig9PV1z587VxIkT9e233yo3N1ctWrRQvXr1SqtGAACAq+Zy2Klbt6727NmjevXqKTIysrTqAgAAcAuXDmP5+PioXr16+vnnn0urHgAAALdyec7O9OnTNXbsWO3evbs06gEAAHArl++NNWjQIJ09e1bNmjWTv7+/AgMDnZZz13MAAOBNuOs5AACwNJfCTn5+vjZs2KAJEyYoKiqqtGoCAABwG5fm7Pj5+emDDz4orVoAAADczuUJyr1799aKFSvc8uYbN27U3XffrYiICNlstkLjGmM0ceJE1ahRQ4GBgYqJidHBgwed+pw8eVIDBw5UUFCQQkJCNGzYMMed2AEAAFyes1OvXj1NnTpVmzZtUsuWLVWhQgWn5SNHjizxWGfOnFGzZs304IMPqm/fvoWWz5w5U3PnztWbb76pqKgoTZgwQbGxsdq7d68CAgIkSQMHDtQPP/yg5ORk5efna+jQoRo+fLiWLFni6qoBAAALshljjCsvuNJcHZvNpiNHjlxdITabli9frt69e0u6tFcnIiJCY8aM0ZNPPilJys7OVlhYmBYvXqwBAwZo3759atSokbZu3apWrVpJkpKSktS9e3f973//U0RERIneOycnR8HBwcrOzlZQUNBV1Q9cjdrjV3q6BMBtjk7v4ekS8AdT0u9vl/fspKWlXVNhrrxPenq6YmJiHG3BwcFq3bq1UlJSNGDAAKWkpCgkJMQRdCQpJiZGPj4+2rJli/r06VPk2Hl5ecrLy3M8z8nJKb0VAQAAHuXynJ3rJT09XZIUFhbm1B4WFuZYlp6erurVqzstL1eunEJDQx19ipKYmKjg4GDHg9teAABgXS7v2XnwwQevuPyNN9646mKul4SEBMXHxzue5+TkEHgAALAol8POqVOnnJ7n5+dr9+7dysrKUufOnd1WWHh4uCQpIyNDNWrUcLRnZGSoefPmjj6ZmZlOr7tw4YJOnjzpeH1R7Ha77Ha722oFAADey+Wws3z58kJtBQUFevTRR1WnTh23FCVdmggdHh6uNWvWOMJNTk6OtmzZokcffVSSFB0draysLG3fvl0tW7aUJK1du1YFBQVq3bq122oBAABll1vm7Pj4+Cg+Pl4vvviiS6/Lzc1VamqqUlNTJV2alJyamqpjx47JZrNp1KhRmjZtmj766CN9++23GjRokCIiIhxnbDVs2FBdu3bVQw89pK+//lqbNm3SiBEjNGDAgBKfiQUAAKzN5T07xTl8+LAuXLjg0mu2bdumTp06OZ5fnkczePBgLV68WE899ZTOnDmj4cOHKysrS+3bt1dSUpLjGjuS9M4772jEiBHq0qWLfHx81K9fP82dO9c9KwUAAMo8l6+z8+uJvdKl6+H88MMPWrlypQYPHqyXX37ZrQVeD1xnB57CdXZgJVxnB9dbqV1nZ+fOnU7PfXx8VK1aNb3wwgu/e6YWAADA9eZy2Fm3bl1p1AEAAFAqXJ6gnJaWVuhmnJJ08OBBHT161B01AQAAuI3LYWfIkCH66quvCrVv2bJFQ4YMcUdNAAAAbuNy2Nm5c6fatWtXqL1NmzaOU8gBAAC8hcthx2az6fTp04Xas7OzdfHiRbcUBQAA4C4uh50OHTooMTHRKdhcvHhRiYmJat++vVuLAwAAuFYun401Y8YMdejQQfXr19cdd9whSfriiy+Uk5OjtWvXur1AAACAa+Hynp1GjRpp165duvfee5WZmanTp09r0KBB+u9//6smTZqURo0AAABX7apuFxEREaHnn3/e3bUAAAC4nct7dhYtWqSlS5cWal+6dKnefPNNtxQFAADgLi6HncTERFWtWrVQe/Xq1dnbAwAAvI7LYefYsWOKiooq1F6rVi0dO3bMLUUBAAC4i8thp3r16tq1a1eh9m+++UZVqlRxS1EAAADu4nLYue+++zRy5EitW7dOFy9e1MWLF7V27Vo98cQTGjBgQGnUCAAAcNVcPhvr2Wef1dGjR9WlSxeVK3fp5QUFBRo0aBBzdgAAgNdxOez4+/vr//7v//Tss8/qm2++UWBgoJo2bapatWqVRn0AAADX5KqusyNJoaGh6tSpU5FnZgEAAHgLl+bsZGVlKS4uTlWrVlVYWJjCwsJUtWpVjRgxQllZWaVUIgAAwNUr8Z6dkydPKjo6Wt9//70GDhyohg0bSpL27t2rxYsXa82aNfrqq69UuXLlUisWAADAVSUOO1OnTpW/v78OHz6ssLCwQsvuuusuTZ06VS+++KLbiwQAALhaJT6MtWLFCs2aNatQ0JGk8PBwzZw5U8uXL3drcQAAANeqxGHnhx9+UOPGjYtd3qRJE6Wnp7ulKAAAAHcp8WGsqlWr6ujRo7rxxhuLXJ6WlqbQ0FC3FQa4qvb4lZ4uAQDghUq8Zyc2NlbPPPOMzp8/X2hZXl6eJkyYoK5du7q1OAAAgGvl0gTlVq1aqV69eoqLi1ODBg1kjNG+ffs0f/585eXl6e233y7NWgEAAFxW4rBz4403KiUlRY899pgSEhJkjJEk2Ww2/elPf9LLL7+syMjIUisUAADgarh0BeWoqCitWrVKp06d0sGDByVJdevWZa4OAADwWld1u4jKlSvr9ttvd3ctAAAAbufS7SIAAADKGsIOAACwNMIOAACwtBKFnVtvvVWnTp2SdOkU9LNnz5ZqUZddvHhREyZMUFRUlAIDA1WnTh09++yzjjPBJMkYo4kTJ6pGjRoKDAxUTEyMY/I0AABAicLOvn37dObMGUnSlClTlJubW6pFXTZjxgwtWLBAL7/8svbt26cZM2Zo5syZeumllxx9Zs6cqblz52rhwoXasmWLKlSooNjYWJ07d+661AgAALxbic7Gat68uYYOHar27dvLGKNZs2apYsWKRfadOHGi24r76quv1KtXL/Xo0UOSVLt2bb377rv6+uuvJV3aqzNnzhz9/e9/V69evSRJb731lsLCwrRixQoNGDDAbbUAAICyqURhZ/HixZo0aZI++eQT2Ww2rVq1SuXKFX6pzWZza9hp27atXn31VR04cEA333yzvvnmG3355ZeaPXu2pEv340pPT1dMTIzjNcHBwWrdurVSUlKKDTt5eXnKy8tzPM/JyXFbzQAAwLuUKOzUr19f7733niTJx8dHa9asUfXq1Uu1MEkaP368cnJy1KBBA/n6+urixYt67rnnNHDgQEly3GU9LCzM6XVhYWFXvAN7YmKipkyZUnqFAwAAr+Hy2VgFBQXXJehI0n/+8x+98847WrJkiXbs2KE333xTs2bN0ptvvnlN4yYkJCg7O9vxOH78uJsqBgAA3uaqrqB8+PBhzZkzR/v27ZMkNWrUSE888YTq1Knj1uLGjh2r8ePHOw5HNW3aVN99950SExM1ePBghYeHS5IyMjJUo0YNx+syMjLUvHnzYse12+2y2+1urRUAAHgnl/fsrF69Wo0aNdLXX3+tW265Rbfccou2bNmixo0bKzk52a3FnT17Vj4+ziX6+vqqoKBA0qV7dYWHh2vNmjWO5Tk5OdqyZYuio6PdWgsAACibXN6zM378eI0ePVrTp08v1D5u3Dj96U9/cltxd999t5577jnVrFlTjRs31s6dOzV79mw9+OCDki5NiB41apSmTZumevXqKSoqShMmTFBERIR69+7ttjoAAEDZ5XLY2bdvn/7zn/8Uan/wwQc1Z84cd9Tk8NJLL2nChAl67LHHlJmZqYiICD388MNOZ3w99dRTOnPmjIYPH66srCy1b99eSUlJCggIcGstAACgbHI57FSrVk2pqamqV6+eU3tqaqrbJy5XqlRJc+bMuWKIstlsmjp1qqZOnerW9wYAANbgcth56KGHNHz4cB05ckRt27aVJG3atEkzZsxQfHy82wsEAAC4Fi6HnQkTJqhSpUp64YUXlJCQIEmKiIjQ5MmTNXLkSLcXCAAAcC1cDjs2m02jR4/W6NGjdfr0aUmXDjcBAAB4o6u6zs5lhBwAAODtXL7ODgAAQFlC2AEAAJZG2AEAAJbmUtjJz89Xly5ddPDgwdKqBwAAwK1cCjt+fn7atWtXadUCAADgdi4fxvrrX/+q119/vTRqAQAAcDuXTz2/cOGC3njjDX3++edq2bKlKlSo4LR89uzZbisOAADgWrkcdnbv3q1bb71VknTgwAGnZTabzT1VAQAAuInLYWfdunWlUQcAAECpuOpTzw8dOqTVq1frl19+kSQZY9xWFAAAgLu4HHZ+/vlndenSRTfffLO6d++uH374QZI0bNgwjRkzxu0FAgAAXAuXw87o0aPl5+enY8eOqXz58o72/v37Kykpya3FAQAAXCuX5+x89tlnWr16tW688Uan9nr16um7775zW2EAAADu4PKenTNnzjjt0bns5MmTstvtbikKAADAXVwOO3fccYfeeustx3ObzaaCggLNnDlTnTp1cmtxAAAA18rlw1gz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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "test_dispersion.plots.all()" ] @@ -703,7 +1104,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 102, "metadata": {}, "outputs": [], "source": [ @@ -719,7 +1120,7 @@ "metadata": { "hide_input": false, "kernelspec": { - "display_name": "Python 3.10.5 64-bit", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -734,11 +1135,6 @@ "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.11" - }, - "vscode": { - "interpreter": { - "hash": "26de051ba29f2982a8de78e945f0abaf191376122a1563185a90213a26c5da77" - } } }, "nbformat": 4, diff --git a/rocketpy/plots/monte_carlo_plots.py b/rocketpy/plots/monte_carlo_plots.py index 7f8313d4b..802fe7e57 100644 --- a/rocketpy/plots/monte_carlo_plots.py +++ b/rocketpy/plots/monte_carlo_plots.py @@ -1,4 +1,5 @@ import matplotlib.pyplot as plt +import numpy as np from ..tools import generate_monte_carlo_ellipses, import_optional_dependency @@ -54,14 +55,30 @@ def ellipses( "The image file was not found. Please check the path." ) from e - ( - impact_ellipses, - apogee_ellipses, + try: + apogee_x = np.array(self.monte_carlo.results["apogee_x"]) + apogee_y = np.array(self.monte_carlo.results["apogee_y"]) + except KeyError: + print("No apogee data found. Skipping apogee ellipses.") + apogee_x = np.array([]) + apogee_y = np.array([]) + try: + impact_x = np.array(self.monte_carlo.results["x_impact"]) + impact_y = np.array(self.monte_carlo.results["y_impact"]) + except KeyError: + print("No impact data found. Skipping impact ellipses.") + impact_x = np.array([]) + impact_y = np.array([]) + + if len(apogee_x) == 0 and len(impact_x) == 0: + raise ValueError("No apogee or impact data found. Cannot plot ellipses.") + + impact_ellipses, apogee_ellipses = generate_monte_carlo_ellipses( apogee_x, apogee_y, impact_x, impact_y, - ) = generate_monte_carlo_ellipses(self.monte_carlo.results) + ) # Create plot figure plt.figure(figsize=(8, 6), dpi=150) @@ -97,9 +114,7 @@ def ellipses( ) plt.legend() - ax.set_title( - "1$\\sigma$, 2$\\sigma$ and 3$\\sigma$ Monte Carlo Ellipses: Apogee and Landing Points" - ) + ax.set_title("1$\\sigma$, 2$\\sigma$ and 3$\\sigma$ Monte Carlo Ellipses") ax.set_ylabel("North (m)") ax.set_xlabel("East (m)") diff --git a/rocketpy/simulation/monte_carlo.py b/rocketpy/simulation/monte_carlo.py index cbe7b6734..c6cd1bed4 100644 --- a/rocketpy/simulation/monte_carlo.py +++ b/rocketpy/simulation/monte_carlo.py @@ -772,7 +772,7 @@ def export_ellipses_to_kml( # pylint: disable=too-many-statements origin_lon, type="all", # TODO: Don't use "type" as a parameter name, it's a reserved word # pylint: disable=redefined-builtin resolution=100, - color="ff0000ff", + colors=("ffff0000", "ff00ff00"), # impact, apogee ): """ Generates a KML file with the ellipses on the impact point, which can be @@ -793,9 +793,11 @@ def export_ellipses_to_kml( # pylint: disable=too-many-statements Number of points to be used to draw the ellipse. Default is 100. You can increase this number to make the ellipse smoother, but it will increase the file size. It is recommended to keep it below 1000. - color : str, optional - Color of the ellipse. Default is 'ff0000ff', which is red. Kml files - use an 8 digit HEX color format, see its docs. + colors : tuple[str, str], optional + Colors of the ellipses. Default is ['ffff0000', 'ff00ff00'], which + are blue and green, respectively. The first element is the color of + the impact ellipses, and the second element is the color of the + apogee. The colors are in hexadecimal format (aabbggrr). Returns ------- @@ -812,50 +814,88 @@ def export_ellipses_to_kml( # pylint: disable=too-many-statements large distances offsets, as the atmospheric conditions may change. """ # TODO: The lat and lon should be optional arguments, we can get it from the env - ( - impact_ellipses, - apogee_ellipses, - *_, - ) = generate_monte_carlo_ellipses(self.results) + # Retrieve monte carlo data por apogee and impact XY position + if type not in ["all", "impact", "apogee"]: + raise ValueError("Invalid type. Options are 'all', 'impact' and 'apogee'") + + apogee_x = np.array([]) + apogee_y = np.array([]) + impact_x = np.array([]) + impact_y = np.array([]) + if type in ["all", "apogee"]: + try: + apogee_x = np.array(self.results["apogee_x"]) + apogee_y = np.array(self.results["apogee_y"]) + except KeyError as e: + raise KeyError("No apogee data found. Skipping apogee ellipses.") from e + + if type in ["all", "impact"]: + try: + impact_x = np.array(self.results["x_impact"]) + impact_y = np.array(self.results["y_impact"]) + except KeyError as e: + raise KeyError("No impact data found. Skipping impact ellipses.") from e + + (apogee_ellipses, impact_ellipses) = generate_monte_carlo_ellipses( + impact_x, + impact_y, + apogee_x, + apogee_y, + ) + outputs = [] if type in ["all", "impact"]: - outputs = outputs + generate_monte_carlo_ellipses_coordinates( - impact_ellipses, origin_lat, origin_lon, resolution=resolution + outputs.extend( + generate_monte_carlo_ellipses_coordinates( + impact_ellipses, origin_lat, origin_lon, resolution=resolution + ) ) if type in ["all", "apogee"]: - outputs = outputs + generate_monte_carlo_ellipses_coordinates( - apogee_ellipses, origin_lat, origin_lon, resolution=resolution + outputs.extend( + generate_monte_carlo_ellipses_coordinates( + apogee_ellipses, origin_lat, origin_lon, resolution=resolution + ) ) - # TODO: Non-iterable value output is used in an iterating context PylintE1133: - kml_data = [[(coord[1], coord[0]) for coord in output] for output in outputs] + if all(isinstance(output, list) for output in outputs): + kml_data = [ + [(coord[1], coord[0]) for coord in output] for output in outputs + ] + else: + raise ValueError("Each element in outputs must be a list") kml = simplekml.Kml() - for i in range(len(outputs)): - if (type == "all" and i < 3) or (type == "impact"): - ellipse_name = "Impact \u03C3" + str(i + 1) - elif type == "all" and i >= 3: - ellipse_name = "Apogee \u03C3" + str(i - 2) + for i, points in enumerate(kml_data): + if i < len(impact_ellipses): + name = f"Impact Ellipse {i+1}" + ellipse_color = colors[0] # default is blue else: - ellipse_name = "Apogee \u03C3" + str(i + 1) + name = f"Apogee Ellipse {i +1- len(impact_ellipses)}" + ellipse_color = colors[1] # default is green - mult_ell = kml.newmultigeometry(name=ellipse_name) + mult_ell = kml.newmultigeometry(name=name) mult_ell.newpolygon( - outerboundaryis=kml_data[i], - name="Ellipse " + str(i), + outerboundaryis=points, + name=name, ) # Setting ellipse style mult_ell.tessellate = 1 mult_ell.visibility = 1 - mult_ell.style.linestyle.color = color + mult_ell.style.linestyle.color = ellipse_color mult_ell.style.linestyle.width = 3 mult_ell.style.polystyle.color = simplekml.Color.changealphaint( - 100, simplekml.Color.blue + 80, ellipse_color ) + kml.newpoint( + name="Launch Pad", + coords=[(origin_lon, origin_lat)], + description="Flight initial position", + ) + kml.save(filename) def info(self): diff --git a/rocketpy/tools.py b/rocketpy/tools.py index 4adf81707..e4c2514f5 100644 --- a/rocketpy/tools.py +++ b/rocketpy/tools.py @@ -344,7 +344,6 @@ def inverted_haversine(lat0, lon0, distance, bearing, earth_radius=6.3781e6): New latitude coordinate, in degrees. lon1 : float New longitude coordinate, in degrees. - """ # Convert coordinates to radians @@ -374,126 +373,127 @@ def inverted_haversine(lat0, lon0, distance, bearing, earth_radius=6.3781e6): # Functions for monte carlo analysis -# pylint: disable=too-many-statements -def generate_monte_carlo_ellipses(results): - """A function to create apogee and impact ellipses from the monte carlo - analysis results. +def sort_eigenvalues(cov): + # Calculate eigenvalues and eigenvectors + vals, vecs = np.linalg.eigh(cov) + # Order eigenvalues and eigenvectors in descending order + order = vals.argsort()[::-1] + return vals[order], vecs[:, order] + + +def calculate_confidence_ellipse(list_x, list_y, n_std=3): + """Given a list of x and y coordinates, calculate the confidence ellipse + parameters (theta, width, height) for a given number of standard deviations. + """ + covariance_matrix = np.cov(list_x, list_y) + eigenvalues, eigenvectors = sort_eigenvalues(covariance_matrix) + theta = np.degrees(np.arctan2(*eigenvectors[:, 0][::-1])) + width, height = 2 * n_std * np.sqrt(eigenvalues) + return theta, width, height + + +def create_matplotlib_ellipse(x, y, w, h, theta, rgb, opacity): + """Create a matplotlib.patches.Ellipse object. Parameters ---------- - results : dict - A dictionary containing the results of the monte carlo analysis. It - should contain the following keys: - - apogeeX: an array containing the x coordinates of the apogee - - apogeeY: an array containing the y coordinates of the apogee - - xImpact: an array containing the x coordinates of the impact - - yImpact: an array containing the y coordinates of the impact + x : list or np.array + List of x coordinates. + y : list or np.array + List of y coordinates. + w : float + Width of the ellipse. + h : float + Height of the ellipse. + theta : float + Angle of the ellipse. + rgb : tuple + Tuple containing the color of the ellipse in RGB format. For example, + (0, 0, 1) will create a blue ellipse. Returns ------- - apogee_ellipse : list[Ellipse] - A list of ellipse objects representing the apogee ellipses. - impact_ellipse : list[Ellipse] - A list of ellipse objects representing the impact ellipses. - apogeeX : np.array - An array containing the x coordinates of the apogee ellipse. - apogeeY : np.array - An array containing the y coordinates of the apogee ellipse. - impactX : np.array - An array containing the x coordinates of the impact ellipse. - impactY : np.array - An array containing the y coordinates of the impact ellipse. + matplotlib.patches.Ellipse + One matplotlib.patches.Ellipse objects. """ - # Retrieve monte carlo data por apogee and impact XY position - try: - apogee_x = np.array(results["apogee_x"]) - apogee_y = np.array(results["apogee_y"]) - except KeyError: - print("No apogee data found. Skipping apogee ellipses.") - apogee_x = np.array([]) - apogee_y = np.array([]) - try: - impact_x = np.array(results["x_impact"]) - impact_y = np.array(results["y_impact"]) - except KeyError: - print("No impact data found. Skipping impact ellipses.") - impact_x = np.array([]) - impact_y = np.array([]) - - # Define function to calculate Eigenvalues - def eigsorted(cov): - # Calculate eigenvalues and eigenvectors - vals, vecs = np.linalg.eigh(cov) - # Order eigenvalues and eigenvectors in descending order - order = vals.argsort()[::-1] - return vals[order], vecs[:, order] - - def calculate_ellipses(list_x, list_y): - # Calculate covariance matrix - cov = np.cov(list_x, list_y) - # Calculate eigenvalues and eigenvectors - vals, vecs = eigsorted(cov) - # Calculate ellipse angle and width/height - theta = np.degrees(np.arctan2(*vecs[:, 0][::-1])) - w, h = 2 * np.sqrt(vals) - return theta, w, h - - def create_ellipse_objects(x, y, n, w, h, theta, rgb): - """Create a list of matplotlib.patches.Ellipse objects. - - Parameters - ---------- - x : list or np.array - List of x coordinates. - y : list or np.array - List of y coordinates. - n : int - Number of ellipses to create. It represents the number of confidence - intervals to be used. For example, n=3 will create 3 ellipses with - 1, 2 and 3 standard deviations. - w : float - Width of the ellipse. - h : float - Height of the ellipse. - theta : float - Angle of the ellipse. - rgb : tuple - Tuple containing the color of the ellipse in RGB format. For example, - (0, 0, 1) will create a blue ellipse. - - Returns - ------- - list - List of matplotlib.patches.Ellipse objects. - """ - ell_list = [None] * n - for j in range(n): - ell = Ellipse( - xy=(np.mean(x), np.mean(y)), - width=w, - height=h, - angle=theta, - color="black", - ) - ell.set_facecolor(rgb) - ell_list[j] = ell - return ell_list + ell = Ellipse( + xy=(np.mean(x), np.mean(y)), + width=w, + height=h, + angle=theta, + color="black", + ) + ell.set_facecolor(rgb) + ell.set_alpha(opacity) + return ell + + +def generate_monte_carlo_ellipses( + apogee_x=np.array([]), + apogee_y=np.array([]), + impact_x=np.array([]), + impact_y=np.array([]), + n_apogee=[1, 2, 3], + n_impact=[1, 2, 3], + apogee_rgb=(0, 1, 0), + impact_rgb=(0, 0, 1), + opacity=0.2, +): # pylint: disable=dangerous-default-value + """Function to generate Monte Carlo ellipses for apogee and impact points. + + Parameters + ---------- + apogee_x : np.ndarray, optional + Array of x-coordinates for apogee points, by default np.array([]) + apogee_y : np.ndarray, optional + Array of y-coordinates for apogee points, by default np.array([]) + impact_x : np.ndarray, optional + Array of x-coordinates for impact points, by default np.array([]) + impact_y : np.ndarray, optional + Array of y-coordinates for impact points, by default np.array([]) + n_apogee : list, optional + List of integers representing the number of standard deviations for + apogee ellipses, by default [1, 2, 3] + n_impact : list, optional + List of integers representing the number of standard deviations for + impact ellipses, by default [1, 2, 3] + apogee_rgb : tuple, optional + RGB color tuple for apogee ellipses, by default (0, 1, 0). + impact_rgb : tuple, optional + RGB color tuple for impact ellipses, by default (0, 0, 1). + opacity : float, optional + The alpha parameter for the solid face of the ellipses, by default 0.2 + + Returns + ------- + tuple[list[matplotlib.patches.Ellipse], list[matplotlib.patches.Ellipse]] + A tuple containing two lists: + - List of matplotlib.patches.Ellipse objects for apogee ellipses. + - List of matplotlib.patches.Ellipse objects for impact ellipses. + """ # Calculate error ellipses for impact and apogee - impact_theta, impact_w, impact_h = calculate_ellipses(impact_x, impact_y) - apogee_theta, apogee_w, apogee_h = calculate_ellipses(apogee_x, apogee_y) + apogee_ellipses = [] + for i in n_apogee: + theta, width, height = calculate_confidence_ellipse(apogee_x, apogee_y, n_std=i) + apogee_ellipses.append( + create_matplotlib_ellipse( + apogee_x, apogee_y, width, height, theta, apogee_rgb, opacity + ) + ) # Draw error ellipses for impact - impact_ellipses = create_ellipse_objects( - impact_x, impact_y, 3, impact_w, impact_h, impact_theta, (0, 0, 1, 0.2) - ) - - apogee_ellipses = create_ellipse_objects( - apogee_x, apogee_y, 3, apogee_w, apogee_h, apogee_theta, (0, 1, 0, 0.2) - ) + impact_ellipses = [] + for i in n_impact: + theta, width, height = calculate_confidence_ellipse(impact_x, impact_y, n_std=i) + impact_ellipses.append( + create_matplotlib_ellipse( + impact_x, impact_y, width, height, theta, impact_rgb, opacity + ) + ) - return impact_ellipses, apogee_ellipses, apogee_x, apogee_y, impact_x, impact_y + return impact_ellipses, apogee_ellipses def generate_monte_carlo_ellipses_coordinates( @@ -504,7 +504,7 @@ def generate_monte_carlo_ellipses_coordinates( Parameters ---------- - ellipses : list + ellipses : list[matplotlib.patches.Ellipse] List of matplotlib.patches.Ellipse objects. origin_lat : float Latitude of the origin of the coordinate system. @@ -515,44 +515,49 @@ def generate_monte_carlo_ellipses_coordinates( Returns ------- - list + list[list[tuple[float, float]]] List of lists of tuples containing the latitude and longitude of each point in each ellipse. """ - outputs = [None] * len(ellipses) - - for index, ell in enumerate(ellipses): - # Get ellipse path points - center = ell.get_center() - width = ell.get_width() - height = ell.get_height() - angle = np.deg2rad(ell.get_angle()) - points = lat_lon_points = [None] * resolution - - # Generate ellipse path points (in a Cartesian coordinate system) - for i in range(resolution): - x = width / 2 * math.cos(2 * np.pi * i / resolution) - y = height / 2 * math.sin(2 * np.pi * i / resolution) - x_rot = center[0] + x * math.cos(angle) - y * math.sin(angle) - y_rot = center[1] + x * math.sin(angle) + y * math.cos(angle) - points[i] = (x_rot, y_rot) - points = np.array(points) - - # Convert path points to lat/lon - for point in points: - x, y = point - # Convert to distance and bearing - d = math.sqrt((x**2 + y**2)) - bearing = math.atan2( - x, y - ) # math.atan2 returns the angle in the range [-pi, pi] - - lat_lon_points[i] = inverted_haversine( - origin_lat, origin_lon, d, bearing, earth_radius=6.3781e6 - ) - - outputs[index] = lat_lon_points - return outputs + return [ + __convert_to_lat_lon( + __generate_ellipse_points(ell, resolution), origin_lat, origin_lon + ) + for ell in ellipses + ] + + +def __convert_to_lat_lon(points: list, origin_lat: float, origin_lon: float): + return [ + inverted_haversine( + origin_lat, + origin_lon, + math.sqrt(x**2 + y**2), + math.degrees(math.atan2(x, y)), + earth_radius=6.3781e6, + ) + for x, y in points + ] + + +def __generate_ellipse_points(ellipse, resolution: int): + center = ellipse.get_center() + width = ellipse.get_width() + height = ellipse.get_height() + angle = np.deg2rad(ellipse.get_angle()) + + points = [ + ( + center[0] + + (width / 2 * math.cos(2 * np.pi * i / resolution)) * math.cos(angle) + - (height / 2 * math.sin(2 * np.pi * i / resolution)) * math.sin(angle), + center[1] + + (width / 2 * math.cos(2 * np.pi * i / resolution)) * math.sin(angle) + + (height / 2 * math.sin(2 * np.pi * i / resolution)) * math.cos(angle), + ) + for i in range(resolution) + ] + return np.array(points) def flatten_dict(x): @@ -582,7 +587,7 @@ def load_monte_carlo_data( output_filename, parameters_list, target_variables_list, -): +): # pylint: disable=too-many-statements """Reads MonteCarlo simulation data file and builds parameters and flight variables matrices diff --git a/tests/integration/test_monte_carlo.py b/tests/integration/test_monte_carlo.py index 5f11a9b25..b5caddbc8 100644 --- a/tests/integration/test_monte_carlo.py +++ b/tests/integration/test_monte_carlo.py @@ -105,7 +105,7 @@ def test_monte_carlo_export_ellipses_to_kml(monte_carlo_calisto_pre_loaded): filename="monte_carlo_class_example.kml", origin_lat=32.990254, origin_lon=-106.974998, - type="impact", + type="all", ) is None ) diff --git a/tests/unit/test_tools.py b/tests/unit/test_tools.py index 8322f7bd8..9b321ea0e 100644 --- a/tests/unit/test_tools.py +++ b/tests/unit/test_tools.py @@ -5,6 +5,7 @@ calculate_cubic_hermite_coefficients, euler313_to_quaternions, find_roots_cubic_function, + haversine, ) @@ -58,3 +59,16 @@ def test_cardanos_root_finding(): assert np.isclose(roots[0].imag, 0) assert np.isclose(roots[1].imag, 0) assert np.isclose(roots[2].imag, 0) + + +@pytest.mark.parametrize( + "lat0, lon0, lat1, lon1, expected_distance", + [ + (0, 0, 0, 0, 0), + (45, 45, 45, 45, 0), + (-23.508958, -46.720080, -23.522939, -46.558253, 16591.438), + ], +) # These values were calculated with google earth +def test_haversine(lat0, lon0, lat1, lon1, expected_distance): + distance = haversine(lat0, lon0, lat1, lon1) + assert np.isclose(distance, expected_distance, rtol=1e-2) From a126ef66a7ad6d7f9ad1ca8bdf8082a3bccc62fa Mon Sep 17 00:00:00 2001 From: Lucas Prates <57069366+Lucas-Prates@users.noreply.github.com> Date: Thu, 7 Nov 2024 00:51:40 -0300 Subject: [PATCH 4/6] ENH: add structural to total mass ratio for motor and rocket (#713) * ENH: add structural to total mass ratio for motor and rocket * ENH: adding structural mass ratio as an attribute of Motor * ENH: add structural mass ratio to rocket * ENH: capitalize words on prints * DOC: adding structural mass ratio attribute to docstrings * DOC: fix incorrect documentation names of attributes * Remove erroneous comment Co-authored-by: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> * DOC: modify changelog * ENH: properly testing division by zero when computing the structural mass ratio * MNT: make black --------- Co-authored-by: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> --- CHANGELOG.md | 2 +- rocketpy/motors/hybrid_motor.py | 2 ++ rocketpy/motors/liquid_motor.py | 2 ++ rocketpy/motors/motor.py | 21 +++++++++++++++++++++ rocketpy/motors/solid_motor.py | 2 ++ rocketpy/prints/hybrid_motor_prints.py | 1 + rocketpy/prints/liquid_motor_prints.py | 1 + rocketpy/prints/motor_prints.py | 1 + rocketpy/prints/rocket_prints.py | 1 + rocketpy/prints/solid_motor_prints.py | 1 + rocketpy/rocket/rocket.py | 26 ++++++++++++++++++++++++++ 11 files changed, 59 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f68f10b8c..bc4f552b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,7 @@ Attention: The newest changes should be on top --> ### Added - +- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713) ### Changed diff --git a/rocketpy/motors/hybrid_motor.py b/rocketpy/motors/hybrid_motor.py index 1a1bbb3db..2916486d0 100644 --- a/rocketpy/motors/hybrid_motor.py +++ b/rocketpy/motors/hybrid_motor.py @@ -72,6 +72,8 @@ class HybridMotor(Motor): HybridMotor.propellant_mass : Function Total propellant mass in kg as a function of time, this includes the mass of fluids in each tank and the mass of the solid grains. + HybridMotor.structural_mass_ratio: float + Initial ratio between the dry mass and the total mass. HybridMotor.total_mass_flow_rate : Function Time derivative of propellant total mass in kg/s as a function of time as obtained by the thrust source. diff --git a/rocketpy/motors/liquid_motor.py b/rocketpy/motors/liquid_motor.py index 9ec3d1130..cde0e9d03 100644 --- a/rocketpy/motors/liquid_motor.py +++ b/rocketpy/motors/liquid_motor.py @@ -47,6 +47,8 @@ class LiquidMotor(Motor): LiquidMotor.propellant_mass : Function Total propellant mass in kg as a function of time, includes fuel and oxidizer. + LiquidMotor.structural_mass_ratio: float + Initial ratio between the dry mass and the total mass. LiquidMotor.total_mass_flow_rate : Function Time derivative of propellant total mass in kg/s as a function of time as obtained by the tanks mass flow. diff --git a/rocketpy/motors/motor.py b/rocketpy/motors/motor.py index 5fa154d88..e0e6dfc9a 100644 --- a/rocketpy/motors/motor.py +++ b/rocketpy/motors/motor.py @@ -49,6 +49,8 @@ class Motor(ABC): Motor.propellant_mass : Function Total propellant mass in kg as a function of time, including solid, liquid and gas phases. + Motor.structural_mass_ratio: float + Initial ratio between the dry mass and the total mass. Motor.total_mass_flow_rate : Function Time derivative of propellant total mass in kg/s as a function of time as obtained by the thrust source. @@ -497,6 +499,24 @@ def propellant_initial_mass(self): Propellant initial mass in kg. """ + @property + def structural_mass_ratio(self): + """Calculates the structural mass ratio. The ratio is defined as + the dry mass divided by the initial total mass. + + Returns + ------- + float + Initial structural mass ratio. + """ + initial_total_mass = self.dry_mass + self.propellant_initial_mass + try: + return self.dry_mass / initial_total_mass + except ZeroDivisionError as e: + raise ValueError( + "Total motor mass (dry + propellant) cannot be zero" + ) from e + @funcify_method("Time (s)", "Motor center of mass (m)") def center_of_mass(self): """Position of the center of mass as a function of time. The position @@ -1502,6 +1522,7 @@ def __init__(self): self.nozzle_radius = 0 self.thrust = Function(0, "Time (s)", "Thrust (N)") self.propellant_mass = Function(0, "Time (s)", "Propellant Mass (kg)") + self.propellant_initial_mass = 0 self.total_mass = Function(0, "Time (s)", "Total Mass (kg)") self.total_mass_flow_rate = Function( 0, "Time (s)", "Mass Depletion Rate (kg/s)" diff --git a/rocketpy/motors/solid_motor.py b/rocketpy/motors/solid_motor.py index 81faf453f..f6f09967e 100644 --- a/rocketpy/motors/solid_motor.py +++ b/rocketpy/motors/solid_motor.py @@ -70,6 +70,8 @@ class SolidMotor(Motor): of propellant and dry mass. SolidMotor.propellant_mass : Function Total propellant mass in kg as a function of time. + SolidMotor.structural_mass_ratio: float + Initial ratio between the dry mass and the total mass. SolidMotor.total_mass_flow_rate : Function Time derivative of propellant total mass in kg/s as a function of time as obtained by the thrust source. diff --git a/rocketpy/prints/hybrid_motor_prints.py b/rocketpy/prints/hybrid_motor_prints.py index 4dcd7b113..e69d291f5 100644 --- a/rocketpy/prints/hybrid_motor_prints.py +++ b/rocketpy/prints/hybrid_motor_prints.py @@ -77,6 +77,7 @@ def motor_details(self): print( f"Total Propellant Mass: {self.hybrid_motor.propellant_initial_mass:.3f} kg" ) + print(f"Structural Mass Ratio: {self.hybrid_motor.structural_mass_ratio:.3f}") avg = self.hybrid_motor.exhaust_velocity.average(*self.hybrid_motor.burn_time) print(f"Average Propellant Exhaust Velocity: {avg:.3f} m/s") print(f"Average Thrust: {self.hybrid_motor.average_thrust:.3f} N") diff --git a/rocketpy/prints/liquid_motor_prints.py b/rocketpy/prints/liquid_motor_prints.py index fb493ed0a..4c80326ab 100644 --- a/rocketpy/prints/liquid_motor_prints.py +++ b/rocketpy/prints/liquid_motor_prints.py @@ -47,6 +47,7 @@ def motor_details(self): print( f"Total Propellant Mass: {self.liquid_motor.propellant_initial_mass:.3f} kg" ) + print(f"Structural Mass Ratio: {self.liquid_motor.structural_mass_ratio:.3f}") avg = self.liquid_motor.exhaust_velocity.average(*self.liquid_motor.burn_time) print(f"Average Propellant Exhaust Velocity: {avg:.3f} m/s") print(f"Average Thrust: {self.liquid_motor.average_thrust:.3f} N") diff --git a/rocketpy/prints/motor_prints.py b/rocketpy/prints/motor_prints.py index d9b7fbc98..f5efff8e0 100644 --- a/rocketpy/prints/motor_prints.py +++ b/rocketpy/prints/motor_prints.py @@ -35,6 +35,7 @@ def motor_details(self): print("Motor Details") print("Total Burning Time: " + str(self.motor.burn_out_time) + " s") print(f"Total Propellant Mass: {self.motor.propellant_initial_mass:.3f} kg") + print(f"Structural Mass Ratio: {self.motor.structural_mass_ratio:.3f}") print( "Average Propellant Exhaust Velocity: " f"{self.motor.exhaust_velocity.average(*self.motor.burn_time):.3f} m/s" diff --git a/rocketpy/prints/rocket_prints.py b/rocketpy/prints/rocket_prints.py index c9f5585ac..7b768ea2f 100644 --- a/rocketpy/prints/rocket_prints.py +++ b/rocketpy/prints/rocket_prints.py @@ -36,6 +36,7 @@ def inertia_details(self): print(f"Rocket Mass: {self.rocket.mass:.3f} kg (without motor)") print(f"Rocket Dry Mass: {self.rocket.dry_mass:.3f} kg (with unloaded motor)") print(f"Rocket Loaded Mass: {self.rocket.total_mass(0):.3f} kg") + print(f"Rocket Structural Mass Ratio: {self.rocket.structural_mass_ratio:.3f}") print( f"Rocket Inertia (with unloaded motor) 11: {self.rocket.dry_I_11:.3f} kg*m2" ) diff --git a/rocketpy/prints/solid_motor_prints.py b/rocketpy/prints/solid_motor_prints.py index c37a9b69e..6f4c28d5b 100644 --- a/rocketpy/prints/solid_motor_prints.py +++ b/rocketpy/prints/solid_motor_prints.py @@ -65,6 +65,7 @@ def motor_details(self): print( f"Total Propellant Mass: {self.solid_motor.propellant_initial_mass:.3f} kg" ) + print(f"Structural Mass Ratio: {self.solid_motor.structural_mass_ratio:.3f}") average = self.solid_motor.exhaust_velocity.average(*self.solid_motor.burn_time) print(f"Average Propellant Exhaust Velocity: {average:.3f} m/s") print(f"Average Thrust: {self.solid_motor.average_thrust:.3f} N") diff --git a/rocketpy/rocket/rocket.py b/rocketpy/rocket/rocket.py index 758447fde..ed376f582 100644 --- a/rocketpy/rocket/rocket.py +++ b/rocketpy/rocket/rocket.py @@ -89,6 +89,8 @@ class Rocket: Function of time expressing the total mass of the rocket, defined as the sum of the propellant mass and the rocket mass without propellant. + Rocket.structural_mass_ratio: float + Initial ratio between the dry mass and the total mass. Rocket.total_mass_flow_rate : Function Time derivative of rocket's total mass in kg/s as a function of time as obtained by the thrust source of the added motor. @@ -361,6 +363,7 @@ def __init__( # pylint: disable=too-many-statements # calculate dynamic inertial quantities self.evaluate_dry_mass() + self.evaluate_structural_mass_ratio() self.evaluate_total_mass() self.evaluate_center_of_dry_mass() self.evaluate_center_of_mass() @@ -433,6 +436,28 @@ def evaluate_dry_mass(self): return self.dry_mass + def evaluate_structural_mass_ratio(self): + """Calculates and returns the rocket's structural mass ratio. + It is defined as the ratio between of the dry mass + (Motor + Rocket) and the initial total mass + (Motor + Propellant + Rocket). + + Returns + ------- + self.structural_mass_ratio: float + Initial structural mass ratio dry mass (Rocket + Motor) (kg) + divided by total mass (Rocket + Motor + Propellant) (kg). + """ + try: + self.structural_mass_ratio = self.dry_mass / ( + self.dry_mass + self.motor.propellant_initial_mass + ) + except ZeroDivisionError as e: + raise ValueError( + "Total rocket mass (dry + propellant) cannot be zero" + ) from e + return self.structural_mass_ratio + def evaluate_center_of_mass(self): """Evaluates rocket center of mass position relative to user defined rocket reference system. @@ -951,6 +976,7 @@ def add_motor(self, motor, position): # pylint: disable=too-many-statements self.nozzle_position = self.motor.nozzle_position * _ + self.motor_position self.total_mass_flow_rate = self.motor.total_mass_flow_rate self.evaluate_dry_mass() + self.evaluate_structural_mass_ratio() self.evaluate_total_mass() self.evaluate_center_of_dry_mass() self.evaluate_nozzle_to_cdm() From cfa4051afdb6991a3be456ae3dbb11217e4b5020 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Fri, 1 Nov 2024 22:46:27 -0300 Subject: [PATCH 5/6] DOC: update readme --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 04181badd..cff979fb2 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,18 @@
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/RocketPy-Team/rocketpy/blob/master/docs/notebooks/getting_started_colab.ipynb) -[![PyPI](https://img.shields.io/pypi/v/rocketpy?color=g)](https://pypi.org/project/rocketpy/) [![Documentation Status](https://readthedocs.org/projects/rocketpyalpha/badge/?version=latest)](https://docs.rocketpy.org/en/latest/?badge=latest) +[![PyPI](https://img.shields.io/pypi/v/rocketpy?color=g)](https://pypi.org/project/rocketpy/) +![Conda Version](https://img.shields.io/conda/v/conda-forge/rocketpy?color=g) [![codecov](https://codecov.io/gh/RocketPy-Team/RocketPy/graph/badge.svg?token=Ecc3bsHFeP)](https://codecov.io/gh/RocketPy-Team/RocketPy) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Contributors](https://img.shields.io/github/contributors/RocketPy-Team/rocketpy)](https://github.com/RocketPy-Team/RocketPy/graphs/contributors) -[![Chat on Discord](https://img.shields.io/discord/765037887016140840?logo=discord)](https://discord.gg/b6xYnNh) [![Sponsor RocketPy](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/RocketPy-Team) +[![Chat on Discord](https://img.shields.io/discord/765037887016140840?logo=discord)](https://discord.gg/b6xYnNh) [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=flat&logo=instagram&logoColor=white)](https://www.instagram.com/rocketpyteam) [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=flat&logo=linkedin&logoColor=white)](https://www.linkedin.com/company/rocketpy) [![DOI](https://img.shields.io/badge/DOI-10.1061%2F%28ASCE%29AS.1943--5525.0001331-blue.svg)](http://dx.doi.org/10.1061/%28ASCE%29AS.1943-5525.0001331) -
- # RocketPy RocketPy is the next-generation trajectory simulation solution for High-Power Rocketry. The code is written as a [Python](http://www.python.org) library and allows for a complete 6 degrees of freedom simulation of a rocket's flight trajectory, including high-fidelity variable mass effects as well as descent under parachutes. Weather conditions, such as wind profiles, can be imported from sophisticated datasets, allowing for realistic scenarios. Furthermore, the implementation facilitates complex simulations, such as multi-stage rockets, design and trajectory optimization and dispersion analysis. @@ -80,6 +80,9 @@ Flight data and rocket parameters used in this comparison were kindly provided b | NDRT launch vehicle | Apogee time (s) | 16.77 | 17.10 | **-1.90 %** | | NDRT launch vehicle | Maximum velocity (m/s) | 172.86 | 168.95 | **2.31 %** | +Over years of development and testing, RocketPy has been validated across an expanding range of flight scenarios. +For more information on these validated flights, visit our [Flight Examples](https://docs.rocketpy.org/en/latest/examples/index.html) page in the documentation. + # Documentation Check out documentation details using the links below: @@ -161,7 +164,7 @@ env = Environment( latitude=32.990254, longitude=-106.974998, elevation=1400, -) +) tomorrow = datetime.date.today() + datetime.timedelta(days=1) @@ -352,7 +355,7 @@ You can also become a [sponsor](https://github.com/sponsors/RocketPy-Team) and h If you are actively using RocketPy in one of your projects, reaching out to our core team via [Discord](https://discord.gg/b6xYnNh) and providing feedback can help improve RocketPy a lot! -And if you are interested in going one step further, please read [CONTRIBUTING.md](https://github.com/RocketPy-Team/RocketPy/blob/master/CONTRIBUTING.md) for details on our code of conduct and learn more about how you can contribute to the development of this next-gen trajectory simulation solution for rocketry. +And if you are interested in going one step further, please read the [development documentation](https://docs.rocketpy.org/en/latest/development/index.html) to learn more about how you can contribute to the development of this next-gen trajectory simulation solution for rocketry. ## License From b838d53ce84353a218891a66637b8ca8f5f95909 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> Date: Fri, 8 Nov 2024 13:29:05 -0300 Subject: [PATCH 6/6] DEV: updates workflows to include python 3.13 (#719) * DEV: updates workflows to include python 3.13 * DOC: edit doctest due to floating point precision. --------- Co-authored-by: Pedro Bressan --- .github/workflows/test-pytest-slow.yaml | 10 +++++++++- .github/workflows/test_pytest.yaml | 4 ++-- rocketpy/tools.py | 4 ++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-pytest-slow.yaml b/.github/workflows/test-pytest-slow.yaml index a5fe93ee7..5f6ba8af7 100644 --- a/.github/workflows/test-pytest-slow.yaml +++ b/.github/workflows/test-pytest-slow.yaml @@ -4,6 +4,14 @@ on: schedule: - cron: "0 17 * * 5" # at 05:00 PM, only on Friday timezone: "America/Sao_Paulo" + push: + branches: + - main + paths: + - "**.py" + - ".github/**" + - "pyproject.toml" + - "requirements*" defaults: run: @@ -15,7 +23,7 @@ jobs: strategy: matrix: fail-fast: false - python-version: [3.9, 3.12] + python-version: [3.9, 3.13] env: OS: ${{ matrix.os }} diff --git a/.github/workflows/test_pytest.yaml b/.github/workflows/test_pytest.yaml index fb12086cc..64f5cd82c 100644 --- a/.github/workflows/test_pytest.yaml +++ b/.github/workflows/test_pytest.yaml @@ -18,8 +18,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] - python-version: [3.9, 3.12] + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: [3.9, 3.13] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} diff --git a/rocketpy/tools.py b/rocketpy/tools.py index e4c2514f5..7668ecbc8 100644 --- a/rocketpy/tools.py +++ b/rocketpy/tools.py @@ -123,8 +123,8 @@ def find_roots_cubic_function(a, b, c, d): First we define the coefficients of the function ax**3 + bx**2 + cx + d >>> a, b, c, d = 1, -3, -1, 3 >>> x1, x2, x3 = find_roots_cubic_function(a, b, c, d) - >>> x1, x2, x3 - ((-1+0j), (3+7.401486830834377e-17j), (1-1.4802973661668753e-16j)) + >>> x1 + (-1+0j) To get the real part of the roots, use the real attribute of the complex number.