1
0
Fork 0
flightgear/src/FDM/JSBSim/FGLGear.h

145 lines
4.5 KiB
C
Raw Normal View History

1999-12-20 20:25:13 +00:00
/*******************************************************************************
Header: FGLGear.h
Author: Jon S. Berndt
Date started: 11/18/99
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
HISTORY
--------------------------------------------------------------------------------
11/18/99 JSB Created
********************************************************************************
SENTRY
*******************************************************************************/
#ifndef FGLGEAR_H
#define FGLGEAR_H
/*******************************************************************************
COMMENTS, REFERENCES, and NOTES
********************************************************************************
[1] Cooke, Zyda, Pratt, and McGhee, "NPSNET: Flight Simulation Dynamic Modeling
2000-04-24 23:49:06 +00:00
Using Quaternions", Presence, Vol. 1, No. 4, pp. 404-420 Naval Postgraduate
School, January 1994
1999-12-20 20:25:13 +00:00
[2] D. M. Henderson, "Euler Angles, Quaternions, and Transformation Matrices",
2000-04-24 23:49:06 +00:00
JSC 12960, July 1977
1999-12-20 20:25:13 +00:00
[3] Richard E. McFarland, "A Standard Kinematic Model for Flight Simulation at
2000-04-24 23:49:06 +00:00
NASA-Ames", NASA CR-2497, January 1975
1999-12-20 20:25:13 +00:00
[4] Barnes W. McCormick, "Aerodynamics, Aeronautics, and Flight Mechanics",
2000-04-24 23:49:06 +00:00
Wiley & Sons, 1979 ISBN 0-471-03032-5
1999-12-20 20:25:13 +00:00
[5] Bernard Etkin, "Dynamics of Flight, Stability and Control", Wiley & Sons,
2000-04-24 23:49:06 +00:00
1982 ISBN 0-471-08936-2
1999-12-20 20:25:13 +00:00
********************************************************************************
INCLUDES
*******************************************************************************/
#ifdef FGFS
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
1999-12-20 20:25:13 +00:00
#endif
#include <string>
2000-04-24 23:49:06 +00:00
#include "FGConfigFile.h"
#include "FGMatrix.h"
#include "FGFDMExec.h"
#include "FGState.h"
2000-04-24 23:49:06 +00:00
1999-12-20 20:25:13 +00:00
/*******************************************************************************
DEFINITIONS
*******************************************************************************/
#define ID_LGEAR "$Header"
1999-12-20 20:25:13 +00:00
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/
class FGAircraft;
class FGPosition;
2000-05-27 05:48:14 +00:00
class FGRotation;
1999-12-20 20:25:13 +00:00
class FGLGear
{
public:
FGLGear(FGConfigFile*, FGFDMExec*);
1999-12-20 20:25:13 +00:00
~FGLGear(void);
FGColumnVector Force(void);
2000-05-27 05:48:14 +00:00
FGColumnVector Moment(void) {return vMoment;}
2000-10-02 23:07:30 +00:00
FGColumnVector GetBodyLocation(void) { return vWhlBodyVec; }
2000-05-27 05:48:14 +00:00
inline string GetName(void) {return name; }
inline bool GetWOW(void) {return WOW; }
inline float GetCompLen(void) {return compressLength;}
inline float GetCompVel(void) {return compressSpeed; }
inline float GetCompForce(void) {return Force()(3); }
2000-10-02 23:07:30 +00:00
inline void SetBrake(double bp) {brakePct = bp;}
2000-10-02 23:07:30 +00:00
inline void SetReport(bool bb) { ReportEnable=bb; }
inline bool GetReport(void) { return ReportEnable; }
1999-12-20 20:25:13 +00:00
private:
2000-05-27 05:48:14 +00:00
enum {eX=1, eY, eZ};
FGColumnVector vXYZ;
2000-05-27 05:48:14 +00:00
FGColumnVector vMoment;
2000-10-02 23:07:30 +00:00
FGColumnVector vWhlBodyVec;
float kSpring;
float bDamp;
float compressLength;
float compressSpeed;
float staticFCoeff, dynamicFCoeff;
float brakePct;
2000-10-02 23:07:30 +00:00
float maxCompLen;
2000-07-06 21:02:46 +00:00
double SinkRate;
double GroundSpeed;
double DistanceTraveled;
double MaximumStrutForce;
double MaximumStrutTravel;
2000-05-27 05:48:14 +00:00
bool WOW;
2000-07-06 21:02:46 +00:00
bool FirstContact;
bool Reported;
2000-10-02 23:07:30 +00:00
bool ReportEnable;
1999-12-20 20:25:13 +00:00
string name;
string BrakeType;
string SteerType;
string GroupMember;
float maxSteerAngle;
2000-05-27 05:48:14 +00:00
FGFDMExec* Exec;
FGState* State;
FGAircraft* Aircraft;
FGPosition* Position;
FGRotation* Rotation;
2000-07-06 21:02:46 +00:00
void Report(void);
1999-12-20 20:25:13 +00:00
};
#include "FGAircraft.h"
#include "FGPosition.h"
2000-05-27 05:48:14 +00:00
#include "FGRotation.h"
1999-12-20 20:25:13 +00:00
/******************************************************************************/
2000-02-15 03:30:01 +00:00
#endif