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

243 lines
7.1 KiB
C++
Raw Normal View History

2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
Module: FGAtmosphere.cpp
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
Purpose: Models the atmosphere
Called by: FGSimExec
------------- 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.
FUNCTIONAL DESCRIPTION
--------------------------------------------------------------------------------
Models the atmosphere. The equation used below was determined by a third order
curve fit using Excel. The data is from the ICAO atmosphere model.
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
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-08-17 21:18:11 +00:00
COMMENTS, REFERENCES, and NOTES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
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-02-05 21:26:01 +00:00
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
INCLUDES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-02-05 21:26:01 +00:00
#include "FGAtmosphere.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGFCS.h"
#include "FGAircraft.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGPosition.h"
#include "FGAuxiliary.h"
#include "FGOutput.h"
#include "FGMatrix33.h"
#include "FGColumnVector3.h"
#include "FGColumnVector4.h"
1999-02-05 21:26:01 +00:00
2001-03-30 01:04:50 +00:00
static const char *IdSrc = "$Id$";
static const char *IdHdr = ID_ATMOSPHERE;
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CLASS IMPLEMENTATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-02-05 21:26:01 +00:00
1999-08-17 21:18:11 +00:00
2000-10-02 23:07:30 +00:00
FGAtmosphere::FGAtmosphere(FGFDMExec* fdmex) : FGModel(fdmex),
vWindNED(3)
1999-02-05 21:26:01 +00:00
{
2001-03-30 01:04:50 +00:00
Name = "FGAtmosphere";
lastIndex=0;
2001-03-30 01:04:50 +00:00
h = 0;
htab[0]=0;
htab[1]=36089.239;
htab[2]=65616.798;
htab[3]=104986.878;
htab[4]=154199.475;
htab[5]=170603.675;
htab[6]=200131.234;
htab[7]=259186.352; //ft.
2001-11-12 16:06:29 +00:00
if (debug_lvl & 2) cout << "Instantiated: " << Name << endl;
}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
FGAtmosphere::~FGAtmosphere()
{
if (debug_lvl & 2) cout << "Destroyed: FGAtmosphere" << endl;
}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
bool FGAtmosphere::InitModel(void)
{
FGModel::InitModel();
2001-03-30 01:04:50 +00:00
Calculate(h);
SLtemperature = temperature;
SLpressure = pressure;
SLdensity = density;
2001-11-12 16:06:29 +00:00
SLsoundspeed = sqrt(SHRatio*Reng*temperature);
rSLtemperature = 1.0/temperature;
rSLpressure = 1.0/pressure;
rSLdensity = 1.0/density;
rSLsoundspeed = 1.0/SLsoundspeed;
2001-03-30 01:04:50 +00:00
useExternal=false;
2001-11-12 16:06:29 +00:00
return true;
1999-02-05 21:26:01 +00:00
}
2001-03-30 01:04:50 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
bool FGAtmosphere::Run(void)
{
2001-03-30 01:04:50 +00:00
if (!FGModel::Run()) { // if false then execute this Run()
//do temp, pressure, and density first
if (!useExternal) {
h = Position->Geth();
Calculate(h);
} else {
density = exDensity;
pressure = exPressure;
temperature = exTemperature;
2000-04-24 23:49:06 +00:00
}
if (vWindNED(1) != 0.0) psiw = atan2( vWindNED(2), vWindNED(1) );
2000-04-28 19:59:46 +00:00
2001-03-30 01:04:50 +00:00
if (psiw < 0) psiw += 2*M_PI;
1999-08-17 21:18:11 +00:00
2001-11-12 16:06:29 +00:00
soundspeed = sqrt(SHRatio*Reng*temperature);
2001-03-30 01:04:50 +00:00
State->Seta(soundspeed);
} else { // skip Run() execution this time
}
2001-11-20 22:34:24 +00:00
2001-03-30 01:04:50 +00:00
return false;
}
1999-08-17 21:18:11 +00:00
2001-03-30 01:04:50 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-08-17 21:18:11 +00:00
2001-11-20 22:34:24 +00:00
void FGAtmosphere::Calculate(double altitude)
2001-03-30 01:04:50 +00:00
{
//see reference [1]
2001-11-20 22:34:24 +00:00
double slope,reftemp,refpress;
int i=0; bool lookup = false;
2001-03-30 01:04:50 +00:00
// cout << "Atmosphere: h=" << altitude << " rho= " << density << endl;
i=lastIndex;
if(altitude < htab[lastIndex]) {
if (altitude <= 0) {
i=0; altitude=0;
} else {
i=lastIndex-1;
while (htab[i] > altitude) { i--; }
}
} else if (altitude > htab[lastIndex+1]){
if (altitude >= htab[7]){
i = 7; altitude = htab[7];
} else {
i=lastIndex+1;
while(htab[i+1] < altitude) { i++; }
}
}
2001-03-30 01:04:50 +00:00
switch(i) {
case 0: // sea level
slope = -0.00356616; // R/ft.
reftemp = 518.67; // R
refpress = 2116.22; // psf
//refdens = 0.00237767; // slugs/cubic ft.
2001-03-30 01:04:50 +00:00
break;
case 1: // 36089 ft.
slope = 0;
reftemp = 389.97;
refpress = 472.452;
//refdens = 0.000706032;
2001-03-30 01:04:50 +00:00
break;
case 2: // 65616 ft.
slope = 0.00054864;
reftemp = 389.97;
refpress = 114.636;
//refdens = 0.000171306;
2001-03-30 01:04:50 +00:00
break;
case 3: // 104986 ft.
slope = 0.00153619;
reftemp = 411.57;
refpress = 8.36364;
//refdens = 1.18422e-05;
2001-03-30 01:04:50 +00:00
break;
case 4: // 154199 ft.
2001-03-30 01:04:50 +00:00
slope = 0;
reftemp = 487.17;
refpress = 0.334882;
//refdens = 4.00585e-7;
break;
case 5: // 170603 ft.
slope = -0.00109728;
reftemp = 487.17;
refpress = 0.683084;
//refdens = 8.17102e-7;
2001-03-30 01:04:50 +00:00
break;
case 6: // 200131 ft.
slope = -0.00219456;
reftemp = 454.17;
refpress = 0.00684986;
//refdens = 8.77702e-9;
2001-03-30 01:04:50 +00:00
break;
case 7: // 259186 ft.
2001-03-30 01:04:50 +00:00
slope = 0;
reftemp = 325.17;
refpress = 0.000122276;
//refdens = 2.19541e-10;
2001-03-30 01:04:50 +00:00
break;
}
2001-03-30 01:04:50 +00:00
if (slope == 0) {
temperature = reftemp;
2001-11-12 16:06:29 +00:00
pressure = refpress*exp(-Inertial->SLgravity()/(reftemp*Reng)*(altitude-htab[i]));
//density = refdens*exp(-Inertial->SLgravity()/(reftemp*Reng)*(altitude-htab[i]));
density = pressure/(Reng*temperature);
2001-03-30 01:04:50 +00:00
} else {
temperature = reftemp+slope*(altitude-htab[i]);
2001-11-12 16:06:29 +00:00
pressure = refpress*pow(temperature/reftemp,-Inertial->SLgravity()/(slope*Reng));
//density = refdens*pow(temperature/reftemp,-(Inertial->SLgravity()/(slope*Reng)+1));
density = pressure/(Reng*temperature);
2001-03-30 01:04:50 +00:00
}
lastIndex=i;
2001-03-30 01:04:50 +00:00
//cout << "Atmosphere: h=" << altitude << " rho= " << density << endl;
}
2001-03-30 01:04:50 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2001-03-30 01:04:50 +00:00
void FGAtmosphere::Debug(void)
{
//TODO: Add your source code here
}