46#include "FGElectric.h"
47#include "FGPropeller.h"
48#include "input_output/FGXMLElement.h"
70 string base_property_name = CreateIndexedPropertyName(
"propulsion/engine",
90 if (Thruster->GetType() == FGThruster::ttPropeller) {
91 ((
FGPropeller*)Thruster)->SetAdvance(in.PropAdvance[EngineNumber]);
92 ((
FGPropeller*)Thruster)->SetFeather(in.PropFeather[EngineNumber]);
95 RPM = Thruster->GetRPM() * Thruster->GetGearRatio();
97 HP = PowerWatts * in.ThrottlePos[EngineNumber] / hptowatts;
101 double power = HP * hptoftlbssec;
102 if (RPM <= 0.1) power = max(power, 0.0);
103 Thruster->Calculate(power);
110double FGElectric::CalcFuelNeed(
void)
117string FGElectric::GetEngineLabels(
const string& delimiter)
119 std::ostringstream buf;
121 buf << Name <<
" HP (engine " << EngineNumber <<
")" << delimiter
122 << Thruster->GetThrusterLabels(EngineNumber, delimiter);
129string FGElectric::GetEngineValues(
const string& delimiter)
131 std::ostringstream buf;
133 buf << HP << delimiter
134 << Thruster->GetThrusterValues(EngineNumber, delimiter);
159void FGElectric::Debug(
int from)
161 if (debug_lvl <= 0)
return;
166 cout <<
"\n Engine Name: " << Name << endl;
167 cout <<
" Power Watts: " << PowerWatts << endl;
171 if (debug_lvl & 2 ) {
172 if (from == 0) cout <<
"Instantiated: FGElectric" << endl;
173 if (from == 1) cout <<
"Destroyed: FGElectric" << endl;
175 if (debug_lvl & 4 ) {
177 if (debug_lvl & 8 ) {
179 if (debug_lvl & 16) {
181 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.
void Calculate(void)
Calculates the thrust of the engine, and other engine functions.
FGElectric(FGFDMExec *exec, Element *el, int engine_number, FGEngine::Inputs &input)
Constructor.
Base class for all engines.
Encapsulates the JSBSim simulation executive.
std::shared_ptr< FGPropertyManager > GetPropertyManager(void) const
Returns a pointer to the property manager object.
FGPropeller models a propeller given the tabular data for Ct (thrust) and Cp (power),...