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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGInitialCondition.h
4 Author: Tony Peden
5 Date started: 7/1/99
6
7 --------- Copyright (C) 1999 Anthony K. Peden (apeden@earthlink.net) ---------
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
26 HISTORY
27--------------------------------------------------------------------------------
287/1/99 TP Created
29
30FUNCTIONAL DESCRIPTION
31--------------------------------------------------------------------------------
32
33The purpose of this class is to take a set of initial conditions and provide a
34kinematically consistent set of body axis velocity components, euler angles, and
35altitude. This class does not attempt to trim the model i.e. the sim will most
36likely start in a very dynamic state (unless, of course, you have chosen your
37IC's wisely) even after setting it up with this class.
38
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40SENTRY
41%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
42
43#ifndef FGINITIALCONDITION_H
44#define FGINITIALCONDITION_H
45
46/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47INCLUDES
48%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
49
50#include <memory>
51
52#include "math/FGLocation.h"
53#include "math/FGQuaternion.h"
54#include "simgear/misc/sg_path.hxx"
55
56/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57FORWARD DECLARATIONS
58%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
60namespace JSBSim {
61
62class FGFDMExec;
63class FGMatrix33;
64class FGColumnVector3;
65class FGAircraft;
66class FGAuxiliary;
67class FGPropertyManager;
68class Element;
69
70typedef enum { setvt, setvc, setve, setmach, setuvw, setned, setvg } speedset;
71typedef enum { setasl, setagl } altitudeset;
72typedef enum { setgeoc, setgeod } latitudeset;
73
74/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
75CLASS DOCUMENTATION
76%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
77
222/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223CLASS DECLARATION
224%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
225
226class JSBSIM_API FGInitialCondition : public FGJSBBase
227{
228public:
230 explicit FGInitialCondition(FGFDMExec *fdmex);
233
236 void SetVcalibratedKtsIC(double vc);
237
240 void SetVequivalentKtsIC(double ve);
241
244 void SetVtrueKtsIC(double vtrue) { SetVtrueFpsIC(vtrue*ktstofps); }
245
248 void SetVgroundKtsIC(double vg) { SetVgroundFpsIC(vg*ktstofps); }
249
252 void SetMachIC(double mach);
253
256 void SetAlphaDegIC(double a) { SetAlphaRadIC(a*degtorad); }
257
260 void SetBetaDegIC(double b) { SetBetaRadIC(b*degtorad);}
261
264 void SetThetaDegIC(double theta) { SetThetaRadIC(theta*degtorad); }
265
268 void ResetIC(double u0, double v0, double w0, double p0, double q0, double r0,
269 double alpha0, double beta0, double phi0, double theta0, double psi0,
270 double latitudeRad0, double longitudeRad0, double altitudeAGL0,
271 double gamma0);
272
275 void SetPhiDegIC(double phi) { SetPhiRadIC(phi*degtorad);}
276
279 void SetPsiDegIC(double psi){ SetPsiRadIC(psi*degtorad); }
280
283 void SetClimbRateFpmIC(double roc) { SetClimbRateFpsIC(roc/60.0); }
284
287 void SetFlightPathAngleDegIC(double gamma)
288 { SetClimbRateFpsIC(vt*sin(gamma*degtorad)); }
289
292 void SetAltitudeASLFtIC(double altitudeASL);
293
296 void SetAltitudeAGLFtIC(double agl);
297
300 void SetTerrainElevationFtIC(double elev);
301
304 void SetLatitudeDegIC(double lat) { SetLatitudeRadIC(lat*degtorad); }
305
310 void SetGeodLatitudeDegIC(double glat)
311 { SetGeodLatitudeRadIC(glat*degtorad); }
312
315 void SetLongitudeDegIC(double lon) { SetLongitudeRadIC(lon*degtorad); }
316
319 double GetVcalibratedKtsIC(void) const;
320
323 double GetVequivalentKtsIC(void) const;
324
327 double GetVgroundKtsIC(void) const { return GetVgroundFpsIC() * fpstokts; }
328
331 double GetVtrueKtsIC(void) const { return vt*fpstokts; }
332
335 double GetMachIC(void) const;
336
339 double GetClimbRateFpmIC(void) const
340 { return GetClimbRateFpsIC()*60; }
341
344 double GetFlightPathAngleDegIC(void) const
345 { return GetFlightPathAngleRadIC()*radtodeg; }
346
349 double GetAlphaDegIC(void) const { return alpha*radtodeg; }
350
353 double GetBetaDegIC(void) const { return beta*radtodeg; }
354
357 double GetThetaDegIC(void) const { return orientation.GetEulerDeg(eTht); }
358
361 double GetPhiDegIC(void) const { return orientation.GetEulerDeg(ePhi); }
362
365 double GetPsiDegIC(void) const { return orientation.GetEulerDeg(ePsi); }
366
369 double GetLatitudeDegIC(void) const { return position.GetLatitudeDeg(); }
370
373 double GetGeodLatitudeDegIC(void) const
374 { return position.GetGeodLatitudeDeg(); }
375
378 double GetLongitudeDegIC(void) const { return position.GetLongitudeDeg(); }
379
382 double GetAltitudeASLFtIC(void) const;
383
386 double GetAltitudeAGLFtIC(void) const;
387
390 double GetTerrainElevationFtIC(void) const;
391
394 double GetEarthPositionAngleIC(void) const { return epa; }
395
398 void SetVgroundFpsIC(double vg);
399
402 void SetVtrueFpsIC(double vt);
403
406 void SetUBodyFpsIC(double ubody) { SetBodyVelFpsIC(eU, ubody); }
407
410 void SetVBodyFpsIC(double vbody) { SetBodyVelFpsIC(eV, vbody); }
411
414 void SetWBodyFpsIC(double wbody) { SetBodyVelFpsIC(eW, wbody); }
415
418 void SetVNorthFpsIC(double vn) { SetNEDVelFpsIC(eU, vn); }
419
422 void SetVEastFpsIC(double ve) { SetNEDVelFpsIC(eV, ve); }
423
426 void SetVDownFpsIC(double vd) { SetNEDVelFpsIC(eW, vd); }
427
430 void SetPRadpsIC(double P) { vPQR_body(eP) = P; }
431
434 void SetQRadpsIC(double Q) { vPQR_body(eQ) = Q; }
435
438 void SetRRadpsIC(double R) { vPQR_body(eR) = R; }
439
444 void SetWindNEDFpsIC(double wN, double wE, double wD);
445
448 void SetWindMagFpsIC(double mag) { SetWindMagKtsIC(mag * fpstokts); }
449
452 void SetWindMagKtsIC(double mag);
453
456 void SetWindDirDegIC(double dir);
457
460 void SetHeadWindKtsIC(double head);
461
464 void SetCrossWindKtsIC(double cross);
465
468 void SetWindDownKtsIC(double wD);
469
472 void SetClimbRateFpsIC(double roc);
473
476 double GetVgroundFpsIC(void) const { return vUVW_NED.Magnitude(eU, eV); }
477
480 double GetVtrueFpsIC(void) const { return vt; }
481
484 double GetWindUFpsIC(void) const { return GetBodyWindFpsIC(eU); }
485
488 double GetWindVFpsIC(void) const { return GetBodyWindFpsIC(eV); }
489
492 double GetWindWFpsIC(void) const { return GetBodyWindFpsIC(eW); }
493
496 FGColumnVector3 GetWindNEDFpsIC(void) const;
497
500 double GetWindNFpsIC(void) const { return GetWindNEDFpsIC()(eX); }
501
504 double GetWindEFpsIC(void) const { return GetWindNEDFpsIC()(eY); }
505
508 double GetWindDFpsIC(void) const { return GetWindNEDFpsIC()(eZ); }
509
512 double GetWindMagFpsIC(void) const;
513
516 double GetWindDirDegIC(void) const;
517
520 double GetClimbRateFpsIC(void) const
521 {
522 const FGMatrix33& Tb2l = orientation.GetTInv();
523 FGColumnVector3 _vt_NED = Tb2l * Tw2b * FGColumnVector3(vt, 0., 0.);
524 return -_vt_NED(eW);
525 }
526
529 const FGColumnVector3 GetUVWFpsIC(void) const {
530 const FGMatrix33& Tl2b = orientation.GetT();
531 return Tl2b * vUVW_NED;
532 }
533
536 double GetUBodyFpsIC(void) const { return GetBodyVelFpsIC(eU); }
537
540 double GetVBodyFpsIC(void) const { return GetBodyVelFpsIC(eV); }
541
544 double GetWBodyFpsIC(void) const { return GetBodyVelFpsIC(eW); }
545
548 double GetVNorthFpsIC(void) const { return vUVW_NED(eU); }
549
552 double GetVEastFpsIC(void) const { return vUVW_NED(eV); }
553
556 double GetVDownFpsIC(void) const { return vUVW_NED(eW); }
557
560 const FGColumnVector3 GetPQRRadpsIC(void) const { return vPQR_body; }
561
564 double GetPRadpsIC() const { return vPQR_body(eP); }
565
568 double GetQRadpsIC() const { return vPQR_body(eQ); }
569
572 double GetRRadpsIC() const { return vPQR_body(eR); }
573
576 void SetFlightPathAngleRadIC(double gamma)
577 { SetClimbRateFpsIC(vt*sin(gamma)); }
578
581 void SetAlphaRadIC(double alpha);
582
585 void SetBetaRadIC(double beta);
586
589 void SetPhiRadIC(double phi) { SetEulerAngleRadIC(ePhi, phi); }
590
593 void SetThetaRadIC(double theta) { SetEulerAngleRadIC(eTht, theta); }
594
597 void SetPsiRadIC(double psi) { SetEulerAngleRadIC(ePsi, psi); }
598
601 void SetLatitudeRadIC(double lat);
602
607 void SetGeodLatitudeRadIC(double glat);
608
611 void SetLongitudeRadIC(double lon);
612
615 void SetTargetNlfIC(double nlf) { targetNlfIC=nlf; }
616
620 double GetFlightPathAngleRadIC(void) const
621 { return (vt == 0.0)?0.0:asin(GetClimbRateFpsIC() / vt); }
622
625 double GetAlphaRadIC(void) const { return alpha; }
626
629 double GetBetaRadIC(void) const { return beta; }
630
633 const FGLocation& GetPosition(void) const { return position; }
634
637 double GetLatitudeRadIC(void) const { return position.GetLatitude(); }
638
641 double GetGeodLatitudeRadIC(void) const
642 { return position.GetGeodLatitudeRad(); }
643
646 double GetLongitudeRadIC(void) const { return position.GetLongitude(); }
647
650 const FGQuaternion& GetOrientation(void) const { return orientation; }
651
654 double GetPhiRadIC(void) const { return orientation.GetEuler(ePhi); }
655
658 double GetThetaRadIC(void) const { return orientation.GetEuler(eTht); }
659
662 double GetPsiRadIC(void) const { return orientation.GetEuler(ePsi); }
663
666 speedset GetSpeedSet(void) const { return lastSpeedSet; }
667
670 double GetTargetNlfIC(void) const { return targetNlfIC; }
671
676 bool Load(const SGPath& rstname, bool useAircraftPath = true );
677
681 bool IsEngineRunning(unsigned int n) const { return (enginesRunning & (1 << n)) != 0; }
682
685 int TrimRequested(void) const { return trimRequested; }
686
688 void InitializeIC(void);
689
690 void bind(FGPropertyManager* pm);
691
692private:
693 FGColumnVector3 vUVW_NED;
694 FGColumnVector3 vPQR_body;
695 FGLocation position;
696 FGQuaternion orientation;
697 double vt;
698
699 double targetNlfIC;
700
701 FGMatrix33 Tw2b, Tb2w;
702 double alpha, beta;
703 double epa;
704
705 speedset lastSpeedSet;
706 altitudeset lastAltitudeSet;
707 latitudeset lastLatitudeSet;
708 unsigned int enginesRunning;
709 int trimRequested;
710
711 FGFDMExec *fdmex;
712 std::shared_ptr<FGAircraft> Aircraft;
713 std::shared_ptr<FGAuxiliary> Auxiliary;
714
715 bool Load_v1(Element* document);
716 bool Load_v2(Element* document);
717
718 void SetEulerAngleRadIC(int idx, double angle);
719 void SetBodyVelFpsIC(int idx, double vel);
720 void SetNEDVelFpsIC(int idx, double vel);
721 double GetBodyWindFpsIC(int idx) const;
722 double GetBodyVelFpsIC(int idx) const;
723 void calcAeroAngles(const FGColumnVector3& _vt_BODY);
724 void calcThetaBeta(double alfa, const FGColumnVector3& _vt_NED);
725 double ComputeGeodAltitude(double geodLatitude);
726 bool LoadLatitude(Element* position_el);
727 void SetTrimRequest(std::string trim);
728 void Debug(int from);
729};
730}
731#endif
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Initializes the simulation run.
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.
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.
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 SetVtrueKtsIC(double vtrue)
Set true airspeed initial condition in knots.
const FGColumnVector3 GetUVWFpsIC(void) const
Gets the initial body velocity.
const FGQuaternion & GetOrientation(void) const
Gets the initial orientation.
double GetWindEFpsIC(void) const
Gets the initial wind velocity in local frame.
void SetVBodyFpsIC(double vbody)
Sets the initial body axis Y velocity.
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.
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.
bool IsEngineRunning(unsigned int n) const
Is an engine running ?
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.
double GetRRadpsIC() const
Gets the initial body axis yaw rate.
double GetEarthPositionAngleIC(void) const
Gets the initial Earth position angle.
double GetAlphaRadIC(void) const
Gets the initial angle of attack.
double GetAlphaDegIC(void) const
Gets the initial angle of attack.
void SetTargetNlfIC(double nlf)
Sets the target normal load factor.
void SetPsiDegIC(double psi)
Sets the heading angle initial condition in degrees.
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.
const FGColumnVector3 GetPQRRadpsIC(void) const
Gets the initial body rotation rate.
void SetVDownFpsIC(double vd)
Sets the initial local axis down velocity.
void SetGeodLatitudeDegIC(double glat)
Sets the initial geodetic latitude.
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.
const FGLocation & GetPosition(void) const
Gets the initial position.
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 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.
speedset GetSpeedSet(void) const
Gets the initial speedset.
double GetWindWFpsIC(void) const
Gets the initial body axis Z wind velocity.
int TrimRequested(void) const
Does initialization file call for trim ?
double GetBetaRadIC(void) const
Gets the initial angle of sideslip.
double GetLongitudeDegIC(void) const
Gets the initial longitude.
JSBSim Base class.
Definition FGJSBBase.h:117
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
Models the Quaternion representation of rotations.