Better autoland with pulse #241
This commit is contained in:
parent
55c2e17d55
commit
868d69fbf3
3 changed files with 63 additions and 16 deletions
|
@ -1010,6 +1010,22 @@
|
||||||
</volume>
|
</volume>
|
||||||
</apoff>
|
</apoff>
|
||||||
|
|
||||||
|
<autolandwarning>
|
||||||
|
<name>autolandwarning-single</name>
|
||||||
|
<mode>once</mode>
|
||||||
|
<path>Aircraft/A320-family/Sounds/Cockpit/calvary-charge-once.wav</path>
|
||||||
|
<condition>
|
||||||
|
<equals>
|
||||||
|
<property>/instrumentation/pfd/lights/autoland-alarm</property>
|
||||||
|
<value>1</value>
|
||||||
|
</equals>
|
||||||
|
</condition>
|
||||||
|
<volume>
|
||||||
|
<property>/sim/current-view/internal</property>
|
||||||
|
<factor>40.0</factor>
|
||||||
|
</volume>
|
||||||
|
</autolandwarning>
|
||||||
|
|
||||||
<gear>
|
<gear>
|
||||||
<name>gear0</name>
|
<name>gear0</name>
|
||||||
<mode>in-transit</mode>
|
<mode>in-transit</mode>
|
||||||
|
|
|
@ -2303,24 +2303,30 @@
|
||||||
|
|
||||||
<switch name="/instrumentation/pfd/lights/autoland-armed">
|
<switch name="/instrumentation/pfd/lights/autoland-armed">
|
||||||
<default value="0"/>
|
<default value="0"/>
|
||||||
<test logic="OR" value="1">
|
<test logic="AND" value="1">
|
||||||
<!-- /gear/gear[0]/wow eq 0 -->
|
<test logic="OR">
|
||||||
|
/systems/electrical/bus/ac-2 ge 110
|
||||||
|
/systems/electrical/bus/ac-ess-shed ge 110
|
||||||
|
</test>
|
||||||
|
<test logic="OR">
|
||||||
<test logic="AND">
|
<test logic="AND">
|
||||||
/modes/pfd/ILS1 eq 1
|
/modes/pfd/ILS1 eq 1
|
||||||
/instrumentation/radar-altimeter[0]/radar-altitude-ft-corrected le 200
|
/instrumentation/radar-altimeter[0]/radar-altitude-ft-corrected lt 200
|
||||||
</test>
|
</test>
|
||||||
<test logic="AND">
|
<test logic="AND">
|
||||||
/modes/pfd/ILS2 eq 1
|
/modes/pfd/ILS2 eq 1
|
||||||
/instrumentation/radar-altimeter[1]/radar-altitude-ft-corrected le 200
|
/instrumentation/radar-altimeter[1]/radar-altitude-ft-corrected lt 200
|
||||||
|
</test>
|
||||||
</test>
|
</test>
|
||||||
<!-- /instrumentation/radar-altimeter[1]/radar-altitude-ft-corrected le 200 -->
|
|
||||||
</test>
|
</test>
|
||||||
</switch>
|
</switch>
|
||||||
|
|
||||||
<switch name="/instrumentation/pfd/lights/autoland-on">
|
<switch name="/instrumentation/pfd/lights/autoland-alarm">
|
||||||
<default value="0"/>
|
<default value="0"/>
|
||||||
<test logic="AND" value="1">
|
<test logic="AND" value="1">
|
||||||
/instrumentation/pfd/lights/autoland-armed eq 1
|
/instrumentation/pfd/lights/autoland-armed eq 1
|
||||||
|
<!-- /modes/pfd/fma/pitch-mode eq "LAND" -->
|
||||||
|
/it-autoflight/output/vert eq 2
|
||||||
<test logic="OR">
|
<test logic="OR">
|
||||||
<test logic="AND">
|
<test logic="AND">
|
||||||
/it-autoflight/output/ap1 eq 0
|
/it-autoflight/output/ap1 eq 0
|
||||||
|
@ -2335,6 +2341,20 @@
|
||||||
</test>
|
</test>
|
||||||
</switch>
|
</switch>
|
||||||
|
|
||||||
|
<switch name="/instrumentation/pfd/lights/autoland-on">
|
||||||
|
<default value="0"/>
|
||||||
|
<test logic="OR" value="1">
|
||||||
|
<test logic="AND">
|
||||||
|
/instrumentation/pfd/lights/autoland-alarm eq 1
|
||||||
|
/instrumentation/pfd/lights/autoland-sw-pulse eq 1
|
||||||
|
</test>
|
||||||
|
<test logic="AND">
|
||||||
|
/it-autoflight/output/ap-warning eq 1
|
||||||
|
/ECAM/warnings/master-warning-flash eq 1
|
||||||
|
</test>
|
||||||
|
</test>
|
||||||
|
</switch>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
|
||||||
<channel name="ENG" execrate="16">
|
<channel name="ENG" execrate="16">
|
||||||
|
|
|
@ -574,4 +574,15 @@
|
||||||
<output>/instrumentation/iesi/pitch-deg</output>
|
<output>/instrumentation/iesi/pitch-deg</output>
|
||||||
</filter>
|
</filter>
|
||||||
|
|
||||||
|
<flipflop>
|
||||||
|
<type>monostable</type>
|
||||||
|
<time>
|
||||||
|
<value>1.5</value>
|
||||||
|
</time>
|
||||||
|
<S>
|
||||||
|
<property>/instrumentation/pfd/lights/autoland-armed</property>
|
||||||
|
</S>
|
||||||
|
<output>/instrumentation/pfd/lights/autoland-sw-pulse</output>
|
||||||
|
</flipflop>
|
||||||
|
|
||||||
</PropertyList>
|
</PropertyList>
|
||||||
|
|
Loading…
Reference in a new issue