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

192 lines
6.1 KiB
C++
Raw Normal View History

1999-02-05 21:26:01 +00:00
/*******************************************************************************
1999-02-05 21:26:01 +00:00
Module: FGPosition.cpp
Author: Jon S. Berndt
Date started: 01/05/99
Purpose: Integrate the EOM to determine instantaneous position
Called by: FGFDMExec
1999-02-05 21:26:01 +00:00
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
1999-02-05 21:26:01 +00:00
FUNCTIONAL DESCRIPTION
--------------------------------------------------------------------------------
This class encapsulates the integration of rates and accelerations to get the
current position of the aircraft.
1999-02-05 21:26:01 +00:00
HISTORY
--------------------------------------------------------------------------------
01/05/99 JSB Created
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
1999-02-05 21:26:01 +00:00
********************************************************************************
INCLUDES
*******************************************************************************/
#ifdef FGFS
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
# ifdef FG_HAVE_STD_INCLUDES
# include <cmath>
2000-05-27 05:48:14 +00:00
# include <iomanip>
# else
# include <math.h>
2000-05-27 05:48:14 +00:00
# include <iomanip.h>
# endif
#else
# include <cmath>
2000-05-27 05:48:14 +00:00
# include <iomanip>
#endif
#include "FGPosition.h"
#include "FGAtmosphere.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGFCS.h"
#include "FGAircraft.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGAuxiliary.h"
#include "FGOutput.h"
1999-02-05 21:26:01 +00:00
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
extern float globalTriNormal[3];
extern double globalSceneryAltitude;
extern double globalSeaLevelRadius;
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
FGPosition::FGPosition(FGFDMExec* fdmex) : FGModel(fdmex),
vUVW(3),
2000-07-31 15:05:08 +00:00
vVel(3),
2000-10-02 23:07:30 +00:00
vVelDot(3),
vRunwayNormal(3)
1999-02-05 21:26:01 +00:00
{
Name = "FGPosition";
1999-02-05 21:26:01 +00:00
LongitudeDot = LatitudeDot = RadiusDot = 0.0;
2000-04-24 23:49:06 +00:00
lastLongitudeDot = lastLatitudeDot = lastRadiusDot = 0.0;
2000-04-28 19:59:46 +00:00
Longitude = Latitude = 0.0;
gamma = Vt = Vground = 0.0;
2000-07-06 21:02:46 +00:00
h = 3.0; // Est. height of aircraft cg off runway
2000-05-27 05:48:14 +00:00
SeaLevelRadius = EARTHRAD; // For initialization ONLY
Radius = SeaLevelRadius + h;
RunwayRadius = SeaLevelRadius;
DistanceAGL = Radius - RunwayRadius; // Geocentric
2000-10-02 23:07:30 +00:00
vRunwayNormal(3) = -1.0; // Initialized for standalone mode
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
FGPosition::~FGPosition(void) {}
1999-02-05 21:26:01 +00:00
2000-05-27 05:48:14 +00:00
/*************************************************************************** Run
Purpose: Called on a schedule to perform Positioning algorithms
Notes: [TP] Make sure that -Vt <= hdot <= Vt, which, of course, should always
be the case
[JB] Run in standalone mode, SeaLevelRadius will be EARTHRAD. In FGFS,
SeaLevelRadius is stuffed from FGJSBSim in JSBSim.cxx each pass.
*/
1999-02-05 21:26:01 +00:00
bool FGPosition:: Run(void) {
double cosLat;
double hdot_Vt;
1999-02-05 21:26:01 +00:00
if (!FGModel::Run()) {
GetState();
Vground = sqrt( vVel(eNorth)*vVel(eNorth) + vVel(eEast)*vVel(eEast) );
2000-05-27 05:48:14 +00:00
invMass = 1.0 / Aircraft->GetMass();
Radius = h + SeaLevelRadius;
invRadius = 1.0 / Radius;
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
cosLat = cos(Latitude);
if (cosLat != 0) LongitudeDot = vVel(eEast) / (Radius * cosLat);
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
LatitudeDot = vVel(eNorth) * invRadius;
RadiusDot = -vVel(eDown);
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
Longitude += 0.5*dt*rate*(LongitudeDot + lastLongitudeDot);
Latitude += 0.5*dt*rate*(LatitudeDot + lastLatitudeDot);
Radius += 0.5*dt*rate*(RadiusDot + lastRadiusDot);
1999-02-05 21:26:01 +00:00
2000-05-27 05:48:14 +00:00
h = Radius - SeaLevelRadius; // Geocentric
DistanceAGL = Radius - RunwayRadius; // Geocentric
2000-05-27 05:48:14 +00:00
hoverb = DistanceAGL/b;
2000-05-27 05:48:14 +00:00
if (Vt > 0) {
hdot_Vt = RadiusDot/Vt;
if (fabs(hdot_Vt) <= 1) gamma = asin(hdot_Vt);
} else {
gamma = 0.0;
}
2000-05-27 05:48:14 +00:00
lastLatitudeDot = LatitudeDot;
1999-02-05 21:26:01 +00:00
lastLongitudeDot = LongitudeDot;
2000-05-27 05:48:14 +00:00
lastRadiusDot = RadiusDot;
1999-02-05 21:26:01 +00:00
return false;
2000-04-24 23:49:06 +00:00
1999-02-05 21:26:01 +00:00
} else {
return true;
}
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
void FGPosition::GetState(void) {
dt = State->Getdt();
1999-02-05 21:26:01 +00:00
2000-05-27 05:48:14 +00:00
vUVW = Translation->GetUVW();
Vt = Translation->GetVt();
vVel = State->GetTb2l()*vUVW;
2000-07-31 15:05:08 +00:00
vVelDot = State->GetTb2l() * Translation->GetUVWdot();
2000-05-27 05:48:14 +00:00
b = Aircraft->GetWingSpan();
1999-02-05 21:26:01 +00:00
}
void FGPosition::Seth(double tt) {
h=tt;
Radius = h + SeaLevelRadius;
DistanceAGL = Radius - RunwayRadius; // Geocentric
}
void FGPosition::SetDistanceAGL(double tt) {
DistanceAGL=tt;
Radius = RunwayRadius + DistanceAGL;
h = Radius - SeaLevelRadius;
}