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"
|
1999-02-11 21:05:34 +00:00
|
|
|
#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"
|
1999-08-17 21:18:11 +00:00
|
|
|
#include "FGDefs.h"
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
#include "FGMatrix.h"
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
static const char *IdSrc = "$Id$";
|
2000-10-14 02:10:10 +00:00
|
|
|
static const char *IdHdr = ID_ATMOSPHERE;
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
extern short debug_lvl;
|
|
|
|
|
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),
|
2001-04-17 21:19:54 +00:00
|
|
|
vWindNED(3)
|
1999-02-05 21:26:01 +00:00
|
|
|
{
|
2001-03-30 01:04:50 +00:00
|
|
|
Name = "FGAtmosphere";
|
|
|
|
h = 0;
|
|
|
|
Calculate(h);
|
|
|
|
SLtemperature = temperature;
|
|
|
|
SLpressure = pressure;
|
|
|
|
SLdensity = density;
|
|
|
|
SLsoundspeed = sqrt(SHRATIO*Reng*temperature);
|
|
|
|
useExternal=false;
|
|
|
|
|
|
|
|
if (debug_lvl & 2) cout << "Instantiated: " << Name << endl;
|
1999-02-05 21:26:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
|
|
|
|
FGAtmosphere::~FGAtmosphere()
|
|
|
|
{
|
2001-03-30 01:04:50 +00:00
|
|
|
if (debug_lvl & 2) cout << "Destroyed: FGAtmosphere" << endl;
|
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
|
|
|
//cout << "In FGAtmosphere::Run(void)" << endl;
|
|
|
|
if (!FGModel::Run()) { // if false then execute this Run()
|
|
|
|
//do temp, pressure, and density first
|
|
|
|
if (!useExternal) {
|
|
|
|
//cout << "Atmosphere: Using internal model, altitude= ";
|
|
|
|
h = Position->Geth();
|
|
|
|
|
|
|
|
Calculate(h);
|
|
|
|
} else {
|
|
|
|
density = exDensity;
|
|
|
|
pressure = exPressure;
|
|
|
|
temperature = exTemperature;
|
2000-04-24 23:49:06 +00:00
|
|
|
}
|
1999-06-21 05:01:31 +00:00
|
|
|
|
2001-04-17 21:19:54 +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-03-30 01:04:50 +00:00
|
|
|
soundspeed = sqrt(SHRATIO*Reng*temperature);
|
|
|
|
//cout << "Atmosphere: soundspeed: " << soundspeed << endl;
|
|
|
|
State->Seta(soundspeed);
|
1999-08-17 21:18:11 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
} else { // skip Run() execution this time
|
|
|
|
}
|
|
|
|
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-03-30 01:04:50 +00:00
|
|
|
void FGAtmosphere::Calculate(float altitude)
|
|
|
|
{
|
|
|
|
//see reference [1]
|
|
|
|
|
|
|
|
float slope,reftemp,refpress,refdens;
|
|
|
|
int i=0;
|
|
|
|
float htab[]={0,36089,82020,154198,173882,259183,295272,344484}; //ft.
|
|
|
|
// cout << "Atmosphere: h=" << altitude << " rho= " << density << endl;
|
|
|
|
if (altitude <= htab[0]) {
|
|
|
|
altitude=0;
|
|
|
|
} else if (altitude >= htab[7]){
|
|
|
|
i = 7;
|
|
|
|
altitude = htab[7];
|
|
|
|
} else {
|
|
|
|
while (htab[i+1] < altitude) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(i) {
|
|
|
|
case 0: // sea level
|
|
|
|
slope = -0.0035662; // R/ft.
|
|
|
|
reftemp = 518.688; // R
|
|
|
|
refpress = 2116.17; // psf
|
|
|
|
refdens = 0.0023765; // slugs/cubic ft.
|
|
|
|
break;
|
|
|
|
case 1: // 36089 ft.
|
|
|
|
slope = 0;
|
|
|
|
reftemp = 389.988;
|
|
|
|
refpress = 474.1;
|
|
|
|
refdens = 0.0007078;
|
|
|
|
break;
|
|
|
|
case 2: // 82020 ft.
|
|
|
|
slope = 0.00164594;
|
|
|
|
reftemp = 389.988;
|
|
|
|
refpress = 52.7838;
|
|
|
|
refdens = 7.8849E-5;
|
|
|
|
break;
|
|
|
|
case 3: // 154198 ft.
|
|
|
|
slope = 0;
|
|
|
|
reftemp = 508.788;
|
|
|
|
refpress = 2.62274;
|
|
|
|
refdens = 3.01379E-6;
|
|
|
|
break;
|
|
|
|
case 4: // 173882 ft.
|
|
|
|
slope = -0.00246891;
|
|
|
|
reftemp = 508.788;
|
|
|
|
refpress = 1.28428;
|
|
|
|
refdens = 1.47035e-06;
|
|
|
|
break;
|
|
|
|
case 5: // 259183 ft.
|
|
|
|
slope = 0;
|
|
|
|
reftemp = 298.188;
|
|
|
|
refpress = 0.0222008;
|
|
|
|
refdens = 4.33396e-08;
|
|
|
|
break;
|
|
|
|
case 6: // 295272 ft.
|
|
|
|
slope = 0.00219459;
|
|
|
|
reftemp = 298.188;
|
|
|
|
refpress = 0.00215742;
|
|
|
|
refdens = 4.21368e-09;
|
|
|
|
break;
|
|
|
|
case 7: // 344484 ft.
|
|
|
|
slope = 0;
|
|
|
|
reftemp = 406.188;
|
|
|
|
refpress = 0.000153755;
|
|
|
|
refdens = 2.20384e-10;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (slope == 0) {
|
|
|
|
temperature = reftemp;
|
|
|
|
pressure = refpress*exp(-GRAVITY/(reftemp*Reng)*(altitude-htab[i]));
|
|
|
|
density = refdens*exp(-GRAVITY/(reftemp*Reng)*(altitude-htab[i]));
|
|
|
|
} else {
|
|
|
|
temperature = reftemp+slope*(altitude-htab[i]);
|
|
|
|
pressure = refpress*pow(temperature/reftemp,-GRAVITY/(slope*Reng));
|
|
|
|
density = refdens*pow(temperature/reftemp,-(GRAVITY/(slope*Reng)+1));
|
|
|
|
}
|
|
|
|
|
|
|
|
//cout << "Atmosphere: h=" << altitude << " rho= " << density << endl;
|
1999-08-17 21:18:11 +00:00
|
|
|
|
1999-06-21 05:01:31 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
void FGAtmosphere::Debug(void)
|
|
|
|
{
|
|
|
|
//TODO: Add your source code here
|
|
|
|
}
|
Updates from the Jon and Tony show.
Tony submitted:
JSBsim:
Added trimming routine, it is longitudinal & in-air only at this point
Added support for taking wind & weather data from external source
Added support for flaps.
Added independently settable pitch trim
Added alphamin and max to config file, stall modeling and warning to
follow
c172.cfg:
Flaps!
Adjusted Cmo, model should be speed stable now
FG:
Hooked up Christian's weather code, should be using it soon.
Hooked up the trimming routine. Note that the X-15 will not trim.
This is not a model or trimming routine deficiency, just the
nature of the X-15
The trimming routine sets the pitch trim and and throttle at startup.
The throttle is set using Norman's code for the autothrottle so the
autothrottle is on by default. --notrim will turn it off.
Added --vc, --mach, and --notrim switches
(vc is airspeed in knots)
uBody, vBody, and wBody are still supported, last one entered
on the command line counts, i.e. you can set vc or mach or u,v,
and w but any combination will be ignored.
2000-05-16 21:35:11 +00:00
|
|
|
|