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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGSurface.h
4 Author: Erik Hofman
5 Date started: 01/15/14
6
7 ------------- Copyright (C) 2014 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 Software
11 Foundation; either version 2 of the License, or (at your option) any later
12 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 with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2801/15/14 EMH Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGSURFACE_H
35#define FGSURFACE_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42FORWARD DECLARATIONS
43%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
44
45namespace JSBSim {
46
47class FGFDMExec;
48class FGPropertyManager;
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51CLASS DOCUMENTATION
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
58/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59CLASS DECLARATION
60%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
61
63{
64public:
66 FGSurface(FGFDMExec* fdmex);
67
68 void bind(FGPropertyManager* pm);
69
71 void resetValues(void);
72
74 void SetStaticFFactor(double friction) { staticFFactor = friction; }
75
77 void SetRollingFFactor(double friction) { rollingFFactor = friction; }
78
80 void SetMaximumForce(double force) { maximumForce = force; }
81
83 void SetBumpiness(double bump) { bumpiness = bump; }
84
86 void SetSolid(bool solid) { isSolid = solid; }
87
89 void SetPosition(const double pt[3]) {
90 pos[0] = pt[0]; pos[1] = pt[1]; pos[2] = pt[2];
91 }
92
93
95 double GetStaticFFactor(void) { return staticFFactor; }
96
98 double GetRollingFFactor(void) { return rollingFFactor; }
99
101 double GetMaximumForce(void) { return maximumForce; }
102
104 double GetBumpiness(void) { return bumpiness; }
105
107 bool GetSolid(void) { return isSolid; }
108
110 double GetBumpHeight();
111
112protected:
113 double staticFFactor, rollingFFactor;
114 double maximumForce;
115 double bumpiness;
116 bool isSolid;
117
118private:
119 double pos[3];
120};
121}
122//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
123#endif
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Base class for all surface properties.
Definition FGSurface.h:63
bool GetSolid(void)
Gets the surface is a solid flag value.
Definition FGSurface.h:107
double GetBumpiness(void)
Gets the normalized bumpiness factor associated with the surface.
Definition FGSurface.h:104
void SetPosition(const double pt[3])
Set the currect position for bumpiness calulcation.
Definition FGSurface.h:89
void SetStaticFFactor(double friction)
Sets the static friction factor of the surface area.
Definition FGSurface.h:74
double GetRollingFFactor(void)
Gets the rolling friction factor of the surface area.
Definition FGSurface.h:98
double GetMaximumForce(void)
Gets the maximum force of the surface area.
Definition FGSurface.h:101
void SetMaximumForce(double force)
Sets the maximum force for the surface area.
Definition FGSurface.h:80
double GetBumpHeight()
Returns the height of the bump at the provided offset.
Definition FGSurface.cpp:92
double GetStaticFFactor(void)
Gets the static friction factor of the surface area.
Definition FGSurface.h:95
void SetRollingFFactor(double friction)
Sets the rolling friction factor of the surface area.
Definition FGSurface.h:77
void SetSolid(bool solid)
Sets the surface is a solid flag value.
Definition FGSurface.h:86
void resetValues(void)
Reset all surface values to a default.
Definition FGSurface.cpp:59
void SetBumpiness(double bump)
Sets the normalized bumpiness factor associated with the surface.
Definition FGSurface.h:83