3#include <janus/janus.hpp>
27template <
typename Scalar>
33 return F_vac - P_atm * A_exit;
47template <
typename Scalar>
50 return thrust / (P_chamber * A_throat);
Propulsion utilities for rocket, air-breathing, and electric systems.
Definition AirBreathing.hpp:5
Scalar thrust_coefficient(const Scalar &thrust, const Scalar &P_chamber, double A_throat)
Calculates the thrust coefficient.
Definition AltitudeThrust.hpp:48
Scalar altitude_thrust(const Scalar &F_vac, const Scalar &P_atm, double P_exit, double A_exit)
Calculates thrust adjusted for ambient pressure (altitude).
Definition AltitudeThrust.hpp:28