196 double VcalibratedKts;
201 bool TakeoffThrottle;
210 std::vector <double> BrakePos;
216 enum BrakeGroup {bgNone=0, bgLeft, bgRight, bgCenter, bgNose, bgTail, bgNumBrakeGroups };
241 return Ts2b * (vXYZn - in.vXYZcg);
243 double GetBodyLocation(
int idx)
const {
245 return vWhlBodyVec(idx);
248 const FGColumnVector3& GetLocalGear(
void)
const {
return vLocalGear; }
249 double GetLocalGear(
int idx)
const {
return vLocalGear(idx); }
252 const std::string&
GetName(
void)
const {
return name; }
271 double GetSteerNorm(
void)
const {
272 return maxSteerAngle == 0.0 ? 0.0 : radtodeg/maxSteerAngle*SteerAngle;
274 void SetSteerCmd(
double cmd) { SetSteerAngleDeg(cmd * maxSteerAngle); }
275 double GetstaticFCoeff(
void)
const {
return staticFCoeff; }
277 int GetBrakeGroup(
void)
const {
return (
int)eBrakeGrp; }
278 int GetSteerType(
void)
const {
return (
int)eSteerType; }
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; }
285 double GetWheelRollForce(
void) {
287 FGColumnVector3 vForce = mTGear.Transposed() * FGForce::GetBodyForces();
288 return vForce(eX)*cos(SteerAngle) + vForce(eY)*sin(SteerAngle); }
289 double GetWheelSideForce(
void) {
291 FGColumnVector3 vForce = mTGear.Transposed() * FGForce::GetBodyForces();
292 return vForce(eY)*cos(SteerAngle) - vForce(eX)*sin(SteerAngle); }
293 double GetBodyXForce(
void) {
295 return FGForce::GetBodyForces()(eX);
297 double GetBodyYForce(
void) {
299 return FGForce::GetBodyForces()(eY);
301 double GetBodyZForce(
void) {
303 return FGForce::GetBodyForces()(eZ);
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;
319 const struct Inputs& in;
321 void ResetToIC(
void);
325 static const FGMatrix33 Tb2s;
326 static const FGMatrix33 Ts2b;
328 FGColumnVector3 vLocalGear;
329 FGColumnVector3 vWhlVelVec, vGroundWhlVel;
330 FGColumnVector3 vGroundNormal;
331 FGTable *ForceY_Table;
332 FGFunction *fStrutForce;
337 double compressLength;
338 double compressSpeed;
339 double staticFCoeff, dynamicFCoeff, rollingFCoeff;
340 double Stiffness, Shape, Peak, Curvature;
345 double TakeoffDistanceTraveled;
346 double TakeoffDistanceTraveled50ft;
347 double LandingDistanceTraveled;
348 double MaximumStrutForce, StrutForce;
349 double MaximumStrutTravel;
353 double staticFFactor = 1.0;
354 double rollingFFactor = 1.0;
355 double maximumForce = DBL_MAX;
356 double bumpiness = 0.0;
361 bool StartedGroundRun;
362 bool LandingReported;
363 bool TakeoffReported;
371 BrakeGroup eBrakeGrp;
372 ContactType eContactType;
373 SteerType eSteerType;
375 DampType eDampTypeRebound;
376 double maxSteerAngle;
378 LagrangeMultiplier LMultiplier[3];
384 FGGroundReactions* GroundReactions;
386 mutable bool useFCSGearPos;
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);