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
FGAuxiliary.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGAuxiliary.h
4 Author: Jon Berndt
5 Date started: 01/26/99
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2811/22/98 JSB Created
29 1/1/00 TP Added calcs and getters for VTAS, VCAS, VEAS, Vground, in knots
30
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32SENTRY
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
34
35#ifndef FGAUXILIARY_H
36#define FGAUXILIARY_H
37
38/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39INCLUDES
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42#include "FGModel.h"
43#include "math/FGLocation.h"
44
45/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46FORWARD DECLARATIONS
47%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49namespace JSBSim {
50
51/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52CLASS DOCUMENTATION
53%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54
96/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
97CLASS DECLARATION
98%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
99
100class JSBSIM_API FGAuxiliary : public FGModel {
101public:
104 explicit FGAuxiliary(FGFDMExec* Executive);
105
107 ~FGAuxiliary();
108
109 bool InitModel(void) override;
110
119 bool Run(bool Holding) override;
120
121// GET functions
122
130 double PitotTotalPressure(double mach, double pressure) const;
131
138 double MachFromImpactPressure(double qc, double p) const;
139
147 double VcalibratedFromMach(double mach, double pressure) const;
148
156 double MachFromVcalibrated(double vcas, double pressure) const;
157
158 // Atmospheric parameters GET functions
160 double GetVcalibratedFPS(void) const { return vcas; }
162 double GetVcalibratedKTS(void) const { return vcas*fpstokts; }
164 double GetVequivalentFPS(void) const { return veas; }
166 double GetVequivalentKTS(void) const { return veas*fpstokts; }
168 double GetVtrueFPS() const { return Vt; }
170 double GetVtrueKTS() const { return Vt * fpstokts; }
171
176 double GetTotalPressure(void) const { return pt; }
177
186 double GetTotalTemperature(void) const { return tat; }
187 double GetTAT_C(void) const { return tatc; }
188
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); }
193
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; }
203
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); }
210
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(); }
221
225 const FGMatrix33& GetTw2b(void) const { return mTw2b; }
226
230 const FGMatrix33& GetTb2w(void) const { return mTb2w; }
231
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; }
236
239 double GetVt (void) const { return Vt; }
240
245 double GetVground (void) const { return Vground; }
246
248 double GetMach (void) const { return Mach; }
249
251 double GetMachU (void) const { return MachU; }
252
254 double GetNx (void) const { return Nx; }
255
257 double GetNy (void) const { return Ny; }
258
260 double GetNz (void) const { return Nz; }
261
262 const FGColumnVector3& GetNwcg(void) const { return vNwcg; }
263
264 double GetHOverBCG(void) const { return hoverbcg; }
265 double GetHOverBMAC(void) const { return hoverbmac; }
266
267 double GetGamma(void) const { return gamma; }
268 double GetGroundTrack(void) const { return psigt; }
269
270 double GetGamma(int unit) const {
271 if (unit == inDegrees) return gamma*radtodeg;
272 else return BadUnits();
273 }
274
275 double GetLongitudeRelativePosition (void) const;
276 double GetLatitudeRelativePosition (void) const;
277 double GetDistanceRelativePosition (void) const;
278
279 void SetAeroPQR(const FGColumnVector3& tt) { vAeroPQR = tt; }
280
281 struct Inputs {
282 double Pressure;
283 double Density;
284 double Temperature;
285 double StdDaySLsoundspeed;
286 double SoundSpeed;
287 double KinematicViscosity;
288 double DistanceAGL;
289 double Wingspan;
290 double Wingchord;
291 double StandardGravity;
292 double Mass;
293 FGMatrix33 Tl2b;
294 FGMatrix33 Tb2l;
295 FGColumnVector3 vPQR;
296 FGColumnVector3 vPQRi;
297 FGColumnVector3 vPQRidot;
298 FGColumnVector3 vUVW;
299 FGColumnVector3 vUVWdot;
300 FGColumnVector3 vVel;
301 FGColumnVector3 vBodyAccel;
302 FGColumnVector3 ToEyePt;
303 FGColumnVector3 RPBody;
304 FGColumnVector3 VRPBody;
305 FGColumnVector3 vFw;
306 FGLocation vLocation;
307 double CosTht;
308 double SinTht;
309 double CosPhi;
310 double SinPhi;
311 FGColumnVector3 TotalWindNED;
312 FGColumnVector3 TurbPQR;
313 } in;
314
315private:
316 double vcas, veas;
317 double pt, tat, tatc; // Don't add a getter for pt!
318
319 FGMatrix33 mTw2b;
320 FGMatrix33 mTb2w;
321
322 FGColumnVector3 vPilotAccel;
323 FGColumnVector3 vPilotAccelN;
324 FGColumnVector3 vNcg;
325 FGColumnVector3 vNwcg;
326 FGColumnVector3 vAeroPQR;
327 FGColumnVector3 vAeroUVW;
328 FGColumnVector3 vEulerRates;
329 FGColumnVector3 vMachUVW;
330 FGLocation vLocationVRP;
331
332 double Vt, Vground;
333 double Mach, MachU;
334 double qbar, qbarUW, qbarUV;
335 double Re; // Reynolds Number = V*c/mu
336 double alpha, beta;
337 double adot,bdot;
338 double psigt, gamma;
339 double Nx, Ny, Nz;
340
341 double hoverbcg, hoverbmac;
342
343 void UpdateWindMatrices(void);
344
345 void CalculateRelativePosition(void);
346
347 void bind(void);
348 double BadUnits(void) const;
349 void Debug(int from) override;
350};
351
352} // namespace JSBSim
353
354//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
355#endif
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.
Definition FGFDMExec.h:184
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
Definition FGLocation.h:152
Handles matrix math operations.
Definition FGMatrix33.h:70
Base class for all scheduled JSBSim models.
Definition FGModel.h:70