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

Detailed Description

Base class for all surface properties.

Author
Erik M. Hofman

Definition at line 62 of file FGSurface.h.

#include <FGSurface.h>

+ Inheritance diagram for FGSurface:

Public Member Functions

 FGSurface (FGFDMExec *fdmex)
 Constructor.
 
void bind (FGPropertyManager *pm)
 
double GetBumpHeight ()
 Returns the height of the bump at the provided offset.
 
double GetBumpiness (void)
 Gets the normalized bumpiness factor associated with the surface.
 
double GetMaximumForce (void)
 Gets the maximum force of the surface area.
 
double GetRollingFFactor (void)
 Gets the rolling friction factor of the surface area.
 
bool GetSolid (void)
 Gets the surface is a solid flag value.
 
double GetStaticFFactor (void)
 Gets the static friction factor of the surface area.
 
void resetValues (void)
 Reset all surface values to a default.
 
void SetBumpiness (double bump)
 Sets the normalized bumpiness factor associated with the surface.
 
void SetMaximumForce (double force)
 Sets the maximum force for the surface area.
 
void SetPosition (const double pt[3])
 Set the currect position for bumpiness calulcation.
 
void SetRollingFFactor (double friction)
 Sets the rolling friction factor of the surface area.
 
void SetSolid (bool solid)
 Sets the surface is a solid flag value.
 
void SetStaticFFactor (double friction)
 Sets the static friction factor of the surface area.
 

Protected Attributes

double bumpiness
 
bool isSolid
 
double maximumForce
 
double rollingFFactor
 
double staticFFactor
 

Constructor & Destructor Documentation

◆ FGSurface()

FGSurface ( FGFDMExec fdmex)

Constructor.

Definition at line 52 of file FGSurface.cpp.

53{
55}
void resetValues(void)
Reset all surface values to a default.
Definition FGSurface.cpp:59
+ Here is the call graph for this function:

Member Function Documentation

◆ bind()

void bind ( FGPropertyManager pm)

Definition at line 73 of file FGSurface.cpp.

74{
75 string base_property_name = "ground";
76 string property_name;
77
78 property_name = base_property_name + "/solid";
79 PropertyManager->Tie( property_name.c_str(), &isSolid);
80 property_name = base_property_name + "/bumpiness";
81 PropertyManager->Tie( property_name.c_str(), &bumpiness);
82 property_name = base_property_name + "/maximum-force-lbs";
83 PropertyManager->Tie( property_name.c_str(), &maximumForce);
84 property_name = base_property_name + "/rolling_friction-factor";
85 PropertyManager->Tie( property_name.c_str(), &rollingFFactor);
86 property_name = base_property_name + "/static-friction-factor";
87 PropertyManager->Tie( property_name.c_str(), &staticFFactor);
88}

◆ GetBumpHeight()

double GetBumpHeight ( )

Returns the height of the bump at the provided offset.

Definition at line 92 of file FGSurface.cpp.

93{
94 if (bumpiness < 0.001) return 0.0f;
95
96 double x = pos[0]*0.1;
97 double y = pos[1]*0.1;
98 x -= floor(x);
99 y -= floor(y);
100 x *= 2*M_PI;
101 y *= 2*M_PI;
102 //now x and y are in the range of 0..2pi
103 //we need a function, that is periodically on 2pi and gives some
104 //height. This is not very fast, but for a beginning.
105 //maybe this should be done by interpolating between some precalculated
106 //values
107 static const double maxGroundBumpAmplitude=0.4;
108 double h = sin(x)+sin(7*x)+sin(8*x)+sin(13*x);
109 h += sin(2*y)+sin(5*y)+sin(9*y*x)+sin(17*y);
110
111 return h*(1/8.)*bumpiness*maxGroundBumpAmplitude;
112}
+ Here is the caller graph for this function:

◆ GetBumpiness()

double GetBumpiness ( void  )
inline

Gets the normalized bumpiness factor associated with the surface.

Definition at line 104 of file FGSurface.h.

104{ return bumpiness; }
+ Here is the caller graph for this function:

◆ GetMaximumForce()

double GetMaximumForce ( void  )
inline

Gets the maximum force of the surface area.

Definition at line 101 of file FGSurface.h.

101{ return maximumForce; }
+ Here is the caller graph for this function:

◆ GetRollingFFactor()

double GetRollingFFactor ( void  )
inline

Gets the rolling friction factor of the surface area.

Definition at line 98 of file FGSurface.h.

98{ return rollingFFactor; }
+ Here is the caller graph for this function:

◆ GetSolid()

bool GetSolid ( void  )
inline

Gets the surface is a solid flag value.

Definition at line 107 of file FGSurface.h.

107{ return isSolid; }
+ Here is the caller graph for this function:

◆ GetStaticFFactor()

double GetStaticFFactor ( void  )
inline

Gets the static friction factor of the surface area.

Definition at line 95 of file FGSurface.h.

95{ return staticFFactor; }
+ Here is the caller graph for this function:

◆ resetValues()

void resetValues ( void  )

Reset all surface values to a default.

Definition at line 59 of file FGSurface.cpp.

60{
61 staticFFactor = 1.0;
62 rollingFFactor = 1.0;
63 maximumForce = DBL_MAX;
64 bumpiness = 0.0;
65 isSolid = true;
66 pos[0] = 0.0;
67 pos[1] = 0.0;
68 pos[2] = 0.0;
69}
+ Here is the caller graph for this function:

◆ SetBumpiness()

void SetBumpiness ( double  bump)
inline

Sets the normalized bumpiness factor associated with the surface.

Definition at line 83 of file FGSurface.h.

83{ bumpiness = bump; }

◆ SetMaximumForce()

void SetMaximumForce ( double  force)
inline

Sets the maximum force for the surface area.

Definition at line 80 of file FGSurface.h.

80{ maximumForce = force; }

◆ SetPosition()

void SetPosition ( const double  pt[3])
inline

Set the currect position for bumpiness calulcation.

Definition at line 89 of file FGSurface.h.

89 {
90 pos[0] = pt[0]; pos[1] = pt[1]; pos[2] = pt[2];
91 }

◆ SetRollingFFactor()

void SetRollingFFactor ( double  friction)
inline

Sets the rolling friction factor of the surface area.

Definition at line 77 of file FGSurface.h.

77{ rollingFFactor = friction; }

◆ SetSolid()

void SetSolid ( bool  solid)
inline

Sets the surface is a solid flag value.

Definition at line 86 of file FGSurface.h.

86{ isSolid = solid; }

◆ SetStaticFFactor()

void SetStaticFFactor ( double  friction)
inline

Sets the static friction factor of the surface area.

Definition at line 74 of file FGSurface.h.

74{ staticFFactor = friction; }

Member Data Documentation

◆ bumpiness

double bumpiness
protected

Definition at line 115 of file FGSurface.h.

◆ isSolid

bool isSolid
protected

Definition at line 116 of file FGSurface.h.

◆ maximumForce

double maximumForce
protected

Definition at line 114 of file FGSurface.h.

◆ rollingFFactor

double rollingFFactor
protected

Definition at line 113 of file FGSurface.h.

◆ staticFFactor

double staticFFactor
protected

Definition at line 113 of file FGSurface.h.


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