]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGSimTurbine.cpp
69fca04a9b8a709c079bbbdb307bcbef5f980fff
[flightgear.git] / src / FDM / JSBSim / FGSimTurbine.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGSimTurbine.cpp
4  Author:       David Culp
5  Date started: 03/11/2003
6  Purpose:      This module models a turbine engine.
7
8  ------------- Copyright (C) 2003  David Culp (davidculp2@attbi.com) -----------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU General Public License as published by the Free Software
12  Foundation; either version 2 of the License, or (at your option) any later
13  version.
14
15  This program is distributed in the hope that it will be useful, but WITHOUT
16  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  details.
19
20  You should have received a copy of the GNU General Public License along with
21  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  Place - Suite 330, Boston, MA  02111-1307, USA.
23
24  Further information about the GNU General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29
30 This class descends from the FGEngine class and models a Turbine engine based
31 on parameters given in the engine config file for this class
32
33 HISTORY
34 --------------------------------------------------------------------------------
35 03/11/2003  DPC  Created
36
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #include <vector>
42 #include "FGSimTurbine.h"
43
44 namespace JSBSim {
45
46 static const char *IdSrc = "$Id$";
47 static const char *IdHdr = ID_SIMTURBINE;
48
49 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50 CLASS IMPLEMENTATION
51 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53
54 FGSimTurbine::FGSimTurbine(FGFDMExec* exec, FGConfigFile* cfg) : FGEngine(exec)
55 {
56   SetDefaults();
57   FGEngine::Type=etSimTurbine;
58   Load(cfg);
59   Debug(0);
60 }
61
62 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63
64 FGSimTurbine::~FGSimTurbine()
65 {
66   Debug(1);
67 }
68
69 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70
71 double FGSimTurbine::Calculate(double dummy)
72 {
73   double idlethrust, milthrust, thrust;
74   double TAT = (Auxiliary->GetTotalTemperature() - 491.69) * 0.5555556;
75   dt = State->Getdt() * Propulsion->GetRate();
76
77   // calculate virtual throttle position (actual +/- lag) based on
78   // FCS Throttle value (except when trimming)
79   if (dt > 0.0) {
80     Running = !Starved;
81     ThrottleCmd = FCS->GetThrottleCmd(EngineNumber);
82     if ( ThrottleCmd > throttle ) {
83       throttle += (dt * delay);
84       if (throttle > ThrottleCmd ) throttle = ThrottleCmd;
85       }
86     else {
87       throttle -= (dt * delay * 3.0);
88       if (throttle < ThrottleCmd ) throttle = ThrottleCmd;
89       }
90     }
91   else {
92     Starved = false;
93     throttle = ThrottleCmd = FCS->GetThrottleCmd(EngineNumber);
94     }
95     
96   idlethrust = MaxMilThrust * ThrustTables[0]->TotalValue();
97   milthrust = MaxMilThrust * ThrustTables[1]->TotalValue();
98
99   if (Running) {
100     thrust = milthrust * throttle * throttle;
101     if (thrust < idlethrust) thrust = idlethrust;
102     FuelFlow_pph = thrust * TSFC;
103     thrust = thrust * (1.0 - BleedDemand);
104     IdleFF = pow(MaxMilThrust, 0.2) * 107.0;
105     if (FuelFlow_pph < IdleFF) FuelFlow_pph = IdleFF;
106     N1 = IdleN1 + throttle * N1_factor;
107     N2 = IdleN2 + throttle * N2_factor;
108     EGT_degC = TAT + 363.1 + ThrottleCmd * 357.1;
109     OilPressure_psi = N2 * 0.62;
110     OilTemp_degK += dt * 1.2;
111     if (OilTemp_degK > 366.0) OilTemp_degK = 366.0;
112     EPR = 1.0 + thrust/MaxMilThrust;
113     NozzlePosition = 1.0 - throttle;
114     if (Reversed) thrust = thrust * -0.2;
115     }
116   else {
117     thrust = 0.0;
118     FuelFlow_pph = 0.000001;
119     N1 -= (dt * 3.0);
120     if (N1 < (Translation->Getqbar()/10.0)) N1 = Translation->Getqbar()/10.0;
121     N2 -= (dt * 3.5);
122     if (N2 < (Translation->Getqbar()/15.0)) N2 = Translation->Getqbar()/15.0;
123     EGT_degC -= (dt * 11.7);
124     if (EGT_degC < TAT) EGT_degC = TAT;
125     OilPressure_psi = N2 * 0.62;
126     OilTemp_degK -= (dt * 0.2);
127     if (OilTemp_degK < (TAT + 273.0)) OilTemp_degK = (TAT + 273.0);
128     EPR = 1.0;
129     }
130
131   if (AugMethod == 1) {
132     if (throttle > 0.99) {Augmentation = true;} 
133       else {Augmentation = false;}
134     }
135
136   if ((Augmented == 1) && Augmentation) {
137     thrust = thrust * ThrustTables[2]->TotalValue();
138     FuelFlow_pph = thrust * ATSFC;
139     NozzlePosition = 1.0;
140     }
141
142   if ((Injected == 1) && Injection)
143     thrust = thrust * ThrustTables[3]->TotalValue();  
144   
145   ConsumeFuel();
146   
147   return Thrust = thrust;
148   
149 }
150         
151 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
152
153 double FGSimTurbine::CalcFuelNeed(void)
154 {
155   return FuelFlow_pph /3600 * State->Getdt() * Propulsion->GetRate();
156 }
157
158
159 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
160
161 void FGSimTurbine::SetDefaults(void)
162 {
163   Name = "None_Defined";
164   MaxMilThrust = 10000.0;
165   BypassRatio = 0.0;
166   TSFC = 0.8;
167   ATSFC = 1.7;
168   IdleN1 = 30.0;
169   IdleN2 = 60.0;
170   MaxN1 = 100.0;
171   MaxN2 = 100.0;
172   Augmented = 0;
173   AugMethod = 0;
174   Injected = 0;
175   BleedDemand = 0.0;
176   throttle = 0.0;
177   InletPosition = 1.0;
178   NozzlePosition = 1.0;
179   Augmentation = false;
180   Injection = false;
181   Reversed = false;
182 }
183
184 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
185
186 bool FGSimTurbine::Load(FGConfigFile *Eng_cfg)
187 {
188   int i;
189   string token;
190   Name = Eng_cfg->GetValue("NAME");
191   cout << Name << endl;
192   Eng_cfg->GetNextConfigLine();
193   *Eng_cfg >> token >> MaxMilThrust;
194   *Eng_cfg >> token >> BypassRatio;
195   *Eng_cfg >> token >> TSFC;
196   *Eng_cfg >> token >> ATSFC;
197   *Eng_cfg >> token >> IdleN1;
198   *Eng_cfg >> token >> IdleN2;
199   *Eng_cfg >> token >> MaxN1;
200   *Eng_cfg >> token >> MaxN2;
201   *Eng_cfg >> token >> Augmented;
202   *Eng_cfg >> token >> AugMethod;
203   *Eng_cfg >> token >> Injected;
204   i=0;
205   while( Eng_cfg->GetValue() != string("/FG_SIMTURBINE") && i < 10){
206     ThrustTables.push_back( new FGCoefficient(FDMExec) );
207     ThrustTables.back()->Load(Eng_cfg);
208     i++;
209   }
210   
211   // pre-calculations and initializations
212   delay= 1.0 / (BypassRatio + 3.0);
213   N1_factor = MaxN1 - IdleN1;
214   N2_factor = MaxN2 - IdleN2;
215   OilTemp_degK = (Auxiliary->GetTotalTemperature() - 491.69) * 0.5555556 + 273.0;
216   IdleFF = pow(MaxMilThrust, 0.2) * 107.0;  // just an estimate
217   AddFeedTank(EngineNumber);   // engine[n] feeds from tank[n]
218   return true;
219 }
220
221
222 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223 //    The bitmasked value choices are as follows:
224 //    unset: In this case (the default) JSBSim would only print
225 //       out the normally expected messages, essentially echoing
226 //       the config files as they are read. If the environment
227 //       variable is not set, debug_lvl is set to 1 internally
228 //    0: This requests JSBSim not to output any messages
229 //       whatsoever.
230 //    1: This value explicity requests the normal JSBSim
231 //       startup messages
232 //    2: This value asks for a message to be printed out when
233 //       a class is instantiated
234 //    4: When this value is set, a message is displayed when a
235 //       FGModel object executes its Run() method
236 //    8: When this value is set, various runtime state variables
237 //       are printed out periodically
238 //    16: When set various parameters are sanity checked and
239 //       a message is printed out when they go out of bounds
240
241 void FGSimTurbine::Debug(int from)
242 {
243   if (debug_lvl <= 0) return;
244
245   if (debug_lvl & 1) { // Standard console startup message output
246     if (from == 0) { // Constructor
247
248     }
249   }
250   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
251     if (from == 0) cout << "Instantiated: FGSimTurbine" << endl;
252     if (from == 1) cout << "Destroyed:    FGSimTurbine" << endl;
253   }
254   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
255   }
256   if (debug_lvl & 8 ) { // Runtime state variables
257   }
258   if (debug_lvl & 16) { // Sanity checking
259   }
260   if (debug_lvl & 64) {
261     if (from == 0) { // Constructor
262       cout << IdSrc << endl;
263       cout << IdHdr << endl;
264     }
265   }
266 }
267 }