]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/Propeller.hpp
Updated to YASim-0.1.1
[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 calc(float density, float v, float omega,
24               float* thrustOut, float* torqueOut);
25
26 private:
27     float _r;           // characteristic radius
28     float _J0;          // zero-thrust advance ratio
29     float _baseJ0;      //  ... uncorrected for prop advance
30     float _F0;          // thrust coefficient
31     float _etaC;        // Peak efficiency
32     float _lambdaPeak;  // constant, ~0.759835;
33     float _beta;        // constant, ~1.48058;
34     float _tc0;         // thrust "coefficient" at takeoff
35     bool  _matchTakeoff; // Does _tc0 mean anything?
36 };
37
38 }; // namespace yasim
39 #endif // _PROPELLER_HPP