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
FGTank.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGTank.h
4 Author: Jon S. Berndt
5 Date started: 01/21/99
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
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
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later 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
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26FUNCTIONAL DESCRIPTION
27--------------------------------------------------------------------------------
28
29Based on Flightgear code, which is based on LaRCSim. This class simulates
30a generic Tank.
31
32HISTORY
33--------------------------------------------------------------------------------
3401/21/99 JSB Created
35
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37SENTRY
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#ifndef FGTank_H
41#define FGTank_H
42
43/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
44INCLUDES
45%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
46
47#include "FGJSBBase.h"
48#include "math/FGColumnVector3.h"
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51FORWARD DECLARATIONS
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54namespace JSBSim {
55
56class Element;
57class FGPropertyManager;
58class FGFDMExec;
59class FGFunction;
60
61/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62CLASS DOCUMENTATION
63%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
64
198/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
199CLASS DECLARATION
200%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
201
202class JSBSIM_API FGTank : public FGJSBBase
203{
204public:
212 FGTank(FGFDMExec* exec, Element* el, int tank_number);
214 ~FGTank();
215
216 enum TankType {ttUNKNOWN, ttFUEL, ttOXIDIZER};
217 enum GrainType {gtUNKNOWN, gtCYLINDRICAL, gtENDBURNING, gtFUNCTION};
218
225 double Drain(double used);
226
233 double Calculate(double dt, double TempC);
234
238 int GetType(void) const {return Type;}
239
243 const std::string& GetName(void) const { return Name; }
244
246 void ResetToIC(void);
247
250 bool GetSelected(void) const {return Selected;}
251
254 double GetPctFull(void) const {return PctFull;}
255
258 double GetCapacity(void) const {return Capacity;}
259
262 double GetCapacityGallons(void) const {return Capacity/Density;}
263
266 double GetContents(void) const {return Contents;}
267
270 double GetContentsGallons(void) const {return Contents/Density;}
271
277 double GetTemperature_degC(void) const {return Temperature;}
278
284 double GetTemperature(void) const {return CelsiusToFahrenheit(Temperature);}
285
288 double ProcessFuelName(const std::string& name);
289
292 double GetUnusable(void) const {return UnusableVol*Density;}
293
296 double GetUnusableVolume(void) const {return UnusableVol;}
297
300 void SetUnusableVolume(double volume) {UnusableVol = volume;}
301
302 double GetIxx(void) const {return Ixx;}
303 double GetIyy(void) const {return Iyy;}
304 double GetIzz(void) const {return Izz;}
305
306 inline double GetLocationX(void) const { return vXYZ(eX); }
307 inline double GetLocationY(void) const { return vXYZ(eY); }
308 inline double GetLocationZ(void) const { return vXYZ(eZ); }
309 inline void SetLocationX(double x) { vXYZ(eX) = x; }
310 inline void SetLocationY(double y) { vXYZ(eY) = y; }
311 inline void SetLocationZ(double z) { vXYZ(eZ) = z; }
312
313 double GetStandpipe(void) const {return Standpipe;}
314
315 int GetPriority(void) const {return Priority;}
316 void SetPriority(int p) { Priority = p; Selected = p>0 ? true:false; }
317
320 double GetDensity(void) const {return Density;}
323 void SetDensity(double d) { Density = d; }
324
325 double GetExternalFlow(void) const {return ExternalFlow;}
326 void SetExternalFlow(double f) { ExternalFlow = f; }
327
328 FGColumnVector3 GetXYZ(void) const;
329 double GetXYZ(int idx) const;
330
331 GrainType GetGrainType(void) const {return grainType;}
332
333 double Fill(double amount);
334 void SetContents(double amount);
335 void SetContentsGallons(double gallons);
336 void SetTemperature(double temp) { Temperature = temp; }
337 void SetStandpipe(double amount) { Standpipe = amount; }
338 void SetSelected(bool sel) { sel==true ? SetPriority(1):SetPriority(0); }
339
340private:
341 TankType Type;
342 GrainType grainType;
343 int TankNumber;
344 std::string Name;
345 double ixx_unit;
346 double iyy_unit;
347 double izz_unit;
348 FGColumnVector3 vXYZ;
349 FGColumnVector3 vXYZ_drain;
350 FGFunction* function_ixx;
351 FGFunction* function_iyy;
352 FGFunction* function_izz;
353 double Capacity, UnusableVol;
354 double Radius;
355 double InnerRadius;
356 double Length;
357 double Volume;
358 double Density;
359 double Ixx;
360 double Iyy;
361 double Izz;
362 double InertiaFactor;
363 double PctFull;
364 double Contents, InitialContents;
365 double Area;
366 double Temperature, InitialTemperature;
367 double Standpipe, InitialStandpipe;
368 double ExternalFlow;
369 bool Selected;
370 int Priority, InitialPriority;
371
372 void CalculateInertias(void);
373 void bind(FGPropertyManager* PropertyManager);
374 void Debug(int from);
375};
376}
377//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
378#endif
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
JSBSim Base class.
Definition FGJSBBase.h:117
Models a fuel tank.
Definition FGTank.h:203
const std::string & GetName(void) const
Retrieves the tank name.
Definition FGTank.h:243
double GetTemperature(void) const
Gets the temperature of the fuel.
Definition FGTank.h:284
double GetDensity(void) const
Returns the fuel density.
Definition FGTank.h:320
void SetDensity(double d)
Sets the fuel density.
Definition FGTank.h:323
double GetContents(void) const
Gets the contents of the tank.
Definition FGTank.h:266
double GetUnusable(void) const
Returns the amount of unusable fuel in the tank.
Definition FGTank.h:292
double GetCapacity(void) const
Gets the capacity of the tank.
Definition FGTank.h:258
void SetUnusableVolume(double volume)
Sets the volume of unusable fuel in the tank.
Definition FGTank.h:300
double GetContentsGallons(void) const
Gets the contents of the tank.
Definition FGTank.h:270
double GetCapacityGallons(void) const
Gets the capacity of the tank.
Definition FGTank.h:262
double GetPctFull(void) const
Gets the tank fill level.
Definition FGTank.h:254
double GetUnusableVolume(void) const
Returns the unusable volume of fuel in the tank.
Definition FGTank.h:296
bool GetSelected(void) const
If the tank is set to supply fuel, this function returns true.
Definition FGTank.h:250
int GetType(void) const
Retrieves the type of tank: Fuel or Oxidizer.
Definition FGTank.h:238
double GetTemperature_degC(void) const
Gets the temperature of the fuel.
Definition FGTank.h:277