2001-12-01 06:22:24 +00:00
|
|
|
#ifndef _PISTONENGINE_HPP
|
|
|
|
#define _PISTONENGINE_HPP
|
|
|
|
|
2004-04-30 19:06:29 +00:00
|
|
|
#include "Engine.hpp"
|
|
|
|
|
2001-12-01 06:22:24 +00:00
|
|
|
namespace yasim {
|
|
|
|
|
2004-04-30 19:06:29 +00:00
|
|
|
class PistonEngine : public Engine {
|
2001-12-01 06:22:24 +00:00
|
|
|
public:
|
2004-04-30 19:06:29 +00:00
|
|
|
virtual PistonEngine* isPistonEngine() { return this; }
|
|
|
|
|
2001-12-01 06:22:24 +00:00
|
|
|
// Initializes an engine from known "takeoff" parameters.
|
|
|
|
PistonEngine(float power, float spd);
|
2001-12-06 18:13:24 +00:00
|
|
|
void setTurboParams(float mul, float maxMP);
|
2001-12-24 13:54:03 +00:00
|
|
|
void setDisplacement(float d);
|
|
|
|
void setCompression(float c);
|
2001-12-01 06:22:24 +00:00
|
|
|
|
2002-02-20 04:27:22 +00:00
|
|
|
bool isCranking();
|
2001-12-24 13:54:03 +00:00
|
|
|
float getMP();
|
|
|
|
float getEGT();
|
2004-04-30 19:06:29 +00:00
|
|
|
float getMaxPower(); // max sea-level power
|
2005-07-02 17:09:42 +00:00
|
|
|
float getBoost() { return _boostPressure; }
|
2004-04-30 19:06:29 +00:00
|
|
|
|
|
|
|
virtual void calc(float pressure, float temp, float speed);
|
|
|
|
virtual float getTorque();
|
|
|
|
virtual float getFuelFlow();
|
2001-12-01 06:22:24 +00:00
|
|
|
|
|
|
|
private:
|
2001-12-24 13:54:03 +00:00
|
|
|
// Static configuration:
|
2001-12-07 20:00:59 +00:00
|
|
|
float _power0; // reference power setting
|
2001-12-01 06:22:24 +00:00
|
|
|
float _omega0; // " engine speed
|
|
|
|
float _rho0; // " manifold air density
|
|
|
|
float _f0; // "ideal" fuel flow at P0/omega0
|
|
|
|
float _mixCoeff; // fuel flow per omega at full mixture
|
2001-12-24 13:54:03 +00:00
|
|
|
float _turbo; // (or super-)charger pressure multiplier
|
|
|
|
float _maxMP; // wastegate setting
|
|
|
|
float _displacement; // piston stroke volume
|
|
|
|
float _compression; // compression ratio (>1)
|
2001-12-01 06:22:24 +00:00
|
|
|
|
2001-12-24 13:54:03 +00:00
|
|
|
// Runtime state/output:
|
|
|
|
float _mp;
|
|
|
|
float _torque;
|
|
|
|
float _fuelFlow;
|
|
|
|
float _egt;
|
2005-07-02 17:09:42 +00:00
|
|
|
float _boostPressure;
|
2001-12-01 06:22:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}; // namespace yasim
|
|
|
|
#endif // _PISTONENGINE_HPP
|