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

235 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: 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.
2001-03-30 01:04:50 +00:00
1999-02-05 21:26:01 +00:00
HISTORY
--------------------------------------------------------------------------------
01/05/99 JSB Created
2001-03-30 01:04:50 +00:00
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
COMMENTS, REFERENCES, and NOTES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
[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
2001-03-30 01:04:50 +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
#ifdef FGFS
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
# ifdef SG_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
# if defined(sgi) && !defined(__GNUC__)
# include <math.h>
# include <iomanip.h>
# else
# include <cmath>
# include <iomanip>
# endif
#endif
#include "FGPosition.h"
#include "FGAtmosphere.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGFCS.h"
#include "FGAircraft.h"
#include "FGMassBalance.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGAuxiliary.h"
#include "FGOutput.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_POSITION;
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CLASS IMPLEMENTATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-02-05 21:26:01 +00:00
2001-11-20 22:34:24 +00:00
extern double globalTriNormal[3];
extern double globalSceneryAltitude;
extern double globalSeaLevelRadius;
1999-02-05 21:26:01 +00:00
2001-12-07 17:10:17 +00:00
FGPosition::FGPosition(FGFDMExec* fdmex) : FGModel(fdmex)
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;
2001-03-30 01:04:50 +00:00
if (debug_lvl & 2) cout << "Instantiated: " << Name << endl;
1999-02-05 21:26:01 +00:00
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
2001-03-30 01:04:50 +00:00
FGPosition::~FGPosition()
{
if (debug_lvl & 2) cout << "Destroyed: FGPosition" << endl;
}
1999-02-05 21:26:01 +00:00
2001-11-12 16:06:29 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
bool FGPosition::InitModel(void)
{
FGModel::InitModel();
h = 3.0; // Est. height of aircraft cg off runway
SeaLevelRadius = Inertial->RefRadius(); // For initialization ONLY
Radius = SeaLevelRadius + h;
RunwayRadius = SeaLevelRadius;
DistanceAGL = Radius - RunwayRadius; // Geocentric
vRunwayNormal(3) = -1.0; // Initialized for standalone mode
b = 1;
return true;
}
2001-03-30 01:04:50 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/*
2000-05-27 05:48:14 +00:00
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
2001-11-12 16:06:29 +00:00
[JB] Run in standalone mode, SeaLevelRadius will be reference radius.
In FGFS, SeaLevelRadius is stuffed from FGJSBSim in JSBSim.cxx each pass.
2000-05-27 05:48:14 +00:00
*/
1999-02-05 21:26:01 +00:00
2001-11-12 16:06:29 +00:00
bool FGPosition::Run(void) {
double cosLat;
double hdot_Vt;
2001-11-30 17:49:37 +00:00
FGColumnVector3 vMac;
1999-02-05 21:26:01 +00:00
if (!FGModel::Run()) {
GetState();
Vground = sqrt( vVel(eNorth)*vVel(eNorth) + vVel(eEast)*vVel(eEast) );
2001-03-30 01:04:50 +00:00
psigt = atan2(vVel(eEast), vVel(eNorth));
if(psigt < 0.0)
psigt += 2*M_PI;
invMass = 1.0 / MassBalance->GetMass();
2000-05-27 05:48:14 +00:00
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
2001-11-30 17:49:37 +00:00
hoverbcg = DistanceAGL/b;
vMac=State->GetTb2l()*Aircraft->GetXYZrp();
vMac *= inchtoft;
hoverbmac = (DistanceAGL + vMac(3))/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-11-03 23:02:47 +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
Vt = Translation->GetVt();
2001-07-10 15:56:38 +00:00
vVel = State->GetTb2l() * Translation->GetUVW();
2000-07-31 15:05:08 +00:00
vVelDot = State->GetTb2l() * Translation->GetUVWdot();
b = Aircraft->GetWingSpan();
1999-02-05 21:26:01 +00:00
}
2001-03-30 01:04:50 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
void FGPosition::Seth(double tt) {
h = tt;
Radius = h + SeaLevelRadius;
2001-03-30 01:04:50 +00:00
DistanceAGL = Radius - RunwayRadius; // Geocentric
2001-11-30 17:49:37 +00:00
hoverbcg = DistanceAGL/b;
2001-03-30 01:04:50 +00:00
}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
void FGPosition::SetDistanceAGL(double tt) {
DistanceAGL=tt;
Radius = RunwayRadius + DistanceAGL;
h = Radius - SeaLevelRadius;
2001-11-30 17:49:37 +00:00
hoverbcg = DistanceAGL/b;
2001-03-30 01:04:50 +00:00
}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
void FGPosition::Debug(void)
{
//TODO: Add your source code here
}