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
FGGroundReactions.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGGroundReactions.h
4 Author: Jon S. Berndt
5 Date started: 09/13/00
6
7 ------------- Copyright (C) 1999 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
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later 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
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2809/13/00 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGGROUNDREACTIONS_H
35#define FGGROUNDREACTIONS_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <vector>
42
43#include "FGSurface.h"
44#include "FGModel.h"
45#include "FGLGear.h"
46#include "math/FGColumnVector3.h"
47
48/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49FORWARD DECLARATIONS
50%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51
52namespace JSBSim {
53
54/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55CLASS DOCUMENTATION
56%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
57
75/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76CLASS DECLARATION
77%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
78
79class JSBSIM_API FGGroundReactions : public FGModel, public FGSurface
80{
81public:
83
84 bool InitModel(void) override;
92 bool Run(bool Holding) override;
93 bool Load(Element* el) override;
94 const FGColumnVector3& GetForces(void) const {return vForces;}
95 double GetForces(int idx) const {return vForces(idx);}
96 const FGColumnVector3& GetMoments(void) const {return vMoments;}
97 double GetMoments(int idx) const {return vMoments(idx);}
98 std::string GetGroundReactionStrings(std::string delimeter) const;
99 std::string GetGroundReactionValues(std::string delimeter) const;
100 bool GetWOW(void) const;
101
104 int GetNumGearUnits(void) const { return (int)lGear.size(); }
105
109 auto GetGearUnit(int gear) const { return lGear[gear]; }
110
113 double GetDsCmd(void) const { return DsCmd; }
114
117 void SetDsCmd(double cmd);
118
119 void RegisterLagrangeMultiplier(LagrangeMultiplier* lmult) { multipliers.push_back(lmult); }
120 std::vector <LagrangeMultiplier*>* GetMultipliersList(void) { return &multipliers; }
121
122 FGLGear::Inputs in;
123
124private:
125 std::vector <std::shared_ptr<FGLGear>> lGear;
126 FGColumnVector3 vForces;
127 FGColumnVector3 vMoments;
128 std::vector <LagrangeMultiplier*> multipliers;
129 double DsCmd;
130
131 void bind(void);
132 void Debug(int from) override;
133};
134}
135//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
136#endif
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Manages ground reactions modeling.
int GetNumGearUnits(void) const
Gets the number of gears.
double GetDsCmd(void) const
Gets the steering command.
auto GetGearUnit(int gear) const
Gets a gear instance.
Base class for all scheduled JSBSim models.
Definition FGModel.h:70
Base class for all surface properties.
Definition FGSurface.h:63