[JSBSim] Tentative fix for the P factor
This commit is contained in:
parent
ab5342888b
commit
b0ee215bed
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ double FGPropeller::Calculate(double EnginePower)
|
|||
double tangentialVel = localAeroVel.Magnitude(eV, eW);
|
||||
|
||||
if (tangentialVel > 0.0001) {
|
||||
double angle = atan2(tangentialVel, localAeroVel(eU));
|
||||
double angle = atan2(tangentialVel, localAeroVel(eU) + Vinduced);
|
||||
double factor = Sense * P_Factor * angle / tangentialVel;
|
||||
SetActingLocationY( GetLocationY() + factor * localAeroVel(eW));
|
||||
SetActingLocationZ( GetLocationZ() + factor * localAeroVel(eV));
|
||||
|
|
Loading…
Reference in a new issue