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.
|
// Check for windmilling.
|
||||||
double radius = Diameter * 0.375; // 75% of radius
|
double radius = Diameter * 0.375; // 75% of radius
|
||||||
double windmill_cutoff = tan(Pitch * 1.745329E-2) * omega * radius;
|
double windmill_cutoff = tan(Pitch * 1.745329E-2) * omega * radius;
|
||||||
if (Vel > windmill_cutoff) {
|
if (Vel > windmill_cutoff)
|
||||||
cout << "Windmilling: " << Vel << " > " << windmill_cutoff << endl;
|
|
||||||
Thrust = -Thrust;
|
Thrust = -Thrust;
|
||||||
}
|
|
||||||
|
|
||||||
vFn(1) = Thrust;
|
vFn(1) = Thrust;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue