JSBSim update:
Removed debugging message about windmilling.
This commit is contained in:
parent
117bf73dea
commit
ecddbcbb48
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue