]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGLGear.cpp
Panel tweaks to support "shaped" panels.
[flightgear.git] / src / FDM / JSBSim / FGLGear.cpp
1 /*******************************************************************************
2
3  Module:       FGLGear.cpp
4  Author:       Jon S. Berndt
5  Date started: 11/18/99
6  Purpose:      Encapsulates the landing gear elements
7  Called by:    FGAircraft
8
9  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
10
11  This program is free software; you can redistribute it and/or modify it under
12  the terms of the GNU General Public License as published by the Free Software
13  Foundation; either version 2 of the License, or (at your option) any later
14  version.
15
16  This program is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  details.
20
21  You should have received a copy of the GNU General Public License along with
22  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23  Place - Suite 330, Boston, MA  02111-1307, USA.
24
25  Further information about the GNU General Public License can also be found on
26  the world wide web at http://www.gnu.org.
27
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30
31 HISTORY
32 --------------------------------------------------------------------------------
33 11/18/99   JSB   Created
34
35 ********************************************************************************
36 INCLUDES
37 *******************************************************************************/
38
39 #include "FGLGear.h"
40 #include <algorithm>
41
42 /*******************************************************************************
43 ************************************ CODE **************************************
44 *******************************************************************************/
45
46
47 FGLGear::FGLGear(FGConfigFile* AC_cfg, FGFDMExec* fdmex) : vXYZ(3),
48                                                            vMoment(3),
49                                                            vWhlBodyVec(3),
50                                                            Exec(fdmex)
51 {
52   string tmp;
53   *AC_cfg >> tmp >> name >> vXYZ(1) >> vXYZ(2) >> vXYZ(3)  
54             >> kSpring >> bDamp>> dynamicFCoeff >> staticFCoeff
55                   >> SteerType >> BrakeType >> GroupMember >> maxSteerAngle;
56     
57   cout << "    Name: " << name << endl;
58   cout << "      Location: " << vXYZ << endl;
59   cout << "      Spring Constant:  " << kSpring << endl;
60   cout << "      Damping Constant: " << bDamp << endl;
61   cout << "      Dynamic Friction: " << dynamicFCoeff << endl;
62   cout << "      Static Friction:  " << staticFCoeff << endl;
63   cout << "      Brake Type:       " << BrakeType << endl;
64   cout << "      Grouping:         " << GroupMember << endl;
65   cout << "      Steering Type:    " << SteerType << endl;
66   cout << "      Max Steer Angle:  " << maxSteerAngle << endl;
67   
68   State       = Exec->GetState();
69   Aircraft    = Exec->GetAircraft();
70   Position    = Exec->GetPosition();
71   Rotation    = Exec->GetRotation();
72   
73   WOW = false;
74   ReportEnable=true;
75   FirstContact = false;
76   Reported = false;
77   DistanceTraveled = 0.0;
78   MaximumStrutForce = MaximumStrutTravel = 0.0;
79 }
80
81
82 /******************************************************************************/
83
84 FGLGear::~FGLGear(void)
85 {
86   cout << "Destructing Landing Gear ..." << endl;
87 }
88
89 /******************************************************************************/
90
91 FGColumnVector FGLGear::Force(void)
92 {
93   FGColumnVector vForce(3);
94   FGColumnVector vLocalForce(3);
95   FGColumnVector vLocalGear(3);     // Vector: CG to this wheel (Local)
96   FGColumnVector vWhlVelVec(3);     // Velocity of this wheel (Local)
97   
98   vWhlBodyVec     = (vXYZ - Aircraft->GetXYZcg()) / 12.0;
99   vWhlBodyVec(eX) = -vWhlBodyVec(eX);
100   vWhlBodyVec(eZ) = -vWhlBodyVec(eZ);
101
102   vLocalGear = State->GetTb2l() * vWhlBodyVec;
103   
104   compressLength = vLocalGear(eZ) - Position->GetDistanceAGL();
105
106   if (compressLength > 0.00) {
107      
108     WOW = true;
109     vWhlVelVec      =  State->GetTb2l() * (Rotation->GetPQR() * vWhlBodyVec);
110     vWhlVelVec     +=  Position->GetVel();
111
112     compressSpeed   =  vWhlVelVec(eZ);
113
114     if (!FirstContact) {
115       FirstContact  = true;
116       SinkRate      =  compressSpeed;
117       GroundSpeed   =  Position->GetVel().Magnitude();
118     }
119
120     // The following code normalizes the wheel velocity vector, reverses it, and zeroes out
121     // the z component of the velocity. The question is, should the Z axis velocity be zeroed
122     // out first before the normalization takes place or not? Subsequent to that, the Wheel
123     // Velocity vector now points as a unit vector backwards and parallel to the wheel
124     // velocity vector. It acts AT the wheel.
125
126     vWhlVelVec      = -1.0 * vWhlVelVec.Normalize();
127     vWhlVelVec(eZ)  =  0.00;
128
129 // the following needs work regarding friction coefficients and braking and steering
130
131     vLocalForce(eZ) =  min(-compressLength * kSpring - compressSpeed * bDamp, (float)0.0);
132     vLocalForce(eX) =  fabs(vLocalForce(eZ) * staticFCoeff) * vWhlVelVec(eX);
133     vLocalForce(eY) =  fabs(vLocalForce(eZ) * staticFCoeff) * vWhlVelVec(eY);
134
135     MaximumStrutForce = max(MaximumStrutForce, fabs(vLocalForce(eZ)));
136     MaximumStrutTravel = max(MaximumStrutTravel, fabs(compressLength));
137
138     vForce  = State->GetTl2b() * vLocalForce ;
139     vMoment = vWhlBodyVec * vForce;
140
141   } else {
142
143     WOW = false;
144
145     if (Position->GetDistanceAGL() > 200.0) {
146       FirstContact = false;
147       Reported = false;
148       DistanceTraveled = 0.0;
149       MaximumStrutForce = MaximumStrutTravel = 0.0;
150     }
151
152     vForce.InitMatrix();
153     vMoment.InitMatrix();
154   }
155
156   if (FirstContact) {
157     DistanceTraveled += Position->GetVel().Magnitude()*State->Getdt()*Aircraft->GetRate();
158   }
159
160   if (ReportEnable && Position->GetVel().Magnitude() <= 0.05 && !Reported) {
161     Report();
162   }
163   return vForce;
164 }
165
166 /******************************************************************************/
167
168 void FGLGear::Report(void)
169 {
170   cout << endl << "Touchdown report for " << name << endl;
171   cout << "  Sink rate at contact:  " << SinkRate                << " fps,    "
172                               << SinkRate*0.3408          << " mps"     << endl;
173   cout << "  Contact ground speed:  " << GroundSpeed*.5925       << " knots,  "
174                               << GroundSpeed*0.3408       << " mps"     << endl;
175   cout << "  Maximum contact force: " << MaximumStrutForce       << " lbs,    "
176                               << MaximumStrutForce*4.448  << " Newtons" << endl;
177   cout << "  Maximum strut travel:  " << MaximumStrutTravel*12.0 << " inches, "
178                               << MaximumStrutTravel*30.48 << " cm"      << endl;
179   cout << "  Distance traveled:     " << DistanceTraveled        << " ft,     "
180                               << DistanceTraveled*0.3408  << " meters"  << endl;
181   Reported = true;
182 }
183