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
FGPropagate.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGPropagate.h
4 Author: Jon S. Berndt
5 Date started: 1/5/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--------------------------------------------------------------------------------
2801/05/99 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGPROPAGATE_H
35#define FGPROPAGATE_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <memory>
42
43#include "models/FGModel.h"
44#include "math/FGLocation.h"
45#include "math/FGQuaternion.h"
46
47/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
48FORWARD DECLARATIONS
49%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
50
51namespace JSBSim {
52
53class FGInitialCondition;
54class FGInertial;
55
56/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57CLASS DOCUMENTATION
58%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
91/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92CLASS DECLARATION
93%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
94
95class JSBSIM_API FGPropagate : public FGModel {
96public:
97
105
110
115
120
124
128
129 FGQuaternion vQtrndot;
130
131 FGColumnVector3 vInertialVelocity;
132
133 FGColumnVector3 vInertialPosition;
134
135 std::deque <FGColumnVector3> dqPQRidot;
136 std::deque <FGColumnVector3> dqUVWidot;
137 std::deque <FGColumnVector3> dqInertialVelocity;
138 std::deque <FGQuaternion> dqQtrndot;
139 };
140
149 explicit FGPropagate(FGFDMExec* Executive);
150
152 ~FGPropagate();
153
155 enum eIntegrateType {eNone = 0, eRectEuler, eTrapezoidal, eAdamsBashforth2,
156 eAdamsBashforth3, eAdamsBashforth4, eBuss1, eBuss2, eLocalLinearization, eAdamsBashforth5};
157
161 bool InitModel(void);
162
163 void InitializeDerivatives();
164
172 bool Run(bool Holding);
173
185 const FGColumnVector3& GetVel(void) const { return vVel; }
186
197 const FGColumnVector3& GetUVW(void) const { return VState.vUVW; }
198
211 const FGColumnVector3& GetPQR(void) const {return VState.vPQR;}
212
225 const FGColumnVector3& GetPQRi(void) const {return VState.vPQRi;}
226
236 const FGQuaternion& GetQuaterniondot(void) const {return VState.vQtrndot;}
237
253 const FGColumnVector3& GetEuler(void) const { return VState.qAttitudeLocal.GetEuler(); }
254
270 FGColumnVector3 GetEulerDeg(void) const;
271
283 double GetUVW(int idx) const { return VState.vUVW(idx); }
284
296 double GetVel(int idx) const { return vVel(idx); }
297
300 double GetInertialVelocityMagnitude(void) const { return VState.vInertialVelocity.Magnitude(); }
301
304 double GetNEDVelocityMagnitude(void) const { return VState.vUVW.Magnitude(); }
305
308 const FGColumnVector3& GetInertialVelocity(void) const { return VState.vInertialVelocity; }
309 double GetInertialVelocity(int i) const { return VState.vInertialVelocity(i); }
310
313 const FGColumnVector3& GetInertialPosition(void) const { return VState.vInertialPosition; }
314 double GetInertialPosition(int i) const { return VState.vInertialPosition(i); }
315
318 FGColumnVector3 GetECEFVelocity(void) const {return Tb2ec * VState.vUVW; }
319
323 double GetECEFVelocity(int idx) const {return (Tb2ec * VState.vUVW)(idx); }
324
330 double GetAltitudeASL(void) const;
331
337 double GetAltitudeASLmeters(void) const { return GetAltitudeASL()*fttom;}
338
350 double GetPQR(int axis) const {return VState.vPQR(axis);}
351
363 double GetPQRi(int axis) const {return VState.vPQRi(axis);}
364
375 double GetEuler(int axis) const { return VState.qAttitudeLocal.GetEuler(axis); }
376
387 double GetEulerDeg(int axis) const { return VState.qAttitudeLocal.GetEuler(axis) * radtodeg; }
388
399 double GetCosEuler(int idx) const { return VState.qAttitudeLocal.GetCosEuler(idx); }
400
411 double GetSinEuler(int idx) const { return VState.qAttitudeLocal.GetSinEuler(idx); }
412
418 double Gethdot(void) const { return -vVel(eDown); }
419
426 double GetLocalTerrainRadius(void) const;
427
431 double GetEarthPositionAngle(void) const { return epa; }
432
436 double GetEarthPositionAngleDeg(void) const { return epa*radtodeg;}
437
438 const FGColumnVector3& GetTerrainVelocity(void) const { return LocalTerrainVelocity; }
439 const FGColumnVector3& GetTerrainAngularVelocity(void) const { return LocalTerrainAngularVelocity; }
440 void RecomputeLocalTerrainVelocity();
441
442 double GetTerrainElevation(void) const;
443 double GetDistanceAGL(void) const;
444 double GetDistanceAGLKm(void) const;
445 double GetRadius(void) const {
446 if (VState.vLocation.GetRadius() == 0) return 1.0;
447 else return VState.vLocation.GetRadius();
448 }
449 double GetLongitude(void) const { return VState.vLocation.GetLongitude(); }
450 double GetLatitude(void) const { return VState.vLocation.GetLatitude(); }
451
452 double GetGeodLatitudeRad(void) const { return VState.vLocation.GetGeodLatitudeRad(); }
453 double GetGeodLatitudeDeg(void) const { return VState.vLocation.GetGeodLatitudeDeg(); }
454
455 double GetGeodeticAltitude(void) const { return VState.vLocation.GetGeodAltitude(); }
456 double GetGeodeticAltitudeKm(void) const { return VState.vLocation.GetGeodAltitude()*0.0003048; }
457
458 double GetLongitudeDeg(void) const { return VState.vLocation.GetLongitudeDeg(); }
459 double GetLatitudeDeg(void) const { return VState.vLocation.GetLatitudeDeg(); }
460 const FGLocation& GetLocation(void) const { return VState.vLocation; }
461 double GetLocation(int i) const { return VState.vLocation(i); }
462
467 const FGMatrix33& GetTl2b(void) const { return Tl2b; }
468
473 const FGMatrix33& GetTb2l(void) const { return Tb2l; }
474
477 const FGMatrix33& GetTec2b(void) const { return Tec2b; }
478
481 const FGMatrix33& GetTb2ec(void) const { return Tb2ec; }
482
485 const FGMatrix33& GetTi2b(void) const { return Ti2b; }
486
489 const FGMatrix33& GetTb2i(void) const { return Tb2i; }
490
494 const FGMatrix33& GetTec2i(void) const { return Tec2i; }
495
499 const FGMatrix33& GetTi2ec(void) const { return Ti2ec; }
500
505 const FGMatrix33& GetTec2l(void) const { return Tec2l; }
506
511 const FGMatrix33& GetTl2ec(void) const { return Tl2ec; }
512
516 const FGMatrix33& GetTl2i(void) const { return Tl2i; }
517
521 const FGMatrix33& GetTi2l(void) const { return Ti2l; }
522
523 const VehicleState& GetVState(void) const { return VState; }
524
525 void SetVState(const VehicleState& vstate);
526
532 void SetEarthPositionAngle(double EPA) {epa = EPA;}
533
534 void SetInertialOrientation(const FGQuaternion& Qi);
535 void SetInertialVelocity(const FGColumnVector3& Vi);
536 void SetInertialRates(const FGColumnVector3& vRates);
537
539 const FGQuaternion GetQuaternion(void) const { return VState.qAttitudeLocal; }
540
542 const FGQuaternion GetQuaternionECI(void) const { return VState.qAttitudeECI; }
543
545 const FGQuaternion GetQuaternionECEF(void) const { return Qec2b; }
546
547 void SetPQR(unsigned int i, double val) {
548 VState.vPQR(i) = val;
549 VState.vPQRi = VState.vPQR + Ti2b * in.vOmegaPlanet;
550 }
551
552 void SetUVW(unsigned int i, double val) {
553 VState.vUVW(i) = val;
554 CalculateInertialVelocity();
555 }
556
557// SET functions
558
559 void SetLongitude(double lon)
560 {
561 VState.vLocation.SetLongitude(lon);
562 UpdateVehicleState();
563 }
564 void SetLongitudeDeg(double lon) { SetLongitude(lon*degtorad); }
565 void SetLatitude(double lat)
566 {
567 VState.vLocation.SetLatitude(lat);
568 UpdateVehicleState();
569 }
570 void SetLatitudeDeg(double lat) { SetLatitude(lat*degtorad); }
571 void SetRadius(double r)
572 {
573 VState.vLocation.SetRadius(r);
574 VState.vInertialPosition = Tec2i * VState.vLocation;
575 }
576
577 void SetAltitudeASL(double altASL);
578 void SetAltitudeASLmeters(double altASL) { SetAltitudeASL(altASL/fttom); }
579
580 void SetTerrainElevation(double tt);
581 void SetDistanceAGL(double tt);
582 void SetDistanceAGLKm(double tt);
583
584 void SetInitialState(const FGInitialCondition*);
585 void SetLocation(const FGLocation& l);
586 void SetLocation(const FGColumnVector3& lv)
587 {
588 FGLocation l = FGLocation(lv);
589 SetLocation(l);
590 }
591 void SetPosition(const double Lon, const double Lat, const double Radius)
592 {
593 FGLocation l = FGLocation(Lon, Lat, Radius);
594 SetLocation(l);
595 }
596
597 void NudgeBodyLocation(const FGColumnVector3& deltaLoc) {
598 VState.vInertialPosition -= Tb2i*deltaLoc;
599 VState.vLocation -= Tb2ec*deltaLoc;
600 }
601
606 void SetHoldDown(bool hd);
607
608 void DumpState(void);
609
610 struct Inputs {
611 FGColumnVector3 vPQRidot;
612 FGColumnVector3 vUVWidot;
613 FGColumnVector3 vOmegaPlanet;
614 double SemiMajor;
615 double SemiMinor;
616 double GM; // Gravitational parameter
617 double DeltaT;
618 } in;
619
620private:
621
622// state vector
623
624 struct VehicleState VState;
625
626 std::shared_ptr<FGInertial> Inertial;
627 FGColumnVector3 vVel;
628 FGMatrix33 Tec2b;
629 FGMatrix33 Tb2ec;
630 FGMatrix33 Tl2b; // local to body frame matrix copy for immediate local use
631 FGMatrix33 Tb2l; // body to local frame matrix copy for immediate local use
632 FGMatrix33 Tl2ec; // local to ECEF matrix copy for immediate local use
633 FGMatrix33 Tec2l; // ECEF to local frame matrix copy for immediate local use
634 FGMatrix33 Tec2i; // ECEF to ECI frame matrix copy for immediate local use
635 FGMatrix33 Ti2ec; // ECI to ECEF frame matrix copy for immediate local use
636 FGMatrix33 Ti2b; // ECI to body frame rotation matrix
637 FGMatrix33 Tb2i; // body to ECI frame rotation matrix
638 FGMatrix33 Ti2l;
639 FGMatrix33 Tl2i;
640 double epa; // Earth Position Angle
641
642 // Orbital parameters
643 double h; // Specific angular momentum
644 double Inclination; // Inclination (angle between the orbital plane and the equatorial plane)
645 double RightAscension; // Right ascension of the ascending node
646 double Eccentricity; // Eccentricity
647 double PerigeeArgument; // Argument of perigee (angle between the apsis line and the node line)
648 double TrueAnomaly; // True anomaly (angle of the vehicule from the apsis line)
649 double ApoapsisRadius; // Apoapsis radius (farthest point from the planet)
650 double PeriapsisRadius; // Periapsis radius (closest point to the planet)
651 double OrbitalPeriod; // Period of elliptic orbits
652
653 FGQuaternion Qec2b;
654
655 FGColumnVector3 LocalTerrainVelocity, LocalTerrainAngularVelocity;
656
657 eIntegrateType integrator_rotational_rate;
658 eIntegrateType integrator_translational_rate;
659 eIntegrateType integrator_rotational_position;
660 eIntegrateType integrator_translational_position;
661
662 void CalculateInertialVelocity(void);
663 void CalculateUVW(void);
664 void CalculateQuatdot(void);
665
666 void Integrate( FGColumnVector3& Integrand,
667 FGColumnVector3& Val,
668 std::deque <FGColumnVector3>& ValDot,
669 double dt,
670 eIntegrateType integration_type);
671
672 void Integrate( FGQuaternion& Integrand,
673 FGQuaternion& Val,
674 std::deque <FGQuaternion>& ValDot,
675 double dt,
676 eIntegrateType integration_type);
677
678 void UpdateLocationMatrices(void);
679 void UpdateBodyMatrices(void);
680 void UpdateVehicleState(void);
681 void ComputeOrbitalParameters(void);
682
683 void WriteStateFile(int num);
684 void bind(void);
685 void Debug(int from);
686};
687}
688//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
689#endif
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
Models the EOM and integration/propagation of state.
Definition FGPropagate.h:95
double GetNEDVelocityMagnitude(void) const
Retrieves the total local NED velocity in ft/sec.
const FGMatrix33 & GetTi2b(void) const
Retrieves the ECI-to-body transformation matrix.
double GetInertialVelocityMagnitude(void) const
Retrieves the total inertial velocity in ft/sec.
double Gethdot(void) const
Returns the current altitude rate.
const FGQuaternion & GetQuaterniondot(void) const
Retrieves the time derivative of the body orientation quaternion.
const FGColumnVector3 & GetPQR(void) const
Retrieves the body angular rates vector, relative to the ECEF frame.
FGColumnVector3 GetECEFVelocity(void) const
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame.
double GetECEFVelocity(int idx) const
Calculates and retrieves the velocity vector relative to the earth centered earth fixed (ECEF) frame ...
const FGMatrix33 & GetTl2ec(void) const
Retrieves the local-to-ECEF transformation matrix.
const FGMatrix33 & GetTi2l(void) const
Retrieves the inertial-to-local transformation matrix.
double GetEarthPositionAngleDeg(void) const
Returns the Earth position angle in degrees.
const FGQuaternion GetQuaternion(void) const
Returns the quaternion that goes from Local to Body.
double GetSinEuler(int idx) const
Retrieves the sine of a vehicle Euler angle component.
const FGMatrix33 & GetTec2i(void) const
Retrieves the ECEF-to-ECI transformation matrix.
const FGMatrix33 & GetTec2l(void) const
Retrieves the ECEF-to-local transformation matrix.
eIntegrateType
These define the indices use to select the various integrators.
const FGMatrix33 & GetTb2i(void) const
Retrieves the body-to-ECI transformation matrix.
const FGColumnVector3 & GetPQRi(void) const
Retrieves the body angular rates vector, relative to the ECI (inertial) frame.
void SetEarthPositionAngle(double EPA)
Sets the Earth position angle.
const FGMatrix33 & GetTb2ec(void) const
Retrieves the body-to-ECEF transformation matrix.
const FGColumnVector3 & GetEuler(void) const
Retrieves the Euler angles that define the vehicle orientation.
const FGColumnVector3 & GetUVW(void) const
Retrieves the body frame vehicle velocity vector.
double GetPQR(int axis) const
Retrieves a body frame angular velocity component relative to the ECEF frame.
const FGQuaternion GetQuaternionECEF(void) const
Returns the quaternion that goes from ECEF to Body.
double GetEulerDeg(int axis) const
Retrieves a vehicle Euler angle component in degrees.
const FGMatrix33 & GetTi2ec(void) const
Retrieves the ECI-to-ECEF transformation matrix.
double GetUVW(int idx) const
Retrieves a body frame velocity component.
double GetVel(int idx) const
Retrieves a Local frame velocity component.
const FGMatrix33 & GetTl2b(void) const
Retrieves the local-to-body transformation matrix.
const FGQuaternion GetQuaternionECI(void) const
Returns the quaternion that goes from ECI to Body.
const FGColumnVector3 & GetInertialVelocity(void) const
Retrieves the inertial velocity vector in ft/sec.
const FGMatrix33 & GetTl2i(void) const
Retrieves the local-to-inertial transformation matrix.
const FGColumnVector3 & GetVel(void) const
Retrieves the velocity vector.
double GetEarthPositionAngle(void) const
Returns the Earth position angle.
double GetCosEuler(int idx) const
Retrieves the cosine of a vehicle Euler angle component.
double GetEuler(int axis) const
Retrieves a vehicle Euler angle component.
double GetPQRi(int axis) const
Retrieves a body frame angular velocity component relative to the ECI (inertial) frame.
double GetAltitudeASLmeters(void) const
Returns the current altitude above sea level.
const FGMatrix33 & GetTec2b(void) const
Retrieves the ECEF-to-body transformation matrix.
const FGMatrix33 & GetTb2l(void) const
Retrieves the body-to-local transformation matrix.
const FGColumnVector3 & GetInertialPosition(void) const
Retrieves the inertial position vector.
Models the Quaternion representation of rotations.
The current vehicle state vector structure contains the translational and angular position,...
FGColumnVector3 vUVW
The velocity vector of the vehicle with respect to the ECEF frame, expressed in the body system.
FGQuaternion qAttitudeECI
The current orientation of the vehicle, that is, the orientation of the body frame relative to the in...
FGColumnVector3 vPQRi
The angular velocity vector for the vehicle body frame relative to the ECI frame, expressed in the bo...
FGColumnVector3 vPQR
The angular velocity vector for the vehicle relative to the ECEF frame, expressed in the body frame.
FGLocation vLocation
Represents the current location of the vehicle in Earth centered Earth fixed (ECEF) frame.
FGQuaternion qAttitudeLocal
The current orientation of the vehicle, that is, the orientation of the body frame relative to the lo...