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
FGLGear.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGLGear.h
4 Author: Jon S. Berndt
5 Date started: 11/18/99
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--------------------------------------------------------------------------------
2811/18/99 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGLGEAR_H
35#define FGLGEAR_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <string>
42
43#include "models/propulsion/FGForce.h"
44#include "math/FGLocation.h"
45#include "math/LagrangeMultiplier.h"
46
47/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
48FORWARD DECLARATIONS
49%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
50
51namespace JSBSim {
52
53class FGTable;
54class Element;
55class FGPropertyManager;
56class FGGroundReactions;
57class FGFunction;
58
59/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
60CLASS DOCUMENTATION
61%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
62
187/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
188CLASS DECLARATION
189%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
190
191class JSBSIM_API FGLGear : public FGForce
192{
193public:
194 struct Inputs {
195 double Vground;
196 double VcalibratedKts;
197 double Temperature;
198 double DistanceAGL;
199 double DistanceASL;
200 double TotalDeltaT;
201 bool TakeoffThrottle;
202 bool WOW;
203 FGMatrix33 Tb2l;
204 FGMatrix33 Tec2l;
205 FGMatrix33 Tec2b;
206 FGColumnVector3 PQR;
207 FGColumnVector3 UVW;
208 FGColumnVector3 vXYZcg; // CG coordinates expressed in the structural frame
209 FGLocation Location;
210 std::vector <double> BrakePos;
211 double FCSGearPos;
212 double EmptyWeight;
213 };
214
216 enum BrakeGroup {bgNone=0, bgLeft, bgRight, bgCenter, bgNose, bgTail, bgNumBrakeGroups };
218 enum SteerType {stSteer, stFixed, stCaster};
220 enum ContactType {ctBOGEY, ctSTRUCTURE};
222 enum ReportType {erNone=0, erTakeoff, erLand};
224 enum DampType {dtLinear=0, dtSquare};
226 enum FrictionType {ftRoll=0, ftSide, ftDynamic};
232 FGLGear(Element* el, FGFDMExec* Executive, int number, const struct Inputs& input);
234 ~FGLGear();
235
237 const FGColumnVector3& GetBodyForces(void) override;
238
241 return Ts2b * (vXYZn - in.vXYZcg);
242 }
243 double GetBodyLocation(int idx) const {
244 FGColumnVector3 vWhlBodyVec = Ts2b * (vXYZn - in.vXYZcg);
245 return vWhlBodyVec(idx);
246 }
247
248 const FGColumnVector3& GetLocalGear(void) const { return vLocalGear; }
249 double GetLocalGear(int idx) const { return vLocalGear(idx); }
250
252 const std::string& GetName(void) const {return name; }
254 bool GetWOW(void) const {return WOW; }
256 double GetCompLen(void) const {return compressLength;}
258 double GetCompVel(void) const {return compressSpeed; }
260 double GetCompForce(void) const {return StrutForce; }
261
263 void SetWOW(bool wow) {WOW = wow;}
264
267 void SetReport(bool flag) { ReportEnable = flag; }
270 bool GetReport(void) const { return ReportEnable; }
271 double GetSteerNorm(void) const {
272 return maxSteerAngle == 0.0 ? 0.0 : radtodeg/maxSteerAngle*SteerAngle;
273 }
274 void SetSteerCmd(double cmd) { SetSteerAngleDeg(cmd * maxSteerAngle); }
275 double GetstaticFCoeff(void) const { return staticFCoeff; }
276
277 int GetBrakeGroup(void) const { return (int)eBrakeGrp; }
278 int GetSteerType(void) const { return (int)eSteerType; }
279
280 bool GetSteerable(void) const { return eSteerType != stFixed; }
281 bool GetRetractable(void) const { return isRetractable; }
282 bool GetGearUnitUp(void) const { return isRetractable ? (GetGearUnitPos() < 0.01) : false; }
283 bool GetGearUnitDown(void) const { return isRetractable ? (GetGearUnitPos() > 0.99) : true; }
284
285 double GetWheelRollForce(void) {
286 UpdateForces();
287 FGColumnVector3 vForce = mTGear.Transposed() * FGForce::GetBodyForces();
288 return vForce(eX)*cos(SteerAngle) + vForce(eY)*sin(SteerAngle); }
289 double GetWheelSideForce(void) {
290 UpdateForces();
291 FGColumnVector3 vForce = mTGear.Transposed() * FGForce::GetBodyForces();
292 return vForce(eY)*cos(SteerAngle) - vForce(eX)*sin(SteerAngle); }
293 double GetBodyXForce(void) {
294 UpdateForces();
295 return FGForce::GetBodyForces()(eX);
296 }
297 double GetBodyYForce(void) {
298 UpdateForces();
299 return FGForce::GetBodyForces()(eY);
300 }
301 double GetBodyZForce(void) {
302 UpdateForces();
303 return FGForce::GetBodyForces()(eZ);
304 }
305 double GetWheelRollVel(void) const { return vWhlVelVec(eX)*cos(SteerAngle)
306 + vWhlVelVec(eY)*sin(SteerAngle); }
307 double GetWheelSideVel(void) const { return vWhlVelVec(eY)*cos(SteerAngle)
308 - vWhlVelVec(eX)*sin(SteerAngle); }
309 double GetWheelSlipAngle(void) const { return WheelSlip; }
310 double GetWheelVel(int axis) const { return vWhlVelVec(axis);}
311 bool IsBogey(void) const { return (eContactType == ctBOGEY);}
312 double GetGearUnitPos(void) const;
313 double GetSteerAngleDeg(void) const { return radtodeg*SteerAngle; }
314 void SetSteerAngleDeg(double angle) {
315 if (eSteerType != stFixed && !Castered)
316 SteerAngle = degtorad * angle;
317 }
318
319 const struct Inputs& in;
320
321 void ResetToIC(void);
322
323private:
324 int GearNumber;
325 static const FGMatrix33 Tb2s;
326 static const FGMatrix33 Ts2b;
327 FGMatrix33 mTGear;
328 FGColumnVector3 vLocalGear;
329 FGColumnVector3 vWhlVelVec, vGroundWhlVel; // Velocity of this wheel
330 FGColumnVector3 vGroundNormal;
331 FGTable *ForceY_Table;
332 FGFunction *fStrutForce;
333 double SteerAngle;
334 double kSpring;
335 double bDamp;
336 double bDampRebound;
337 double compressLength;
338 double compressSpeed;
339 double staticFCoeff, dynamicFCoeff, rollingFCoeff;
340 double Stiffness, Shape, Peak, Curvature; // Pacejka factors
341 double BrakeFCoeff;
342 double maxCompLen;
343 double SinkRate;
344 double GroundSpeed;
345 double TakeoffDistanceTraveled;
346 double TakeoffDistanceTraveled50ft;
347 double LandingDistanceTraveled;
348 double MaximumStrutForce, StrutForce;
349 double MaximumStrutTravel;
350 double FCoeff;
351 double WheelSlip;
352 double GearPos;
353 double staticFFactor = 1.0;
354 double rollingFFactor = 1.0;
355 double maximumForce = DBL_MAX;
356 double bumpiness = 0.0;
357 bool isSolid = true;
358 bool WOW; // Weight On Wheel
359 bool lastWOW;
360 bool FirstContact;
361 bool StartedGroundRun;
362 bool LandingReported;
363 bool TakeoffReported;
364 bool ReportEnable;
365 bool isRetractable;
366 bool Castered;
367 bool StaticFriction;
368 std::string name;
369 double AGL; // Height above ground level
370
371 BrakeGroup eBrakeGrp;
372 ContactType eContactType;
373 SteerType eSteerType;
374 DampType eDampType;
375 DampType eDampTypeRebound;
376 double maxSteerAngle;
377
378 LagrangeMultiplier LMultiplier[3];
379
380 // NO std::shared_ptr<FGGroundReactions> here, to avoid circular references
381 // since FGGroundReactions owns the instances of FGLGear.
382 // Weak pointers are not needed since this FGLGear instance would not have
383 // been called if FGGroundReactions had been destroyed in the first place.
384 FGGroundReactions* GroundReactions;
385
386 mutable bool useFCSGearPos;
387
388 void ComputeBrakeForceCoefficient(void);
389 void ComputeSteeringAngle(void);
390 void ComputeSlipAngle(void);
391 void ComputeSideForceCoefficient(void);
392 void ComputeVerticalStrutForce(void);
393 void ComputeGroundFrame(void);
394 void ComputeJacobian(const FGColumnVector3& vWhlContactVec);
395 void UpdateForces(void);
396 void SetstaticFCoeff(double coeff);
397 void CrashDetect(void);
398 void InitializeReporting(void);
399 void ResetReporting(void);
400 void ReportTakeoffOrLanding(void);
401 void Report(ReportType rt);
402 void Debug(int from);
403 void bind(FGPropertyManager* pm);
404};
405}
406
407//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
408
409#endif
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Utility class that aids in the conversion of forces between coordinate systems and calculation of mom...
Definition FGForce.h:222
Landing gear model.
Definition FGLGear.h:192
void SetReport(bool flag)
Set the console touchdown reporting feature.
Definition FGLGear.h:267
FGColumnVector3 GetBodyLocation(void) const
Gets the location of the gear in Body axes.
Definition FGLGear.h:240
const std::string & GetName(void) const
Gets the name of the gear.
Definition FGLGear.h:252
BrakeGroup
Brake grouping enumerators.
Definition FGLGear.h:216
ContactType
Contact point type.
Definition FGLGear.h:220
FrictionType
Friction types.
Definition FGLGear.h:226
bool GetReport(void) const
Get the console touchdown reporting feature.
Definition FGLGear.h:270
double GetCompForce(void) const
Gets the gear compression force in pounds.
Definition FGLGear.h:260
bool GetWOW(void) const
Gets the Weight On Wheels flag value.
Definition FGLGear.h:254
void SetWOW(bool wow)
Sets the weight-on-wheels flag.
Definition FGLGear.h:263
DampType
Damping types.
Definition FGLGear.h:224
double GetCompLen(void) const
Gets the current compressed length of the gear in feet.
Definition FGLGear.h:256
double GetCompVel(void) const
Gets the current gear compression velocity in ft/sec.
Definition FGLGear.h:258
ReportType
Report type enumerators.
Definition FGLGear.h:222
SteerType
Steering group membership enumerators.
Definition FGLGear.h:218
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
Definition FGLocation.h:152
Handles matrix math operations.
Definition FGMatrix33.h:70