We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5152fa commit a097ea0Copy full SHA for a097ea0
rocketpy/simulation/flight.py
@@ -467,6 +467,8 @@ class Flight:
467
Defined as the minimum angle between the attitude vector and
468
the freestream velocity vector. Can be called or accessed as
469
array.
470
+ Flight.simulation_mode : str
471
+ Simulation mode for the flight. Can be "6 DOF" or "3 DOF".
472
"""
473
474
def __init__( # pylint: disable=too-many-arguments,too-many-statements
@@ -487,8 +489,8 @@ def __init__( # pylint: disable=too-many-arguments,too-many-statements
487
489
verbose=False,
488
490
name="Flight",
491
equations_of_motion="standard",
- simulation_mode="6 DOF",
492
ode_solver="LSODA",
493
+ simulation_mode="6 DOF",
494
):
495
"""Run a trajectory simulation.
496
0 commit comments