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

575 lines
18 KiB
C++
Raw Normal View History

/*******************************************************************************
1999-02-05 21:26:01 +00:00
Module: FGAircraft.cpp
Author: Jon S. Berndt
Date started: 12/12/98
1999-02-05 21:26:01 +00:00
Purpose: Encapsulates an aircraft
Called by: FGFDMExec
------------- 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 aircraft reactions and forces. This class is instantiated by the
FGFDMExec class and scheduled as an FDM entry. LoadAircraft() is supplied with a
name of a valid, registered aircraft, and the data file is parsed.
1999-02-05 21:26:01 +00:00
HISTORY
--------------------------------------------------------------------------------
12/12/98 JSB Created
04/03/99 JSB Changed Aero() method to correct body axis force calculation
from wind vector. Fix provided by Tony Peden.
1999-05-08 03:19:08 +00:00
05/03/99 JSB Changed (for the better?) the way configurations are read in.
1999-12-20 20:24:49 +00:00
9/17/99 TP Combined force and moment functions. Added aero reference
point to config file. Added calculations for moments due to
2000-04-24 23:49:06 +00:00
difference in cg and aero reference point
1999-02-05 21:26:01 +00:00
********************************************************************************
COMMENTS, REFERENCES, and NOTES
********************************************************************************
[1] Cooke, Zyda, Pratt, and McGhee, "NPSNET: Flight Simulation Dynamic Modeling
Using Quaternions", Presence, Vol. 1, No. 4, pp. 404-420 Naval Postgraduate
School, January 1994
[2] D. M. Henderson, "Euler Angles, Quaternions, and Transformation Matrices",
JSC 12960, July 1977
[3] Richard E. McFarland, "A Standard Kinematic Model for Flight Simulation at
NASA-Ames", NASA CR-2497, January 1975
[4] Barnes W. McCormick, "Aerodynamics, Aeronautics, and Flight Mechanics",
Wiley & Sons, 1979 ISBN 0-471-03032-5
[5] Bernard Etkin, "Dynamics of Flight, Stability and Control", Wiley & Sons,
1982 ISBN 0-471-08936-2
The aerodynamic coefficients used in this model are:
Longitudinal
CL0 - Reference lift at zero alpha
CD0 - Reference drag at zero alpha
CDM - Drag due to Mach
CLa - Lift curve slope (w.r.t. alpha)
CDa - Drag curve slope (w.r.t. alpha)
CLq - Lift due to pitch rate
CLM - Lift due to Mach
CLadt - Lift due to alpha rate
Cmadt - Pitching Moment due to alpha rate
Cm0 - Reference Pitching moment at zero alpha
Cma - Pitching moment slope (w.r.t. alpha)
Cmq - Pitch damping (pitch moment due to pitch rate)
CmM - Pitch Moment due to Mach
Lateral
Cyb - Side force due to sideslip
Cyr - Side force due to yaw rate
Clb - Dihedral effect (roll moment due to sideslip)
Clp - Roll damping (roll moment due to roll rate)
Clr - Roll moment due to yaw rate
Cnb - Weathercocking stability (yaw moment due to sideslip)
Cnp - Rudder adverse yaw (yaw moment due to roll rate)
Cnr - Yaw damping (yaw moment due to yaw rate)
Control
CLDe - Lift due to elevator
CDDe - Drag due to elevator
CyDr - Side force due to rudder
CyDa - Side force due to aileron
CmDe - Pitch moment due to elevator
ClDa - Roll moment due to aileron
ClDr - Roll moment due to rudder
CnDr - Yaw moment due to rudder
CnDa - Yaw moment due to aileron
********************************************************************************
INCLUDES
*******************************************************************************/
1999-05-08 03:19:08 +00:00
#include <sys/stat.h>
2000-04-24 23:49:06 +00:00
#include <sys/types.h>
#ifdef FGFS
1999-05-08 03:19:08 +00:00
# ifndef __BORLANDC__
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
1999-05-08 03:19:08 +00:00
# endif
# ifdef FG_HAVE_STD_INCLUDES
# include <cmath>
# else
# include <math.h>
# endif
#else
# include <cmath>
#endif
1999-02-05 21:26:01 +00:00
#include "FGAircraft.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGAtmosphere.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGFCS.h"
#include "FGPosition.h"
#include "FGAuxiliary.h"
#include "FGOutput.h"
1999-02-05 21:26:01 +00:00
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
2000-04-24 23:49:06 +00:00
FGAircraft::FGAircraft(FGFDMExec* fdmex) : FGModel(fdmex),
vMoments(3),
vForces(3),
vXYZrp(3),
vbaseXYZcg(3),
vXYZcg(3),
vXYZep(3),
vEuler(3)
1999-02-05 21:26:01 +00:00
{
Name = "FGAircraft";
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
AxisIdx["LIFT"] = 0;
AxisIdx["SIDE"] = 1;
AxisIdx["DRAG"] = 2;
AxisIdx["ROLL"] = 3;
AxisIdx["PITCH"] = 4;
AxisIdx["YAW"] = 5;
2000-04-27 21:57:08 +00:00
2000-04-28 19:59:46 +00:00
numTanks = numEngines = numSelectedFuelTanks = numSelectedOxiTanks = 0;
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
FGAircraft::~FGAircraft(void)
{
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
bool FGAircraft::LoadAircraft(string aircraft_path, string engine_path, string fname)
1999-02-05 21:26:01 +00:00
{
string path;
string filename;
2000-04-24 23:49:06 +00:00
string aircraftCfgFileName;
string token;
AircraftPath = aircraft_path;
EnginePath = engine_path;
aircraftCfgFileName = AircraftPath + "/" + fname + "/" + fname + ".cfg";
FGConfigFile AC_cfg(aircraftCfgFileName);
ReadPrologue(&AC_cfg);
while ((AC_cfg.GetNextConfigLine() != "EOF") &&
(token = AC_cfg.GetValue()) != "/FDM_CONFIG")
{
if (token == "METRICS") {
cout << " Reading Metrics" << endl;
ReadMetrics(&AC_cfg);
} else if (token == "AERODYNAMICS") {
cout << " Reading Aerodynamics" << endl;
ReadAerodynamics(&AC_cfg);
} else if (token == "UNDERCARRIAGE") {
cout << " Reading Landing Gear" << endl;
ReadUndercarriage(&AC_cfg);
} else if (token == "PROPULSION") {
cout << " Reading Propulsion" << endl;
ReadPropulsion(&AC_cfg);
} else if (token == "FLIGHT_CONTROL") {
cout << " Reading Flight Control" << endl;
ReadFlightControls(&AC_cfg);
1999-02-05 21:26:01 +00:00
}
}
2000-04-24 23:49:06 +00:00
return true;
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
bool FGAircraft::Run(void)
{
if (!FGModel::Run()) { // if false then execute this Run()
GetState();
2000-04-24 23:49:06 +00:00
for (int i = 1; i <= 3; i++) vForces(i) = vMoments(i) = 0.0;
1999-02-05 21:26:01 +00:00
MassChange();
2000-04-24 23:49:06 +00:00
FMProp();
FMAero();
FMGear();
FMMass();
1999-02-05 21:26:01 +00:00
} else { // skip Run() execution this time
}
return false;
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
void FGAircraft::MassChange()
1999-02-05 21:26:01 +00:00
{
2000-04-24 23:49:06 +00:00
static FGColumnVector vXYZtank(3);
float Tw;
float IXXt, IYYt, IZZt, IXZt;
1999-10-07 23:08:48 +00:00
int t;
2000-04-24 23:49:06 +00:00
unsigned int axis_ctr;
for (axis_ctr=1; axis_ctr<=3; axis_ctr++) vXYZtank(axis_ctr) = 0.0;
1999-02-05 21:26:01 +00:00
// UPDATE TANK CONTENTS
//
// For each engine, cycle through the tanks and draw an equal amount of
// fuel (or oxidizer) from each active tank. The needed amount of fuel is
// determined by the engine in the FGEngine class. If more fuel is needed
// than is available in the tank, then that amount is considered a shortage,
// and will be drawn from the next tank. If the engine cannot be fed what it
// needs, it will be considered to be starved, and will shut down.
float Oshortage, Fshortage;
1999-02-05 21:26:01 +00:00
for (int e=0; e<numEngines; e++) {
Fshortage = Oshortage = 0.0;
1999-10-07 23:08:48 +00:00
for (t=0; t<numTanks; t++) {
1999-02-05 21:26:01 +00:00
switch(Engine[e]->GetType()) {
case FGEngine::etRocket:
1999-02-05 21:26:01 +00:00
switch(Tank[t]->GetType()) {
case FGTank::ttFUEL:
1999-02-05 21:26:01 +00:00
if (Tank[t]->GetSelected()) {
Fshortage = Tank[t]->Reduce((Engine[e]->CalcFuelNeed()/
1999-12-20 20:24:49 +00:00
numSelectedFuelTanks)*(dt*rate) + Fshortage);
1999-02-05 21:26:01 +00:00
}
break;
case FGTank::ttOXIDIZER:
1999-02-05 21:26:01 +00:00
if (Tank[t]->GetSelected()) {
Oshortage = Tank[t]->Reduce((Engine[e]->CalcOxidizerNeed()/
1999-12-20 20:24:49 +00:00
numSelectedOxiTanks)*(dt*rate) + Oshortage);
1999-02-05 21:26:01 +00:00
}
break;
}
break;
case FGEngine::etPiston:
case FGEngine::etTurboJet:
case FGEngine::etTurboProp:
1999-02-05 21:26:01 +00:00
if (Tank[t]->GetSelected()) {
Fshortage = Tank[t]->Reduce((Engine[e]->CalcFuelNeed()/
1999-12-20 20:24:49 +00:00
numSelectedFuelTanks)*(dt*rate) + Fshortage);
1999-02-05 21:26:01 +00:00
}
break;
}
}
if ((Fshortage <= 0.0) || (Oshortage <= 0.0)) Engine[e]->SetStarved();
1999-02-05 21:26:01 +00:00
else Engine[e]->SetStarved(false);
}
Weight = EmptyWeight;
1999-10-07 23:08:48 +00:00
for (t=0; t<numTanks; t++)
Weight += Tank[t]->GetContents();
Mass = Weight / GRAVITY;
// Calculate new CG here.
2000-04-24 23:49:06 +00:00
Tw = 0;
1999-10-07 23:08:48 +00:00
for (t=0; t<numTanks; t++) {
2000-04-24 23:49:06 +00:00
vXYZtank(eX) += Tank[t]->GetX()*Tank[t]->GetContents();
vXYZtank(eY) += Tank[t]->GetY()*Tank[t]->GetContents();
vXYZtank(eZ) += Tank[t]->GetZ()*Tank[t]->GetContents();
Tw += Tank[t]->GetContents();
}
2000-04-24 23:49:06 +00:00
vXYZcg = (vXYZtank + EmptyWeight*vbaseXYZcg) / (Tw + EmptyWeight);
// Calculate new moments of inertia here
IXXt = IYYt = IZZt = IXZt = 0.0;
1999-10-07 23:08:48 +00:00
for (t=0; t<numTanks; t++) {
2000-04-24 23:49:06 +00:00
IXXt += ((Tank[t]->GetX()-vXYZcg(eX))/12.0)*((Tank[t]->GetX() - vXYZcg(eX))/12.0)*Tank[t]->GetContents()/GRAVITY;
IYYt += ((Tank[t]->GetY()-vXYZcg(eY))/12.0)*((Tank[t]->GetY() - vXYZcg(eY))/12.0)*Tank[t]->GetContents()/GRAVITY;
IZZt += ((Tank[t]->GetZ()-vXYZcg(eZ))/12.0)*((Tank[t]->GetZ() - vXYZcg(eZ))/12.0)*Tank[t]->GetContents()/GRAVITY;
IXZt += ((Tank[t]->GetX()-vXYZcg(eX))/12.0)*((Tank[t]->GetZ() - vXYZcg(eZ))/12.0)*Tank[t]->GetContents()/GRAVITY;
}
Ixx = baseIxx + IXXt;
Iyy = baseIyy + IYYt;
Izz = baseIzz + IZZt;
Ixz = baseIxz + IXZt;
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-12-20 20:24:49 +00:00
void FGAircraft::FMAero(void)
{
2000-04-24 23:49:06 +00:00
static FGColumnVector vFs(3);
static FGColumnVector vDXYZcg(3);
unsigned int axis_ctr,ctr;
for (axis_ctr=1; axis_ctr<=3; axis_ctr++) vFs(axis_ctr) = 0.0;
for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
2000-04-24 23:49:06 +00:00
for (ctr=0; ctr < Coeff[axis_ctr].size(); ctr++) {
vFs(axis_ctr+1) += Coeff[axis_ctr][ctr].TotalValue();
}
}
2000-04-24 23:49:06 +00:00
vForces += State->GetTs2b(alpha, beta)*vFs;
// The d*cg distances below, given in inches, are the distances FROM the c.g.
// TO the reference point. Since the c.g. and ref point are given in inches in
// the structural system (X positive rearwards) and the body coordinate system
// is given with X positive out the nose, the dxcg and dzcg values are
// *rotated* 180 degrees about the Y axis.
2000-04-24 23:49:06 +00:00
vDXYZcg(eX) = -(vXYZrp(eX) - vXYZcg(eX))/12.0; //cg and rp values are in inches
vDXYZcg(eY) = (vXYZrp(eY) - vXYZcg(eY))/12.0;
vDXYZcg(eZ) = -(vXYZrp(eZ) - vXYZcg(eZ))/12.0;
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
vMoments(eL) += vForces(eZ)*vDXYZcg(eY) - vForces(eY)*vDXYZcg(eZ); // rolling moment
vMoments(eM) += vForces(eX)*vDXYZcg(eZ) - vForces(eZ)*vDXYZcg(eX); // pitching moment
vMoments(eN) += vForces(eX)*vDXYZcg(eY) - vForces(eY)*vDXYZcg(eX); // yawing moment
1999-02-05 21:26:01 +00:00
1999-05-08 03:19:08 +00:00
for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
2000-04-24 23:49:06 +00:00
for (ctr = 0; ctr < Coeff[axis_ctr+3].size(); ctr++) {
vMoments(axis_ctr+1) += Coeff[axis_ctr+3][ctr].TotalValue();
1999-05-08 03:19:08 +00:00
}
}
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
1999-12-20 20:24:49 +00:00
void FGAircraft::FMGear(void)
1999-02-05 21:26:01 +00:00
{
if (GearUp) {
1999-12-20 20:24:49 +00:00
// crash routine
1999-02-05 21:26:01 +00:00
} else {
2000-04-24 23:49:06 +00:00
for (unsigned int i=0;i<lGear.size();i++) {
1999-12-20 20:24:49 +00:00
// lGear[i].
}
1999-02-05 21:26:01 +00:00
}
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
1999-12-20 20:24:49 +00:00
void FGAircraft::FMMass(void)
1999-02-05 21:26:01 +00:00
{
2000-04-24 23:49:06 +00:00
vForces(eX) += -GRAVITY*sin(vEuler(eTht)) * Mass;
vForces(eY) += GRAVITY*sin(vEuler(ePhi))*cos(vEuler(eTht)) * Mass;
vForces(eZ) += GRAVITY*cos(vEuler(ePhi))*cos(vEuler(eTht)) * Mass;
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
1999-12-20 20:24:49 +00:00
void FGAircraft::FMProp(void)
1999-02-05 21:26:01 +00:00
{
1999-12-20 20:24:49 +00:00
for (int i=0;i<numEngines;i++) {
2000-04-24 23:49:06 +00:00
vForces(eX) += Engine[i]->CalcThrust();
1999-12-20 20:24:49 +00:00
}
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
void FGAircraft::GetState(void)
{
dt = State->Getdt();
alpha = Translation->Getalpha();
beta = Translation->Getbeta();
2000-04-24 23:49:06 +00:00
vEuler = Rotation->GetEuler();
}
/******************************************************************************/
void FGAircraft::ReadMetrics(FGConfigFile* AC_cfg)
{
string token = "";
string parameter;
AC_cfg->GetNextConfigLine();
while ((token = AC_cfg->GetValue()) != "/METRICS") {
*AC_cfg >> parameter;
if (parameter == "AC_WINGAREA") *AC_cfg >> WingArea;
else if (parameter == "AC_WINGSPAN") *AC_cfg >> WingSpan;
else if (parameter == "AC_CHORD") *AC_cfg >> cbar;
else if (parameter == "AC_IXX") *AC_cfg >> baseIxx;
else if (parameter == "AC_IYY") *AC_cfg >> baseIyy;
else if (parameter == "AC_IZZ") *AC_cfg >> baseIzz;
else if (parameter == "AC_IXZ") *AC_cfg >> baseIxz;
else if (parameter == "AC_EMPTYWT") *AC_cfg >> EmptyWeight;
else if (parameter == "AC_CGLOC") *AC_cfg >> vbaseXYZcg(eX) >> vbaseXYZcg(eY) >> vbaseXYZcg(eZ);
else if (parameter == "AC_EYEPTLOC") *AC_cfg >> vXYZep(eX) >> vXYZep(eY) >> vXYZep(eZ);
else if (parameter == "AC_AERORP") *AC_cfg >> vXYZrp(eX) >> vXYZrp(eY) >> vXYZrp(eZ);
}
}
/******************************************************************************/
void FGAircraft::ReadPropulsion(FGConfigFile* AC_cfg)
{
string token;
string engine_name;
string parameter;
AC_cfg->GetNextConfigLine();
while ((token = AC_cfg->GetValue()) != "/PROPULSION") {
*AC_cfg >> parameter;
if (parameter == "AC_ENGINE") {
*AC_cfg >> engine_name;
Engine[numEngines] = new FGEngine(FDMExec, EnginePath, engine_name, numEngines);
numEngines++;
} else if (parameter == "AC_TANK") {
Tank[numTanks] = new FGTank(AC_cfg);
switch(Tank[numTanks]->GetType()) {
case FGTank::ttFUEL:
numSelectedFuelTanks++;
break;
case FGTank::ttOXIDIZER:
numSelectedOxiTanks++;
break;
}
numTanks++;
}
}
}
/******************************************************************************/
void FGAircraft::ReadFlightControls(FGConfigFile* AC_cfg)
{
string token;
FCS->LoadFCS(AC_cfg);
}
/******************************************************************************/
void FGAircraft::ReadAerodynamics(FGConfigFile* AC_cfg)
{
string token, axis;
AC_cfg->GetNextConfigLine();
Coeff.push_back(*(new CoeffArray()));
Coeff.push_back(*(new CoeffArray()));
Coeff.push_back(*(new CoeffArray()));
Coeff.push_back(*(new CoeffArray()));
Coeff.push_back(*(new CoeffArray()));
Coeff.push_back(*(new CoeffArray()));
while ((token = AC_cfg->GetValue()) != "/AERODYNAMICS") {
if (token == "AXIS") {
axis = AC_cfg->GetValue("NAME");
AC_cfg->GetNextConfigLine();
while ((token = AC_cfg->GetValue()) != "/AXIS") {
Coeff[AxisIdx[axis]].push_back(*(new FGCoefficient(FDMExec, AC_cfg)));
DisplayCoeffFactors(Coeff[AxisIdx[axis]].back().Getmultipliers());
}
AC_cfg->GetNextConfigLine();
}
}
}
/******************************************************************************/
void FGAircraft::ReadUndercarriage(FGConfigFile* AC_cfg)
{
string token;
AC_cfg->GetNextConfigLine();
while ((token = AC_cfg->GetValue()) != "/UNDERCARRIAGE") {
lGear.push_back(new FGLGear(AC_cfg));
}
}
/******************************************************************************/
void FGAircraft::ReadPrologue(FGConfigFile* AC_cfg)
{
string token = AC_cfg->GetValue();
AircraftName = AC_cfg->GetValue("NAME");
cout << "Reading Aircraft Configuration File: " << AircraftName << endl;
CFGVersion = strtod(AC_cfg->GetValue("VERSION").c_str(),NULL);
cout << " Version: " << CFGVersion << endl;
if (CFGVersion < NEEDED_CFG_VERSION) {
cout << endl << "YOU HAVE AN OLD CFG FILE FOR THIS AIRCRAFT."
" RESULTS WILL BE UNPREDICTABLE !!" << endl;
cout << "Current version needed is: " << NEEDED_CFG_VERSION << endl;
cout << " You have version: " << CFGVersion << endl << endl;
exit(-1);
}
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
void FGAircraft::DisplayCoeffFactors(int multipliers)
1999-02-05 21:26:01 +00:00
{
2000-04-24 23:49:06 +00:00
cout << " Non-Dimensionalized by: ";
if (multipliers & FG_QBAR) cout << "qbar ";
if (multipliers & FG_WINGAREA) cout << "S ";
if (multipliers & FG_WINGSPAN) cout << "b ";
if (multipliers & FG_CBAR) cout << "c ";
if (multipliers & FG_ALPHA) cout << "alpha ";
if (multipliers & FG_ALPHADOT) cout << "alphadot ";
if (multipliers & FG_BETA) cout << "beta ";
if (multipliers & FG_BETADOT) cout << "betadot ";
if (multipliers & FG_PITCHRATE) cout << "q ";
if (multipliers & FG_ROLLRATE) cout << "p ";
if (multipliers & FG_YAWRATE) cout << "r ";
if (multipliers & FG_ELEVATOR_CMD) cout << "De cmd ";
if (multipliers & FG_AILERON_CMD) cout << "Da cmd ";
if (multipliers & FG_RUDDER_CMD) cout << "Dr cmd ";
if (multipliers & FG_FLAPS_CMD) cout << "Df cmd ";
if (multipliers & FG_SPOILERS_CMD) cout << "Dsp cmd ";
if (multipliers & FG_SPDBRAKE_CMD) cout << "Dsb cmd ";
if (multipliers & FG_ELEVATOR_POS) cout << "De ";
if (multipliers & FG_AILERON_POS) cout << "Da ";
if (multipliers & FG_RUDDER_POS) cout << "Dr ";
if (multipliers & FG_FLAPS_POS) cout << "Df ";
if (multipliers & FG_SPOILERS_POS) cout << "Dsp ";
if (multipliers & FG_SPDBRAKE_POS) cout << "Dsb ";
if (multipliers & FG_MACH) cout << "Mach ";
if (multipliers & FG_ALTITUDE) cout << "h ";
if (multipliers & FG_BI2VEL) cout << "b /(2*Vt) ";
if (multipliers & FG_CI2VEL) cout << "c /(2*Vt) ";
cout << endl;
1999-02-05 21:26:01 +00:00
}
1999-05-08 03:19:08 +00:00
2000-04-24 23:49:06 +00:00
/******************************************************************************/