43#include "math/FGLocation.h"
109 bool InitModel(
void)
override;
119 bool Run(
bool Holding)
override;
130 double PitotTotalPressure(
double mach,
double pressure)
const;
138 double MachFromImpactPressure(
double qc,
double p)
const;
147 double VcalibratedFromMach(
double mach,
double pressure)
const;
156 double MachFromVcalibrated(
double vcas,
double pressure)
const;
187 double GetTAT_C(
void)
const {
return tatc; }
189 double GetPilotAccel(
int idx)
const {
return vPilotAccel(idx); }
190 double GetNpilot(
int idx)
const {
return vPilotAccelN(idx); }
191 double GetAeroPQR(
int axis)
const {
return vAeroPQR(axis); }
192 double GetEulerRates(
int axis)
const {
return vEulerRates(axis); }
194 const FGColumnVector3& GetPilotAccel (
void)
const {
return vPilotAccel; }
195 const FGColumnVector3& GetNpilot (
void)
const {
return vPilotAccelN; }
196 const FGColumnVector3& GetNcg (
void)
const {
return vNcg; }
197 double GetNcg (
int idx)
const {
return vNcg(idx); }
198 double GetNlf (
void)
const;
199 const FGColumnVector3& GetAeroPQR (
void)
const {
return vAeroPQR; }
200 const FGColumnVector3& GetEulerRates (
void)
const {
return vEulerRates; }
201 const FGColumnVector3& GetAeroUVW (
void)
const {
return vAeroUVW; }
202 const FGLocation& GetLocationVRP(
void)
const {
return vLocationVRP; }
204 double GetAeroUVW (
int idx)
const {
return vAeroUVW(idx); }
205 double Getalpha (
void)
const {
return alpha; }
206 double Getbeta (
void)
const {
return beta; }
207 double Getadot (
void)
const {
return adot; }
208 double Getbdot (
void)
const {
return bdot; }
209 double GetMagBeta (
void)
const {
return fabs(beta); }
211 double Getalpha (
int unit)
const {
if (unit == inDegrees)
return alpha*radtodeg;
212 else return BadUnits(); }
213 double Getbeta (
int unit)
const {
if (unit == inDegrees)
return beta*radtodeg;
214 else return BadUnits(); }
215 double Getadot (
int unit)
const {
if (unit == inDegrees)
return adot*radtodeg;
216 else return BadUnits(); }
217 double Getbdot (
int unit)
const {
if (unit == inDegrees)
return bdot*radtodeg;
218 else return BadUnits(); }
219 double GetMagBeta (
int unit)
const {
if (unit == inDegrees)
return fabs(beta)*radtodeg;
220 else return BadUnits(); }
232 double Getqbar (
void)
const {
return qbar; }
233 double GetqbarUW (
void)
const {
return qbarUW; }
234 double GetqbarUV (
void)
const {
return qbarUV; }
235 double GetReynoldsNumber(
void)
const {
return Re; }
239 double GetVt (
void)
const {
return Vt; }
254 double GetNx (
void)
const {
return Nx; }
257 double GetNy (
void)
const {
return Ny; }
260 double GetNz (
void)
const {
return Nz; }
264 double GetHOverBCG(
void)
const {
return hoverbcg; }
265 double GetHOverBMAC(
void)
const {
return hoverbmac; }
267 double GetGamma(
void)
const {
return gamma; }
268 double GetGroundTrack(
void)
const {
return psigt; }
270 double GetGamma(
int unit)
const {
271 if (unit == inDegrees)
return gamma*radtodeg;
272 else return BadUnits();
275 double GetLongitudeRelativePosition (
void)
const;
276 double GetLatitudeRelativePosition (
void)
const;
277 double GetDistanceRelativePosition (
void)
const;
279 void SetAeroPQR(
const FGColumnVector3& tt) { vAeroPQR = tt; }
285 double StdDaySLsoundspeed;
287 double KinematicViscosity;
291 double StandardGravity;
317 double pt, tat, tatc;
334 double qbar, qbarUW, qbarUV;
341 double hoverbcg, hoverbmac;
343 void UpdateWindMatrices(
void);
345 void CalculateRelativePosition(
void);
348 double BadUnits(
void)
const;
349 void Debug(
int from)
override;
Encapsulates various uncategorized scheduled functions.
const FGMatrix33 & GetTb2w(void) const
Calculates and returns the body-to-wind axis transformation matrix.
double GetVtrueFPS() const
Returns the true airspeed in feet per second.
double GetVcalibratedFPS(void) const
Returns Calibrated airspeed in feet/second.
const FGMatrix33 & GetTw2b(void) const
Calculates and returns the wind-to-body axis transformation matrix.
double GetVground(void) const
Gets the ground speed in feet per second.
double GetVcalibratedKTS(void) const
Returns Calibrated airspeed in knots.
double GetMach(void) const
Gets the Mach number.
double GetTotalPressure(void) const
Returns the total pressure.
double GetVtrueKTS() const
Returns the true airspeed in knots.
double GetNz(void) const
The vertical acceleration in g's of the aircraft center of gravity.
double GetVequivalentFPS(void) const
Returns equivalent airspeed in feet/second.
double GetMachU(void) const
The mach number calculated using the vehicle X axis velocity.
double GetTotalTemperature(void) const
Returns the total temperature.
double GetVt(void) const
Gets the magnitude of total vehicle velocity including wind effects in feet per second.
double GetNy(void) const
The lateral acceleration in g's of the aircraft center of gravity.
double GetNx(void) const
The longitudinal acceleration in g's of the aircraft center of gravity.
double GetVequivalentKTS(void) const
Returns equivalent airspeed in knots.
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
Handles matrix math operations.
Base class for all scheduled JSBSim models.