]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/Propeller.hpp
Add support for a turbo prop condition lever.
[flightgear.git] / src / FDM / YASim / Propeller.hpp
1 #ifndef _PROPELLER_HPP
2 #define _PROPELLER_HPP
3
4 namespace yasim {
5
6 // A generic propeller model.  See the TeX documentation for
7 // implementation details, this is too hairy to explain in code
8 // comments.
9 class Propeller
10 {
11 public:
12     // Initializes a propeller with the specified "cruise" numbers
13     // for airspeed, RPM, power and air density, and two "takeoff"
14     // numbers for RPM and power (with air speed and density being
15     // zero and sea level).  RPM values are in radians per second, of
16     // course.
17     Propeller(float radius, float v, float omega, float rho, float power);
18
19     void setTakeoff(float omega0, float power0);
20
21     void modPitch(float mod);
22
23     void setPropPitch(float proppitch);
24
25     void setPropFeather(int state);
26
27     void setManualPitch();
28
29     void calc(float density, float v, float omega,
30               float* thrustOut, float* torqueOut);
31
32 private:
33     float _r;           // characteristic radius
34     float _j0;          // zero-thrust advance ratio
35     float _baseJ0;      //  ... uncorrected for prop advance
36     float _f0;          // thrust coefficient
37     float _etaC;        // Peak efficiency
38     float _lambdaPeak;  // constant, ~0.759835;
39     float _beta;        // constant, ~1.48058;
40     float _tc0;         // thrust "coefficient" at takeoff
41     bool  _matchTakeoff; // Does _tc0 mean anything?
42     bool  _manual;      // manual pitch mode
43     float _proppitch;   // prop pitch control setting (0 ~ 1.0)
44     float _propfeather; // prop feather control setting (0 = norm, 1 = feather)
45 };
46
47 }; // namespace yasim
48 #endif // _PROPELLER_HPP