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.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGGroundReactions.cpp
4 Author: Jon S. Berndt
5 Date started: 09/13/00
6 Purpose: Encapsulates the ground reaction forces (gear and collision)
7
8 ------------- Copyright (C) 2000 Jon S. Berndt (jon@jsbsim.org) -------------
9
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU Lesser General Public License as published by the Free
12 Software Foundation; either version 2 of the License, or (at your option) any
13 later version.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18 details.
19
20 You should have received a copy of the GNU Lesser General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be
25 found on the world wide web at http://www.gnu.org.
26
27FUNCTIONAL DESCRIPTION
28--------------------------------------------------------------------------------
29
30HISTORY
31--------------------------------------------------------------------------------
3209/13/00 JSB Created
33
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35INCLUDES
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38#include <iomanip>
39
40#include "FGFDMExec.h"
41#include "FGGroundReactions.h"
42#include "FGAccelerations.h"
43#include "input_output/FGXMLElement.h"
44
45using namespace std;
46
47namespace JSBSim {
48
49/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50CLASS IMPLEMENTATION
51%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53FGGroundReactions::FGGroundReactions(FGFDMExec* fgex) :
54 FGModel(fgex),
55 FGSurface(fgex),
56 DsCmd(0.0)
57{
58 Name = "FGGroundReactions";
59
60 bind();
61
62 Debug(0);
63}
64
65//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66
67bool FGGroundReactions::InitModel(void)
68{
69 if (!FGModel::InitModel()) return false;
70
71 vForces.InitMatrix();
72 vMoments.InitMatrix();
73 DsCmd = 0.0;
74
75 multipliers.clear();
76
77 for (auto& gear: lGear)
78 gear->ResetToIC();
79
80 return true;
81}
82
83//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84
85bool FGGroundReactions::Run(bool Holding)
86{
87 if (FGModel::Run(Holding)) return true;
88 if (Holding) return false;
89
90 RunPreFunctions();
91
92 vForces.InitMatrix();
93 vMoments.InitMatrix();
94
95 multipliers.clear();
96
97 // Sum forces and moments for all gear, here.
98 // Some optimizations may be made here - or rather in the gear code itself.
99 // The gear ::Run() method is called several times - once for each gear.
100 // Perhaps there is some commonality for things which only need to be
101 // calculated once.
102 for (auto& gear:lGear) {
103 vForces += gear->GetBodyForces();
104 vMoments += gear->GetMoments();
105 }
106
107 RunPostFunctions();
108
109 return false;
110}
111
112//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
113
114bool FGGroundReactions::GetWOW(void) const
115{
116 for (auto& gear:lGear) {
117 if (gear->IsBogey() && gear->GetWOW())
118 return true;
119 }
120 return false;
121}
122
123//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
124
125void FGGroundReactions::SetDsCmd(double cmd)
126{
127 DsCmd = cmd;
128 for (auto& gear:lGear)
129 gear->SetSteerCmd(cmd);
130}
131
132//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
133
134bool FGGroundReactions::Load(Element* document)
135{
136 int num=0;
137
138 Name = "Ground Reactions Model: " + document->GetAttributeValue("name");
139
140 Debug(2);
141
142 // Perform base class Pre-Load
143 if (!FGModel::Upload(document, true))
144 return false;
145
146 Element* contact_element = document->FindElement("contact");
147 while (contact_element) {
148 lGear.push_back(make_shared<FGLGear>(contact_element, FDMExec, num++, in));
149 contact_element = document->FindNextElement("contact");
150 }
151
152 PostLoad(document, FDMExec);
153
154 return true;
155}
156
157//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
158
159string FGGroundReactions::GetGroundReactionStrings(string delimeter) const
160{
161 std::ostringstream buf;
162
163 for (auto& gear:lGear) {
164 string name = gear->GetName();
165 if (gear->IsBogey()) {
166 buf << name << " WOW" << delimeter
167 << name << " stroke (ft)" << delimeter
168 << name << " stroke velocity (ft/sec)" << delimeter
169 << name << " compress force (lbs)" << delimeter
170 << name << " wheel side force (lbs)" << delimeter
171 << name << " wheel roll force (lbs)" << delimeter
172 << name << " body X force (lbs)" << delimeter
173 << name << " body Y force (lbs)" << delimeter
174 << name << " wheel velocity vec X (ft/sec)" << delimeter
175 << name << " wheel velocity vec Y (ft/sec)" << delimeter
176 << name << " wheel rolling velocity (ft/sec)" << delimeter
177 << name << " wheel side velocity (ft/sec)" << delimeter
178 << name << " wheel slip (deg)" << delimeter;
179 } else {
180 buf << name << " WOW" << delimeter
181 << name << " stroke (ft)" << delimeter
182 << name << " stroke velocity (ft/sec)" << delimeter
183 << name << " compress force (lbs)" << delimeter;
184 }
185 }
186
187 buf << " Total Gear Force_X (lbs)" << delimeter
188 << " Total Gear Force_Y (lbs)" << delimeter
189 << " Total Gear Force_Z (lbs)" << delimeter
190 << " Total Gear Moment_L (ft-lbs)" << delimeter
191 << " Total Gear Moment_M (ft-lbs)" << delimeter
192 << " Total Gear Moment_N (ft-lbs)";
193
194 return buf.str();
195}
196
197//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
198
199string FGGroundReactions::GetGroundReactionValues(string delimeter) const
200{
201 std::ostringstream buf;
202
203 for (auto& gear: lGear) {
204 if (gear->IsBogey()) {
205 buf << (gear->GetWOW() ? "1" : "0") << delimeter
206 << setprecision(5) << gear->GetCompLen() << delimeter
207 << setprecision(6) << gear->GetCompVel() << delimeter
208 << setprecision(10) << gear->GetCompForce() << delimeter
209 << gear->GetWheelSideForce() << delimeter
210 << gear->GetWheelRollForce() << delimeter
211 << gear->GetBodyXForce() << delimeter
212 << gear->GetBodyYForce() << delimeter
213 << setprecision(6) << gear->GetWheelVel(eX) << delimeter
214 << gear->GetWheelVel(eY) << delimeter
215 << gear->GetWheelRollVel() << delimeter
216 << gear->GetWheelSideVel() << delimeter
217 << gear->GetWheelSlipAngle() << delimeter;
218 } else {
219 buf << (gear->GetWOW() ? "1" : "0") << delimeter
220 << setprecision(5) << gear->GetCompLen() << delimeter
221 << setprecision(6) << gear->GetCompVel() << delimeter
222 << setprecision(10) << gear->GetCompForce() << delimeter;
223 }
224 }
225
226 auto Accelerations = FDMExec->GetAccelerations();
227
228 buf << Accelerations->GetGroundForces(eX) << delimeter
229 << Accelerations->GetGroundForces(eY) << delimeter
230 << Accelerations->GetGroundForces(eZ) << delimeter
231 << Accelerations->GetGroundMoments(eX) << delimeter
232 << Accelerations->GetGroundMoments(eY) << delimeter
233 << Accelerations->GetGroundMoments(eZ);
234
235 return buf.str();
236}
237
238//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
239
240void FGGroundReactions::bind(void)
241{
242 FGSurface::bind(PropertyManager.get());
243
244 PropertyManager->Tie("gear/num-units", this, &FGGroundReactions::GetNumGearUnits);
245 PropertyManager->Tie("gear/wow", this, &FGGroundReactions::GetWOW);
246 PropertyManager->Tie("fcs/steer-cmd-norm", this, &FGGroundReactions::GetDsCmd,
247 &FGGroundReactions::SetDsCmd);
248}
249
250//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
251// The bitmasked value choices are as follows:
252// unset: In this case (the default) JSBSim would only print
253// out the normally expected messages, essentially echoing
254// the config files as they are read. If the environment
255// variable is not set, debug_lvl is set to 1 internally
256// 0: This requests JSBSim not to output any messages
257// whatsoever.
258// 1: This value explicity requests the normal JSBSim
259// startup messages
260// 2: This value asks for a message to be printed out when
261// a class is instantiated
262// 4: When this value is set, a message is displayed when a
263// FGModel object executes its Run() method
264// 8: When this value is set, various runtime state variables
265// are printed out periodically
266// 16: When set various parameters are sanity checked and
267// a message is printed out when they go out of bounds
268
269void FGGroundReactions::Debug(int from)
270{
271 if (debug_lvl <= 0) return;
272
273 if (debug_lvl & 1) { // Standard console startup message output
274 if (from == 2) { // Loading
275 cout << endl << " Ground Reactions: " << endl;
276 }
277 }
278 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
279 if (from == 0) cout << "Instantiated: FGGroundReactions" << endl;
280 if (from == 1) cout << "Destroyed: FGGroundReactions" << endl;
281 }
282 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
283 }
284 if (debug_lvl & 8 ) { // Runtime state variables
285 }
286 if (debug_lvl & 16) { // Sanity checking
287 }
288 if (debug_lvl & 64) {
289 if (from == 0) { // Constructor
290 }
291 }
292}
293}
Element * FindElement(const std::string &el="")
Searches for a specified element.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
std::shared_ptr< FGAccelerations > GetAccelerations(void) const
Returns the FGAccelerations pointer.