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

148 lines
4 KiB
C
Raw Normal View History

1999-02-05 21:26:01 +00:00
/*******************************************************************************
1999-02-05 21:26:01 +00:00
Header: FGEngine.h
Author: Jon S. Berndt
Date started: 01/21/99
1999-02-05 21:26:01 +00:00
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
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.
1999-02-05 21:26:01 +00:00
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
1999-02-05 21:26:01 +00:00
FUNCTIONAL DESCRIPTION
--------------------------------------------------------------------------------
1999-02-05 21:26:01 +00:00
Based on Flightgear code, which is based on LaRCSim. This class simulates
a generic engine.
1999-02-05 21:26:01 +00:00
HISTORY
--------------------------------------------------------------------------------
01/21/99 JSB Created
********************************************************************************
1999-02-05 21:26:01 +00:00
SENTRY
*******************************************************************************/
#ifndef FGEngine_H
#define FGEngine_H
/*******************************************************************************
INCLUDES
*******************************************************************************/
#ifdef FGFS
2000-02-15 03:30:01 +00:00
# include <simgear/compiler.h>
# include STL_STRING
1999-12-20 20:24:49 +00:00
FG_USING_STD(string);
#else
# include <string>
#endif
1999-02-05 21:26:01 +00:00
/*******************************************************************************
DEFINES
*******************************************************************************/
using std::string;
1999-05-08 03:19:08 +00:00
1999-02-05 21:26:01 +00:00
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/
class FGFDMExec;
class FGState;
class FGAtmosphere;
class FGFCS;
class FGAircraft;
class FGTranslation;
class FGRotation;
class FGPosition;
class FGAuxiliary;
class FGOutput;
class FGEngine {
1999-02-05 21:26:01 +00:00
public:
FGEngine(FGFDMExec*, string, string, int);
1999-02-05 21:26:01 +00:00
~FGEngine(void);
enum EngineType {etUnknown, etRocket, etPiston, etTurboProp, etTurboJet};
float GetThrottle(void) { return Throttle; }
float GetThrust(void) { return Thrust; }
float GetThrottleMin(void) { return MinThrottle; }
float GetThrottleMax(void) { return MaxThrottle; }
bool GetStarved(void) { return Starved; }
bool GetFlameout(void) { return Flameout; }
int GetType(void) { return Type; }
string GetName() { return Name; }
void SetStarved(bool tt) {
Starved = tt;
}
void SetStarved(void) {
Starved = true;
}
1999-02-05 21:26:01 +00:00
float CalcThrust(void);
float CalcFuelNeed(void);
float CalcOxidizerNeed(void);
private:
string Name;
EngineType Type;
1999-02-05 21:26:01 +00:00
float X, Y, Z;
2000-07-06 21:02:46 +00:00
float EnginePitch;
float EngineYaw;
1999-02-05 21:26:01 +00:00
float SLThrustMax;
float VacThrustMax;
float SLFuelFlowMax;
float SLOxiFlowMax;
float MaxThrottle;
float MinThrottle;
1999-12-20 20:24:49 +00:00
float BrakeHorsePower;
float SpeedSlope;
float SpeedIntercept;
float AltitudeSlope;
1999-02-05 21:26:01 +00:00
float Thrust;
float Throttle;
float FuelNeed, OxidizerNeed;
bool Starved;
bool Flameout;
float PctPower;
int EngineNumber;
FGFDMExec* FDMExec;
FGState* State;
FGAtmosphere* Atmosphere;
FGFCS* FCS;
FGAircraft* Aircraft;
FGTranslation* Translation;
FGRotation* Rotation;
FGPosition* Position;
FGAuxiliary* Auxiliary;
FGOutput* Output;
1999-02-05 21:26:01 +00:00
protected:
float CalcRocketThrust(void);
float CalcPistonThrust(void);
};
/******************************************************************************/
#endif