You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once the Flight object is created, your simulation is done! Use the following code to get a summary of the results:
306
306
307
307
```python
308
-
TestFlight.info()
308
+
test_flight.info()
309
309
```
310
310
311
311
To see all available results, use:
312
312
313
313
```python
314
-
TestFlight.allInfo()
314
+
test_flight.all_info()
315
315
```
316
316
317
317
Here is just a quick taste of what RocketPy is able to calculate. There are hundreds of plots and data points computed by RocketPy to enhance your analyses.
In sequence, the aerodynamic surfaces must be set.
173
173
If a lift curve for the fin set is not specified, it is assumed that they behave according to a linearized model with a coefficient calculated with Barrowman's theory.
174
174
In the example, a nosecone, one fin set and one tail were added, but each case can be designed differently.
``test_flight.info()`` or ``test_flight.all_info()``
255
255
256
-
This function plots a comprehensive amount of flight data and graphs but, if you want to access one specific variable, for example Z position, this may be achieved by `TestFlight.z`.
257
-
If you insert `TestFlight.z()` the graph of the function will be plotted.
256
+
This function plots a comprehensive amount of flight data and graphs but, if you want to access one specific variable, for example Z position, this may be achieved by `test_flight.z`.
257
+
If you insert `test_flight.z()` the graph of the function will be plotted.
258
258
This and other features can be found in the documentation of the `Function` class, which allows data to be treated in an easier way.
259
259
The documentation of each variable used in the class can be found on `Flight.py` file.
0 commit comments