SPD LIM displayed on captain's PFD if there is a dual FAC failure
This commit is contained in:
parent
66eb7daf31
commit
0829f51377
2 changed files with 27 additions and 1 deletions
|
@ -212,7 +212,7 @@ var canvas_PFD_base = {
|
|||
"AI_agl_g","AI_agl","AI_error","AI_group","FD_roll","FD_pitch","ALT_box_flash","ALT_box","ALT_box_amber","ALT_scale","ALT_target","ALT_target_digit","ALT_one","ALT_two","ALT_three","ALT_four","ALT_five","ALT_digits","ALT_tens","ALT_digit_UP",
|
||||
"ALT_digit_DN","ALT_error","ALT_group","ALT_group2","ALT_frame","VS_pointer","VS_box","VS_digit","VS_error","VS_group","QNH","QNH_setting","QNH_std","QNH_box","LOC_pointer","LOC_scale","GS_scale","GS_pointer","CRS_pointer","HDG_target","HDG_scale",
|
||||
"HDG_one","HDG_two","HDG_three","HDG_four","HDG_five","HDG_six","HDG_seven","HDG_digit_L","HDG_digit_R","HDG_error","HDG_group","HDG_frame","TRK_pointer","machError","ilsError","ils_code","ils_freq","dme_dist","dme_dist_legend","ILS_HDG_R","ILS_HDG_L",
|
||||
"ILS_right","ILS_left","outerMarker","middleMarker","innerMarker","v1_group","v1_text","vr_speed","F_target","S_target","FS_targets","flap_max","clean_speed","ground","ground_ref"];
|
||||
"ILS_right","ILS_left","outerMarker","middleMarker","innerMarker","v1_group","v1_text","vr_speed","F_target","S_target","FS_targets","flap_max","clean_speed","ground","ground_ref","spdLimError"];
|
||||
},
|
||||
updateDu1: func() {
|
||||
var elapsedtime_act = elapsedtime.getValue();
|
||||
|
@ -1066,6 +1066,14 @@ var canvas_PFD_1 = {
|
|||
me["VS_group"].hide();
|
||||
}
|
||||
|
||||
# Apparently SPD LIM only on captains PFD. I find this odd. But manual says it.
|
||||
# Spd Lim Error
|
||||
if (!fbw.FBW.Computers.fac1.getValue() and !fbw.FBW.Computers.fac2.getValue()) {
|
||||
me["spdLimError"].show();
|
||||
} else {
|
||||
me["spdLimError"].hide();
|
||||
}
|
||||
|
||||
# FD
|
||||
if (fd1_act == 1 and ((!wow1_act and !wow2_act and roll_mode_cur != " ") or roll_mode_cur != " ") and ap_trk_sw.getValue() == 0 and pitch_cur < 25 and pitch_cur > -13 and roll_cur < 45 and roll_cur > -45) {
|
||||
me["FD_roll"].show();
|
||||
|
@ -1803,6 +1811,7 @@ var canvas_PFD_2 = {
|
|||
me["VS_error"].show();
|
||||
me["VS_group"].hide();
|
||||
}
|
||||
me["spdLimError"].hide();
|
||||
|
||||
# FD
|
||||
if (fd2_act == 1 and ((!wow1_act and !wow2_act and roll_mode_cur != " ") or roll_mode_cur != " ") and ap_trk_sw.getValue() == 0 and pitch_cur < 25 and pitch_cur > -13 and roll_cur < 45 and roll_cur > -45) {
|
||||
|
|
|
@ -6656,4 +6656,21 @@
|
|||
x="61.095329"
|
||||
y="74.429939"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.657577">FLX</tspan></text>
|
||||
<text
|
||||
inkscape:label="#text1607"
|
||||
id="spdLimError"
|
||||
y="749.95782"
|
||||
x="143.42143"
|
||||
style="font-style:normal;font-weight:normal;font-size:30.00000191px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.99999875px;line-height:0.5;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ff0000;fill-opacity:1;stroke-width:0.75"
|
||||
y="749.95782"
|
||||
x="143.42143"
|
||||
id="tspan1605-4"
|
||||
sodipodi:role="line">SPD</tspan><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.99999875px;line-height:0.5;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ff0000;fill-opacity:1;stroke-width:0.75"
|
||||
y="787.45782"
|
||||
x="143.42143"
|
||||
sodipodi:role="line"
|
||||
id="tspan1860">LIM</tspan></text>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 367 KiB After Width: | Height: | Size: 368 KiB |
Loading…
Reference in a new issue