]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGRocket.cpp
Sync with latest JSBSim CVS
[flightgear.git] / src / FDM / JSBSim / 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 "FGRocket.h"
42
43 static const char *IdSrc = "$Id$";
44 static const char *IdHdr = ID_ROCKET;
45
46 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47 CLASS IMPLEMENTATION
48 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50 FGRocket::FGRocket(FGFDMExec* exec, FGConfigFile* Eng_cfg) : FGEngine(exec)
51 {
52   string token;
53
54   Name = Eng_cfg->GetValue("NAME");
55   Eng_cfg->GetNextConfigLine();
56
57   while (Eng_cfg->GetValue() != "/FG_ROCKET") {
58     *Eng_cfg >> token;
59     if      (token == "SHR")           *Eng_cfg >> SHR;
60     else if (token == "MAX_PC")        *Eng_cfg >> maxPC;
61     else if (token == "PROP_EFF")      *Eng_cfg >> propEff;
62     else if (token == "MAXTHROTTLE")   *Eng_cfg >> MaxThrottle;
63     else if (token == "MINTHROTTLE")   *Eng_cfg >> MinThrottle;
64     else if (token == "SLFUELFLOWMAX") *Eng_cfg >> SLFuelFlowMax;
65     else if (token == "SLOXIFLOWMAX")  *Eng_cfg >> SLOxiFlowMax;
66     else if (token == "VARIANCE")      *Eng_cfg >> Variance;
67     else cerr << "Unhandled token in Engine config file: " << token << endl;
68   }
69
70   if (debug_lvl > 0) {
71     cout << "      Engine Name: " << Name << endl;
72     cout << "      Specific Heat Ratio = " << SHR << endl;
73     cout << "      Maximum Chamber Pressure = " << maxPC << endl;
74     cout << "      Propulsive Efficiency = " << propEff << endl;
75     cout << "      MaxThrottle = " << MaxThrottle << endl;
76     cout << "      MinThrottle = " << MinThrottle << endl;
77     cout << "      FuelFlowMax = " << SLFuelFlowMax << endl;
78     cout << "      OxiFlowMax = " << SLOxiFlowMax << endl;
79     cout << "      Variance = " << Variance << endl;
80   }
81
82   EngineNumber = 0;
83   Type = etRocket;
84
85   PC = 0.0;
86   kFactor = (2.0*SHR*SHR/(SHR-1.0))*pow(2.0/(SHR+1), (SHR+1)/(SHR-1));
87
88   if (debug_lvl & 2) cout << "Instantiated: FGRocket" << endl;
89 }
90
91 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92
93 FGRocket::~FGRocket()
94 {
95   if (debug_lvl & 2) cout << "Destroyed:    FGRocket" << endl;
96 }
97
98 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
99
100 float FGRocket::Calculate(float pe)
101 {
102   float Cf;
103
104   ConsumeFuel();
105
106   Throttle = FCS->GetThrottlePos(EngineNumber);
107
108   if (Throttle < MinThrottle || Starved) {
109     PctPower = Thrust = 0.0; // desired thrust
110     Flameout = true;
111     PC = 0.0;
112   } else {
113     PctPower = Throttle / MaxThrottle;
114     PC = maxPC*PctPower * (1.0 + Variance * ((float)rand()/(float)RAND_MAX - 0.5));
115     Cf = sqrt(kFactor*(1 - pow(pe/(PC), (SHR-1)/SHR)));
116     Flameout = false;
117   }
118
119   return Cf*maxPC*PctPower*propEff;
120 }
121
122 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
123
124 void FGRocket::Debug(void)
125 {
126     //TODO: Add your source code here
127 }
128