]> git.mxchange.org Git - flightgear.git/commitdiff
JSBSim update:
authordavid <david>
Thu, 3 Jan 2002 21:42:44 +0000 (21:42 +0000)
committerdavid <david>
Thu, 3 Jan 2002 21:42:44 +0000 (21:42 +0000)
Removed debugging message about windmilling.

src/FDM/JSBSim/FGPropeller.cpp

index bd0567c0a9e4a24ee76106bae121c00ded0040e3..e4d54e7ad80ea747aaa302e7b8a2621251231040 100644 (file)
@@ -159,10 +159,8 @@ double FGPropeller::Calculate(double PowerAvailable)
   // Check for windmilling.
   double radius = Diameter * 0.375; // 75% of radius
   double windmill_cutoff = tan(Pitch * 1.745329E-2) * omega * radius;
-  if (Vel > windmill_cutoff) {
-    cout << "Windmilling: " << Vel << " > " << windmill_cutoff << endl;
+  if (Vel > windmill_cutoff)
     Thrust = -Thrust;
-  }
 
   vFn(1) = Thrust;