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:
parent
6673d2a625
commit
c65fe6333c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue