1
0
Fork 0
flightgear/src/FDM/JSBSim/FGAtmosphere.h

108 lines
3.9 KiB
C
Raw Normal View History

1999-02-05 21:26:01 +00:00
/*******************************************************************************
Header: FGAtmosphere.h
Author: Jon Berndt
1999-08-17 21:18:11 +00:00
Implementation of 1959 Standard Atmosphere added by Tony Peden
1999-02-05 21:26:01 +00:00
Date started: 11/24/98
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
HISTORY
--------------------------------------------------------------------------------
11/24/98 JSB Created
1999-08-17 21:18:11 +00:00
07/23/99 TP Added implementation of 1959 Standard Atmosphere
Moved calculation of Mach number to FGTranslation
1999-02-05 21:26:01 +00:00
********************************************************************************
1999-02-05 21:26:01 +00:00
SENTRY
*******************************************************************************/
1999-08-17 21:18:11 +00:00
#ifndef FGAtmosphere_H
#define FGAtmosphere_H
1999-02-05 21:26:01 +00:00
/*******************************************************************************
INCLUDES
*******************************************************************************/
#include "FGModel.h"
/*******************************************************************************
COMMENTS, REFERENCES, and NOTES
1999-08-17 21:18:11 +00:00
********************************************************************************
[1] Anderson, John D. "Introduction to Flight, Third Edition", McGraw-Hill,
1989, ISBN 0-07-001641-0
1999-10-11 23:09:51 +00:00
*******************************************************************************
1999-02-05 21:26:01 +00:00
CLASS DECLARATION
*******************************************************************************/
1999-08-17 21:18:11 +00:00
1999-05-08 03:19:08 +00:00
using namespace std;
1999-02-05 21:26:01 +00:00
class FGAtmosphere : public FGModel
{
public:
1999-08-17 21:18:11 +00:00
FGAtmosphere(FGFDMExec*);
1999-02-05 21:26:01 +00:00
~FGAtmosphere(void);
bool Run(void);
1999-08-17 21:18:11 +00:00
inline float GetTemperature(void){return temperature;}
inline float GetDensity(void) {return density;} // use only after Run() has been called
inline float GetPressure(void) {return pressure;}
inline float GetSoundSpeed(void) {return soundspeed;}
2000-04-24 23:49:06 +00:00
inline float GetTemperatureSL(void) { return SLtemperature; } //Rankine, altitude in feet
inline float GetDensitySL(void) { return SLdensity; } //slugs/ft^3
inline float GetPressureSL(void) { return SLpressure; } //lbs/ft^2
inline float GetSoundSpeedSL(void) { return SLsoundspeed; } //ft/s
inline float GetPressureRatio(void) { return temperature/SLtemperature; }
inline float GetDensityRatio(void) { return density/SLdensity; }
inline float GetTemperatureRatio(void) { return pressure/SLpressure; }
inline float GetSoundSpeedRatio(void) { return soundspeed/SLsoundspeed; }
inline void UseExternal(void) { useExternal=true; }
inline void UseInternal(void) { useExternal=false; } //this is the default
inline void SetExTemperature(float t) { exTemperature=t; }
inline void SetExDensity(float d) { exDensity=d; }
inline void SetExPressure(float p) { exPressure=p; }
1999-08-17 21:18:11 +00:00
1999-02-05 21:26:01 +00:00
protected:
private:
float rho;
1999-08-17 21:18:11 +00:00
float h;
2000-04-24 23:49:06 +00:00
float SLtemperature,SLdensity,SLpressure,SLsoundspeed;
float temperature,density,pressure,soundspeed;
bool useExternal;
float exTemperature,exDensity,exPressure;
2000-01-11 17:26:43 +00:00
void Calculate(float altitude);
1999-08-17 21:18:11 +00:00
1999-02-05 21:26:01 +00:00
};
/******************************************************************************/
#endif