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
FGDefaultGroundCallback Class Reference

Detailed Description

Definition at line 125 of file FGGroundCallback.h.

+ Inheritance diagram for FGDefaultGroundCallback:
+ Collaboration diagram for FGDefaultGroundCallback:

Public Member Functions

 FGDefaultGroundCallback (double semiMajor, double semiMinor)
 
double GetAGLevel (double t, const FGLocation &location, FGLocation &contact, FGColumnVector3 &normal, FGColumnVector3 &v, FGColumnVector3 &w) const override
 Compute the altitude above ground.
 
void SetEllipse (double semimajor, double semiminor) override
 Set the planet semimajor and semiminor axes.
 
void SetTerrainElevation (double h) override
 Set the terrain elevation.
 
- Public Member Functions inherited from FGGroundCallback
virtual double GetAGLevel (const FGLocation &location, FGLocation &contact, FGColumnVector3 &normal, FGColumnVector3 &v, FGColumnVector3 &w) const
 Compute the altitude above ground.
 
void SetTime (double _time)
 Set the simulation time.
 

Additional Inherited Members

- Protected Attributes inherited from FGGroundCallback
double time
 

Constructor & Destructor Documentation

◆ FGDefaultGroundCallback()

FGDefaultGroundCallback ( double  semiMajor,
double  semiMinor 
)
inlineexplicit

Definition at line 128 of file FGGroundCallback.h.

128 :
129 a(semiMajor), b(semiMinor) {}

Member Function Documentation

◆ GetAGLevel()

double GetAGLevel ( double  t,
const FGLocation location,
FGLocation contact,
FGColumnVector3 normal,
FGColumnVector3 v,
FGColumnVector3 w 
) const
overridevirtual

Compute the altitude above ground.

The altitude depends on time t and location l.

Parameters
tsimulation time
llocation
contactContact point location below the location l
normalNormal vector at the contact point
vLinear velocity at the contact point
wAngular velocity at the contact point
Returns
altitude above ground

Implements FGGroundCallback.

Definition at line 41 of file FGGroundCallback.cpp.

44{
45 vel.InitMatrix();
46 angularVel.InitMatrix();
47 FGLocation l = loc;
48 l.SetEllipse(a,b);
49 double latitude = l.GetGeodLatitudeRad();
50 double cosLat = cos(latitude);
51 double longitude = l.GetLongitude();
52 normal = FGColumnVector3(cosLat*cos(longitude), cosLat*sin(longitude),
53 sin(latitude));
54 contact.SetEllipse(a, b);
55 contact.SetPositionGeodetic(longitude, latitude, mTerrainElevation);
56 return l.GetGeodAltitude() - mTerrainElevation;
57}
+ Here is the call graph for this function:

◆ SetEllipse()

void SetEllipse ( double  semimajor,
double  semiminor 
)
inlineoverridevirtual

Set the planet semimajor and semiminor axes.

Only needs to be implemented if JSBSim should be allowed to modify the planet dimensions.

Reimplemented from FGGroundCallback.

Definition at line 139 of file FGGroundCallback.h.

140 { a = semimajor; b = semiminor; }

◆ SetTerrainElevation()

void SetTerrainElevation ( double  h)
inlineoverridevirtual

Set the terrain elevation.

Only needs to be implemented if JSBSim should be allowed to modify the local terrain radius (see the default implementation)

Reimplemented from FGGroundCallback.

Definition at line 136 of file FGGroundCallback.h.

137 { mTerrainElevation = h; }

The documentation for this class was generated from the following files: