1
0
Fork 0

following the bug 901 being addressed,

the sign of "orientatio/side-slip-deg" as reported by yasim is now inverted.
    here are the corrections to yasim affected planes (.xml and .nas)
This commit is contained in:
janodesbois 2013-08-23 22:35:53 +02:00
parent 6673d2a625
commit c65fe6333c

View file

@ -371,7 +371,7 @@ var CAS = {
return 0;
}
var mach = getprop("/velocities/mach");
var slip = getprop("/orientation/side-slip-deg");
var slip = -getprop("/orientation/side-slip-deg"); <!-- inverted after a change in side-slip sign (bug #901) -->
var min_speed_threshold = getprop("/controls/flight/fcs/gains/cas/input/anti-side-slip-min-speed");
if (mach < min_speed_threshold) { # works only if air speed > min_speed_threshold
slip = 0;