JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGTurbine.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGTurbine.h
4 Author: David Culp
5 Date started: 03/11/2003
6
7 ------------- Copyright (C) 2003 David Culp (daveculp@cox.net)----------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free Software
11 Foundation; either version 2 of the License, or (at your option) any later
12 version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2803/11/2003 DPC Created, based on FGTurbine
2909/22/2003 DPC Added starting, stopping, new framework
3004/29/2004 DPC Renamed from FGSimTurbine to FGTurbine
31
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33SENTRY
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
35
36#ifndef FGTURBINE_H
37#define FGTURBINE_H
38
39/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40INCLUDES
41%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
42
43#include "FGEngine.h"
44
45
46/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47FORWARD DECLARATIONS
48%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50namespace JSBSim {
51
52class FGFunction;
53
54/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55CLASS DOCUMENTATION
56%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
57
169/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
170CLASS DECLARATION
171%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
172
173class FGTurbine : public FGEngine
174{
175public:
180 FGTurbine(FGFDMExec* Executive, Element *el, int engine_number, struct Inputs& input);
181
182 enum phaseType { tpOff, tpRun, tpSpinUp, tpStart, tpStall, tpSeize, tpTrim };
183
184 void Calculate(void);
185 double CalcFuelNeed(void);
186 double GetPowerAvailable(void);
193 double Seek(double* var, double target, double accel, double decel);
194
195 phaseType GetPhase(void) { return phase; }
196
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;}
204
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;}
212
213 double GetMaxN1(void) const {return MaxN1;}
214 double GetMaxN2(void) const {return MaxN2;}
215 double getOilPressure_psi () const {return OilPressure_psi;}
216 double getOilTemp_degF (void) {return KelvinToFahrenheit(OilTemp_degK);}
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;}
221
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;}
236
237 int InitRunning(void);
238 void ResetToIC(void);
239
240 std::string GetEngineLabels(const std::string& delimiter);
241 std::string GetEngineValues(const std::string& delimiter);
242
243private:
244
245 phaseType phase;
246 double MilThrust;
247 double MaxThrust;
248 double BypassRatio;
249 std::unique_ptr<FGParameter> TSFC;
250 std::unique_ptr<FGParameter> ATSFC;
251 double IdleN1;
252 double IdleN2;
253 double IgnitionN1;
254 double IgnitionN2;
255 double N1;
256 double N2;
257 double N2norm;
258 double MaxN1;
259 double MaxN2;
260 double IdleFF;
261 double N1_factor;
262 double N2_factor;
263 double ThrottlePos;
264 double AugmentCmd;
265 double N1_spinup;
266 double N2_spinup;
267 double N1_start_rate;
268 double N2_start_rate;
269 double N1_spindown;
270 double N2_spindown;
271 bool Stalled;
272 bool Seized;
273 bool Overtemp;
274 bool Fire;
275 bool Injection;
276 bool Augmentation;
277 bool Reversed;
278 bool Cutoff;
279 bool disableWindmill;
280 int Injected;
281 int Ignition;
282 int Augmented;
283 int AugMethod;
286 double EGT_degC;
287 double EPR;
288 double OilPressure_psi;
289 double OilTemp_degK;
290 double BleedDemand;
291 double InletPosition;
292 double NozzlePosition;
293 double correctedTSFC;
294 double InjectionTimer;
295 double InjectionTime;
296 double InjWaterNorm;
297 double InjN1increment;
298 double InjN2increment;
299
300 double Off(void);
301 double Run();
302 double SpinUp(void);
303 double Start(void);
304 double Stall(void);
305 double Seize(void);
306 double Trim();
307
308 std::shared_ptr<FGFunction> IdleThrustLookup;
309 std::shared_ptr<FGFunction> MilThrustLookup;
310 std::shared_ptr<FGFunction> MaxThrustLookup;
311 std::shared_ptr<FGFunction> InjectionLookup;
312 FGFDMExec *FDMExec;
313 std::shared_ptr<FGParameter> N1SpoolUp;
314 std::shared_ptr<FGParameter> N1SpoolDown;
315 std::shared_ptr<FGParameter> N2SpoolUp;
316 std::shared_ptr<FGParameter> N2SpoolDown;
317
318 bool Load(FGFDMExec *exec, Element *el);
319 void bindmodel(FGPropertyManager* pm);
320 void Debug(int from);
321
322 friend class FGSpoolUp;
323 friend class FGSimplifiedTSFC;
324};
325
326class FGSpoolUp : public FGParameter
327{
328public:
329 FGSpoolUp(FGTurbine* _turb, double BPR, double factor)
330 : turb(_turb), delay(factor * 90.0 / (BPR + 3.0)) {}
331 std::string GetName(void) const { return std::string(); };
332 double GetValue(void) const {
333 // adjust acceleration for N2 and atmospheric density
334 double n = std::min(1.0, turb->N2norm + 0.1);
335 return delay / (1 + 3 * (1-n)*(1-n)*(1-n) + (1 - turb->in.DensityRatio));
336 }
337private:
338 FGTurbine* turb;
339 double delay;
340};
341
343{
344public:
345 FGSimplifiedTSFC(FGTurbine* _turb, double tsfcVal)
346 : turb(_turb), tsfc(tsfcVal) {}
347
348 std::string GetName(void) const { return std::string(); }
349
350 double GetValue(void) const {
351 // Correction/denormalisation for temp and thrust
352 double T = turb->in.Temperature;
353 double N2norm = turb->N2norm;
354 return tsfc * sqrt(T / 389.7) * (0.84 + (1 - N2norm) * (1 - N2norm));
355 }
356
357private:
358 FGTurbine* turb;
359 double tsfc;
360};
361
362}
363//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
364#endif
Base class for all engines.
Definition FGEngine.h:104
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
static constexpr double KelvinToFahrenheit(double kelvin)
Converts from degrees Kelvin to degrees Fahrenheit.
Definition FGJSBBase.h:185
Represents various types of parameters.
Definition FGParameter.h:61
This class models a turbine engine.
Definition FGTurbine.h:174
double Seek(double *var, double target, double accel, double decel)
A lag filter.
void Calculate(void)
Calculates the thrust of the engine, and other engine functions.
void ResetToIC(void)
Resets the Engine parameters to the initial conditions.
Definition FGTurbine.cpp:88
double CalcFuelNeed(void)
The fuel need is calculated based on power levels and flow rate for that power level.