]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/YASim/Propeller.hpp
latest updates from JSBSim
[flightgear.git] / src / FDM / YASim / Propeller.hpp
index 5a5905e2fc26382b7e77198a0b7f5afc75486b9e..3f2b6099eb5de35b6b0ad14473f74565d5ccdab7 100644 (file)
@@ -16,6 +16,8 @@ public:
     // course.
     Propeller(float radius, float v, float omega, float rho, float power);
 
+    void setStops (float fine_stop, float coarse_stop);
+
     void setTakeoff(float omega0, float power0);
 
     void modPitch(float mod);
@@ -38,6 +40,8 @@ private:
     float _lambdaPeak;  // constant, ~0.759835;
     float _beta;        // constant, ~1.48058;
     float _tc0;         // thrust "coefficient" at takeoff
+    float _fine_stop;   // ratio for minimum pitch (high RPM)
+    float _coarse_stop; // ratio for maximum pitch (low RPM)
     bool  _matchTakeoff; // Does _tc0 mean anything?
     bool  _manual;      // manual pitch mode
     float _proppitch;   // prop pitch control setting (0 ~ 1.0)