43#include "models/FGModel.h"
44#include "math/FGLocation.h"
45#include "math/FGQuaternion.h"
53class FGInitialCondition;
135 std::deque <FGColumnVector3> dqPQRidot;
136 std::deque <FGColumnVector3> dqUVWidot;
137 std::deque <FGColumnVector3> dqInertialVelocity;
138 std::deque <FGQuaternion> dqQtrndot;
156 eAdamsBashforth3, eAdamsBashforth4, eBuss1, eBuss2, eLocalLinearization, eAdamsBashforth5};
161 bool InitModel(
void);
163 void InitializeDerivatives();
172 bool Run(
bool Holding);
283 double GetUVW(
int idx)
const {
return VState.vUVW(idx); }
296 double GetVel(
int idx)
const {
return vVel(idx); }
309 double GetInertialVelocity(
int i)
const {
return VState.vInertialVelocity(i); }
314 double GetInertialPosition(
int i)
const {
return VState.vInertialPosition(i); }
330 double GetAltitudeASL(
void)
const;
350 double GetPQR(
int axis)
const {
return VState.vPQR(axis);}
363 double GetPQRi(
int axis)
const {
return VState.vPQRi(axis);}
375 double GetEuler(
int axis)
const {
return VState.qAttitudeLocal.GetEuler(axis); }
387 double GetEulerDeg(
int axis)
const {
return VState.qAttitudeLocal.GetEuler(axis) * radtodeg; }
399 double GetCosEuler(
int idx)
const {
return VState.qAttitudeLocal.GetCosEuler(idx); }
411 double GetSinEuler(
int idx)
const {
return VState.qAttitudeLocal.GetSinEuler(idx); }
418 double Gethdot(
void)
const {
return -vVel(eDown); }
426 double GetLocalTerrainRadius(
void)
const;
438 const FGColumnVector3& GetTerrainVelocity(
void)
const {
return LocalTerrainVelocity; }
439 const FGColumnVector3& GetTerrainAngularVelocity(
void)
const {
return LocalTerrainAngularVelocity; }
440 void RecomputeLocalTerrainVelocity();
442 double GetTerrainElevation(
void)
const;
443 double GetDistanceAGL(
void)
const;
444 double GetDistanceAGLKm(
void)
const;
445 double GetRadius(
void)
const {
446 if (VState.vLocation.GetRadius() == 0)
return 1.0;
447 else return VState.vLocation.GetRadius();
449 double GetLongitude(
void)
const {
return VState.vLocation.GetLongitude(); }
450 double GetLatitude(
void)
const {
return VState.vLocation.GetLatitude(); }
452 double GetGeodLatitudeRad(
void)
const {
return VState.vLocation.GetGeodLatitudeRad(); }
453 double GetGeodLatitudeDeg(
void)
const {
return VState.vLocation.GetGeodLatitudeDeg(); }
455 double GetGeodeticAltitude(
void)
const {
return VState.vLocation.GetGeodAltitude(); }
456 double GetGeodeticAltitudeKm(
void)
const {
return VState.vLocation.GetGeodAltitude()*0.0003048; }
458 double GetLongitudeDeg(
void)
const {
return VState.vLocation.GetLongitudeDeg(); }
459 double GetLatitudeDeg(
void)
const {
return VState.vLocation.GetLatitudeDeg(); }
460 const FGLocation& GetLocation(
void)
const {
return VState.vLocation; }
461 double GetLocation(
int i)
const {
return VState.vLocation(i); }
523 const VehicleState& GetVState(
void)
const {
return VState; }
525 void SetVState(
const VehicleState& vstate);
547 void SetPQR(
unsigned int i,
double val) {
548 VState.vPQR(i) = val;
549 VState.vPQRi = VState.vPQR + Ti2b * in.vOmegaPlanet;
552 void SetUVW(
unsigned int i,
double val) {
553 VState.vUVW(i) = val;
554 CalculateInertialVelocity();
559 void SetLongitude(
double lon)
561 VState.vLocation.SetLongitude(lon);
562 UpdateVehicleState();
564 void SetLongitudeDeg(
double lon) { SetLongitude(lon*degtorad); }
565 void SetLatitude(
double lat)
567 VState.vLocation.SetLatitude(lat);
568 UpdateVehicleState();
570 void SetLatitudeDeg(
double lat) { SetLatitude(lat*degtorad); }
571 void SetRadius(
double r)
573 VState.vLocation.SetRadius(r);
574 VState.vInertialPosition = Tec2i * VState.vLocation;
577 void SetAltitudeASL(
double altASL);
578 void SetAltitudeASLmeters(
double altASL) { SetAltitudeASL(altASL/fttom); }
580 void SetTerrainElevation(
double tt);
581 void SetDistanceAGL(
double tt);
582 void SetDistanceAGLKm(
double tt);
584 void SetInitialState(
const FGInitialCondition*);
585 void SetLocation(
const FGLocation& l);
586 void SetLocation(
const FGColumnVector3& lv)
588 FGLocation l = FGLocation(lv);
591 void SetPosition(
const double Lon,
const double Lat,
const double Radius)
593 FGLocation l = FGLocation(Lon, Lat, Radius);
597 void NudgeBodyLocation(
const FGColumnVector3& deltaLoc) {
598 VState.vInertialPosition -= Tb2i*deltaLoc;
599 VState.vLocation -= Tb2ec*deltaLoc;
606 void SetHoldDown(
bool hd);
608 void DumpState(
void);
626 std::shared_ptr<FGInertial> Inertial;
645 double RightAscension;
647 double PerigeeArgument;
649 double ApoapsisRadius;
650 double PeriapsisRadius;
651 double OrbitalPeriod;
662 void CalculateInertialVelocity(
void);
663 void CalculateUVW(
void);
664 void CalculateQuatdot(
void);
668 std::deque <FGColumnVector3>& ValDot,
674 std::deque <FGQuaternion>& ValDot,
678 void UpdateLocationMatrices(
void);
679 void UpdateBodyMatrices(
void);
680 void UpdateVehicleState(
void);
681 void ComputeOrbitalParameters(
void);
683 void WriteStateFile(
int num);
685 void Debug(
int from);
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
Handles matrix math operations.
Base class for all scheduled JSBSim models.
Models the EOM and integration/propagation of state.
double GetNEDVelocityMagnitude(void) const
Retrieves the total local NED velocity in ft/sec.
const FGMatrix33 & GetTi2b(void) const
Retrieves the ECI-to-body transformation matrix.
double GetInertialVelocityMagnitude(void) const
Retrieves the total inertial velocity in ft/sec.
double Gethdot(void) const
Returns the current altitude rate.
const FGQuaternion & GetQuaterniondot(void) const
Retrieves the time derivative of the body orientation quaternion.
const FGColumnVector3 & GetPQR(void) const
Retrieves the body angular rates vector, relative to the ECEF frame.
FGColumnVector3 GetECEFVelocity(void) const
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame.
double GetECEFVelocity(int idx) const
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame ...
const FGMatrix33 & GetTl2ec(void) const
Retrieves the local-to-ECEF transformation matrix.
const FGMatrix33 & GetTi2l(void) const
Retrieves the inertial-to-local transformation matrix.
double GetEarthPositionAngleDeg(void) const
Returns the Earth position angle in degrees.
const FGQuaternion GetQuaternion(void) const
Returns the quaternion that goes from Local to Body.
double GetSinEuler(int idx) const
Retrieves the sine of a vehicle Euler angle component.
const FGMatrix33 & GetTec2i(void) const
Retrieves the ECEF-to-ECI transformation matrix.
const FGMatrix33 & GetTec2l(void) const
Retrieves the ECEF-to-local transformation matrix.
eIntegrateType
These define the indices use to select the various integrators.
const FGMatrix33 & GetTb2i(void) const
Retrieves the body-to-ECI transformation matrix.
const FGColumnVector3 & GetPQRi(void) const
Retrieves the body angular rates vector, relative to the ECI (inertial) frame.
void SetEarthPositionAngle(double EPA)
Sets the Earth position angle.
const FGMatrix33 & GetTb2ec(void) const
Retrieves the body-to-ECEF transformation matrix.
const FGColumnVector3 & GetEuler(void) const
Retrieves the Euler angles that define the vehicle orientation.
const FGColumnVector3 & GetUVW(void) const
Retrieves the body frame vehicle velocity vector.
double GetPQR(int axis) const
Retrieves a body frame angular velocity component relative to the ECEF frame.
const FGQuaternion GetQuaternionECEF(void) const
Returns the quaternion that goes from ECEF to Body.
double GetEulerDeg(int axis) const
Retrieves a vehicle Euler angle component in degrees.
const FGMatrix33 & GetTi2ec(void) const
Retrieves the ECI-to-ECEF transformation matrix.
double GetUVW(int idx) const
Retrieves a body frame velocity component.
double GetVel(int idx) const
Retrieves a Local frame velocity component.
const FGMatrix33 & GetTl2b(void) const
Retrieves the local-to-body transformation matrix.
const FGQuaternion GetQuaternionECI(void) const
Returns the quaternion that goes from ECI to Body.
const FGColumnVector3 & GetInertialVelocity(void) const
Retrieves the inertial velocity vector in ft/sec.
const FGMatrix33 & GetTl2i(void) const
Retrieves the local-to-inertial transformation matrix.
const FGColumnVector3 & GetVel(void) const
Retrieves the velocity vector.
double GetEarthPositionAngle(void) const
Returns the Earth position angle.
double GetCosEuler(int idx) const
Retrieves the cosine of a vehicle Euler angle component.
double GetEuler(int axis) const
Retrieves a vehicle Euler angle component.
double GetPQRi(int axis) const
Retrieves a body frame angular velocity component relative to the ECI (inertial) frame.
double GetAltitudeASLmeters(void) const
Returns the current altitude above sea level.
const FGMatrix33 & GetTec2b(void) const
Retrieves the ECEF-to-body transformation matrix.
const FGMatrix33 & GetTb2l(void) const
Retrieves the body-to-local transformation matrix.
const FGColumnVector3 & GetInertialPosition(void) const
Retrieves the inertial position vector.
Models the Quaternion representation of rotations.
The current vehicle state vector structure contains the translational and angular position,...
FGColumnVector3 vUVW
The velocity vector of the vehicle with respect to the ECEF frame, expressed in the body system.
FGQuaternion qAttitudeECI
The current orientation of the vehicle, that is, the orientation of the body frame relative to the in...
FGColumnVector3 vPQRi
The angular velocity vector for the vehicle body frame relative to the ECI frame, expressed in the bo...
FGColumnVector3 vPQR
The angular velocity vector for the vehicle relative to the ECEF frame, expressed in the body frame.
FGLocation vLocation
Represents the current location of the vehicle in Earth centered Earth fixed (ECEF) frame.
FGQuaternion qAttitudeLocal
The current orientation of the vehicle, that is, the orientation of the body frame relative to the lo...