fix bug in Upper-ECAM

This commit is contained in:
Joshua Davidson 2017-04-28 15:15:14 -04:00
parent 0c3bf87298
commit ad0067c8fe
3 changed files with 6 additions and 6 deletions

View file

@ -270,9 +270,9 @@
<roll-scale>1.4</roll-scale> <roll-scale>1.4</roll-scale>
<vorloc>-4.0</vorloc> <vorloc>-4.0</vorloc>
<alt>0.025</alt> <alt>0.025</alt>
<vs>0.10</vs> <vs>0.015</vs>
<fpa>0.30</fpa> <fpa>0.30</fpa>
<flch>-4.0</flch> <flch>-4.8</flch>
<gs>0.10</gs> <gs>0.10</gs>
</cmd> </cmd>
<autoland> <autoland>
@ -291,7 +291,7 @@
<retard-enable>0</retard-enable> <!-- AGL to Thrust Retard --> <retard-enable>0</retard-enable> <!-- AGL to Thrust Retard -->
<togaspd>162</togaspd> <!-- V2 + 10kts --> <togaspd>162</togaspd> <!-- V2 + 10kts -->
<lat-agl-ft>100</lat-agl-ft> <!-- Set to 999999 if you do not want T/O to change automatically to HDG, or LNAV --> <lat-agl-ft>100</lat-agl-ft> <!-- Set to 999999 if you do not want T/O to change automatically to HDG, or LNAV -->
<reduc-agl-ft>1500</reduc-agl-ft> <!-- Set to 999999 if you do not want TOGA to change automatically to FLCH --> <reduc-agl-ft>1450</reduc-agl-ft> <!-- Set to 999999 if you do not want TOGA to change automatically to FLCH -->
</settings> </settings>
<output> <output>
<ap1>0</ap1> <ap1>0</ap1>

View file

@ -47,7 +47,7 @@
<condition> <condition>
<less-than> <less-than>
<property>/engines/engine[0]/n1</property> <property>/engines/engine[0]/n1</property>
<value>20</value> <value>15</value>
</less-than> </less-than>
</condition> </condition>
</animation> </animation>
@ -59,7 +59,7 @@
<condition> <condition>
<less-than> <less-than>
<property>/engines/engine[1]/n1</property> <property>/engines/engine[1]/n1</property>
<value>20</value> <value>15</value>
</less-than> </less-than>
</condition> </condition>
</animation> </animation>

View file

@ -10,7 +10,7 @@ setlistener("/sim/signals/fdm-initialized", func {
setprop("/systems/thrust/state1", "IDLE"); setprop("/systems/thrust/state1", "IDLE");
setprop("/systems/thrust/state2", "IDLE"); setprop("/systems/thrust/state2", "IDLE");
setprop("/systems/thrust/lvrclb", "0"); setprop("/systems/thrust/lvrclb", "0");
setprop("/systems/thrust/clbreduc-ft", "1500"); setprop("/systems/thrust/clbreduc-ft", "1550");
thrustt.start(); thrustt.start();
}); });