// Minimum engine parameters that must be provided for model at 100% throttle at sea level.
// Note that maximum thrust is needed to calculate specific impulse (Isp) from
// specific fuel consumption (sfc), and is used to set the maximum thrust level of the thrusters
// in Orbiter, but is not otherwise used to calculate thrust. However, the maximum
// thrust calculated by the model should be close to these input values.
// Parameters for SNECMA-M53-P2 Turbofan
const double air_mass_flow_max = 92.0; //maximum air flow rate through engine [kg/s]
const double inlet_diameter = 0.796; //inlet diameter of engine (fan diameter if turbofan) [m]
const double max_thrust = 65.0; //maximum thrust without afterburner [kN]
const double rp_max = 9.8; //compressor pressure ratio at full throttle [-]
const double sfc = 32.4; //specific fuel consumption at full throttle [g/kN s]
const double bpr = 0.36; //turbofan bypass ratio (mass flow through fan / mass flow through core, 0 for pure turbojets)
const double fpr = 2.0; //turbofan pressure ratio (0 for pure turbojets)
const double max_thrust_ab = 95.0; //maximum thrust with afterburner [kN]
const double sfc_ab = 53.0; //specific fuel consumption with afterburner [g/kN s]