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

99 lines
3.1 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);
inline float Getrho(void) {return rho;}
float CalcRho(float altitude);
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;}
float GetTemperature(float altitude); //Rankine, altitude in feet
float GetDensity(float altitude); //slugs/ft^3
float GetPressure(float altitude); //lbs/ft^2
float GetSoundSpeed(float altitude); //ft/s
1999-02-05 21:26:01 +00:00
protected:
private:
float rho;
1999-08-17 21:18:11 +00:00
float h;
float temperature;
float pressure;
float density;
float soundspeed;
void Calculate(void);
1999-02-05 21:26:01 +00:00
};
/******************************************************************************/
#endif