44#include "math/FGLocation.h"
45#include "input_output/FGGroundCallback.h"
79 bool Run(
bool Holding)
override;
80 static constexpr double GetStandardGravity(
void) {
return gAccelReference; }
83 void SetOmegaPlanet(
double rate) {
86 double GetSemimajor(
void)
const {
return a;}
87 double GetSemiminor(
void)
const {
return b;}
88 double GetGM(
void)
const {
return GM;}
108 return GroundCallback->GetAGLevel(location, contact, normal, velocity,
118 return GroundCallback->GetAGLevel(location, lDummy, vDummy, vDummy,
126 void SetAltitudeAGL(
FGLocation& location,
double altitudeAGL);
132 GroundCallback->SetTerrainElevation(h);
141 GroundCallback->SetTime(time);
167 void SetGravityType(
int gt);
202 bool Load(
Element* el)
override;
208 static constexpr double gAccelReference = 9.80665 / fttom;
217 std::unique_ptr<FGGroundCallback> GroundCallback;
219 double GetGAccel(
double r)
const;
222 void Debug(
int from)
override;
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
This class provides callback slots to get ground specific data.
Models inertial forces (e.g.
double GetContactPoint(const FGLocation &location, FGLocation &contact, FGColumnVector3 &normal, FGColumnVector3 &velocity, FGColumnVector3 &ang_velocity) const
Get terrain contact point information below the current location.
double GetAltitudeAGL(const FGLocation &location) const
Get the altitude above ground level.
void SetGroundCallback(FGGroundCallback *gc)
Sets the ground callback pointer.
FGMatrix33 GetTec2l(const FGLocation &location) const
Transform matrix from the earth centered to local horizontal frame.
void SetTerrainElevation(double h)
Set the terrain elevation above sea level.
void SetTime(double time)
Set the simulation time.
eGravType
These define the indices use to select the gravitation models.
@ gtStandard
Evaluate gravity using Newton's classical formula assuming the Earth is spherical.
int GetGravityType(void) const
Get the gravity type.
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
Handles matrix math operations.
FGMatrix33 Transposed(void) const
Transposed matrix.
Base class for all scheduled JSBSim models.