43#include "input_output/FGXMLElement.h"
60 const string s(
"Fatal Error: Nozzle exit area must be given in nozzle config file.");
80double FGNozzle::Calculate(
double vacThrust)
82 Thrust = max((
double)0.0, vacThrust - in.Pressure*Area);
84 vFn(1) = Thrust * cos(ReverserAngle);
91string FGNozzle::GetThrusterLabels(
int id,
const string& delimeter)
93 std::ostringstream buf;
95 buf << Name <<
" Thrust (engine " <<
id <<
" in lbs)";
102string FGNozzle::GetThrusterValues(
int id,
const string& delimeter)
104 std::ostringstream buf;
130void FGNozzle::Debug(
int from)
132 if (debug_lvl <= 0)
return;
136 cout <<
" Nozzle Name: " << Name << endl;
137 cout <<
" Nozzle Exit Area = " << Area << endl;
140 if (debug_lvl & 2 ) {
141 if (from == 0) cout <<
"Instantiated: FGNozzle" << endl;
142 if (from == 1) cout <<
"Destroyed: FGNozzle" << endl;
144 if (debug_lvl & 4 ) {
146 if (debug_lvl & 8 ) {
148 if (debug_lvl & 16) {
150 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
double FindElementValueAsNumberConvertTo(const std::string &el, const std::string &target_units)
Searches for the named element and converts and returns the data belonging to it.
Encapsulates the JSBSim simulation executive.
FGNozzle(FGFDMExec *exec, Element *el, int num=0)
Constructor.
Base class for specific thrusting devices such as propellers, nozzles, etc.