]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/propulsion/FGRocket.cpp
sync. with JSBSim v. 2.0
[flightgear.git] / src / FDM / JSBSim / models / propulsion / FGRocket.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGRocket.cpp
4  Author:       Jon S. Berndt
5  Date started: 09/12/2000
6  Purpose:      This module models a rocket engine
7
8  ------------- Copyright (C) 2000  Jon S. Berndt (jsb@hal-pc.org) --------------
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 rocket engine based on
31 parameters given in the engine config file for this class
32
33 HISTORY
34 --------------------------------------------------------------------------------
35 09/12/2000  JSB  Created
36
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #include <sstream>
42
43 #include "FGRocket.h"
44
45 namespace JSBSim {
46
47 static const char *IdSrc = "$Id$";
48 static const char *IdHdr = ID_ROCKET;
49
50 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS IMPLEMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54 FGRocket::FGRocket(FGFDMExec* exec, Element *el, int engine_number)
55   : FGEngine(exec, el, engine_number)
56 {
57   if (el->FindElement("shr"))
58     SHR = el->FindElementValueAsNumber("shr");
59   if (el->FindElement("max_pc"))
60     maxPC = el->FindElementValueAsNumberConvertTo("max_pc", "PSF");
61   if (el->FindElement("prop_eff"))
62     propEff = el->FindElementValueAsNumber("prop_eff");
63   if (el->FindElement("maxthrottle"))
64     MaxThrottle = el->FindElementValueAsNumber("maxthrottle");
65   if (el->FindElement("minthrottle"))
66     MinThrottle = el->FindElementValueAsNumber("minthrottle");
67   if (el->FindElement("slfuelflowmax"))
68     SLFuelFlowMax = el->FindElementValueAsNumberConvertTo("slfuelflowmax", "LBS/SEC");
69   if (el->FindElement("sloxiflowmax"))
70     SLOxiFlowMax = el->FindElementValueAsNumberConvertTo("sloxiflowmax", "LBS/SEC");
71   if (el->FindElement("variance"))
72     Variance = el->FindElementValueAsNumber("variance");
73
74   Debug(0);
75
76   Type = etRocket;
77   Flameout = false;
78
79   PC = 0.0;
80   kFactor = (2.0*SHR*SHR/(SHR-1.0))*pow(2.0/(SHR+1), (SHR+1)/(SHR-1));
81 }
82
83 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84
85 FGRocket::~FGRocket(void)
86 {
87   Debug(1);
88 }
89
90 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
91
92 double FGRocket::Calculate(void)
93 {
94   double Cf=0;
95
96   if (!Flameout && !Starved) ConsumeFuel();
97
98   Throttle = FCS->GetThrottlePos(EngineNumber);
99
100   if (Throttle < MinThrottle || Starved) {
101     PctPower = Thrust = 0.0; // desired thrust
102     Flameout = true;
103     PC = 0.0;
104   } else {
105     PctPower = Throttle / MaxThrottle;
106     //todo: remove Variance?
107     PC = maxPC*PctPower * (1.0 + Variance * ((double)rand()/(double)RAND_MAX - 0.5));
108     // The Cf (below) is CF from Eqn. 3-30, "Rocket Propulsion Elements", Fifth Edition,
109     // George P. Sutton. Note that the thruster function GetPowerRequired() might
110     // be better called GetResistance() or something; this function returns the
111     // nozzle exit pressure.
112     Cf = sqrt(kFactor*(1 - pow(Thruster->GetPowerRequired()/(PC), (SHR-1)/SHR)));
113     Flameout = false;
114   }
115
116   return Thruster->Calculate(Cf*maxPC*PctPower*propEff);
117 }
118
119 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
120
121 string FGRocket::GetEngineLabels(string delimeter)
122 {
123   std::ostringstream buf;
124
125   buf << Name << "_ChamberPress[" << EngineNumber << "]" << delimeter
126       << Thruster->GetThrusterLabels(EngineNumber, delimeter);
127
128   return buf.str();
129 }
130
131 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
132
133 string FGRocket::GetEngineValues(string delimeter)
134 {
135   std::ostringstream buf;
136
137   buf << PC << delimeter << Thruster->GetThrusterValues(EngineNumber, delimeter);
138
139   return buf.str();
140 }
141
142 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143 //    The bitmasked value choices are as follows:
144 //    unset: In this case (the default) JSBSim would only print
145 //       out the normally expected messages, essentially echoing
146 //       the config files as they are read. If the environment
147 //       variable is not set, debug_lvl is set to 1 internally
148 //    0: This requests JSBSim not to output any messages
149 //       whatsoever.
150 //    1: This value explicity requests the normal JSBSim
151 //       startup messages
152 //    2: This value asks for a message to be printed out when
153 //       a class is instantiated
154 //    4: When this value is set, a message is displayed when a
155 //       FGModel object executes its Run() method
156 //    8: When this value is set, various runtime state variables
157 //       are printed out periodically
158 //    16: When set various parameters are sanity checked and
159 //       a message is printed out when they go out of bounds
160
161 void FGRocket::Debug(int from)
162 {
163   if (debug_lvl <= 0) return;
164
165   if (debug_lvl & 1) { // Standard console startup message output
166     if (from == 0) { // Constructor
167       cout << "      Engine Name: " << Name << endl;
168       cout << "      Specific Heat Ratio = " << SHR << endl;
169       cout << "      Maximum Chamber Pressure = " << maxPC << endl;
170       cout << "      Propulsive Efficiency = " << propEff << endl;
171       cout << "      MaxThrottle = " << MaxThrottle << endl;
172       cout << "      MinThrottle = " << MinThrottle << endl;
173       cout << "      FuelFlowMax = " << SLFuelFlowMax << endl;
174       cout << "      OxiFlowMax = " << SLOxiFlowMax << endl;
175       cout << "      Variance = " << Variance << endl;
176     }
177   }
178   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
179     if (from == 0) cout << "Instantiated: FGRocket" << endl;
180     if (from == 1) cout << "Destroyed:    FGRocket" << endl;
181   }
182   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
183   }
184   if (debug_lvl & 8 ) { // Runtime state variables
185   }
186   if (debug_lvl & 16) { // Sanity checking
187   }
188   if (debug_lvl & 64) {
189     if (from == 0) { // Constructor
190       cout << IdSrc << endl;
191       cout << IdHdr << endl;
192     }
193   }
194 }
195 }