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
|
2002-04-30 13:42:26 +00:00
|
|
|
Later updated to '76 model
|
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"
|
2001-10-05 20:19:59 +00:00
|
|
|
#include "FGMatrix33.h"
|
|
|
|
#include "FGColumnVector3.h"
|
|
|
|
#include "FGColumnVector4.h"
|
2002-03-20 12:45:02 +00:00
|
|
|
#include "FGPropertyManager.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;
|
|
|
|
|
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
|
|
|
|
2001-12-07 17:10:17 +00:00
|
|
|
FGAtmosphere::FGAtmosphere(FGFDMExec* fdmex) : FGModel(fdmex)
|
1999-02-05 21:26:01 +00:00
|
|
|
{
|
2001-03-30 01:04:50 +00:00
|
|
|
Name = "FGAtmosphere";
|
2002-04-06 16:03:16 +00:00
|
|
|
lastIndex = 0;
|
|
|
|
h = 0.0;
|
|
|
|
psiw = 0.0;
|
2001-10-05 20:19:59 +00:00
|
|
|
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-24 22:13:04 +00:00
|
|
|
MagnitudedAccelDt = MagnitudeAccel = Magnitude = 0.0;
|
2001-11-27 03:32:24 +00:00
|
|
|
turbType = ttNone;
|
|
|
|
// turbType = ttBerndt; // temporarily disable turbulence until fully tested
|
2001-11-24 22:13:04 +00:00
|
|
|
TurbGain = 100.0;
|
2002-03-20 12:45:02 +00:00
|
|
|
|
|
|
|
bind();
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(0);
|
2001-11-12 16:06:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
FGAtmosphere::~FGAtmosphere()
|
|
|
|
{
|
2002-03-20 12:45:02 +00:00
|
|
|
unbind();
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(1);
|
2001-11-12 16:06:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGAtmosphere::InitModel(void)
|
|
|
|
{
|
|
|
|
FGModel::InitModel();
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
Calculate(h);
|
2002-06-08 03:15:05 +00:00
|
|
|
SLtemperature = intTemperature;
|
|
|
|
SLpressure = intPressure;
|
|
|
|
SLdensity = intDensity;
|
|
|
|
SLsoundspeed = sqrt(SHRatio*Reng*intTemperature);
|
|
|
|
rSLtemperature = 1.0/intTemperature;
|
|
|
|
rSLpressure = 1.0/intPressure;
|
|
|
|
rSLdensity = 1.0/intDensity;
|
2001-10-05 20:19:59 +00:00
|
|
|
rSLsoundspeed = 1.0/SLsoundspeed;
|
2002-06-08 03:15:05 +00:00
|
|
|
temperature=&intTemperature;
|
|
|
|
pressure=&intPressure;
|
|
|
|
density=&intDensity;
|
|
|
|
|
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);
|
2002-06-08 03:15:05 +00:00
|
|
|
}
|
1999-06-21 05:01:31 +00:00
|
|
|
|
2001-11-24 22:13:04 +00:00
|
|
|
if (turbType != ttNone) {
|
|
|
|
Turbulence();
|
|
|
|
vWindNED += vTurbulence;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2002-06-08 03:15:05 +00:00
|
|
|
soundspeed = sqrt(SHRatio*Reng*(*temperature));
|
2001-10-05 20:19:59 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
State->Seta(soundspeed);
|
2001-11-24 22:13:04 +00:00
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(2);
|
2001-11-24 22:13:04 +00:00
|
|
|
|
2002-08-05 20:13:34 +00:00
|
|
|
return false;
|
2001-03-30 01:04:50 +00:00
|
|
|
} else { // skip Run() execution this time
|
2002-08-05 20:13:34 +00:00
|
|
|
return true;
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-17 21:18:11 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-11-24 22:13:04 +00:00
|
|
|
//
|
|
|
|
// See reference 1
|
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
|
|
|
{
|
2001-11-24 22:13:04 +00:00
|
|
|
double slope, reftemp, refpress;
|
|
|
|
int i = 0;
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2001-11-24 22:13:04 +00:00
|
|
|
i = lastIndex;
|
|
|
|
if (altitude < htab[lastIndex]) {
|
2001-10-05 20:19:59 +00:00
|
|
|
if (altitude <= 0) {
|
2001-11-24 22:13:04 +00:00
|
|
|
i = 0;
|
|
|
|
altitude=0;
|
2001-10-05 20:19:59 +00:00
|
|
|
} else {
|
2001-11-24 22:13:04 +00:00
|
|
|
i = lastIndex-1;
|
|
|
|
while (htab[i] > altitude) i--;
|
2001-10-05 20:19:59 +00:00
|
|
|
}
|
2002-04-16 13:15:29 +00:00
|
|
|
} else if (altitude > htab[lastIndex+1]) {
|
|
|
|
if (altitude >= htab[7]) {
|
2001-11-24 22:13:04 +00:00
|
|
|
i = 7;
|
|
|
|
altitude = htab[7];
|
2001-10-05 20:19:59 +00:00
|
|
|
} else {
|
2001-11-24 22:13:04 +00:00
|
|
|
i = lastIndex+1;
|
2002-04-16 13:15:29 +00:00
|
|
|
while (htab[i+1] < altitude) i++;
|
2001-10-05 20:19:59 +00:00
|
|
|
}
|
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
switch(i) {
|
|
|
|
case 1: // 36089 ft.
|
|
|
|
slope = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
reftemp = 389.97;
|
|
|
|
refpress = 472.452;
|
|
|
|
//refdens = 0.000706032;
|
2001-03-30 01:04:50 +00:00
|
|
|
break;
|
2001-10-05 20:19:59 +00:00
|
|
|
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;
|
2001-10-05 20:19:59 +00:00
|
|
|
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;
|
2001-10-05 20:19:59 +00:00
|
|
|
case 4: // 154199 ft.
|
2001-03-30 01:04:50 +00:00
|
|
|
slope = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
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;
|
2001-10-05 20:19:59 +00:00
|
|
|
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;
|
2001-10-05 20:19:59 +00:00
|
|
|
case 7: // 259186 ft.
|
2001-03-30 01:04:50 +00:00
|
|
|
slope = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
reftemp = 325.17;
|
|
|
|
refpress = 0.000122276;
|
|
|
|
//refdens = 2.19541e-10;
|
2001-03-30 01:04:50 +00:00
|
|
|
break;
|
2001-12-03 22:24:40 +00:00
|
|
|
case 0:
|
|
|
|
default: // sea level
|
|
|
|
slope = -0.00356616; // R/ft.
|
|
|
|
reftemp = 518.67; // R
|
|
|
|
refpress = 2116.22; // psf
|
|
|
|
//refdens = 0.00237767; // slugs/cubic ft.
|
|
|
|
break;
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
2001-10-05 20:19:59 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (slope == 0) {
|
2002-06-08 03:15:05 +00:00
|
|
|
intTemperature = reftemp;
|
|
|
|
intPressure = refpress*exp(-Inertial->SLgravity()/(reftemp*Reng)*(altitude-htab[i]));
|
|
|
|
//intDensity = refdens*exp(-Inertial->SLgravity()/(reftemp*Reng)*(altitude-htab[i]));
|
|
|
|
intDensity = intPressure/(Reng*intTemperature);
|
2001-03-30 01:04:50 +00:00
|
|
|
} else {
|
2002-06-08 03:15:05 +00:00
|
|
|
intTemperature = reftemp+slope*(altitude-htab[i]);
|
|
|
|
intPressure = refpress*pow(intTemperature/reftemp,-Inertial->SLgravity()/(slope*Reng));
|
|
|
|
//intDensity = refdens*pow(intTemperature/reftemp,-(Inertial->SLgravity()/(slope*Reng)+1));
|
|
|
|
intDensity = intPressure/(Reng*intTemperature);
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
2001-10-05 20:19:59 +00:00
|
|
|
lastIndex=i;
|
2002-06-08 03:15:05 +00:00
|
|
|
//cout << "Atmosphere: h=" << altitude << " rho= " << intDensity << endl;
|
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-11-24 22:13:04 +00:00
|
|
|
void FGAtmosphere::Turbulence(void)
|
|
|
|
{
|
|
|
|
switch (turbType) {
|
|
|
|
case ttBerndt:
|
|
|
|
vDirectiondAccelDt(eX) = 1 - 2.0*(((double)(rand()))/RAND_MAX);
|
|
|
|
vDirectiondAccelDt(eY) = 1 - 2.0*(((double)(rand()))/RAND_MAX);
|
|
|
|
vDirectiondAccelDt(eZ) = 1 - 2.0*(((double)(rand()))/RAND_MAX);
|
|
|
|
|
|
|
|
MagnitudedAccelDt = 1 - 2.0*(((double)(rand()))/RAND_MAX);
|
|
|
|
MagnitudeAccel += MagnitudedAccelDt*rate*State->Getdt();
|
|
|
|
Magnitude += MagnitudeAccel*rate*State->Getdt();
|
|
|
|
|
|
|
|
vDirectiondAccelDt.Normalize();
|
|
|
|
vDirectionAccel += vDirectiondAccelDt*rate*State->Getdt();
|
|
|
|
vDirectionAccel.Normalize();
|
|
|
|
vDirection += vDirectionAccel*rate*State->Getdt();
|
|
|
|
vDirection.Normalize();
|
|
|
|
|
|
|
|
vTurbulence = TurbGain*Magnitude * vDirection;
|
|
|
|
vTurbulenceGrad = TurbGain*MagnitudeAccel * vDirection;
|
|
|
|
|
|
|
|
vBodyTurbGrad = State->GetTl2b()*vTurbulenceGrad;
|
|
|
|
vTurbPQR(eP) = vBodyTurbGrad(eY)/Aircraft->GetWingSpan();
|
|
|
|
if (Aircraft->GetHTailArm() != 0.0)
|
|
|
|
vTurbPQR(eQ) = vBodyTurbGrad(eZ)/Aircraft->GetHTailArm();
|
|
|
|
else
|
|
|
|
vTurbPQR(eQ) = vBodyTurbGrad(eZ)/10.0;
|
|
|
|
|
|
|
|
if (Aircraft->GetVTailArm())
|
|
|
|
vTurbPQR(eR) = vBodyTurbGrad(eX)/Aircraft->GetVTailArm();
|
|
|
|
else
|
|
|
|
vTurbPQR(eR) = vBodyTurbGrad(eX)/10.0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-08 03:15:05 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGAtmosphere::UseExternal(void) {
|
|
|
|
temperature=&exTemperature;
|
|
|
|
pressure=&exPressure;
|
|
|
|
density=&exDensity;
|
|
|
|
useExternal=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGAtmosphere::UseInternal(void) {
|
|
|
|
temperature=&intTemperature;
|
|
|
|
pressure=&intPressure;
|
|
|
|
density=&intDensity;
|
|
|
|
useExternal=false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-23 00:29:21 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGAtmosphere::bind(void)
|
|
|
|
{
|
2002-04-30 13:42:26 +00:00
|
|
|
typedef double (FGAtmosphere::*PMF)(int) const;
|
2002-03-23 00:29:21 +00:00
|
|
|
PropertyManager->Tie("atmosphere/T-R", this,
|
|
|
|
&FGAtmosphere::GetTemperature);
|
|
|
|
PropertyManager->Tie("atmosphere/rho-slugs_ft3", this,
|
|
|
|
&FGAtmosphere::GetDensity);
|
|
|
|
PropertyManager->Tie("atmosphere/P-psf", this,
|
|
|
|
&FGAtmosphere::GetPressure);
|
|
|
|
PropertyManager->Tie("atmosphere/a-fps", this,
|
|
|
|
&FGAtmosphere::GetSoundSpeed);
|
|
|
|
PropertyManager->Tie("atmosphere/T-sl-R", this,
|
|
|
|
&FGAtmosphere::GetTemperatureSL);
|
|
|
|
PropertyManager->Tie("atmosphere/rho-sl-slugs_ft3", this,
|
|
|
|
&FGAtmosphere::GetDensitySL);
|
|
|
|
PropertyManager->Tie("atmosphere/P-sl-psf", this,
|
|
|
|
&FGAtmosphere::GetPressureSL);
|
|
|
|
PropertyManager->Tie("atmosphere/a-sl-fps", this,
|
|
|
|
&FGAtmosphere::GetSoundSpeedSL);
|
|
|
|
PropertyManager->Tie("atmosphere/theta-norm", this,
|
|
|
|
&FGAtmosphere::GetTemperatureRatio);
|
|
|
|
PropertyManager->Tie("atmosphere/sigma-norm", this,
|
|
|
|
&FGAtmosphere::GetDensityRatio);
|
|
|
|
PropertyManager->Tie("atmosphere/delta-norm", this,
|
|
|
|
&FGAtmosphere::GetPressureRatio);
|
|
|
|
PropertyManager->Tie("atmosphere/a-norm", this,
|
|
|
|
&FGAtmosphere::GetSoundSpeedRatio);
|
|
|
|
PropertyManager->Tie("atmosphere/psiw-rad", this,
|
|
|
|
&FGAtmosphere::GetWindPsi);
|
|
|
|
PropertyManager->Tie("atmosphere/p-turb-rad_sec", this,1,
|
2002-04-30 13:42:26 +00:00
|
|
|
(PMF)&FGAtmosphere::GetTurbPQR);
|
2002-03-23 00:29:21 +00:00
|
|
|
PropertyManager->Tie("atmosphere/q-turb-rad_sec", this,2,
|
2002-04-30 13:42:26 +00:00
|
|
|
(PMF)&FGAtmosphere::GetTurbPQR);
|
2002-03-23 00:29:21 +00:00
|
|
|
PropertyManager->Tie("atmosphere/r-turb-rad_sec", this,3,
|
2002-04-30 13:42:26 +00:00
|
|
|
(PMF)&FGAtmosphere::GetTurbPQR);
|
2002-03-23 00:29:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGAtmosphere::unbind(void)
|
|
|
|
{
|
|
|
|
PropertyManager->Untie("atmosphere/T-R");
|
|
|
|
PropertyManager->Untie("atmosphere/rho-slugs_ft3");
|
|
|
|
PropertyManager->Untie("atmosphere/P-psf");
|
|
|
|
PropertyManager->Untie("atmosphere/a-fps");
|
|
|
|
PropertyManager->Untie("atmosphere/T-sl-R");
|
|
|
|
PropertyManager->Untie("atmosphere/rho-sl-slugs_ft3");
|
|
|
|
PropertyManager->Untie("atmosphere/P-sl-psf");
|
|
|
|
PropertyManager->Untie("atmosphere/a-sl-fps");
|
|
|
|
PropertyManager->Untie("atmosphere/theta-norm");
|
|
|
|
PropertyManager->Untie("atmosphere/sigma-norm");
|
|
|
|
PropertyManager->Untie("atmosphere/delta-norm");
|
|
|
|
PropertyManager->Untie("atmosphere/a-norm");
|
|
|
|
PropertyManager->Untie("atmosphere/psiw-rad");
|
|
|
|
PropertyManager->Untie("atmosphere/p-turb-rad_sec");
|
|
|
|
PropertyManager->Untie("atmosphere/q-turb-rad_sec");
|
|
|
|
PropertyManager->Untie("atmosphere/r-turb-rad_sec");
|
|
|
|
}
|
|
|
|
|
2001-11-24 22:13:04 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-12-13 04:48:34 +00:00
|
|
|
// The bitmasked value choices are as follows:
|
|
|
|
// unset: In this case (the default) JSBSim would only print
|
|
|
|
// out the normally expected messages, essentially echoing
|
|
|
|
// the config files as they are read. If the environment
|
|
|
|
// variable is not set, debug_lvl is set to 1 internally
|
|
|
|
// 0: This requests JSBSim not to output any messages
|
|
|
|
// whatsoever.
|
|
|
|
// 1: This value explicity requests the normal JSBSim
|
|
|
|
// startup messages
|
|
|
|
// 2: This value asks for a message to be printed out when
|
|
|
|
// a class is instantiated
|
|
|
|
// 4: When this value is set, a message is displayed when a
|
|
|
|
// FGModel object executes its Run() method
|
|
|
|
// 8: When this value is set, various runtime state variables
|
|
|
|
// are printed out periodically
|
|
|
|
// 16: When set various parameters are sanity checked and
|
|
|
|
// a message is printed out when they go out of bounds
|
|
|
|
|
|
|
|
void FGAtmosphere::Debug(int from)
|
2001-03-30 01:04:50 +00:00
|
|
|
{
|
2001-12-13 04:48:34 +00:00
|
|
|
if (debug_lvl <= 0) return;
|
|
|
|
|
|
|
|
if (debug_lvl & 1) { // Standard console startup message output
|
|
|
|
if (from == 0) { // Constructor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug_lvl & 2 ) { // Instantiation/Destruction notification
|
|
|
|
if (from == 0) cout << "Instantiated: FGAtmosphere" << endl;
|
|
|
|
if (from == 1) cout << "Destroyed: FGAtmosphere" << endl;
|
|
|
|
}
|
|
|
|
if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
|
|
|
|
}
|
|
|
|
if (debug_lvl & 8 ) { // Runtime state variables
|
|
|
|
}
|
|
|
|
if (debug_lvl & 16) { // Sanity checking
|
|
|
|
}
|
|
|
|
if (debug_lvl & 32) { // Turbulence
|
|
|
|
if (frame == 0 && from == 2) {
|
|
|
|
cout << "vTurbulence(X), vTurbulence(Y), vTurbulence(Z), "
|
|
|
|
<< "vTurbulenceGrad(X), vTurbulenceGrad(Y), vTurbulenceGrad(Z), "
|
|
|
|
<< "vDirection(X), vDirection(Y), vDirection(Z), "
|
|
|
|
<< "Magnitude, "
|
|
|
|
<< "vTurbPQR(P), vTurbPQR(Q), vTurbPQR(R), " << endl;
|
|
|
|
} else if (from == 2) {
|
|
|
|
cout << vTurbulence << ", " << vTurbulenceGrad << ", " << vDirection << ", " << Magnitude << ", " << vTurbPQR << endl;
|
|
|
|
}
|
2001-11-24 22:13:04 +00:00
|
|
|
}
|
2001-12-24 13:54:55 +00:00
|
|
|
if (debug_lvl & 64) {
|
|
|
|
if (from == 0) { // Constructor
|
|
|
|
cout << IdSrc << endl;
|
|
|
|
cout << IdHdr << endl;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|