Flight Prints Class#

class rocketpy.prints.flight_prints._FlightPrints[source]#

Class that holds prints methods for Flight class.

Variables:

_FlightPrints.flight (Flight) – Flight object that will be used for the prints.

__init__(flight)[source]#

Initializes _FlightPrints class

Parameters:

flight (Flight) – Instance of the Flight class.

Return type:

None

initial_conditions()[source]#

Prints all initial conditions data available about the Flight.

Return type:

None

numerical_integration_settings()[source]#

Prints out the Numerical Integration settings available about the flight.

Return type:

None

surface_wind_conditions()[source]#

Prints out the Surface Wind Conditions available about the flight.

Return type:

None

launch_rail_conditions()[source]#

Prints out the Launch Rail Conditions available about the flight.

Return type:

None

out_of_rail_conditions()[source]#

Prints out the Out of Rail Conditions available about the flight.

Return type:

None

burn_out_conditions()[source]#

Prints out the Burn Out Conditions available about the flight.

Return type:

None

apogee_conditions()[source]#

Prints out the Apogee Conditions available about the flight.

Return type:

None

events_registered()[source]#

Prints out the Events Registered available about the flight.

Return type:

None

impact_conditions()[source]#

Prints out the Impact Conditions available about the flight.

Return type:

None

maximum_values()[source]#

Prints out the Maximum Values available about the flight.

Return type:

None

stability_margin()[source]#

Prints out the maximum and minimum stability margin available about the flight.

all()[source]#

Prints out all data available about the Flight.

Return type:

None