Update PFD flap overspeed limit, update VS numbers
This commit is contained in:
parent
3dba80c367
commit
3ff5114936
4 changed files with 5 additions and 5 deletions
|
@ -1855,7 +1855,7 @@
|
|||
<condition>
|
||||
<greater-than-equals>
|
||||
<property>/instrumentation/vertical-speed-indicator/indicated-speed-fpm</property>
|
||||
<value>100</value>
|
||||
<value>200</value>
|
||||
</greater-than-equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
@ -1866,7 +1866,7 @@
|
|||
<condition>
|
||||
<less-than-equals>
|
||||
<property>/instrumentation/vertical-speed-indicator/indicated-speed-fpm</property>
|
||||
<value>-100</value>
|
||||
<value>-200</value>
|
||||
</less-than-equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
|
|
@ -1855,7 +1855,7 @@
|
|||
<condition>
|
||||
<greater-than-equals>
|
||||
<property>/instrumentation/vertical-speed-indicator/indicated-speed-fpm</property>
|
||||
<value>100</value>
|
||||
<value>200</value>
|
||||
</greater-than-equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
@ -1866,7 +1866,7 @@
|
|||
<condition>
|
||||
<less-than-equals>
|
||||
<property>/instrumentation/vertical-speed-indicator/indicated-speed-fpm</property>
|
||||
<value>-100</value>
|
||||
<value>-200</value>
|
||||
</less-than-equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
@ -100,7 +100,7 @@ controls.flapsDown = func(step) {
|
|||
}
|
||||
|
||||
var flap_autoretract = func {
|
||||
if (getprop("/controls/flight/flap-pos") == 2 and getprop("/velocities/airspeed-kt") >= 210) {
|
||||
if (getprop("/controls/flight/flap-pos") == 2 and getprop("/velocities/airspeed-kt") >= 208) {
|
||||
setprop("/controls/flight/flaps", 0.000);
|
||||
setprop("/controls/flight/slats", 0.666);
|
||||
setprop("/controls/flight/flap-lever", 1);
|
||||
|
|
Reference in a new issue