182 enum phaseType { tpOff, tpRun, tpSpinUp, tpStart, tpStall, tpSeize, tpTrim };
186 double GetPowerAvailable(
void);
193 double Seek(
double* var,
double target,
double accel,
double decel);
195 phaseType GetPhase(
void) {
return phase; }
197 bool GetOvertemp(
void)
const {
return Overtemp; }
198 bool GetInjection(
void)
const {
return Injection;}
199 bool GetFire(
void)
const {
return Fire; }
200 bool GetAugmentation(
void)
const {
return Augmentation;}
201 bool GetReversed(
void)
const {
return Reversed; }
202 bool GetCutoff(
void)
const {
return Cutoff; }
203 int GetIgnition(
void)
const {
return Ignition;}
205 double GetInlet(
void)
const {
return InletPosition; }
206 double GetNozzle(
void)
const {
return NozzlePosition; }
207 double GetBleedDemand(
void)
const {
return BleedDemand;}
208 double GetN1(
void)
const {
return N1;}
209 double GetN2(
void)
const {
return N2;}
210 double GetEPR(
void)
const {
return EPR;}
211 double GetEGT(
void)
const {
return EGT_degC;}
213 double GetMaxN1(
void)
const {
return MaxN1;}
214 double GetMaxN2(
void)
const {
return MaxN2;}
215 double getOilPressure_psi ()
const {
return OilPressure_psi;}
217 double GetInjectionTimer(
void)
const {
return InjectionTimer;}
218 double GetInjWaterNorm(
void)
const {
return InjWaterNorm;}
219 double GetInjN1increment(
void)
const {
return InjN1increment;}
220 double GetInjN2increment(
void)
const {
return InjN2increment;}
222 void SetInjection(
bool injection) {Injection = injection;}
223 void SetIgnition(
int ignition) {Ignition = ignition;}
224 void SetAugmentation(
bool augmentation) {Augmentation = augmentation;}
225 void SetPhase( phaseType p ) { phase = p; }
226 void SetEPR(
double epr) {EPR = epr;}
227 void SetBleedDemand(
double bleedDemand) {BleedDemand = bleedDemand;}
228 void SetReverse(
bool reversed) { Reversed = reversed; }
229 void SetCutoff(
bool cutoff) { Cutoff = cutoff; }
230 void SetMaxN1(
double maxn1) {MaxN1 = maxn1;}
231 void SetMaxN2(
double maxn2) {MaxN2 = maxn2;}
232 void SetInjectionTimer(
double injtimer) {InjectionTimer = injtimer;}
233 void SetInjWaterNorm(
double injwater) {InjWaterNorm = injwater;}
234 void SetInjN1increment(
double injN1inc) {InjN1increment = injN1inc;}
235 void SetInjN2increment(
double injN2inc) {InjN2increment = injN2inc;}
237 int InitRunning(
void);
240 std::string GetEngineLabels(
const std::string& delimiter);
241 std::string GetEngineValues(
const std::string& delimiter);
249 std::unique_ptr<FGParameter> TSFC;
250 std::unique_ptr<FGParameter> ATSFC;
267 double N1_start_rate;
268 double N2_start_rate;
279 bool disableWindmill;
288 double OilPressure_psi;
291 double InletPosition;
292 double NozzlePosition;
293 double correctedTSFC;
294 double InjectionTimer;
295 double InjectionTime;
297 double InjN1increment;
298 double InjN2increment;
308 std::shared_ptr<FGFunction> IdleThrustLookup;
309 std::shared_ptr<FGFunction> MilThrustLookup;
310 std::shared_ptr<FGFunction> MaxThrustLookup;
311 std::shared_ptr<FGFunction> InjectionLookup;
313 std::shared_ptr<FGParameter> N1SpoolUp;
314 std::shared_ptr<FGParameter> N1SpoolDown;
315 std::shared_ptr<FGParameter> N2SpoolUp;
316 std::shared_ptr<FGParameter> N2SpoolDown;
320 void Debug(
int from);