41#include "input_output/FGPropertyManager.h"
42#include "models/FGSurface.h"
63 maximumForce = DBL_MAX;
75 string base_property_name =
"ground";
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);
94 if (bumpiness < 0.001)
return 0.0f;
96 double x = pos[0]*0.1;
97 double y = pos[1]*0.1;
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);
111 return h*(1/8.)*bumpiness*maxGroundBumpAmplitude;
Encapsulates the JSBSim simulation executive.
void Tie(const std::string &name, T *pointer)
Tie a property to an external variable.
double GetBumpHeight()
Returns the height of the bump at the provided offset.
void resetValues(void)
Reset all surface values to a default.
FGSurface(FGFDMExec *fdmex)
Constructor.