![]() |
JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
|
Models the EOM and integration/propagation of state.
The Equations of Motion (EOM) for JSBSim are integrated to propagate the state of the vehicle given the forces and moments that act on it. The integration accounts for a rotating Earth.
Integration of rotational and translation position and rate can be customized as needed or frozen by the selection of no integrator. The selection of which integrator to use is done through the setting of the associated property. There are four properties which can be set:
Each of the integrators listed above can be set to one of the following values:
Definition at line 95 of file FGPropagate.h.
#include <FGPropagate.h>
Classes | |
struct | Inputs |
struct | VehicleState |
The current vehicle state vector structure contains the translational and angular position, and the translational and angular velocity. More... | |
Public Types | |
enum | eIntegrateType { eNone = 0 , eRectEuler , eTrapezoidal , eAdamsBashforth2 , eAdamsBashforth3 , eAdamsBashforth4 , eBuss1 , eBuss2 , eLocalLinearization , eAdamsBashforth5 } |
These define the indices use to select the various integrators. More... | |
![]() | |
enum | { eL = 1 , eM , eN } |
Moments L, M, N. More... | |
enum | { eP = 1 , eQ , eR } |
Rates P, Q, R. More... | |
enum | { eU = 1 , eV , eW } |
Velocities U, V, W. More... | |
enum | { eX = 1 , eY , eZ } |
Positions X, Y, Z. More... | |
enum | { ePhi = 1 , eTht , ePsi } |
Euler angles Phi, Theta, Psi. More... | |
enum | { eDrag = 1 , eSide , eLift } |
Stability axis forces, Drag, Side force, Lift. More... | |
enum | { eRoll = 1 , ePitch , eYaw } |
Local frame orientation Roll, Pitch, Yaw. More... | |
enum | { eNorth = 1 , eEast , eDown } |
Local frame position North, East, Down. More... | |
enum | { eLat = 1 , eLong , eRad } |
Locations Radius, Latitude, Longitude. More... | |
enum | { inNone = 0 , inDegrees , inRadians , inMeters , inFeet } |
Conversion specifiers. More... | |
Public Member Functions | |
FGPropagate (FGFDMExec *Executive) | |
Constructor. | |
~FGPropagate () | |
Destructor. | |
void | DumpState (void) |
double | GetAltitudeASL (void) const |
Returns the current altitude above sea level. | |
double | GetAltitudeASLmeters (void) const |
Returns the current altitude above sea level. | |
double | GetCosEuler (int idx) const |
Retrieves the cosine of a vehicle Euler angle component. | |
double | GetDistanceAGL (void) const |
double | GetDistanceAGLKm (void) const |
double | GetEarthPositionAngle (void) const |
Returns the Earth position angle. | |
double | GetEarthPositionAngleDeg (void) const |
Returns the Earth position angle in degrees. | |
double | GetECEFVelocity (int idx) const |
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame for a particular axis. | |
FGColumnVector3 | GetECEFVelocity (void) const |
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame. | |
double | GetEuler (int axis) const |
Retrieves a vehicle Euler angle component. | |
const FGColumnVector3 & | GetEuler (void) const |
Retrieves the Euler angles that define the vehicle orientation. | |
double | GetEulerDeg (int axis) const |
Retrieves a vehicle Euler angle component in degrees. | |
FGColumnVector3 | GetEulerDeg (void) const |
Retrieves the Euler angles (in degrees) that define the vehicle orientation. | |
double | GetGeodeticAltitude (void) const |
double | GetGeodeticAltitudeKm (void) const |
double | GetGeodLatitudeDeg (void) const |
double | GetGeodLatitudeRad (void) const |
double | Gethdot (void) const |
Returns the current altitude rate. | |
double | GetInertialPosition (int i) const |
const FGColumnVector3 & | GetInertialPosition (void) const |
Retrieves the inertial position vector. | |
double | GetInertialVelocity (int i) const |
const FGColumnVector3 & | GetInertialVelocity (void) const |
Retrieves the inertial velocity vector in ft/sec. | |
double | GetInertialVelocityMagnitude (void) const |
Retrieves the total inertial velocity in ft/sec. | |
double | GetLatitude (void) const |
double | GetLatitudeDeg (void) const |
double | GetLocalTerrainRadius (void) const |
Returns the "constant" LocalTerrainRadius. | |
double | GetLocation (int i) const |
const FGLocation & | GetLocation (void) const |
double | GetLongitude (void) const |
double | GetLongitudeDeg (void) const |
double | GetNEDVelocityMagnitude (void) const |
Retrieves the total local NED velocity in ft/sec. | |
double | GetPQR (int axis) const |
Retrieves a body frame angular velocity component relative to the ECEF frame. | |
const FGColumnVector3 & | GetPQR (void) const |
Retrieves the body angular rates vector, relative to the ECEF frame. | |
double | GetPQRi (int axis) const |
Retrieves a body frame angular velocity component relative to the ECI (inertial) frame. | |
const FGColumnVector3 & | GetPQRi (void) const |
Retrieves the body angular rates vector, relative to the ECI (inertial) frame. | |
const FGQuaternion | GetQuaternion (void) const |
Returns the quaternion that goes from Local to Body. | |
const FGQuaternion & | GetQuaterniondot (void) const |
Retrieves the time derivative of the body orientation quaternion. | |
const FGQuaternion | GetQuaternionECEF (void) const |
Returns the quaternion that goes from ECEF to Body. | |
const FGQuaternion | GetQuaternionECI (void) const |
Returns the quaternion that goes from ECI to Body. | |
double | GetRadius (void) const |
double | GetSinEuler (int idx) const |
Retrieves the sine of a vehicle Euler angle component. | |
const FGMatrix33 & | GetTb2ec (void) const |
Retrieves the body-to-ECEF transformation matrix. | |
const FGMatrix33 & | GetTb2i (void) const |
Retrieves the body-to-ECI transformation matrix. | |
const FGMatrix33 & | GetTb2l (void) const |
Retrieves the body-to-local transformation matrix. | |
const FGMatrix33 & | GetTec2b (void) const |
Retrieves the ECEF-to-body transformation matrix. | |
const FGMatrix33 & | GetTec2i (void) const |
Retrieves the ECEF-to-ECI transformation matrix. | |
const FGMatrix33 & | GetTec2l (void) const |
Retrieves the ECEF-to-local transformation matrix. | |
const FGColumnVector3 & | GetTerrainAngularVelocity (void) const |
double | GetTerrainElevation (void) const |
const FGColumnVector3 & | GetTerrainVelocity (void) const |
const FGMatrix33 & | GetTi2b (void) const |
Retrieves the ECI-to-body transformation matrix. | |
const FGMatrix33 & | GetTi2ec (void) const |
Retrieves the ECI-to-ECEF transformation matrix. | |
const FGMatrix33 & | GetTi2l (void) const |
Retrieves the inertial-to-local transformation matrix. | |
const FGMatrix33 & | GetTl2b (void) const |
Retrieves the local-to-body transformation matrix. | |
const FGMatrix33 & | GetTl2ec (void) const |
Retrieves the local-to-ECEF transformation matrix. | |
const FGMatrix33 & | GetTl2i (void) const |
Retrieves the local-to-inertial transformation matrix. | |
double | GetUVW (int idx) const |
Retrieves a body frame velocity component. | |
const FGColumnVector3 & | GetUVW (void) const |
Retrieves the body frame vehicle velocity vector. | |
double | GetVel (int idx) const |
Retrieves a Local frame velocity component. | |
const FGColumnVector3 & | GetVel (void) const |
Retrieves the velocity vector. | |
const VehicleState & | GetVState (void) const |
void | InitializeDerivatives () |
bool | InitModel (void) |
Initializes the FGPropagate class after instantiation and prior to first execution. | |
void | NudgeBodyLocation (const FGColumnVector3 &deltaLoc) |
void | RecomputeLocalTerrainVelocity () |
bool | Run (bool Holding) |
Runs the state propagation model; called by the Executive Can pass in a value indicating if the executive is directing the simulation to Hold. | |
void | SetAltitudeASL (double altASL) |
void | SetAltitudeASLmeters (double altASL) |
void | SetDistanceAGL (double tt) |
void | SetDistanceAGLKm (double tt) |
void | SetEarthPositionAngle (double EPA) |
Sets the Earth position angle. | |
void | SetHoldDown (bool hd) |
Sets the property forces/hold-down. | |
void | SetInertialOrientation (const FGQuaternion &Qi) |
void | SetInertialRates (const FGColumnVector3 &vRates) |
void | SetInertialVelocity (const FGColumnVector3 &Vi) |
void | SetInitialState (const FGInitialCondition *) |
void | SetLatitude (double lat) |
void | SetLatitudeDeg (double lat) |
void | SetLocation (const FGColumnVector3 &lv) |
void | SetLocation (const FGLocation &l) |
void | SetLongitude (double lon) |
void | SetLongitudeDeg (double lon) |
void | SetPosition (const double Lon, const double Lat, const double Radius) |
void | SetPQR (unsigned int i, double val) |
void | SetRadius (double r) |
void | SetTerrainElevation (double tt) |
void | SetUVW (unsigned int i, double val) |
void | SetVState (const VehicleState &vstate) |
![]() | |
FGModel (FGFDMExec *) | |
Constructor. | |
~FGModel () override | |
Destructor. | |
virtual SGPath | FindFullPathName (const SGPath &path) const |
FGFDMExec * | GetExec (void) |
const std::string & | GetName (void) |
unsigned int | GetRate (void) |
Get the output rate for the model in frames. | |
virtual bool | Load (Element *el) |
void | SetPropertyManager (std::shared_ptr< FGPropertyManager > fgpm) |
void | SetRate (unsigned int tt) |
Set the ouput rate for the model in frames. | |
![]() | |
std::string | GetFunctionStrings (const std::string &delimeter) const |
Gets the strings for the current set of functions. | |
std::string | GetFunctionValues (const std::string &delimeter) const |
Gets the function values. | |
std::shared_ptr< FGFunction > | GetPreFunction (const std::string &name) |
Get one of the "pre" function. | |
bool | Load (Element *el, FGFDMExec *fdmex, std::string prefix="") |
void | PostLoad (Element *el, FGFDMExec *fdmex, std::string prefix="") |
void | PreLoad (Element *el, FGFDMExec *fdmex, std::string prefix="") |
void | RunPostFunctions (void) |
void | RunPreFunctions (void) |
![]() | |
FGJSBBase () | |
Constructor for FGJSBBase. | |
virtual | ~FGJSBBase () |
Destructor for FGJSBBase. | |
void | disableHighLighting (void) |
Disables highlighting in the console output. | |
Public Attributes | |
struct JSBSim::FGPropagate::Inputs | in |
Additional Inherited Members | |
![]() | |
static const std::string & | GetVersion (void) |
Returns the version number of JSBSim. | |
static constexpr double | KelvinToFahrenheit (double kelvin) |
Converts from degrees Kelvin to degrees Fahrenheit. | |
static constexpr double | CelsiusToRankine (double celsius) |
Converts from degrees Celsius to degrees Rankine. | |
static constexpr double | RankineToCelsius (double rankine) |
Converts from degrees Rankine to degrees Celsius. | |
static constexpr double | KelvinToRankine (double kelvin) |
Converts from degrees Kelvin to degrees Rankine. | |
static constexpr double | RankineToKelvin (double rankine) |
Converts from degrees Rankine to degrees Kelvin. | |
static constexpr double | FahrenheitToCelsius (double fahrenheit) |
Converts from degrees Fahrenheit to degrees Celsius. | |
static constexpr double | CelsiusToFahrenheit (double celsius) |
Converts from degrees Celsius to degrees Fahrenheit. | |
static constexpr double | CelsiusToKelvin (double celsius) |
Converts from degrees Celsius to degrees Kelvin. | |
static constexpr double | KelvinToCelsius (double kelvin) |
Converts from degrees Kelvin to degrees Celsius. | |
static constexpr double | FeetToMeters (double measure) |
Converts from feet to meters. | |
static bool | EqualToRoundoff (double a, double b) |
Finite precision comparison. | |
static bool | EqualToRoundoff (float a, float b) |
Finite precision comparison. | |
static bool | EqualToRoundoff (float a, double b) |
Finite precision comparison. | |
static bool | EqualToRoundoff (double a, float b) |
Finite precision comparison. | |
static constexpr double | Constrain (double min, double value, double max) |
Constrain a value between a minimum and a maximum value. | |
static constexpr double | sign (double num) |
![]() | |
static char | highint [5] = {27, '[', '1', 'm', '\0' } |
highlights text | |
static char | halfint [5] = {27, '[', '2', 'm', '\0' } |
low intensity text | |
static char | normint [6] = {27, '[', '2', '2', 'm', '\0' } |
normal intensity text | |
static char | reset [5] = {27, '[', '0', 'm', '\0' } |
resets text properties | |
static char | underon [5] = {27, '[', '4', 'm', '\0' } |
underlines text | |
static char | underoff [6] = {27, '[', '2', '4', 'm', '\0' } |
underline off | |
static char | fgblue [6] = {27, '[', '3', '4', 'm', '\0' } |
blue text | |
static char | fgcyan [6] = {27, '[', '3', '6', 'm', '\0' } |
cyan text | |
static char | fgred [6] = {27, '[', '3', '1', 'm', '\0' } |
red text | |
static char | fggreen [6] = {27, '[', '3', '2', 'm', '\0' } |
green text | |
static char | fgdef [6] = {27, '[', '3', '9', 'm', '\0' } |
default text | |
static short | debug_lvl = 1 |
![]() | |
bool | Upload (Element *el, bool preLoad) |
Uploads this model in memory. | |
![]() | |
static std::string | CreateIndexedPropertyName (const std::string &Property, int index) |
![]() | |
unsigned int | exe_ctr |
FGFDMExec * | FDMExec |
std::string | Name |
std::shared_ptr< FGPropertyManager > | PropertyManager |
unsigned int | rate |
![]() | |
FGPropertyReader | LocalProperties |
std::vector< std::shared_ptr< FGFunction > > | PostFunctions |
std::vector< std::shared_ptr< FGFunction > > | PreFunctions |
![]() | |
static constexpr double | radtodeg = 180. / M_PI |
static constexpr double | degtorad = M_PI / 180. |
static constexpr double | hptoftlbssec = 550.0 |
static constexpr double | psftoinhg = 0.014138 |
static constexpr double | psftopa = 47.88 |
static constexpr double | fttom = 0.3048 |
static constexpr double | ktstofps = 1852./(3600*fttom) |
static constexpr double | fpstokts = 1.0 / ktstofps |
static constexpr double | inchtoft = 1.0/12.0 |
static constexpr double | m3toft3 = 1.0/(fttom*fttom*fttom) |
static constexpr double | in3tom3 = inchtoft*inchtoft*inchtoft/m3toft3 |
static constexpr double | inhgtopa = 3386.38 |
static constexpr double | slugtolb = 32.174049 |
Note that definition of lbtoslug by the inverse of slugtolb and not to a different constant you can also get from some tables will make lbtoslug*slugtolb == 1 up to the magnitude of roundoff. | |
static constexpr double | lbtoslug = 1.0/slugtolb |
static constexpr double | kgtolb = 2.20462 |
static constexpr double | kgtoslug = 0.06852168 |
static const std::string | needed_cfg_version = "2.0" |
static const std::string | JSBSim_version = JSBSIM_VERSION " " __DATE__ " " __TIME__ |
enum eIntegrateType |
These define the indices use to select the various integrators.
Definition at line 155 of file FGPropagate.h.
|
explicit |
Constructor.
The constructor initializes several variables, and sets the initial set of integrators to use as follows:
Executive | a pointer to the parent executive object |
These define the indices use to select the various integrators.
Definition at line 82 of file FGPropagate.cpp.
~FGPropagate | ( | void | ) |
void DumpState | ( | void | ) |
Definition at line 703 of file FGPropagate.cpp.
double GetAltitudeASL | ( | void | ) | const |
Returns the current altitude above sea level.
This function returns the altitude above sea level. units ft
Definition at line 576 of file FGPropagate.cpp.
|
inline |
Returns the current altitude above sea level.
This function returns the altitude above sea level. units meters
Definition at line 337 of file FGPropagate.h.
|
inline |
Retrieves the cosine of a vehicle Euler angle component.
Retrieves the cosine of an Euler angle (Phi, Theta, or Psi) from the quaternion that stores the vehicle orientation relative to the Local frame. The order of rotations used is Yaw-Pitch-Roll. The Euler angle with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the Euler angle referred to in this call are, ePhi=1, eTht=2, ePsi=3 (e.g. GetCosEuler(eTht) returns cos(theta)). units none
Definition at line 399 of file FGPropagate.h.
double GetDistanceAGL | ( | void | ) | const |
Definition at line 630 of file FGPropagate.cpp.
double GetDistanceAGLKm | ( | void | ) | const |
Definition at line 637 of file FGPropagate.cpp.
|
inline |
Returns the Earth position angle.
Definition at line 431 of file FGPropagate.h.
|
inline |
Returns the Earth position angle in degrees.
Definition at line 436 of file FGPropagate.h.
|
inline |
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame for a particular axis.
Definition at line 323 of file FGPropagate.h.
|
inline |
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame.
Definition at line 318 of file FGPropagate.h.
|
inline |
Retrieves a vehicle Euler angle component.
Retrieves an Euler angle (Phi, Theta, or Psi) from the quaternion that stores the vehicle orientation relative to the Local frame. The order of rotations used is Yaw-Pitch-Roll. The Euler angle with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the Euler angle returned by this call are, ePhi=1, eTht=2, ePsi=3 (e.g. GetEuler(eTht) returns Theta). units radians
Definition at line 375 of file FGPropagate.h.
|
inline |
Retrieves the Euler angles that define the vehicle orientation.
Extracts the Euler angles from the quaternion that stores the orientation in the Local frame. The order of rotation used is Yaw-Pitch-Roll. The vector returned is represented by an FGColumnVector reference. The vector for the Euler angles is organized (Phi, Theta, Psi). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, the returned vector item with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, ePhi=1, eTht=2, ePsi=3. units radians
Definition at line 253 of file FGPropagate.h.
|
inline |
Retrieves a vehicle Euler angle component in degrees.
Retrieves an Euler angle (Phi, Theta, or Psi) from the quaternion that stores the vehicle orientation relative to the Local frame. The order of rotations used is Yaw-Pitch-Roll. The Euler angle with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the Euler angle returned by this call are, ePhi=1, eTht=2, ePsi=3 (e.g. GetEuler(eTht) returns Theta). units degrees
Definition at line 387 of file FGPropagate.h.
FGColumnVector3 GetEulerDeg | ( | void | ) | const |
Retrieves the Euler angles (in degrees) that define the vehicle orientation.
Extracts the Euler angles from the quaternion that stores the orientation in the Local frame. The order of rotation used is Yaw-Pitch-Roll. The vector returned is represented by an FGColumnVector reference. The vector for the Euler angles is organized (Phi, Theta, Psi). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, the returned vector item with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, ePhi=1, eTht=2, ePsi=3. units degrees
Definition at line 696 of file FGPropagate.cpp.
|
inline |
Definition at line 455 of file FGPropagate.h.
|
inline |
Definition at line 456 of file FGPropagate.h.
|
inline |
Definition at line 453 of file FGPropagate.h.
|
inline |
Definition at line 452 of file FGPropagate.h.
|
inline |
Returns the current altitude rate.
Returns the current altitude rate (rate of climb). units ft/sec
Definition at line 418 of file FGPropagate.h.
|
inline |
Definition at line 314 of file FGPropagate.h.
|
inline |
Retrieves the inertial position vector.
Definition at line 313 of file FGPropagate.h.
|
inline |
Definition at line 309 of file FGPropagate.h.
|
inline |
Retrieves the inertial velocity vector in ft/sec.
Definition at line 308 of file FGPropagate.h.
|
inline |
Retrieves the total inertial velocity in ft/sec.
Definition at line 300 of file FGPropagate.h.
|
inline |
Definition at line 450 of file FGPropagate.h.
|
inline |
Definition at line 459 of file FGPropagate.h.
double GetLocalTerrainRadius | ( | void | ) | const |
Returns the "constant" LocalTerrainRadius.
The LocalTerrainRadius parameter is set by the calling application or set to sea level + terrain elevation if JSBSim is running in standalone mode. units feet
Definition at line 620 of file FGPropagate.cpp.
|
inline |
Definition at line 461 of file FGPropagate.h.
|
inline |
Definition at line 460 of file FGPropagate.h.
|
inline |
Definition at line 449 of file FGPropagate.h.
|
inline |
Definition at line 458 of file FGPropagate.h.
|
inline |
Retrieves the total local NED velocity in ft/sec.
Definition at line 304 of file FGPropagate.h.
|
inline |
Retrieves a body frame angular velocity component relative to the ECEF frame.
Retrieves a body frame angular velocity component. The angular velocity returned is extracted from the vPQR vector (an FGColumnVector). The vector for the angular velocity in Body frame is organized (P, Q, R). The vector is 1-based. In other words, GetPQR(1) returns P (roll rate). Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the angular velocity returned by this call are, eP=1, eQ=2, eR=3. units rad/sec
axis | the index of the angular velocity component desired (1-based). |
Definition at line 350 of file FGPropagate.h.
|
inline |
Retrieves the body angular rates vector, relative to the ECEF frame.
Retrieves the body angular rates (p, q, r), which are calculated by integration of the angular acceleration. The vector returned is represented by an FGColumnVector3 reference. The vector for the angular velocity in Body frame is organized (P, Q, R). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, vPQR(1) is P. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, eP=1, eQ=2, eR=3. units rad/sec
Definition at line 211 of file FGPropagate.h.
|
inline |
Retrieves a body frame angular velocity component relative to the ECI (inertial) frame.
Retrieves a body frame angular velocity component. The angular velocity returned is extracted from the vPQR vector (an FGColumnVector). The vector for the angular velocity in Body frame is organized (P, Q, R). The vector is 1-based. In other words, GetPQR(1) returns P (roll rate). Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the angular velocity returned by this call are, eP=1, eQ=2, eR=3. units rad/sec
axis | the index of the angular velocity component desired (1-based). |
Definition at line 363 of file FGPropagate.h.
|
inline |
Retrieves the body angular rates vector, relative to the ECI (inertial) frame.
Retrieves the body angular rates (p, q, r), which are calculated by integration of the angular acceleration. The vector returned is represented by an FGColumnVector reference. The vector for the angular velocity in Body frame is organized (P, Q, R). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, vPQR(1) is P. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, eP=1, eQ=2, eR=3. units rad/sec
Definition at line 225 of file FGPropagate.h.
|
inline |
|
inline |
Retrieves the time derivative of the body orientation quaternion.
Retrieves the time derivative of the body orientation quaternion based on the rate of change of the orientation between the body and the ECI frame. The quaternion returned is represented by an FGQuaternion reference. The quaternion is 1-based, so that the first element can be retrieved using the "()" operator. units rad/sec^2
Definition at line 236 of file FGPropagate.h.
|
inline |
Returns the quaternion that goes from ECEF to Body.
Definition at line 545 of file FGPropagate.h.
|
inline |
|
inline |
|
inline |
Retrieves the sine of a vehicle Euler angle component.
Retrieves the sine of an Euler angle (Phi, Theta, or Psi) from the quaternion that stores the vehicle orientation relative to the Local frame. The order of rotations used is Yaw-Pitch-Roll. The Euler angle with subscript (1) is Phi. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the Euler angle referred to in this call are, ePhi=1, eTht=2, ePsi=3 (e.g. GetSinEuler(eTht) returns sin(theta)). units none
Definition at line 411 of file FGPropagate.h.
|
inline |
Retrieves the body-to-ECEF transformation matrix.
Definition at line 481 of file FGPropagate.h.
|
inline |
Retrieves the body-to-ECI transformation matrix.
Definition at line 489 of file FGPropagate.h.
|
inline |
Retrieves the body-to-local transformation matrix.
The quaternion class, being the means by which the orientation of the vehicle is stored, manages the body-to-local transformation matrix.
Definition at line 473 of file FGPropagate.h.
|
inline |
Retrieves the ECEF-to-body transformation matrix.
Definition at line 477 of file FGPropagate.h.
|
inline |
Retrieves the ECEF-to-ECI transformation matrix.
Definition at line 494 of file FGPropagate.h.
|
inline |
Retrieves the ECEF-to-local transformation matrix.
Retrieves the ECEF-to-local transformation matrix. Note that the so-called local from is also know as the NED frame (for North, East, Down).
Definition at line 505 of file FGPropagate.h.
|
inline |
Definition at line 439 of file FGPropagate.h.
double GetTerrainElevation | ( | void | ) | const |
Definition at line 602 of file FGPropagate.cpp.
|
inline |
Definition at line 438 of file FGPropagate.h.
|
inline |
Retrieves the ECI-to-body transformation matrix.
Definition at line 485 of file FGPropagate.h.
|
inline |
Retrieves the ECI-to-ECEF transformation matrix.
Definition at line 499 of file FGPropagate.h.
|
inline |
Retrieves the inertial-to-local transformation matrix.
Definition at line 521 of file FGPropagate.h.
|
inline |
Retrieves the local-to-body transformation matrix.
The quaternion class, being the means by which the orientation of the vehicle is stored, manages the local-to-body transformation matrix.
Definition at line 467 of file FGPropagate.h.
|
inline |
Retrieves the local-to-ECEF transformation matrix.
Retrieves the local-to-ECEF transformation matrix. Note that the so-called local from is also know as the NED frame (for North, East, Down).
Definition at line 511 of file FGPropagate.h.
|
inline |
Retrieves the local-to-inertial transformation matrix.
Definition at line 516 of file FGPropagate.h.
|
inline |
Retrieves a body frame velocity component.
Retrieves a body frame velocity component. The velocity returned is extracted from the vUVW vector (an FGColumnVector). The vector for the velocity in Body frame is organized (Vx, Vy, Vz). The vector is 1-based. In other words, GetUVW(1) returns Vx. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the velocity returned by this call are, eX=1, eY=2, eZ=3. units ft/sec
idx | the index of the velocity component desired (1-based). |
Definition at line 283 of file FGPropagate.h.
|
inline |
Retrieves the body frame vehicle velocity vector.
The vector returned is represented by an FGColumnVector3 reference. The vector for the velocity in Body frame is organized (Vx, Vy, Vz). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, vUVW(1) is Vx. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, eX=1, eY=2, eZ=3. units ft/sec
Definition at line 197 of file FGPropagate.h.
|
inline |
Retrieves a Local frame velocity component.
Retrieves a Local frame velocity component. The velocity returned is extracted from the vVel vector (an FGColumnVector). The vector for the velocity in Local frame is organized (Vnorth, Veast, Vdown). The vector is 1-based. In other words, GetVel(1) returns Vnorth. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the velocity returned by this call are, eNorth=1, eEast=2, eDown=3. units ft/sec
idx | the index of the velocity component desired (1-based). |
Definition at line 296 of file FGPropagate.h.
|
inline |
Retrieves the velocity vector.
The vector returned is represented by an FGColumnVector reference. The vector for the velocity in Local frame is organized (Vnorth, Veast, Vdown). The vector is 1-based, so that the first element can be retrieved using the "()" operator. In other words, vVel(1) is Vnorth. Various convenience enumerators are defined in FGJSBBase. The relevant enumerators for the vector returned by this call are, eNorth=1, eEast=2, eDown=3. units ft/sec
Definition at line 185 of file FGPropagate.h.
|
inline |
Definition at line 523 of file FGPropagate.h.
void InitializeDerivatives | ( | ) |
Definition at line 190 of file FGPropagate.cpp.
|
virtual |
Initializes the FGPropagate class after instantiation and prior to first execution.
The base class FGModel::InitModel is called first, initializing pointers to the other FGModel objects (and others).
Reimplemented from FGModel.
Definition at line 118 of file FGPropagate.cpp.
|
inline |
Definition at line 597 of file FGPropagate.h.
void RecomputeLocalTerrainVelocity | ( | ) |
Definition at line 592 of file FGPropagate.cpp.
|
virtual |
Runs the state propagation model; called by the Executive Can pass in a value indicating if the executive is directing the simulation to Hold.
Holding | if true, the executive has been directed to hold the sim from advancing time. Some models may ignore this flag, such as the Input model, which may need to be active to listen on a socket for the "Resume" command to be given. |
Reimplemented from FGModel.
Definition at line 218 of file FGPropagate.cpp.
void SetAltitudeASL | ( | double | altASL | ) |
Definition at line 583 of file FGPropagate.cpp.
|
inline |
Definition at line 578 of file FGPropagate.h.
void SetDistanceAGL | ( | double | tt | ) |
Definition at line 644 of file FGPropagate.cpp.
void SetDistanceAGLKm | ( | double | tt | ) |
Definition at line 652 of file FGPropagate.cpp.
|
inline |
Sets the Earth position angle.
This is the relative angle around the Z axis of the ECEF frame with respect to the inertial frame.
EPA | Earth position angle in radians. |
Definition at line 532 of file FGPropagate.h.
void SetHoldDown | ( | bool | hd | ) |
Sets the property forces/hold-down.
This allows to do hard 'hold-down' such as for rockets on a launch pad with engines ignited.
hd | enables the 'hold-down' function if non-zero |
Definition at line 287 of file FGPropagate.cpp.
void SetInertialOrientation | ( | const FGQuaternion & | Qi | ) |
Definition at line 549 of file FGPropagate.cpp.
void SetInertialRates | ( | const FGColumnVector3 & | vRates | ) |
Definition at line 568 of file FGPropagate.cpp.
void SetInertialVelocity | ( | const FGColumnVector3 & | Vi | ) |
Definition at line 560 of file FGPropagate.cpp.
void SetInitialState | ( | const FGInitialCondition * | FGIC | ) |
Definition at line 143 of file FGPropagate.cpp.
|
inline |
Definition at line 565 of file FGPropagate.h.
|
inline |
Definition at line 570 of file FGPropagate.h.
|
inline |
Definition at line 586 of file FGPropagate.h.
void SetLocation | ( | const FGLocation & | l | ) |
Definition at line 688 of file FGPropagate.cpp.
|
inline |
Definition at line 559 of file FGPropagate.h.
|
inline |
Definition at line 564 of file FGPropagate.h.
|
inline |
Definition at line 591 of file FGPropagate.h.
|
inline |
Definition at line 547 of file FGPropagate.h.
|
inline |
Definition at line 571 of file FGPropagate.h.
void SetTerrainElevation | ( | double | tt | ) |
Definition at line 613 of file FGPropagate.cpp.
|
inline |
Definition at line 552 of file FGPropagate.h.
void SetVState | ( | const VehicleState & | vstate | ) |
Definition at line 659 of file FGPropagate.cpp.