48#include "math/FGColumnVector3.h"
57class FGPropertyManager;
216 enum TankType {ttUNKNOWN, ttFUEL, ttOXIDIZER};
217 enum GrainType {gtUNKNOWN, gtCYLINDRICAL, gtENDBURNING, gtFUNCTION};
225 double Drain(
double used);
233 double Calculate(
double dt,
double TempC);
243 const std::string&
GetName(
void)
const {
return Name; }
246 void ResetToIC(
void);
288 double ProcessFuelName(
const std::string& name);
302 double GetIxx(
void)
const {
return Ixx;}
303 double GetIyy(
void)
const {
return Iyy;}
304 double GetIzz(
void)
const {
return Izz;}
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; }
313 double GetStandpipe(
void)
const {
return Standpipe;}
315 int GetPriority(
void)
const {
return Priority;}
316 void SetPriority(
int p) { Priority = p; Selected = p>0 ?
true:
false; }
325 double GetExternalFlow(
void)
const {
return ExternalFlow;}
326 void SetExternalFlow(
double f) { ExternalFlow = f; }
328 FGColumnVector3 GetXYZ(
void)
const;
329 double GetXYZ(
int idx)
const;
331 GrainType GetGrainType(
void)
const {
return grainType;}
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); }
348 FGColumnVector3 vXYZ;
349 FGColumnVector3 vXYZ_drain;
350 FGFunction* function_ixx;
351 FGFunction* function_iyy;
352 FGFunction* function_izz;
353 double Capacity, UnusableVol;
362 double InertiaFactor;
364 double Contents, InitialContents;
366 double Temperature, InitialTemperature;
367 double Standpipe, InitialStandpipe;
370 int Priority, InitialPriority;
372 void CalculateInertias(
void);
373 void bind(FGPropertyManager* PropertyManager);
374 void Debug(
int from);
Encapsulates the JSBSim simulation executive.
const std::string & GetName(void) const
Retrieves the tank name.
double GetTemperature(void) const
Gets the temperature of the fuel.
double GetDensity(void) const
Returns the fuel density.
void SetDensity(double d)
Sets the fuel density.
double GetContents(void) const
Gets the contents of the tank.
double GetUnusable(void) const
Returns the amount of unusable fuel in the tank.
double GetCapacity(void) const
Gets the capacity of the tank.
void SetUnusableVolume(double volume)
Sets the volume of unusable fuel in the tank.
double GetContentsGallons(void) const
Gets the contents of the tank.
double GetCapacityGallons(void) const
Gets the capacity of the tank.
double GetPctFull(void) const
Gets the tank fill level.
double GetUnusableVolume(void) const
Returns the unusable volume of fuel in the tank.
bool GetSelected(void) const
If the tank is set to supply fuel, this function returns true.
int GetType(void) const
Retrieves the type of tank: Fuel or Oxidizer.
double GetTemperature_degC(void) const
Gets the temperature of the fuel.