JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGInitialCondition Class Reference

Detailed Description

Initializes the simulation run.

Takes a set of initial conditions (IC) and provide a kinematically consistent set of body axis velocity components, euler angles, and altitude. This class does not attempt to trim the model i.e. the sim will most likely start in a very dynamic state (unless, of course, you have chosen your IC's wisely, or started on the ground) even after setting it up with this class.

Usage Notes

With a valid object of FGFDMExec and an aircraft model loaded:

FGInitialCondition* fgic = FDMExec->GetIC();
// Reset the initial conditions and set VCAS and altitude
fgic->InitializeIC();
fgic->SetVcalibratedKtsIC(vcas);
fgic->SetAltitudeAGLFtIC(altitude);
// directly into Run
FDMExec->GetPropagate()->SetInitialState(fgic);
delete fgic;
FDMExec->Run();
//or to loop the sim w/o integrating
FDMExec->RunIC();
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
Definition FGFDMExec.h:389
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.
bool Run(void)
This function executes each scheduled model in succession.
bool RunIC(void)
Initializes the sim from the initial condition object and executes each scheduled model without integ...
Initializes the simulation run.
void InitializeIC(void)
Initialize the initial conditions to default values.
void SetAltitudeAGLFtIC(double agl)
Sets the initial Altitude above ground level.
void SetVcalibratedKtsIC(double vc)
Set calibrated airspeed initial condition in knots.

Alternatively, you can load initial conditions from an XML file:

FGInitialCondition* fgic = FDMExec->GetIC();
fgic->Load(IC_file);
bool Load(const SGPath &rstname, bool useAircraftPath=true)
Loads the initial conditions.

Speed

Since vc, ve, vt, and mach all represent speed, the remaining three are recalculated each time one of them is set (using the current altitude). The most recent speed set is remembered so that if and when altitude is reset, the last set speed is used to recalculate the remaining three. Setting any of the body components forces a recalculation of vt and vt then becomes the most recent speed set.

Alpha,Gamma, and Theta

This class assumes that it will be used to set up the sim for a steady, zero pitch rate condition. Since any two of those angles specifies the third gamma (flight path angle) is favored when setting alpha and theta and alpha is favored when setting gamma. i.e.

  • set alpha : recalculate theta using gamma as currently set
  • set theta : recalculate alpha using gamma as currently set
  • set gamma : recalculate theta using alpha as currently set

The idea being that gamma is most interesting to pilots (since it is indicative of climb rate).

Setting climb rate is, for the purpose of this discussion, considered equivalent to setting gamma.

These are the items that can be set in an initialization file:

  • ubody (velocity, ft/sec)
  • vbody (velocity, ft/sec)
  • wbody (velocity, ft/sec)
  • vnorth (velocity, ft/sec)
  • veast (velocity, ft/sec)
  • vdown (velocity, ft/sec)
  • latitude (position, degrees)
  • longitude (position, degrees)
  • phi (orientation, degrees)
  • theta (orientation, degrees)
  • psi (orientation, degrees)
  • alpha (angle, degrees)
  • beta (angle, degrees)
  • gamma (angle, degrees)
  • roc (vertical velocity, ft/sec)
  • elevation (local terrain elevation, ft)
  • altitude (altitude AGL, ft)
  • altitudeAGL (altitude AGL, ft)
  • altitudeMSL (altitude MSL, ft)
  • winddir (wind from-angle, degrees)
  • vwind (magnitude wind speed, ft/sec)
  • hwind (headwind speed, knots)
  • xwind (crosswind speed, knots)
  • vc (calibrated airspeed, ft/sec)
  • mach (mach)
  • vground (ground speed, ft/sec)
  • trim (0 for no trim, 1 for ground trim, 'Longitudinal', 'Full', 'Ground', 'Pullup', 'Custom', 'Turn')
  • running (-1 for all engines, 0 ... n-1 for specific engines)

Properties

  • ic/vc-kts (read/write) Calibrated airspeed initial condition in knots
  • ic/ve-kts (read/write) Knots equivalent airspeed initial condition
  • ic/vg-kts (read/write) Ground speed initial condition in knots
  • ic/vt-kts (read/write) True airspeed initial condition in knots
  • ic/mach (read/write) Mach initial condition
  • ic/roc-fpm (read/write) Rate of climb initial condition in feet/minute
  • ic/gamma-deg (read/write) Flightpath angle initial condition in degrees
  • ic/alpha-deg (read/write) Angle of attack initial condition in degrees
  • ic/beta-deg (read/write) Angle of sideslip initial condition in degrees
  • ic/theta-deg (read/write) Pitch angle initial condition in degrees
  • ic/phi-deg (read/write) Roll angle initial condition in degrees
  • ic/psi-true-deg (read/write) Heading angle initial condition in degrees
  • ic/lat-gc-deg (read/write) Latitude initial condition in degrees
  • ic/long-gc-deg (read/write) Longitude initial condition in degrees
  • ic/h-sl-ft (read/write) Height above sea level initial condition in feet
  • ic/h-agl-ft (read/write) Height above ground level initial condition in feet
  • ic/sea-level-radius-ft (read/write) Radius of planet at sea level in feet
  • ic/terrain-elevation-ft (read/write) Terrain elevation above sea level in feet
  • ic/vg-fps (read/write) Ground speed initial condition in feet/second
  • ic/vt-fps (read/write) True airspeed initial condition in feet/second
  • ic/vw-bx-fps (read/write) Wind velocity initial condition in Body X frame in feet/second
  • ic/vw-by-fps (read/write) Wind velocity initial condition in Body Y frame in feet/second
  • ic/vw-bz-fps (read/write) Wind velocity initial condition in Body Z frame in feet/second
  • ic/vw-north-fps (read/write) Wind northward velocity initial condition in feet/second
  • ic/vw-east-fps (read/write) Wind eastward velocity initial condition in feet/second
  • ic/vw-down-fps (read/write) Wind downward velocity initial condition in feet/second
  • ic/vw-mag-fps (read/write) Wind velocity magnitude initial condition in feet/sec.
  • ic/vw-dir-deg (read/write) Wind direction initial condition, in degrees from north
  • ic/roc-fps (read/write) Rate of climb initial condition, in feet/second
  • ic/u-fps (read/write) Body frame x-axis velocity initial condition in feet/second
  • ic/v-fps (read/write) Body frame y-axis velocity initial condition in feet/second
  • ic/w-fps (read/write) Body frame z-axis velocity initial condition in feet/second
  • ic/vn-fps (read/write) Local frame x-axis (north) velocity initial condition in feet/second
  • ic/ve-fps (read/write) Local frame y-axis (east) velocity initial condition in feet/second
  • ic/vd-fps (read/write) Local frame z-axis (down) velocity initial condition in feet/second
  • ic/gamma-rad (read/write) Flight path angle initial condition in radians
  • ic/alpha-rad (read/write) Angle of attack initial condition in radians
  • ic/theta-rad (read/write) Pitch angle initial condition in radians
  • ic/beta-rad (read/write) Angle of sideslip initial condition in radians
  • ic/phi-rad (read/write) Roll angle initial condition in radians
  • ic/psi-true-rad (read/write) Heading angle initial condition in radians
  • ic/lat-gc-rad (read/write) Geocentric latitude initial condition in radians
  • ic/long-gc-rad (read/write) Longitude initial condition in radians
  • ic/p-rad_sec (read/write) Roll rate initial condition in radians/second
  • ic/q-rad_sec (read/write) Pitch rate initial condition in radians/second
  • ic/r-rad_sec (read/write) Yaw rate initial condition in radians/second
Author
Tony Peden

Definition at line 226 of file FGInitialCondition.h.

#include <FGInitialCondition.h>

+ Inheritance diagram for FGInitialCondition:
+ Collaboration diagram for FGInitialCondition:

Public Member Functions

 FGInitialCondition (FGFDMExec *fdmex)
 Constructor.
 
 ~FGInitialCondition ()
 Destructor.
 
void bind (FGPropertyManager *pm)
 
double GetAlphaDegIC (void) const
 Gets the initial angle of attack.
 
double GetAlphaRadIC (void) const
 Gets the initial angle of attack.
 
double GetAltitudeAGLFtIC (void) const
 Gets the initial altitude above ground level.
 
double GetAltitudeASLFtIC (void) const
 Gets the initial altitude above sea level.
 
double GetBetaDegIC (void) const
 Gets the initial sideslip angle.
 
double GetBetaRadIC (void) const
 Gets the initial angle of sideslip.
 
double GetClimbRateFpmIC (void) const
 Gets the initial climb rate.
 
double GetClimbRateFpsIC (void) const
 Gets the initial climb rate.
 
double GetEarthPositionAngleIC (void) const
 Gets the initial Earth position angle.
 
double GetFlightPathAngleDegIC (void) const
 Gets the initial flight path angle.
 
double GetFlightPathAngleRadIC (void) const
 Gets the initial flight path angle.
 
double GetGeodLatitudeDegIC (void) const
 Gets the initial geodetic latitude.
 
double GetGeodLatitudeRadIC (void) const
 Gets the initial geodetic latitude.
 
double GetLatitudeDegIC (void) const
 Gets the initial latitude.
 
double GetLatitudeRadIC (void) const
 Gets the initial latitude.
 
double GetLongitudeDegIC (void) const
 Gets the initial longitude.
 
double GetLongitudeRadIC (void) const
 Gets the initial longitude.
 
double GetMachIC (void) const
 Gets the initial mach.
 
const FGQuaternionGetOrientation (void) const
 Gets the initial orientation.
 
double GetPhiDegIC (void) const
 Gets the initial roll angle.
 
double GetPhiRadIC (void) const
 Gets the initial roll angle.
 
const FGLocationGetPosition (void) const
 Gets the initial position.
 
const FGColumnVector3 GetPQRRadpsIC (void) const
 Gets the initial body rotation rate.
 
double GetPRadpsIC () const
 Gets the initial body axis roll rate.
 
double GetPsiDegIC (void) const
 Gets the initial heading angle.
 
double GetPsiRadIC (void) const
 Gets the initial heading angle.
 
double GetQRadpsIC () const
 Gets the initial body axis pitch rate.
 
double GetRRadpsIC () const
 Gets the initial body axis yaw rate.
 
speedset GetSpeedSet (void) const
 Gets the initial speedset.
 
double GetTargetNlfIC (void) const
 Gets the target normal load factor set from IC.
 
double GetTerrainElevationFtIC (void) const
 Gets the initial terrain elevation.
 
double GetThetaDegIC (void) const
 Gets the initial pitch angle.
 
double GetThetaRadIC (void) const
 Gets the initial pitch angle.
 
double GetUBodyFpsIC (void) const
 Gets the initial body axis X velocity.
 
const FGColumnVector3 GetUVWFpsIC (void) const
 Gets the initial body velocity.
 
double GetVBodyFpsIC (void) const
 Gets the initial body axis Y velocity.
 
double GetVcalibratedKtsIC (void) const
 Gets the initial calibrated airspeed.
 
double GetVDownFpsIC (void) const
 Gets the initial local frame Z (Down) velocity.
 
double GetVEastFpsIC (void) const
 Gets the initial local frame Y (East) velocity.
 
double GetVequivalentKtsIC (void) const
 Gets the initial equivalent airspeed.
 
double GetVgroundFpsIC (void) const
 Gets the initial ground velocity.
 
double GetVgroundKtsIC (void) const
 Gets the initial ground speed.
 
double GetVNorthFpsIC (void) const
 Gets the initial local frame X (North) velocity.
 
double GetVtrueFpsIC (void) const
 Gets the initial true velocity.
 
double GetVtrueKtsIC (void) const
 Gets the initial true velocity.
 
double GetWBodyFpsIC (void) const
 Gets the initial body axis Z velocity.
 
double GetWindDFpsIC (void) const
 Gets the initial wind velocity in local frame.
 
double GetWindDirDegIC (void) const
 Gets the initial wind direction.
 
double GetWindEFpsIC (void) const
 Gets the initial wind velocity in local frame.
 
double GetWindMagFpsIC (void) const
 Gets the initial total wind velocity in feet/sec.
 
FGColumnVector3 GetWindNEDFpsIC (void) const
 Gets the initial wind velocity in the NED local frame.
 
double GetWindNFpsIC (void) const
 Gets the initial wind velocity in local frame.
 
double GetWindUFpsIC (void) const
 Gets the initial body axis X wind velocity.
 
double GetWindVFpsIC (void) const
 Gets the initial body axis Y wind velocity.
 
double GetWindWFpsIC (void) const
 Gets the initial body axis Z wind velocity.
 
void InitializeIC (void)
 Initialize the initial conditions to default values.
 
bool IsEngineRunning (unsigned int n) const
 Is an engine running ?
 
bool Load (const SGPath &rstname, bool useAircraftPath=true)
 Loads the initial conditions.
 
void ResetIC (double u0, double v0, double w0, double p0, double q0, double r0, double alpha0, double beta0, double phi0, double theta0, double psi0, double latitudeRad0, double longitudeRad0, double altitudeAGL0, double gamma0)
 Resets the IC data structure to new values.
 
void SetAlphaDegIC (double a)
 Sets angle of attack initial condition in degrees.
 
void SetAlphaRadIC (double alpha)
 Sets the initial angle of attack.
 
void SetAltitudeAGLFtIC (double agl)
 Sets the initial Altitude above ground level.
 
void SetAltitudeASLFtIC (double altitudeASL)
 Sets the altitude above sea level initial condition in feet.
 
void SetBetaDegIC (double b)
 Sets angle of sideslip initial condition in degrees.
 
void SetBetaRadIC (double beta)
 Sets the initial sideslip angle.
 
void SetClimbRateFpmIC (double roc)
 Sets the climb rate initial condition in feet/minute.
 
void SetClimbRateFpsIC (double roc)
 Sets the initial climb rate.
 
void SetCrossWindKtsIC (double cross)
 Sets the initial crosswind speed.
 
void SetFlightPathAngleDegIC (double gamma)
 Sets the flight path angle initial condition in degrees.
 
void SetFlightPathAngleRadIC (double gamma)
 Sets the initial flight path angle.
 
void SetGeodLatitudeDegIC (double glat)
 Sets the initial geodetic latitude.
 
void SetGeodLatitudeRadIC (double glat)
 Sets the initial geodetic latitude.
 
void SetHeadWindKtsIC (double head)
 Sets the initial headwind velocity.
 
void SetLatitudeDegIC (double lat)
 Sets the initial latitude.
 
void SetLatitudeRadIC (double lat)
 Sets the initial latitude.
 
void SetLongitudeDegIC (double lon)
 Sets the initial longitude.
 
void SetLongitudeRadIC (double lon)
 Sets the initial longitude.
 
void SetMachIC (double mach)
 Set mach initial condition.
 
void SetPhiDegIC (double phi)
 Sets the roll angle initial condition in degrees.
 
void SetPhiRadIC (double phi)
 Sets the initial roll angle.
 
void SetPRadpsIC (double P)
 Sets the initial body axis roll rate.
 
void SetPsiDegIC (double psi)
 Sets the heading angle initial condition in degrees.
 
void SetPsiRadIC (double psi)
 Sets the initial heading angle.
 
void SetQRadpsIC (double Q)
 Sets the initial body axis pitch rate.
 
void SetRRadpsIC (double R)
 Sets the initial body axis yaw rate.
 
void SetTargetNlfIC (double nlf)
 Sets the target normal load factor.
 
void SetTerrainElevationFtIC (double elev)
 Sets the initial terrain elevation.
 
void SetThetaDegIC (double theta)
 Sets pitch angle initial condition in degrees.
 
void SetThetaRadIC (double theta)
 Sets the initial pitch angle.
 
void SetUBodyFpsIC (double ubody)
 Sets the initial body axis X velocity.
 
void SetVBodyFpsIC (double vbody)
 Sets the initial body axis Y velocity.
 
void SetVcalibratedKtsIC (double vc)
 Set calibrated airspeed initial condition in knots.
 
void SetVDownFpsIC (double vd)
 Sets the initial local axis down velocity.
 
void SetVEastFpsIC (double ve)
 Sets the initial local axis east velocity.
 
void SetVequivalentKtsIC (double ve)
 Set equivalent airspeed initial condition in knots.
 
void SetVgroundFpsIC (double vg)
 Sets the initial ground speed.
 
void SetVgroundKtsIC (double vg)
 Set ground speed initial condition in knots.
 
void SetVNorthFpsIC (double vn)
 Sets the initial local axis north velocity.
 
void SetVtrueFpsIC (double vt)
 Sets the initial true airspeed.
 
void SetVtrueKtsIC (double vtrue)
 Set true airspeed initial condition in knots.
 
void SetWBodyFpsIC (double wbody)
 Sets the initial body axis Z velocity.
 
void SetWindDirDegIC (double dir)
 Sets the initial wind direction.
 
void SetWindDownKtsIC (double wD)
 Sets the initial wind downward speed.
 
void SetWindMagFpsIC (double mag)
 Sets the initial total wind speed.
 
void SetWindMagKtsIC (double mag)
 Sets the initial total wind speed.
 
void SetWindNEDFpsIC (double wN, double wE, double wD)
 Sets the initial wind velocity.
 
int TrimRequested (void) const
 Does initialization file call for trim ?
 
- Public Member Functions inherited from FGJSBBase
 FGJSBBase ()
 Constructor for FGJSBBase.
 
virtual ~FGJSBBase ()
 Destructor for FGJSBBase.
 
void disableHighLighting (void)
 Disables highlighting in the console output.
 

Additional Inherited Members

- Public Types inherited from FGJSBBase
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...
 
- Static Public Member Functions inherited from FGJSBBase
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 Public Attributes inherited from FGJSBBase
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
 
- Static Protected Member Functions inherited from FGJSBBase
static std::string CreateIndexedPropertyName (const std::string &Property, int index)
 
- Static Protected Attributes inherited from FGJSBBase
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__
 

Constructor & Destructor Documentation

◆ FGInitialCondition()

FGInitialCondition ( FGFDMExec fdmex)
explicit

Constructor.

Definition at line 63 of file FGInitialCondition.cpp.

63 : fdmex(FDMExec)
64{
66
67 if(FDMExec) {
68 Aircraft=fdmex->GetAircraft();
69 Auxiliary=fdmex->GetAuxiliary();
70 } else {
71 cout << "FGInitialCondition: This class requires a pointer to a valid FGFDMExec object" << endl;
72 }
73
74 Debug(0);
75}
std::shared_ptr< FGAircraft > GetAircraft(void) const
Returns the FGAircraft pointer.
std::shared_ptr< FGAuxiliary > GetAuxiliary(void) const
Returns the FGAuxiliary pointer.
+ Here is the call graph for this function:

◆ ~FGInitialCondition()

Destructor.

Definition at line 79 of file FGInitialCondition.cpp.

80{
81 Debug(1);
82}

Member Function Documentation

◆ bind()

void bind ( FGPropertyManager pm)

Definition at line 1451 of file FGInitialCondition.cpp.

1452{
1453 PropertyManager->Tie("ic/vc-kts", this,
1456 PropertyManager->Tie("ic/ve-kts", this,
1459 PropertyManager->Tie("ic/vg-kts", this,
1462 PropertyManager->Tie("ic/vt-kts", this,
1465 PropertyManager->Tie("ic/mach", this,
1468 PropertyManager->Tie("ic/roc-fpm", this,
1471 PropertyManager->Tie("ic/gamma-deg", this,
1474 PropertyManager->Tie("ic/alpha-deg", this,
1477 PropertyManager->Tie("ic/beta-deg", this,
1480 PropertyManager->Tie("ic/theta-deg", this,
1483 PropertyManager->Tie("ic/phi-deg", this,
1486 PropertyManager->Tie("ic/psi-true-deg", this,
1489 PropertyManager->Tie("ic/lat-gc-deg", this,
1492 PropertyManager->Tie("ic/long-gc-deg", this,
1495 PropertyManager->Tie("ic/h-sl-ft", this,
1498 PropertyManager->Tie("ic/h-agl-ft", this,
1501 PropertyManager->Tie("ic/terrain-elevation-ft", this,
1504 PropertyManager->Tie("ic/vg-fps", this,
1507 PropertyManager->Tie("ic/vt-fps", this,
1510 PropertyManager->Tie("ic/vw-bx-fps", this,
1512 PropertyManager->Tie("ic/vw-by-fps", this,
1514 PropertyManager->Tie("ic/vw-bz-fps", this,
1516 PropertyManager->Tie("ic/vw-north-fps", this,
1518 PropertyManager->Tie("ic/vw-east-fps", this,
1520 PropertyManager->Tie("ic/vw-down-fps", this,
1522 PropertyManager->Tie("ic/vw-mag-fps", this,
1525 PropertyManager->Tie("ic/vw-dir-deg", this,
1528
1529 PropertyManager->Tie("ic/roc-fps", this,
1532 PropertyManager->Tie("ic/u-fps", this,
1535 PropertyManager->Tie("ic/v-fps", this,
1538 PropertyManager->Tie("ic/w-fps", this,
1541 PropertyManager->Tie("ic/vn-fps", this,
1544 PropertyManager->Tie("ic/ve-fps", this,
1547 PropertyManager->Tie("ic/vd-fps", this,
1550 PropertyManager->Tie("ic/gamma-rad", this,
1553 PropertyManager->Tie("ic/alpha-rad", this,
1556 PropertyManager->Tie("ic/theta-rad", this,
1559 PropertyManager->Tie("ic/beta-rad", this,
1562 PropertyManager->Tie("ic/phi-rad", this,
1565 PropertyManager->Tie("ic/psi-true-rad", this,
1568 PropertyManager->Tie("ic/lat-gc-rad", this,
1571 PropertyManager->Tie("ic/long-gc-rad", this,
1574 PropertyManager->Tie("ic/p-rad_sec", this,
1577 PropertyManager->Tie("ic/q-rad_sec", this,
1580 PropertyManager->Tie("ic/r-rad_sec", this,
1583 PropertyManager->Tie("ic/lat-geod-rad", this,
1586 PropertyManager->Tie("ic/lat-geod-deg", this,
1589 PropertyManager->Tie("ic/geod-alt-ft", &position,
1591
1592 PropertyManager->Tie("ic/targetNlf", this,
1595}
void SetPsiRadIC(double psi)
Sets the initial heading angle.
double GetPRadpsIC() const
Gets the initial body axis roll rate.
double GetVNorthFpsIC(void) const
Gets the initial local frame X (North) velocity.
void SetThetaDegIC(double theta)
Sets pitch angle initial condition in degrees.
void SetVequivalentKtsIC(double ve)
Set equivalent airspeed initial condition in knots.
double GetPhiRadIC(void) const
Gets the initial roll angle.
double GetVBodyFpsIC(void) const
Gets the initial body axis Y velocity.
double GetVEastFpsIC(void) const
Gets the initial local frame Y (East) velocity.
double GetLatitudeDegIC(void) const
Gets the initial latitude.
double GetVgroundFpsIC(void) const
Gets the initial ground velocity.
double GetLongitudeRadIC(void) const
Gets the initial longitude.
double GetFlightPathAngleDegIC(void) const
Gets the initial flight path angle.
double GetThetaDegIC(void) const
Gets the initial pitch angle.
double GetVgroundKtsIC(void) const
Gets the initial ground speed.
void SetUBodyFpsIC(double ubody)
Sets the initial body axis X velocity.
double GetPhiDegIC(void) const
Gets the initial roll angle.
double GetAltitudeASLFtIC(void) const
Gets the initial altitude above sea level.
void SetClimbRateFpmIC(double roc)
Sets the climb rate initial condition in feet/minute.
double GetWindNFpsIC(void) const
Gets the initial wind velocity in local frame.
void SetFlightPathAngleRadIC(double gamma)
Sets the initial flight path angle.
void SetWBodyFpsIC(double wbody)
Sets the initial body axis Z velocity.
double GetTargetNlfIC(void) const
Gets the target normal load factor set from IC.
void SetMachIC(double mach)
Set mach initial condition.
void SetVtrueKtsIC(double vtrue)
Set true airspeed initial condition in knots.
void SetBetaRadIC(double beta)
Sets the initial sideslip angle.
double GetWindEFpsIC(void) const
Gets the initial wind velocity in local frame.
double GetTerrainElevationFtIC(void) const
Gets the initial terrain elevation.
void SetVBodyFpsIC(double vbody)
Sets the initial body axis Y velocity.
void SetLongitudeRadIC(double lon)
Sets the initial longitude.
void SetAlphaDegIC(double a)
Sets angle of attack initial condition in degrees.
void SetPRadpsIC(double P)
Sets the initial body axis roll rate.
double GetVDownFpsIC(void) const
Gets the initial local frame Z (Down) velocity.
double GetVcalibratedKtsIC(void) const
Gets the initial calibrated airspeed.
double GetWindDirDegIC(void) const
Gets the initial wind direction.
void SetFlightPathAngleDegIC(double gamma)
Sets the flight path angle initial condition in degrees.
double GetWBodyFpsIC(void) const
Gets the initial body axis Z velocity.
double GetBetaDegIC(void) const
Gets the initial sideslip angle.
void SetVgroundKtsIC(double vg)
Set ground speed initial condition in knots.
void SetLongitudeDegIC(double lon)
Sets the initial longitude.
double GetClimbRateFpsIC(void) const
Gets the initial climb rate.
void SetGeodLatitudeRadIC(double glat)
Sets the initial geodetic latitude.
double GetWindMagFpsIC(void) const
Gets the initial total wind velocity in feet/sec.
double GetAltitudeAGLFtIC(void) const
Gets the initial altitude above ground level.
double GetMachIC(void) const
Gets the initial mach.
void SetThetaRadIC(double theta)
Sets the initial pitch angle.
double GetVtrueFpsIC(void) const
Gets the initial true velocity.
double GetGeodLatitudeDegIC(void) const
Gets the initial geodetic latitude.
void SetTerrainElevationFtIC(double elev)
Sets the initial terrain elevation.
double GetRRadpsIC() const
Gets the initial body axis yaw rate.
double GetAlphaRadIC(void) const
Gets the initial angle of attack.
double GetAlphaDegIC(void) const
Gets the initial angle of attack.
void SetClimbRateFpsIC(double roc)
Sets the initial climb rate.
void SetTargetNlfIC(double nlf)
Sets the target normal load factor.
void SetVtrueFpsIC(double vt)
Sets the initial true airspeed.
void SetPsiDegIC(double psi)
Sets the heading angle initial condition in degrees.
void SetAlphaRadIC(double alpha)
Sets the initial angle of attack.
double GetGeodLatitudeRadIC(void) const
Gets the initial geodetic latitude.
void SetRRadpsIC(double R)
Sets the initial body axis yaw rate.
void SetQRadpsIC(double Q)
Sets the initial body axis pitch rate.
double GetUBodyFpsIC(void) const
Gets the initial body axis X velocity.
double GetQRadpsIC() const
Gets the initial body axis pitch rate.
void SetVDownFpsIC(double vd)
Sets the initial local axis down velocity.
void SetLatitudeRadIC(double lat)
Sets the initial latitude.
void SetGeodLatitudeDegIC(double glat)
Sets the initial geodetic latitude.
double GetVequivalentKtsIC(void) const
Gets the initial equivalent airspeed.
void SetPhiDegIC(double phi)
Sets the roll angle initial condition in degrees.
void SetBetaDegIC(double b)
Sets angle of sideslip initial condition in degrees.
double GetFlightPathAngleRadIC(void) const
Gets the initial flight path angle.
double GetPsiRadIC(void) const
Gets the initial heading angle.
void SetWindDirDegIC(double dir)
Sets the initial wind direction.
double GetClimbRateFpmIC(void) const
Gets the initial climb rate.
double GetThetaRadIC(void) const
Gets the initial pitch angle.
void SetVNorthFpsIC(double vn)
Sets the initial local axis north velocity.
void SetPhiRadIC(double phi)
Sets the initial roll angle.
double GetWindUFpsIC(void) const
Gets the initial body axis X wind velocity.
void SetLatitudeDegIC(double lat)
Sets the initial latitude.
double GetWindVFpsIC(void) const
Gets the initial body axis Y wind velocity.
void SetAltitudeASLFtIC(double altitudeASL)
Sets the altitude above sea level initial condition in feet.
void SetWindMagFpsIC(double mag)
Sets the initial total wind speed.
double GetVtrueKtsIC(void) const
Gets the initial true velocity.
double GetPsiDegIC(void) const
Gets the initial heading angle.
double GetLatitudeRadIC(void) const
Gets the initial latitude.
double GetWindDFpsIC(void) const
Gets the initial wind velocity in local frame.
void SetVEastFpsIC(double ve)
Sets the initial local axis east velocity.
void SetVgroundFpsIC(double vg)
Sets the initial ground speed.
double GetWindWFpsIC(void) const
Gets the initial body axis Z wind velocity.
double GetBetaRadIC(void) const
Gets the initial angle of sideslip.
double GetLongitudeDegIC(void) const
Gets the initial longitude.
double GetGeodAltitude(void) const
Gets the geodetic altitude in feet.
Definition FGLocation.h:279

◆ GetAlphaDegIC()

double GetAlphaDegIC ( void  ) const
inline

Gets the initial angle of attack.

Returns
Initial alpha in degrees

Definition at line 349 of file FGInitialCondition.h.

349{ return alpha*radtodeg; }

◆ GetAlphaRadIC()

double GetAlphaRadIC ( void  ) const
inline

Gets the initial angle of attack.

Returns
Initial alpha in radians

Definition at line 625 of file FGInitialCondition.h.

625{ return alpha; }

◆ GetAltitudeAGLFtIC()

double GetAltitudeAGLFtIC ( void  ) const

Gets the initial altitude above ground level.

Returns
Initial altitude AGL in feet

Definition at line 661 of file FGInitialCondition.cpp.

662{
663 return fdmex->GetInertial()->GetAltitudeAGL(position);
664}
std::shared_ptr< FGInertial > GetInertial(void) const
Returns the FGInertial pointer.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ GetAltitudeASLFtIC()

double GetAltitudeASLFtIC ( void  ) const

Gets the initial altitude above sea level.

Returns
Initial altitude in feet.

Definition at line 654 of file FGInitialCondition.cpp.

655{
656 return position.GetRadius() - position.GetSeaLevelRadius();
657}
double GetRadius() const
Get the distance from the center of the earth in feet.
Definition FGLocation.h:291
double GetSeaLevelRadius(void) const
Get the sea level radius in feet below the current location.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ GetBetaDegIC()

double GetBetaDegIC ( void  ) const
inline

Gets the initial sideslip angle.

Returns
Initial beta in degrees

Definition at line 353 of file FGInitialCondition.h.

353{ return beta*radtodeg; }

◆ GetBetaRadIC()

double GetBetaRadIC ( void  ) const
inline

Gets the initial angle of sideslip.

Returns
Initial sideslip angle in radians

Definition at line 629 of file FGInitialCondition.h.

629{ return beta; }

◆ GetClimbRateFpmIC()

double GetClimbRateFpmIC ( void  ) const
inline

Gets the initial climb rate.

Returns
Initial climb rate in feet/minute

Definition at line 339 of file FGInitialCondition.h.

340 { return GetClimbRateFpsIC()*60; }

◆ GetClimbRateFpsIC()

double GetClimbRateFpsIC ( void  ) const
inline

Gets the initial climb rate.

Returns
Initial rate of climb in feet/second

Definition at line 520 of file FGInitialCondition.h.

521 {
522 const FGMatrix33& Tb2l = orientation.GetTInv();
523 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
524 return -_vt_NED(eW);
525 }
const FGMatrix33 & GetTInv(void) const
Backward transformation matrix.

◆ GetEarthPositionAngleIC()

double GetEarthPositionAngleIC ( void  ) const
inline

Gets the initial Earth position angle.

Returns
Initial Earth position angle in radians.

Definition at line 394 of file FGInitialCondition.h.

394{ return epa; }

◆ GetFlightPathAngleDegIC()

double GetFlightPathAngleDegIC ( void  ) const
inline

Gets the initial flight path angle.

Returns
Initial flight path angle in degrees

Definition at line 344 of file FGInitialCondition.h.

345 { return GetFlightPathAngleRadIC()*radtodeg; }

◆ GetFlightPathAngleRadIC()

double GetFlightPathAngleRadIC ( void  ) const
inline

Gets the initial flight path angle.

If total velocity is zero, this function returns zero.

Returns
Initial flight path angle in radians

Definition at line 620 of file FGInitialCondition.h.

621 { return (vt == 0.0)?0.0:asin(GetClimbRateFpsIC() / vt); }

◆ GetGeodLatitudeDegIC()

double GetGeodLatitudeDegIC ( void  ) const
inline

Gets the initial geodetic latitude.

Returns
Initial geodetic latitude in degrees

Definition at line 373 of file FGInitialCondition.h.

374 { return position.GetGeodLatitudeDeg(); }
double GetGeodLatitudeDeg(void) const
Get the GEODETIC latitude in degrees.
Definition FGLocation.h:273

◆ GetGeodLatitudeRadIC()

double GetGeodLatitudeRadIC ( void  ) const
inline

Gets the initial geodetic latitude.

Returns
Initial geodetic latitude in radians

Definition at line 641 of file FGInitialCondition.h.

642 { return position.GetGeodLatitudeRad(); }
double GetGeodLatitudeRad(void) const
Get the GEODETIC latitude in radians.
Definition FGLocation.h:258

◆ GetLatitudeDegIC()

double GetLatitudeDegIC ( void  ) const
inline

Gets the initial latitude.

Returns
Initial geocentric latitude in degrees

Definition at line 369 of file FGInitialCondition.h.

369{ return position.GetLatitudeDeg(); }
double GetLatitudeDeg() const
Get the GEOCENTRIC latitude in degrees.
Definition FGLocation.h:267

◆ GetLatitudeRadIC()

double GetLatitudeRadIC ( void  ) const
inline

Gets the initial latitude.

Returns
Initial latitude in radians

Definition at line 637 of file FGInitialCondition.h.

637{ return position.GetLatitude(); }
double GetLatitude() const
Get the GEOCENTRIC latitude in radians.
Definition FGLocation.h:252

◆ GetLongitudeDegIC()

double GetLongitudeDegIC ( void  ) const
inline

Gets the initial longitude.

Returns
Initial longitude in degrees

Definition at line 378 of file FGInitialCondition.h.

378{ return position.GetLongitudeDeg(); }
double GetLongitudeDeg() const
Get the longitude.
Definition FGLocation.h:240

◆ GetLongitudeRadIC()

double GetLongitudeRadIC ( void  ) const
inline

Gets the initial longitude.

Returns
Initial longitude in radians

Definition at line 646 of file FGInitialCondition.h.

646{ return position.GetLongitude(); }
double GetLongitude() const
Get the longitude.
Definition FGLocation.h:234

◆ GetMachIC()

double GetMachIC ( void  ) const

Gets the initial mach.

Returns
Initial mach number

Definition at line 986 of file FGInitialCondition.cpp.

987{
988 const auto Atmosphere = fdmex->GetAtmosphere();
989 double altitudeASL = GetAltitudeASLFtIC();
990 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
991 return vt / soundSpeed;
992}
+ Here is the call graph for this function:

◆ GetOrientation()

const FGQuaternion & GetOrientation ( void  ) const
inline

Gets the initial orientation.

Returns
Initial orientation

Definition at line 650 of file FGInitialCondition.h.

650{ return orientation; }

◆ GetPhiDegIC()

double GetPhiDegIC ( void  ) const
inline

Gets the initial roll angle.

Returns
Initial phi in degrees

Definition at line 361 of file FGInitialCondition.h.

361{ return orientation.GetEulerDeg(ePhi); }
double GetEulerDeg(int i) const
Retrieves the Euler angles.

◆ GetPhiRadIC()

double GetPhiRadIC ( void  ) const
inline

Gets the initial roll angle.

Returns
Initial roll angle in radians

Definition at line 654 of file FGInitialCondition.h.

654{ return orientation.GetEuler(ePhi); }
const FGColumnVector3 & GetEuler(void) const
Retrieves the Euler angles.
+ Here is the caller graph for this function:

◆ GetPosition()

const FGLocation & GetPosition ( void  ) const
inline

Gets the initial position.

Returns
Initial location

Definition at line 633 of file FGInitialCondition.h.

633{ return position; }

◆ GetPQRRadpsIC()

const FGColumnVector3 GetPQRRadpsIC ( void  ) const
inline

Gets the initial body rotation rate.

Returns
Initial body rotation rate in radians/second

Definition at line 560 of file FGInitialCondition.h.

560{ return vPQR_body; }

◆ GetPRadpsIC()

double GetPRadpsIC ( ) const
inline

Gets the initial body axis roll rate.

Returns
Initial body axis roll rate in radians/second

Definition at line 564 of file FGInitialCondition.h.

564{ return vPQR_body(eP); }

◆ GetPsiDegIC()

double GetPsiDegIC ( void  ) const
inline

Gets the initial heading angle.

Returns
Initial psi in degrees

Definition at line 365 of file FGInitialCondition.h.

365{ return orientation.GetEulerDeg(ePsi); }

◆ GetPsiRadIC()

double GetPsiRadIC ( void  ) const
inline

Gets the initial heading angle.

Returns
Initial heading angle in radians

Definition at line 662 of file FGInitialCondition.h.

662{ return orientation.GetEuler(ePsi); }
+ Here is the caller graph for this function:

◆ GetQRadpsIC()

double GetQRadpsIC ( ) const
inline

Gets the initial body axis pitch rate.

Returns
Initial body axis pitch rate in radians/second

Definition at line 568 of file FGInitialCondition.h.

568{ return vPQR_body(eQ); }

◆ GetRRadpsIC()

double GetRRadpsIC ( ) const
inline

Gets the initial body axis yaw rate.

Returns
Initial body axis yaw rate in radians/second

Definition at line 572 of file FGInitialCondition.h.

572{ return vPQR_body(eR); }

◆ GetSpeedSet()

speedset GetSpeedSet ( void  ) const
inline

Gets the initial speedset.

Returns
Initial speedset

Definition at line 666 of file FGInitialCondition.h.

666{ return lastSpeedSet; }

◆ GetTargetNlfIC()

double GetTargetNlfIC ( void  ) const
inline

Gets the target normal load factor set from IC.

Returns
target normal load factor set from IC

Definition at line 670 of file FGInitialCondition.h.

670{ return targetNlfIC; }
+ Here is the caller graph for this function:

◆ GetTerrainElevationFtIC()

double GetTerrainElevationFtIC ( void  ) const

Gets the initial terrain elevation.

Returns
Initial terrain elevation in feet

Definition at line 668 of file FGInitialCondition.cpp.

669{
670 FGColumnVector3 normal, v, w;
671 FGLocation contact;
672 double a = fdmex->GetInertial()->GetSemimajor();
673 double b = fdmex->GetInertial()->GetSemiminor();
674 contact.SetEllipse(a, b);
675 fdmex->GetInertial()->GetContactPoint(position, contact, normal, v, w);
676 return contact.GetGeodAltitude();
677}
+ Here is the call graph for this function:

◆ GetThetaDegIC()

double GetThetaDegIC ( void  ) const
inline

Gets the initial pitch angle.

Returns
Initial pitch angle in degrees

Definition at line 357 of file FGInitialCondition.h.

357{ return orientation.GetEulerDeg(eTht); }

◆ GetThetaRadIC()

double GetThetaRadIC ( void  ) const
inline

Gets the initial pitch angle.

Returns
Initial pitch angle in radians

Definition at line 658 of file FGInitialCondition.h.

658{ return orientation.GetEuler(eTht); }
+ Here is the caller graph for this function:

◆ GetUBodyFpsIC()

double GetUBodyFpsIC ( void  ) const
inline

Gets the initial body axis X velocity.

Returns
Initial body axis X velocity in feet/second.

Definition at line 536 of file FGInitialCondition.h.

536{ return GetBodyVelFpsIC(eU); }

◆ GetUVWFpsIC()

const FGColumnVector3 GetUVWFpsIC ( void  ) const
inline

Gets the initial body velocity.

Returns
Initial body velocity in feet/second.

Definition at line 529 of file FGInitialCondition.h.

529 {
530 const FGMatrix33& Tl2b = orientation.GetT();
531 return Tl2b * vUVW_NED;
532 }
const FGMatrix33 & GetT(void) const
Transformation matrix.

◆ GetVBodyFpsIC()

double GetVBodyFpsIC ( void  ) const
inline

Gets the initial body axis Y velocity.

Returns
Initial body axis Y velocity in feet/second.

Definition at line 540 of file FGInitialCondition.h.

540{ return GetBodyVelFpsIC(eV); }

◆ GetVcalibratedKtsIC()

double GetVcalibratedKtsIC ( void  ) const

Gets the initial calibrated airspeed.

Returns
Initial calibrated airspeed in knots

Definition at line 963 of file FGInitialCondition.cpp.

964{
965 const auto Atmosphere = fdmex->GetAtmosphere();
966 double altitudeASL = GetAltitudeASLFtIC();
967 double pressure = Atmosphere->GetPressure(altitudeASL);
968 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
969 double mach = vt / soundSpeed;
970
971 return fpstokts * Auxiliary->VcalibratedFromMach(mach, pressure);
972}
+ Here is the call graph for this function:

◆ GetVDownFpsIC()

double GetVDownFpsIC ( void  ) const
inline

Gets the initial local frame Z (Down) velocity.

Returns
Initial local frame Z (Down) axis velocity in feet/second.

Definition at line 556 of file FGInitialCondition.h.

556{ return vUVW_NED(eW); }

◆ GetVEastFpsIC()

double GetVEastFpsIC ( void  ) const
inline

Gets the initial local frame Y (East) velocity.

Returns
Initial local frame Y (East) axis velocity in feet/second.

Definition at line 552 of file FGInitialCondition.h.

552{ return vUVW_NED(eV); }

◆ GetVequivalentKtsIC()

double GetVequivalentKtsIC ( void  ) const

Gets the initial equivalent airspeed.

Returns
Initial equivalent airspeed in knots

Definition at line 976 of file FGInitialCondition.cpp.

977{
978 const auto Atmosphere = fdmex->GetAtmosphere();
979 double altitudeASL = GetAltitudeASLFtIC();
980 double rho = Atmosphere->GetDensity(altitudeASL);
981 return fpstokts * vt * sqrt(rho/FGAtmosphere::StdDaySLdensity);
982}
+ Here is the call graph for this function:

◆ GetVgroundFpsIC()

double GetVgroundFpsIC ( void  ) const
inline

Gets the initial ground velocity.

Returns
Initial ground velocity in feet/second

Definition at line 476 of file FGInitialCondition.h.

476{ return vUVW_NED.Magnitude(eU, eV); }
double Magnitude(void) const
Length of the vector.

◆ GetVgroundKtsIC()

double GetVgroundKtsIC ( void  ) const
inline

Gets the initial ground speed.

Returns
Initial ground speed in knots

Definition at line 327 of file FGInitialCondition.h.

327{ return GetVgroundFpsIC() * fpstokts; }

◆ GetVNorthFpsIC()

double GetVNorthFpsIC ( void  ) const
inline

Gets the initial local frame X (North) velocity.

Returns
Initial local frame X (North) axis velocity in feet/second.

Definition at line 548 of file FGInitialCondition.h.

548{ return vUVW_NED(eU); }

◆ GetVtrueFpsIC()

double GetVtrueFpsIC ( void  ) const
inline

Gets the initial true velocity.

Returns
Initial true velocity in feet/second

Definition at line 480 of file FGInitialCondition.h.

480{ return vt; }

◆ GetVtrueKtsIC()

double GetVtrueKtsIC ( void  ) const
inline

Gets the initial true velocity.

Returns
Initial true airspeed in knots.

Definition at line 331 of file FGInitialCondition.h.

331{ return vt*fpstokts; }

◆ GetWBodyFpsIC()

double GetWBodyFpsIC ( void  ) const
inline

Gets the initial body axis Z velocity.

Returns
Initial body axis Z velocity in feet/second.

Definition at line 544 of file FGInitialCondition.h.

544{ return GetBodyVelFpsIC(eW); }

◆ GetWindDFpsIC()

double GetWindDFpsIC ( void  ) const
inline

Gets the initial wind velocity in local frame.

Returns
Initial wind velocity downwards in feet/second

Definition at line 508 of file FGInitialCondition.h.

508{ return GetWindNEDFpsIC()(eZ); }
FGColumnVector3 GetWindNEDFpsIC(void) const
Gets the initial wind velocity in the NED local frame.

◆ GetWindDirDegIC()

double GetWindDirDegIC ( void  ) const

Gets the initial wind direction.

Returns
Initial wind direction in feet/second

Definition at line 920 of file FGInitialCondition.cpp.

921{
922 const FGMatrix33& Tb2l = orientation.GetTInv();
923 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
924 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
925
926 return _vWIND_NED.Magnitude(eU, eV) == 0.0 ? 0.0
927 : atan2(_vWIND_NED(eV), _vWIND_NED(eU))*radtodeg;
928}
+ Here is the call graph for this function:

◆ GetWindEFpsIC()

double GetWindEFpsIC ( void  ) const
inline

Gets the initial wind velocity in local frame.

Returns
Initial wind velocity eastwards in feet/second

Definition at line 504 of file FGInitialCondition.h.

504{ return GetWindNEDFpsIC()(eY); }

◆ GetWindMagFpsIC()

double GetWindMagFpsIC ( void  ) const

Gets the initial total wind velocity in feet/sec.

Returns
Initial wind velocity in feet/second

Definition at line 940 of file FGInitialCondition.cpp.

941{
942 const FGMatrix33& Tb2l = orientation.GetTInv();
943 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
944 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
945
946 return _vWIND_NED.Magnitude(eU, eV);
947}
+ Here is the call graph for this function:

◆ GetWindNEDFpsIC()

FGColumnVector3 GetWindNEDFpsIC ( void  ) const

Gets the initial wind velocity in the NED local frame.

Returns
Initial wind velocity in NED frame in feet/second

Definition at line 932 of file FGInitialCondition.cpp.

932 {
933 const FGMatrix33& Tb2l = orientation.GetTInv();
934 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
935 return _vt_NED - vUVW_NED;
936}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ GetWindNFpsIC()

double GetWindNFpsIC ( void  ) const
inline

Gets the initial wind velocity in local frame.

Returns
Initial wind velocity toward north in feet/second

Definition at line 500 of file FGInitialCondition.h.

500{ return GetWindNEDFpsIC()(eX); }

◆ GetWindUFpsIC()

double GetWindUFpsIC ( void  ) const
inline

Gets the initial body axis X wind velocity.

Returns
Initial body axis X wind velocity in feet/second

Definition at line 484 of file FGInitialCondition.h.

484{ return GetBodyWindFpsIC(eU); }

◆ GetWindVFpsIC()

double GetWindVFpsIC ( void  ) const
inline

Gets the initial body axis Y wind velocity.

Returns
Initial body axis Y wind velocity in feet/second

Definition at line 488 of file FGInitialCondition.h.

488{ return GetBodyWindFpsIC(eV); }

◆ GetWindWFpsIC()

double GetWindWFpsIC ( void  ) const
inline

Gets the initial body axis Z wind velocity.

Returns
Initial body axis Z wind velocity in feet/second

Definition at line 492 of file FGInitialCondition.h.

492{ return GetBodyWindFpsIC(eW); }

◆ InitializeIC()

void InitializeIC ( void  )

Initialize the initial conditions to default values.

Definition at line 124 of file FGInitialCondition.cpp.

125{
126 alpha = beta = 0.0;
127 epa = 0.0;
128
129 double a = fdmex->GetInertial()->GetSemimajor();
130 double b = fdmex->GetInertial()->GetSemiminor();
131
132 position.SetEllipse(a, b);
133
134 position.SetPositionGeodetic(0.0, 0.0, 0.0);
135
136 orientation = FGQuaternion(0.0, 0.0, 0.0);
137 vUVW_NED.InitMatrix();
138 vPQR_body.InitMatrix();
139 vt=0;
140
141 targetNlfIC = 1.0;
142
143 Tw2b = { 1., 0., 0., 0., 1., 0., 0., 0., 1. };
144 Tb2w = { 1., 0., 0., 0., 1., 0., 0., 0., 1. };
145
146 lastSpeedSet = setvt;
147 lastAltitudeSet = setasl;
148 lastLatitudeSet = setgeoc;
149 enginesRunning = 0;
150 trimRequested = TrimMode::tNone;
151}
void SetEllipse(double semimajor, double semiminor)
Sets the semimajor and semiminor axis lengths for this planet.
void SetPositionGeodetic(double lon, double lat, double height)
Sets the longitude, latitude and the distance above the reference spheroid.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ IsEngineRunning()

bool IsEngineRunning ( unsigned int  n) const
inline

Is an engine running ?

Parameters
indexof the engine to be checked
Returns
true if the engine is running.

Definition at line 681 of file FGInitialCondition.h.

681{ return (enginesRunning & (1 << n)) != 0; }

◆ Load()

bool Load ( const SGPath &  rstname,
bool  useAircraftPath = true 
)

Loads the initial conditions.

Parameters
rstnameThe name of an initial conditions file
useAircraftPathtrue if path is given relative to the aircraft path.
Returns
true if successful

Definition at line 1006 of file FGInitialCondition.cpp.

1007{
1008 SGPath init_file_name;
1009 if(useAircraftPath && rstfile.isRelative()) {
1010 init_file_name = fdmex->GetFullAircraftPath()/rstfile.utf8Str();
1011 } else {
1012 init_file_name = rstfile;
1013 }
1014
1015 FGXMLFileRead XMLFileRead;
1016 Element* document = XMLFileRead.LoadXMLDocument(init_file_name);
1017
1018 // Make sure that the document is valid
1019 if (!document) {
1020 stringstream s;
1021 s << "File: " << init_file_name << " could not be read.";
1022 cerr << s.str() << endl;
1023 throw BaseException(s.str());
1024 }
1025
1026 if (document->GetName() != "initialize") {
1027 stringstream s;
1028 s << "File: " << init_file_name << " is not a reset file.";
1029 cerr << s.str() << endl;
1030 throw BaseException(s.str());
1031 }
1032
1033 bool result = false;
1034
1035 // If doc has an version, check it. Otherwise fall back to legacy.
1036 if (document->HasAttribute("version")) {
1037 double version = document->GetAttributeValueAsNumber("version");
1038
1039 if (version >= 3.0) {
1040 const string s("Only initialization file formats 1 and 2 are currently supported");
1041 cerr << document->ReadFrom() << endl << s << endl;
1042 throw BaseException(s);
1043 } else if (version >= 2.0) {
1044 result = Load_v2(document);
1045 } else if (version >= 1.0) {
1046 result = Load_v1(document);
1047 }
1048
1049 } else {
1050 result = Load_v1(document);
1051 }
1052
1053 // Check to see if any engines are specified to be initialized in a running state
1054 Element* running_elements = document->FindElement("running");
1055 while (running_elements) {
1056 int engineNumber = int(running_elements->GetDataAsNumber());
1057 enginesRunning |= engineNumber == -1 ? engineNumber : 1 << engineNumber;
1058 running_elements = document->FindNextElement("running");
1059 }
1060
1061 return result;
1062}
const SGPath & GetFullAircraftPath(void)
Retrieves the full aircraft path name.
Definition FGFDMExec.h:401
+ Here is the call graph for this function:

◆ ResetIC()

void ResetIC ( double  u0,
double  v0,
double  w0,
double  p0,
double  q0,
double  r0,
double  alpha0,
double  beta0,
double  phi0,
double  theta0,
double  psi0,
double  latitudeRad0,
double  longitudeRad0,
double  altitudeAGL0,
double  gamma0 
)

Resets the IC data structure to new values.

Parameters
u,v,w,...

Definition at line 86 of file FGInitialCondition.cpp.

92{
93 double calpha = cos(alpha0), cbeta = cos(beta0);
94 double salpha = sin(alpha0), sbeta = sin(beta0);
95
97
98 vPQR_body = {p0, q0, r0};
99 alpha = alpha0; beta = beta0;
100
101 position.SetLongitude(lonRad0);
102 position.SetLatitude(latRad0);
103 fdmex->GetInertial()->SetAltitudeAGL(position, altAGLFt0);
104 lastLatitudeSet = setgeoc;
105 lastAltitudeSet = setagl;
106
107 orientation = FGQuaternion(phi0, theta0, psi0);
108 const FGMatrix33& Tb2l = orientation.GetTInv();
109
110 vUVW_NED = Tb2l * FGColumnVector3(u0, v0, w0);
111 vt = vUVW_NED.Magnitude();
112 lastSpeedSet = setuvw;
113
114 Tw2b = { calpha*cbeta, -calpha*sbeta, -salpha,
115 sbeta, cbeta, 0.0,
116 salpha*cbeta, -salpha*sbeta, calpha };
117 Tb2w = Tw2b.Transposed();
118
120}
void SetLongitude(double longitude)
Set the longitude.
void SetLatitude(double latitude)
Set the GEOCENTRIC latitude.
FGMatrix33 Transposed(void) const
Transposed matrix.
Definition FGMatrix33.h:221
+ Here is the call graph for this function:

◆ SetAlphaDegIC()

void SetAlphaDegIC ( double  a)
inline

Sets angle of attack initial condition in degrees.

Parameters
aAlpha in degrees

Definition at line 256 of file FGInitialCondition.h.

256{ SetAlphaRadIC(a*degtorad); }

◆ SetAlphaRadIC()

void SetAlphaRadIC ( double  alpha)

Sets the initial angle of attack.

Parameters
alphaInitial angle of attack in radians

Definition at line 317 of file FGInitialCondition.cpp.

318{
319 const FGMatrix33& Tb2l = orientation.GetTInv();
320 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
321 calcThetaBeta(alfa, _vt_NED);
322}
+ Here is the call graph for this function:

◆ SetAltitudeAGLFtIC()

void SetAltitudeAGLFtIC ( double  agl)

Sets the initial Altitude above ground level.

Parameters
aglAltitude above ground level in feet

Definition at line 681 of file FGInitialCondition.cpp.

682{
683 const auto Atmosphere = fdmex->GetAtmosphere();
684 double altitudeASL = GetAltitudeASLFtIC();
685 double pressure = Atmosphere->GetPressure(altitudeASL);
686 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
687 double rho = Atmosphere->GetDensity(altitudeASL);
688
689 double mach0 = vt / soundSpeed;
690 double vc0 = Auxiliary->VcalibratedFromMach(mach0, pressure);
691 double ve0 = vt * sqrt(rho/FGAtmosphere::StdDaySLdensity);
692
693 switch(lastLatitudeSet) {
694 case setgeod:
695 fdmex->GetInertial()->SetAltitudeAGL(position, agl);
696 break;
697 case setgeoc:
698 {
699 double a = fdmex->GetInertial()->GetSemimajor();
700 double b = fdmex->GetInertial()->GetSemiminor();
701 double e2 = 1.0-b*b/(a*a);
702 double tanlat = tan(position.GetLatitude());
703 double n = e2;
704 double prev_n = 1.0;
705 int iter = 0;
706 double longitude = position.GetLongitude();
707 double alt = position.GetGeodAltitude();
708 double h = -2.0*max(a,b);
709 double geodLat;
710 while ((fabs(n-prev_n) > 1E-15 || fabs(h-agl) > 1E-10) && iter < 10) {
711 geodLat = atan(tanlat/(1-n));
712 position.SetPositionGeodetic(longitude, geodLat, alt);
713 h = GetAltitudeAGLFtIC();
714 alt += agl-h;
715 double sinGeodLat = sin(geodLat);
716 double N = a/sqrt(1-e2*sinGeodLat*sinGeodLat);
717 prev_n = n;
718 n = e2*N/(N+alt);
719 iter++;
720 }
721 }
722 break;
723 }
724
725 altitudeASL = GetAltitudeASLFtIC();
726 soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
727 rho = Atmosphere->GetDensity(altitudeASL);
728 pressure = Atmosphere->GetPressure(altitudeASL);
729
730 switch(lastSpeedSet) {
731 case setvc:
732 mach0 = Auxiliary->MachFromVcalibrated(vc0, pressure);
733 SetVtrueFpsIC(mach0 * soundSpeed);
734 break;
735 case setmach:
736 SetVtrueFpsIC(mach0 * soundSpeed);
737 break;
738 case setve:
739 SetVtrueFpsIC(ve0 * sqrt(FGAtmosphere::StdDaySLdensity/rho));
740 break;
741 default: // Make the compiler stop complaining about missing enums
742 break;
743 }
744
745 lastAltitudeSet = setagl;
746}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetAltitudeASLFtIC()

void SetAltitudeASLFtIC ( double  altitudeASL)

Sets the altitude above sea level initial condition in feet.

Parameters
altitudeASLAltitude above sea level in feet

Definition at line 753 of file FGInitialCondition.cpp.

754{
755 const auto Atmosphere = fdmex->GetAtmosphere();
756 double altitudeASL = GetAltitudeASLFtIC();
757 double pressure = Atmosphere->GetPressure(altitudeASL);
758 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
759 double rho = Atmosphere->GetDensity(altitudeASL);
760
761 double mach0 = vt / soundSpeed;
762 double vc0 = Auxiliary->VcalibratedFromMach(mach0, pressure);
763 double ve0 = vt * sqrt(rho/FGAtmosphere::StdDaySLdensity);
764
765 switch(lastLatitudeSet) {
766 case setgeod:
767 {
768 // Given an altitude above the mean sea level (or a position radius which
769 // is the same) and a geodetic latitude, compute the geodetic altitude.
770 double a = fdmex->GetInertial()->GetSemimajor();
771 double b = fdmex->GetInertial()->GetSemiminor();
772 double e2 = 1.0-b*b/(a*a);
773 double geodLatitude = position.GetGeodLatitudeRad();
774 double cosGeodLat = cos(geodLatitude);
775 double sinGeodLat = sin(geodLatitude);
776 double N = a/sqrt(1-e2*sinGeodLat*sinGeodLat);
777 double geodAlt = 0.0;
778 double n = e2;
779 double prev_n = 1.0;
780 int iter = 0;
781 // Use tan or cotan to solve the geodetic altitude to avoid floating point
782 // exceptions.
783 if (cosGeodLat > fabs(sinGeodLat)) { // tan() can safely be used.
784 double tanGeodLat = sinGeodLat/cosGeodLat;
785 double x0 = N*e2*cosGeodLat;
786 double x = 0.0;
787 while (fabs(n-prev_n) > 1E-15 && iter < 10) {
788 double tanLat = (1-n)*tanGeodLat; // See Stevens & Lewis 1.6-14
789 double cos2Lat = 1./(1.+tanLat*tanLat);
790 double slr = b/sqrt(1.-e2*cos2Lat);
791 double R = slr + alt;
792 x = R*sqrt(cos2Lat); // OK, cos(latitude) is always positive.
793 prev_n = n;
794 n = x0/x;
795 iter++;
796 }
797 geodAlt = x/cosGeodLat-N;
798 }
799 else { // better use cotan (i.e. 1./tan())
800 double cotanGeodLat = cosGeodLat/sinGeodLat;
801 double z0 = N*e2*sinGeodLat;
802 double z = 0.0;
803 while (fabs(n-prev_n) > 1E-15 && iter < 10) {
804 double cotanLat = cotanGeodLat/(1-n);
805 double sin2Lat = 1./(1.+cotanLat*cotanLat);
806 double cos2Lat = 1.-sin2Lat;
807 double slr = b/sqrt(1.-e2*cos2Lat);
808 double R = slr + alt;
809 z = R*sign(cotanLat)*sqrt(sin2Lat);
810 prev_n = n;
811 n = z0/(z0+z);
812 iter++;
813 }
814 geodAlt = z/sinGeodLat-N*(1-e2);
815 }
816
817 double longitude = position.GetLongitude();
818 position.SetPositionGeodetic(longitude, geodLatitude, geodAlt);
819 }
820 break;
821 case setgeoc:
822 {
823 double slr = position.GetSeaLevelRadius();
824 position.SetRadius(slr+alt);
825 }
826 break;
827 }
828
829 altitudeASL = position.GetGeodAltitude();
830 soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
831 rho = Atmosphere->GetDensity(altitudeASL);
832 pressure = Atmosphere->GetPressure(altitudeASL);
833
834 switch(lastSpeedSet) {
835 case setvc:
836 mach0 = Auxiliary->MachFromVcalibrated(vc0, pressure);
837 SetVtrueFpsIC(mach0 * soundSpeed);
838 break;
839 case setmach:
840 SetVtrueFpsIC(mach0 * soundSpeed);
841 break;
842 case setve:
843 SetVtrueFpsIC(ve0 * sqrt(FGAtmosphere::StdDaySLdensity/rho));
844 break;
845 default: // Make the compiler stop complaining about missing enums
846 break;
847 }
848
849 lastAltitudeSet = setasl;
850}
void SetRadius(double radius)
Set the distance from the center of the earth.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetBetaDegIC()

void SetBetaDegIC ( double  b)
inline

Sets angle of sideslip initial condition in degrees.

Parameters
BBeta in degrees

Definition at line 260 of file FGInitialCondition.h.

260{ SetBetaRadIC(b*degtorad);}

◆ SetBetaRadIC()

void SetBetaRadIC ( double  beta)

Sets the initial sideslip angle.

Parameters
betaInitial angle of sideslip in radians.

Definition at line 402 of file FGInitialCondition.cpp.

403{
404 const FGMatrix33& Tb2l = orientation.GetTInv();
405 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
406 FGColumnVector3 vOrient = orientation.GetEuler();
407
408 beta = bta;
409 double calpha = cos(alpha), salpha = sin(alpha);
410 double cbeta = cos(beta), sbeta = sin(beta);
411 double cphi = orientation.GetCosEuler(ePhi), sphi = orientation.GetSinEuler(ePhi);
412 FGMatrix33 TphiInv(1., 0., 0.,
413 0., cphi,-sphi,
414 0., sphi, cphi);
415
416 Tw2b = { calpha*cbeta, -calpha*sbeta, -salpha,
417 sbeta, cbeta, 0.0,
418 salpha*cbeta, -salpha*sbeta, calpha };
419 Tb2w = Tw2b.Transposed();
420
421 FGColumnVector3 vf = TphiInv * Tw2b * FGColumnVector3(vt, 0., 0.);
422 FGColumnVector3 v0xy(_vt_NED(eX), _vt_NED(eY), 0.);
423 FGColumnVector3 v1xy(sqrt(v0xy(eX)*v0xy(eX)+v0xy(eY)*v0xy(eY)-vf(eY)*vf(eY)),vf(eY),0.);
424 v0xy.Normalize();
425 v1xy.Normalize();
426
427 if (vf(eX) < 0.) v0xy(eX) *= -1.0;
428
429 double sinPsi = (v1xy * v0xy)(eZ);
430 double cosPsi = DotProduct(v0xy, v1xy);
431 vOrient(ePsi) = atan2(sinPsi, cosPsi);
432 FGMatrix33 Tpsi( cosPsi, sinPsi, 0.,
433 -sinPsi, cosPsi, 0.,
434 0., 0., 1.);
435
436 FGColumnVector3 v2xz = Tpsi * _vt_NED;
437 FGColumnVector3 vfxz = vf;
438 v2xz(eV) = vfxz(eV) = 0.0;
439 v2xz.Normalize();
440 vfxz.Normalize();
441 double sinTheta = (v2xz * vfxz)(eY);
442 vOrient(eTht) = -asin(sinTheta);
443
444 orientation = FGQuaternion(vOrient);
445}
double GetSinEuler(int i) const
Retrieves sine of the given euler angle.
double GetCosEuler(int i) const
Retrieves cosine of the given euler angle.
+ Here is the call graph for this function:

◆ SetClimbRateFpmIC()

void SetClimbRateFpmIC ( double  roc)
inline

Sets the climb rate initial condition in feet/minute.

Parameters
rocRate of Climb in feet/minute

Definition at line 283 of file FGInitialCondition.h.

283{ SetClimbRateFpsIC(roc/60.0); }

◆ SetClimbRateFpsIC()

void SetClimbRateFpsIC ( double  roc)

Sets the initial climb rate.

Parameters
rocInitial Rate of climb in feet/second

Definition at line 288 of file FGInitialCondition.cpp.

289{
290 if (fabs(hdot) > vt) {
291 cerr << "The climb rate cannot be higher than the true speed." << endl;
292 return;
293 }
294
295 const FGMatrix33& Tb2l = orientation.GetTInv();
296 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
297 FGColumnVector3 _WIND_NED = _vt_NED - vUVW_NED;
298 double hdot0 = -_vt_NED(eW);
299
300 if (fabs(hdot0) < vt) { // Is this check really needed ?
301 double scale = sqrt((vt*vt-hdot*hdot)/(vt*vt-hdot0*hdot0));
302 _vt_NED(eU) *= scale;
303 _vt_NED(eV) *= scale;
304 }
305 _vt_NED(eW) = -hdot;
306 vUVW_NED = _vt_NED - _WIND_NED;
307
308 // Updating the angles theta and beta to keep the true airspeed amplitude
309 calcThetaBeta(alpha, _vt_NED);
310}
+ Here is the call graph for this function:

◆ SetCrossWindKtsIC()

void SetCrossWindKtsIC ( double  cross)

Sets the initial crosswind speed.

Parameters
crossInitial crosswind speed, positive from left to right

Definition at line 532 of file FGInitialCondition.cpp.

533{
534 const FGMatrix33& Tb2l = orientation.GetTInv();
535 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
536 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
537 FGColumnVector3 _vCROSS(-orientation.GetSinEuler(ePsi), orientation.GetCosEuler(ePsi), 0.);
538
539 // Gram-Schmidt process is used to remove the existing cross wind component
540 _vWIND_NED -= DotProduct(_vWIND_NED, _vCROSS) * _vCROSS;
541 // Which is now replaced by the new value. The input cross wind is expected
542 // in knots, so first convert to fps, which is the internal unit used.
543 _vWIND_NED += (cross * ktstofps) * _vCROSS;
544 _vt_NED = vUVW_NED + _vWIND_NED;
545 vt = _vt_NED.Magnitude();
546
547 calcAeroAngles(_vt_NED);
548}
+ Here is the call graph for this function:

◆ SetFlightPathAngleDegIC()

void SetFlightPathAngleDegIC ( double  gamma)
inline

Sets the flight path angle initial condition in degrees.

Parameters
gammaFlight path angle in degrees

Definition at line 287 of file FGInitialCondition.h.

288 { SetClimbRateFpsIC(vt*sin(gamma*degtorad)); }

◆ SetFlightPathAngleRadIC()

void SetFlightPathAngleRadIC ( double  gamma)
inline

Sets the initial flight path angle.

Parameters
gammaInitial flight path angle in radians

Definition at line 576 of file FGInitialCondition.h.

577 { SetClimbRateFpsIC(vt*sin(gamma)); }
+ Here is the caller graph for this function:

◆ SetGeodLatitudeDegIC()

void SetGeodLatitudeDegIC ( double  glat)
inline

Sets the initial geodetic latitude.

This method modifies the geodetic altitude in order to keep the altitude above sea level unchanged.

Parameters
glatInitial geodetic latitude in degrees

Definition at line 310 of file FGInitialCondition.h.

311 { SetGeodLatitudeRadIC(glat*degtorad); }

◆ SetGeodLatitudeRadIC()

void SetGeodLatitudeRadIC ( double  glat)

Sets the initial geodetic latitude.

This method modifies the geodetic altitude in order to keep the altitude above sea level unchanged.

Parameters
glatInitial geodetic latitude in radians

Definition at line 854 of file FGInitialCondition.cpp.

855{
856 double lon = position.GetLongitude();
857 lastLatitudeSet = setgeod;
858
859 switch (lastAltitudeSet)
860 {
861 case setagl:
862 {
863 double agl = GetAltitudeAGLFtIC();
864 position.SetPositionGeodetic(lon, geodLatitude, 0.);
865 fdmex->GetInertial()->SetAltitudeAGL(position, agl);
866 }
867 break;
868 case setasl:
869 {
870 double asl = GetAltitudeASLFtIC();
871 position.SetPositionGeodetic(lon, geodLatitude, 0.);
873 }
874 break;
875 }
876}
+ Here is the call graph for this function:

◆ SetHeadWindKtsIC()

void SetHeadWindKtsIC ( double  head)

Sets the initial headwind velocity.

Parameters
headInitial headwind speed in knots

Definition at line 555 of file FGInitialCondition.cpp.

556{
557 const FGMatrix33& Tb2l = orientation.GetTInv();
558 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
559 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
560 // This is a head wind, so the direction vector for the wind
561 // needs to be set opposite to the heading the aircraft
562 // is taking. So, the cos and sin of the heading (psi)
563 // are negated in the line below.
564 FGColumnVector3 _vHEAD(-orientation.GetCosEuler(ePsi), -orientation.GetSinEuler(ePsi), 0.);
565
566 // Gram-Schmidt process is used to remove the existing head wind component
567 _vWIND_NED -= DotProduct(_vWIND_NED, _vHEAD) * _vHEAD;
568 // Which is now replaced by the new value. The input head wind is expected
569 // in knots, so first convert to fps, which is the internal unit used.
570 _vWIND_NED += (head * ktstofps) * _vHEAD;
571 _vt_NED = vUVW_NED + _vWIND_NED;
572
573 vt = _vt_NED.Magnitude();
574
575 calcAeroAngles(_vt_NED);
576}
+ Here is the call graph for this function:

◆ SetLatitudeDegIC()

void SetLatitudeDegIC ( double  lat)
inline

Sets the initial latitude.

Parameters
latInitial latitude in degrees

Definition at line 304 of file FGInitialCondition.h.

304{ SetLatitudeRadIC(lat*degtorad); }

◆ SetLatitudeRadIC()

void SetLatitudeRadIC ( double  lat)

Sets the initial latitude.

Parameters
latInitial latitude in radians

Definition at line 880 of file FGInitialCondition.cpp.

881{
882 double altitude;
883
884 lastLatitudeSet = setgeoc;
885
886 switch(lastAltitudeSet) {
887 case setagl:
888 altitude = GetAltitudeAGLFtIC();
889 position.SetLatitude(lat);
890 SetAltitudeAGLFtIC(altitude);
891 break;
892 default:
893 altitude = GetAltitudeASLFtIC();
894 position.SetLatitude(lat);
895 SetAltitudeASLFtIC(altitude);
896 break;
897 }
898}
+ Here is the call graph for this function:

◆ SetLongitudeDegIC()

void SetLongitudeDegIC ( double  lon)
inline

Sets the initial longitude.

Parameters
lonInitial longitude in degrees

Definition at line 315 of file FGInitialCondition.h.

315{ SetLongitudeRadIC(lon*degtorad); }

◆ SetLongitudeRadIC()

void SetLongitudeRadIC ( double  lon)

Sets the initial longitude.

Parameters
lonInitial longitude in radians

Definition at line 902 of file FGInitialCondition.cpp.

903{
904 double altitude;
905
906 switch(lastAltitudeSet) {
907 case setagl:
908 altitude = GetAltitudeAGLFtIC();
909 position.SetLongitude(lon);
910 SetAltitudeAGLFtIC(altitude);
911 break;
912 default:
913 position.SetLongitude(lon);
914 break;
915 }
916}
+ Here is the call graph for this function:

◆ SetMachIC()

void SetMachIC ( double  mach)

Set mach initial condition.

Parameters
machMach number

Definition at line 166 of file FGInitialCondition.cpp.

167{
168 const auto Atmosphere = fdmex->GetAtmosphere();
169 double altitudeASL = GetAltitudeASLFtIC();
170 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
171 SetVtrueFpsIC(mach*soundSpeed);
172 lastSpeedSet = setmach;
173}
+ Here is the call graph for this function:

◆ SetPhiDegIC()

void SetPhiDegIC ( double  phi)
inline

Sets the roll angle initial condition in degrees.

Parameters
phiroll angle in degrees

Definition at line 275 of file FGInitialCondition.h.

275{ SetPhiRadIC(phi*degtorad);}

◆ SetPhiRadIC()

void SetPhiRadIC ( double  phi)
inline

Sets the initial roll angle.

Parameters
phiInitial roll angle in radians

Definition at line 589 of file FGInitialCondition.h.

589{ SetEulerAngleRadIC(ePhi, phi); }

◆ SetPRadpsIC()

void SetPRadpsIC ( double  P)
inline

Sets the initial body axis roll rate.

Parameters
PInitial roll rate in radians/second

Definition at line 430 of file FGInitialCondition.h.

430{ vPQR_body(eP) = P; }
+ Here is the caller graph for this function:

◆ SetPsiDegIC()

void SetPsiDegIC ( double  psi)
inline

Sets the heading angle initial condition in degrees.

Parameters
psiHeading angle in degrees

Definition at line 279 of file FGInitialCondition.h.

279{ SetPsiRadIC(psi*degtorad); }

◆ SetPsiRadIC()

void SetPsiRadIC ( double  psi)
inline

Sets the initial heading angle.

Parameters
psiInitial heading angle in radians

Definition at line 597 of file FGInitialCondition.h.

597{ SetEulerAngleRadIC(ePsi, psi); }

◆ SetQRadpsIC()

void SetQRadpsIC ( double  Q)
inline

Sets the initial body axis pitch rate.

Parameters
QInitial pitch rate in radians/second

Definition at line 434 of file FGInitialCondition.h.

434{ vPQR_body(eQ) = Q; }
+ Here is the caller graph for this function:

◆ SetRRadpsIC()

void SetRRadpsIC ( double  R)
inline

Sets the initial body axis yaw rate.

Parameters
Rinitial yaw rate in radians/second

Definition at line 438 of file FGInitialCondition.h.

438{ vPQR_body(eR) = R; }
+ Here is the caller graph for this function:

◆ SetTargetNlfIC()

void SetTargetNlfIC ( double  nlf)
inline

Sets the target normal load factor.

Parameters
nlfNormal load factor

Definition at line 615 of file FGInitialCondition.h.

615{ targetNlfIC=nlf; }

◆ SetTerrainElevationFtIC()

void SetTerrainElevationFtIC ( double  elev)

Sets the initial terrain elevation.

Parameters
elevInitial terrain elevation in feet

Definition at line 643 of file FGInitialCondition.cpp.

644{
645 double agl = GetAltitudeAGLFtIC();
646 fdmex->GetInertial()->SetTerrainElevation(elev);
647
648 if (lastAltitudeSet == setagl)
650}
+ Here is the call graph for this function:

◆ SetThetaDegIC()

void SetThetaDegIC ( double  theta)
inline

Sets pitch angle initial condition in degrees.

Parameters
thetaTheta (pitch) angle in degrees

Definition at line 264 of file FGInitialCondition.h.

264{ SetThetaRadIC(theta*degtorad); }

◆ SetThetaRadIC()

void SetThetaRadIC ( double  theta)
inline

Sets the initial pitch angle.

Parameters
thetaInitial pitch angle in radians

Definition at line 593 of file FGInitialCondition.h.

593{ SetEulerAngleRadIC(eTht, theta); }

◆ SetUBodyFpsIC()

void SetUBodyFpsIC ( double  ubody)
inline

Sets the initial body axis X velocity.

Parameters
ubodyInitial X velocity in feet/second

Definition at line 406 of file FGInitialCondition.h.

406{ SetBodyVelFpsIC(eU, ubody); }

◆ SetVBodyFpsIC()

void SetVBodyFpsIC ( double  vbody)
inline

Sets the initial body axis Y velocity.

Parameters
vbodyInitial Y velocity in feet/second

Definition at line 410 of file FGInitialCondition.h.

410{ SetBodyVelFpsIC(eV, vbody); }

◆ SetVcalibratedKtsIC()

void SetVcalibratedKtsIC ( double  vc)

Set calibrated airspeed initial condition in knots.

Parameters
vcCalibrated airspeed in knots

Definition at line 177 of file FGInitialCondition.cpp.

178{
179 const auto Atmosphere = fdmex->GetAtmosphere();
180 double altitudeASL = GetAltitudeASLFtIC();
181 double pressure = Atmosphere->GetPressure(altitudeASL);
182 double mach = Auxiliary->MachFromVcalibrated(fabs(vcas)*ktstofps, pressure);
183 double soundSpeed = Atmosphere->GetSoundSpeed(altitudeASL);
184
185 SetVtrueFpsIC(mach * soundSpeed);
186 lastSpeedSet = setvc;
187}
+ Here is the call graph for this function:

◆ SetVDownFpsIC()

void SetVDownFpsIC ( double  vd)
inline

Sets the initial local axis down velocity.

Parameters
vdInitial down velocity in feet/second

Definition at line 426 of file FGInitialCondition.h.

426{ SetNEDVelFpsIC(eW, vd); }

◆ SetVEastFpsIC()

void SetVEastFpsIC ( double  ve)
inline

Sets the initial local axis east velocity.

Parameters
veInitial east velocity in feet/second

Definition at line 422 of file FGInitialCondition.h.

422{ SetNEDVelFpsIC(eV, ve); }

◆ SetVequivalentKtsIC()

void SetVequivalentKtsIC ( double  ve)

Set equivalent airspeed initial condition in knots.

Parameters
veEquivalent airspeed in knots

Definition at line 155 of file FGInitialCondition.cpp.

156{
157 const auto Atmosphere = fdmex->GetAtmosphere();
158 double altitudeASL = GetAltitudeASLFtIC();
159 double rho = Atmosphere->GetDensity(altitudeASL);
160 SetVtrueFpsIC(ve*ktstofps*sqrt(FGAtmosphere::StdDaySLdensity/rho));
161 lastSpeedSet = setve;
162}
+ Here is the call graph for this function:

◆ SetVgroundFpsIC()

void SetVgroundFpsIC ( double  vg)

Sets the initial ground speed.

Parameters
vgInitial ground speed in feet/second

Definition at line 240 of file FGInitialCondition.cpp.

241{
242 const FGMatrix33& Tb2l = orientation.GetTInv();
243 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
244 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
245
246 vUVW_NED(eU) = vg * orientation.GetCosEuler(ePsi);
247 vUVW_NED(eV) = vg * orientation.GetSinEuler(ePsi);
248 vUVW_NED(eW) = 0.;
249 _vt_NED = vUVW_NED + _vWIND_NED;
250 vt = _vt_NED.Magnitude();
251
252 calcAeroAngles(_vt_NED);
253
254 lastSpeedSet = setvg;
255}
+ Here is the call graph for this function:

◆ SetVgroundKtsIC()

void SetVgroundKtsIC ( double  vg)
inline

Set ground speed initial condition in knots.

Parameters
vgGround speed in knots

Definition at line 248 of file FGInitialCondition.h.

248{ SetVgroundFpsIC(vg*ktstofps); }

◆ SetVNorthFpsIC()

void SetVNorthFpsIC ( double  vn)
inline

Sets the initial local axis north velocity.

Parameters
vnInitial north velocity in feet/second

Definition at line 418 of file FGInitialCondition.h.

418{ SetNEDVelFpsIC(eU, vn); }

◆ SetVtrueFpsIC()

void SetVtrueFpsIC ( double  vt)

Sets the initial true airspeed.

Parameters
vtInitial true airspeed in feet/second

Definition at line 264 of file FGInitialCondition.cpp.

265{
266 const FGMatrix33& Tb2l = orientation.GetTInv();
267 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
268 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
269
270 if (vt > 0.1)
271 _vt_NED *= vtrue / vt;
272 else
273 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vtrue, 0., 0.);
274
275 vt = vtrue;
276 vUVW_NED = _vt_NED - _vWIND_NED;
277
278 calcAeroAngles(_vt_NED);
279
280 lastSpeedSet = setvt;
281}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetVtrueKtsIC()

void SetVtrueKtsIC ( double  vtrue)
inline

Set true airspeed initial condition in knots.

Parameters
vtrueTrue airspeed in knots

Definition at line 244 of file FGInitialCondition.h.

244{ SetVtrueFpsIC(vtrue*ktstofps); }

◆ SetWBodyFpsIC()

void SetWBodyFpsIC ( double  wbody)
inline

Sets the initial body axis Z velocity.

Parameters
wbodyInitial Z velocity in feet/second

Definition at line 414 of file FGInitialCondition.h.

414{ SetBodyVelFpsIC(eW, wbody); }

◆ SetWindDirDegIC()

void SetWindDirDegIC ( double  dir)

Sets the initial wind direction.

Parameters
dirInitial direction wind is coming from in degrees

Definition at line 625 of file FGInitialCondition.cpp.

626{
627 const FGMatrix33& Tb2l = orientation.GetTInv();
628 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
629 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
630 double mag = _vWIND_NED.Magnitude(eU, eV);
631 FGColumnVector3 _vHEAD(mag*cos(dir*degtorad), mag*sin(dir*degtorad), 0.);
632
633 _vWIND_NED(eU) = _vHEAD(eU);
634 _vWIND_NED(eV) = _vHEAD(eV);
635 _vt_NED = vUVW_NED + _vWIND_NED;
636 vt = _vt_NED.Magnitude();
637
638 calcAeroAngles(_vt_NED);
639}
+ Here is the call graph for this function:

◆ SetWindDownKtsIC()

void SetWindDownKtsIC ( double  wD)

Sets the initial wind downward speed.

Parameters
wDInitial downward wind speed in knots

Definition at line 583 of file FGInitialCondition.cpp.

584{
585 const FGMatrix33& Tb2l = orientation.GetTInv();
586 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
587
588 _vt_NED(eW) = vUVW_NED(eW) + wD * ktstofps;
589 vt = _vt_NED.Magnitude();
590
591 calcAeroAngles(_vt_NED);
592}
+ Here is the call graph for this function:

◆ SetWindMagFpsIC()

void SetWindMagFpsIC ( double  mag)
inline

Sets the initial total wind speed.

Parameters
magInitial wind velocity magnitude in feet/second

Definition at line 448 of file FGInitialCondition.h.

448{ SetWindMagKtsIC(mag * fpstokts); }
void SetWindMagKtsIC(double mag)
Sets the initial total wind speed.

◆ SetWindMagKtsIC()

void SetWindMagKtsIC ( double  mag)

Sets the initial total wind speed.

Parameters
magInitial wind velocity magnitude in knots

Definition at line 599 of file FGInitialCondition.cpp.

600{
601 const FGMatrix33& Tb2l = orientation.GetTInv();
602 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
603 FGColumnVector3 _vWIND_NED = _vt_NED - vUVW_NED;
604 FGColumnVector3 _vHEAD(_vWIND_NED(eU), _vWIND_NED(eV), 0.);
605 double windMag = _vHEAD.Magnitude();
606
607 if (windMag > 0.001)
608 _vHEAD *= (mag*ktstofps) / windMag;
609 else
610 _vHEAD = {mag*ktstofps, 0., 0.};
611
612 _vWIND_NED(eU) = _vHEAD(eU);
613 _vWIND_NED(eV) = _vHEAD(eV);
614 _vt_NED = vUVW_NED + _vWIND_NED;
615 vt = _vt_NED.Magnitude();
616
617 calcAeroAngles(_vt_NED);
618}
+ Here is the call graph for this function:

◆ SetWindNEDFpsIC()

void SetWindNEDFpsIC ( double  wN,
double  wE,
double  wD 
)

Sets the initial wind velocity.

Parameters
wNInitial wind velocity in local north direction, feet/second
wEInitial wind velocity in local east direction, feet/second
wDInitial wind velocity in local down direction, feet/second

Definition at line 519 of file FGInitialCondition.cpp.

520{
521 FGColumnVector3 _vt_NED = vUVW_NED + FGColumnVector3(wN, wE, wD);
522 vt = _vt_NED.Magnitude();
523
524 calcAeroAngles(_vt_NED);
525}
+ Here is the call graph for this function:

◆ TrimRequested()

int TrimRequested ( void  ) const
inline

Does initialization file call for trim ?

Returns
Trim type, if any requested (version 1).

Definition at line 685 of file FGInitialCondition.h.

685{ return trimRequested; }

The documentation for this class was generated from the following files: