@EternalDarkness that will output a negative number when pitch is 0 or quite small, and pitching up corresponds to negative numbers, meaning that it will make the plane pitch up more and more as speed increases.
A better code would be Pitch/(1+pow(IAS/150,2)), where decreasing 150 increases the stiffening
Lmao, @whoevercanhelp
Thanksguys@edensk
@EternalDarkness that will output a negative number when pitch is 0 or quite small, and pitching up corresponds to negative numbers, meaning that it will make the plane pitch up more and more as speed increases.
A better code would be
Pitch/(1+pow(IAS/150,2))
, where decreasing 150 increases the stiffeningTry
Pitch - IAS/x
. Adjust "x" as needed, smaller number reduces reduction of elevator deflection less as the speed increases.@BogdanX @EternalDarkness @whoevercanhelp