]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGTank.cpp
83d85744ffc62ed83b9029f8f8afe3bdb561df6d
[flightgear.git] / src / FDM / JSBSim / FGTank.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGTank.cpp
4  Author:       Jon Berndt
5  Date started: 01/21/99
6  Called by:    FGAircraft
7
8  ------------- Copyright (C) 1999  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 See header file.
30
31 HISTORY
32 --------------------------------------------------------------------------------
33 01/21/99   JSB   Created
34
35 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 INCLUDES
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
38
39 #include "FGTank.h"
40
41 #if !defined ( sgi ) || defined( __GNUC__ )
42 using std::cerr;
43 using std::endl;
44 using std::cout;
45 #endif
46
47 namespace JSBSim {
48
49 static const char *IdSrc = "$Id$";
50 static const char *IdHdr = ID_TANK;
51
52 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53 CLASS IMPLEMENTATION
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
56 FGTank::FGTank(FGConfigFile* AC_cfg)
57     : Contents(-1.0)
58 {
59   string token;
60   
61   type = AC_cfg->GetValue("TYPE");
62
63   if      (type == "FUEL")     Type = ttFUEL;
64   else if (type == "OXIDIZER") Type = ttOXIDIZER;
65   else                         Type = ttUNKNOWN;
66   
67   AC_cfg->GetNextConfigLine();
68   while ((token = AC_cfg->GetValue()) != string("/AC_TANK")) {
69     if (token == "XLOC") *AC_cfg >> X;
70     else if (token == "YLOC") *AC_cfg >> Y;
71     else if (token == "ZLOC") *AC_cfg >> Z;
72     else if (token == "RADIUS") *AC_cfg >> Radius;
73     else if (token == "CAPACITY") *AC_cfg >> Capacity;
74     else if (token == "CONTENTS") {
75         if (Contents == -1.0) *AC_cfg >> Contents;
76     } else cerr << "Unknown identifier: " << token << " in tank definition." << endl;
77   }
78   
79   Selected = true;
80
81   if (Capacity != 0) {
82     PctFull = 100.0*Contents/Capacity;            // percent full; 0 to 100.0
83   } else {
84     Contents = 0;
85     PctFull  = 0;
86   }     
87
88   Debug(0);
89 }
90
91 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92
93 FGTank::~FGTank()
94 {
95   Debug(1);
96 }
97
98 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
99
100 double FGTank::Reduce(double used)
101 {
102   double shortage = Contents - used;
103
104   if (shortage >= 0) {
105     Contents -= used;
106     PctFull = 100.0*Contents/Capacity;
107   } else {
108     Contents = 0.0;
109     PctFull = 0.0;
110     Selected = false;
111   }
112   return shortage;
113 }
114
115 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
116 //    The bitmasked value choices are as follows:
117 //    unset: In this case (the default) JSBSim would only print
118 //       out the normally expected messages, essentially echoing
119 //       the config files as they are read. If the environment
120 //       variable is not set, debug_lvl is set to 1 internally
121 //    0: This requests JSBSim not to output any messages
122 //       whatsoever.
123 //    1: This value explicity requests the normal JSBSim
124 //       startup messages
125 //    2: This value asks for a message to be printed out when
126 //       a class is instantiated
127 //    4: When this value is set, a message is displayed when a
128 //       FGModel object executes its Run() method
129 //    8: When this value is set, various runtime state variables
130 //       are printed out periodically
131 //    16: When set various parameters are sanity checked and
132 //       a message is printed out when they go out of bounds
133
134 void FGTank::Debug(int from)
135 {
136   if (debug_lvl <= 0) return;
137
138   if (debug_lvl & 1) { // Standard console startup message output
139     if (from == 0) { // Constructor
140       cout << "      " << type << " tank holds " << Capacity << " lbs. " << type << endl;
141       cout << "      currently at " << PctFull << "% of maximum capacity" << endl;
142       cout << "      Tank location (X, Y, Z): " << X << ", " << Y << ", " << Z << endl;
143       cout << "      Effective radius: " << Radius << " inches" << endl;
144     }
145   }
146   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
147     if (from == 0) cout << "Instantiated: FGTank" << endl;
148     if (from == 1) cout << "Destroyed:    FGTank" << endl;
149   }
150   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
151   }
152   if (debug_lvl & 8 ) { // Runtime state variables
153   }
154   if (debug_lvl & 16) { // Sanity checking
155   }
156   if (debug_lvl & 64) {
157     if (from == 0) { // Constructor
158       cout << IdSrc << endl;
159       cout << IdHdr << endl;
160     }
161   }
162 }
163 }