A3XX: Add ECAM Takeoff memo
This commit is contained in:
parent
4fb6a61ff4
commit
ac459bc9fb
7 changed files with 1009 additions and 608 deletions
|
@ -150,26 +150,6 @@ var saveSettings = func {
|
|||
|
||||
saveSettings();
|
||||
|
||||
var systemsReset = func {
|
||||
fbw.fctlInit();
|
||||
systems.ELEC.init();
|
||||
systems.PNEU.init();
|
||||
systems.HYD.init();
|
||||
systems.FUEL.init();
|
||||
systems.ADIRS.init();
|
||||
systems.eng_init();
|
||||
systems.autobrake_init();
|
||||
fmgc.FMGCinit();
|
||||
mcdu1.MCDU_reset();
|
||||
mcdu2.MCDU_reset();
|
||||
icing.icingInit();
|
||||
fmgc.APinit();
|
||||
setprop("/it-autoflight/input/fd1", 1);
|
||||
setprop("/it-autoflight/input/fd2", 1);
|
||||
libraries.ECAMinit();
|
||||
libraries.variousReset();
|
||||
}
|
||||
|
||||
################
|
||||
# Panel States #
|
||||
################
|
||||
|
@ -194,7 +174,7 @@ var colddark = func {
|
|||
setprop("/controls/flight/speedbrake-arm", 0);
|
||||
setprop("/controls/gear/gear-down", 1);
|
||||
setprop("/controls/flight/elevator-trim", 0);
|
||||
systemsReset();
|
||||
libraries.systemsInit();
|
||||
failReset();
|
||||
if (getprop("/engines/engine[1]/n2-actual") < 2) {
|
||||
colddark_b();
|
||||
|
@ -242,7 +222,7 @@ var beforestart = func {
|
|||
setprop("/controls/flight/speedbrake-arm", 0);
|
||||
setprop("/controls/gear/gear-down", 1);
|
||||
setprop("/controls/flight/elevator-trim", 0);
|
||||
systemsReset();
|
||||
libraries.systemsInit();
|
||||
failReset();
|
||||
setprop("/controls/APU/master", 0);
|
||||
setprop("/controls/APU/start", 0);
|
||||
|
@ -316,7 +296,7 @@ var taxi = func {
|
|||
setprop("/controls/flight/speedbrake-arm", 0);
|
||||
setprop("/controls/gear/gear-down", 1);
|
||||
setprop("/controls/flight/elevator-trim", 0);
|
||||
systemsReset();
|
||||
libraries.systemsInit();
|
||||
failReset();
|
||||
setprop("/controls/APU/master", 0);
|
||||
setprop("/controls/APU/start", 0);
|
||||
|
|
|
@ -133,129 +133,161 @@ var canvas_upperECAM_base = {
|
|||
me["FOB-LBS"].setText(sprintf("%s", math.round(getprop("/consumables/fuel/total-fuel-lbs"), 10)));
|
||||
|
||||
# Left ECAM Messages
|
||||
me["ECAML1"].setText(sprintf("%s", getprop("/ECAM/msg/line1")));
|
||||
me["ECAML2"].setText(sprintf("%s", getprop("/ECAM/msg/line2")));
|
||||
me["ECAML3"].setText(sprintf("%s", getprop("/ECAM/msg/line3")));
|
||||
me["ECAML4"].setText(sprintf("%s", getprop("/ECAM/msg/line4")));
|
||||
me["ECAML5"].setText(sprintf("%s", getprop("/ECAM/msg/line5")));
|
||||
me["ECAML6"].setText(sprintf("%s", getprop("/ECAM/msg/line6")));
|
||||
me["ECAML7"].setText(sprintf("%s", getprop("/ECAM/msg/line7")));
|
||||
me["ECAML8"].setText(sprintf("%s", getprop("/ECAM/msg/line8")));
|
||||
|
||||
if (getprop("/ECAM/msg/line1c") == "w") {
|
||||
me["ECAML1"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "b") {
|
||||
me["ECAML1"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "g") {
|
||||
me["ECAML1"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "a") {
|
||||
me["ECAML1"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "r") {
|
||||
me["ECAML1"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line2c") == "w") {
|
||||
me["ECAML2"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "b") {
|
||||
me["ECAML2"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "g") {
|
||||
me["ECAML2"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "a") {
|
||||
me["ECAML2"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "r") {
|
||||
me["ECAML2"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line3c") == "w") {
|
||||
me["ECAML3"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "b") {
|
||||
me["ECAML3"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "g") {
|
||||
me["ECAML3"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "a") {
|
||||
me["ECAML3"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "r") {
|
||||
me["ECAML3"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line4c") == "w") {
|
||||
me["ECAML4"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "b") {
|
||||
me["ECAML4"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "g") {
|
||||
me["ECAML4"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "a") {
|
||||
me["ECAML4"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "r") {
|
||||
me["ECAML4"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line5c") == "w") {
|
||||
me["ECAML5"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "b") {
|
||||
me["ECAML5"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "g") {
|
||||
me["ECAML5"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "a") {
|
||||
me["ECAML5"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "r") {
|
||||
me["ECAML5"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line6c") == "w") {
|
||||
me["ECAML6"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "b") {
|
||||
me["ECAML6"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "g") {
|
||||
me["ECAML6"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "a") {
|
||||
me["ECAML6"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "r") {
|
||||
me["ECAML6"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line7c") == "w") {
|
||||
me["ECAML7"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "b") {
|
||||
me["ECAML7"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "g") {
|
||||
me["ECAML7"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "a") {
|
||||
me["ECAML7"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "r") {
|
||||
me["ECAML7"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line8c") == "w") {
|
||||
me["ECAML8"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "b") {
|
||||
me["ECAML8"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "g") {
|
||||
me["ECAML8"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "a") {
|
||||
me["ECAML8"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "r") {
|
||||
me["ECAML8"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/left-msg") == "MSG") {
|
||||
me["ECAML1"].show();
|
||||
me["ECAML2"].show();
|
||||
me["ECAML3"].show();
|
||||
me["ECAML4"].show();
|
||||
me["ECAML5"].show();
|
||||
me["ECAML6"].show();
|
||||
me["ECAML7"].show();
|
||||
me["ECAML8"].show();
|
||||
me["ECAML1"].setText(sprintf("%s", getprop("/ECAM/msg/line1")));
|
||||
me["ECAML2"].setText(sprintf("%s", getprop("/ECAM/msg/line2")));
|
||||
me["ECAML3"].setText(sprintf("%s", getprop("/ECAM/msg/line3")));
|
||||
me["ECAML4"].setText(sprintf("%s", getprop("/ECAM/msg/line4")));
|
||||
me["ECAML5"].setText(sprintf("%s", getprop("/ECAM/msg/line5")));
|
||||
me["ECAML6"].setText(sprintf("%s", getprop("/ECAM/msg/line6")));
|
||||
me["ECAML7"].setText(sprintf("%s", getprop("/ECAM/msg/line7")));
|
||||
me["ECAML8"].setText(sprintf("%s", getprop("/ECAM/msg/line8")));
|
||||
|
||||
if (getprop("/ECAM/msg/line1c") == "w") {
|
||||
me["ECAML1"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "b") {
|
||||
me["ECAML1"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "g") {
|
||||
me["ECAML1"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "a") {
|
||||
me["ECAML1"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line1c") == "r") {
|
||||
me["ECAML1"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line2c") == "w") {
|
||||
me["ECAML2"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "b") {
|
||||
me["ECAML2"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "g") {
|
||||
me["ECAML2"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "a") {
|
||||
me["ECAML2"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line2c") == "r") {
|
||||
me["ECAML2"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line3c") == "w") {
|
||||
me["ECAML3"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "b") {
|
||||
me["ECAML3"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "g") {
|
||||
me["ECAML3"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "a") {
|
||||
me["ECAML3"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line3c") == "r") {
|
||||
me["ECAML3"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line4c") == "w") {
|
||||
me["ECAML4"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "b") {
|
||||
me["ECAML4"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "g") {
|
||||
me["ECAML4"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "a") {
|
||||
me["ECAML4"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line4c") == "r") {
|
||||
me["ECAML4"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line5c") == "w") {
|
||||
me["ECAML5"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "b") {
|
||||
me["ECAML5"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "g") {
|
||||
me["ECAML5"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "a") {
|
||||
me["ECAML5"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line5c") == "r") {
|
||||
me["ECAML5"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line6c") == "w") {
|
||||
me["ECAML6"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "b") {
|
||||
me["ECAML6"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "g") {
|
||||
me["ECAML6"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "a") {
|
||||
me["ECAML6"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line6c") == "r") {
|
||||
me["ECAML6"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line7c") == "w") {
|
||||
me["ECAML7"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "b") {
|
||||
me["ECAML7"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "g") {
|
||||
me["ECAML7"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "a") {
|
||||
me["ECAML7"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line7c") == "r") {
|
||||
me["ECAML7"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
if (getprop("/ECAM/msg/line8c") == "w") {
|
||||
me["ECAML8"].setColor(0.8078,0.8039,0.8078);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "b") {
|
||||
me["ECAML8"].setColor(0.0901,0.6039,0.7176);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "g") {
|
||||
me["ECAML8"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "a") {
|
||||
me["ECAML8"].setColor(0.7333,0.3803,0);
|
||||
} else if (getprop("/ECAM/msg/line8c") == "r") {
|
||||
me["ECAML8"].setColor(1,0,0);
|
||||
}
|
||||
|
||||
me["TO_Memo"].hide();
|
||||
me["ECAM_Left"].show();
|
||||
} else if (getprop("/ECAM/left-msg") == "TO-MEMO") {
|
||||
if (getprop("/controls/autobrake/mode") == 3) {
|
||||
me["TO_Autobrake"].setText("AUTO BRK MAX");
|
||||
me["TO_Autobrake_B"].hide();
|
||||
} else {
|
||||
me["TO_Autobrake"].setText("AUTO BRK");
|
||||
me["TO_Autobrake_B"].show();
|
||||
}
|
||||
|
||||
if (getprop("/controls/switches/no-smoking-sign") == 1 and getprop("/controls/switches/seatbelt-sign") == 1) {
|
||||
me["TO_Signs"].setText("SIGNS ON");
|
||||
me["TO_Signs_B"].hide();
|
||||
} else {
|
||||
me["TO_Signs"].setText("SIGNS");
|
||||
me["TO_Signs_B"].show();
|
||||
}
|
||||
|
||||
if (getprop("/controls/flight/speedbrake-arm") == 1) {
|
||||
me["TO_Spoilers"].setText("SPLRS ARM");
|
||||
me["TO_Spoilers_B"].hide();
|
||||
} else {
|
||||
me["TO_Spoilers"].setText("SPLRS");
|
||||
me["TO_Spoilers_B"].show();
|
||||
}
|
||||
|
||||
if (getprop("/controls/flight/flap-pos") > 0 and getprop("/controls/flight/flap-pos") < 5) {
|
||||
me["TO_Flaps"].setText("FLAPS T.O");
|
||||
me["TO_Flaps_B"].hide();
|
||||
} else {
|
||||
me["TO_Flaps"].setText("FLAPS");
|
||||
me["TO_Flaps_B"].show();
|
||||
}
|
||||
|
||||
if (getprop("/controls/autobrake/mode") == 3 and getprop("/controls/switches/no-smoking-sign") == 1 and getprop("/controls/switches/seatbelt-sign") == 1 and getprop("/controls/flight/speedbrake-arm") == 1 and getprop("/controls/flight/flap-pos") > 0
|
||||
and getprop("/controls/flight/flap-pos") < 5) {
|
||||
me["TO_Config"].setText("T.O CONFIG NORMAL");
|
||||
me["TO_Config_B"].hide();
|
||||
} else {
|
||||
me["TO_Config"].setText("T.O CONFIG");
|
||||
me["TO_Config_B"].show();
|
||||
}
|
||||
|
||||
me["ECAM_Left"].hide();
|
||||
me["TO_Memo"].show();
|
||||
} else {
|
||||
me["ECAML1"].hide();
|
||||
me["ECAML2"].hide();
|
||||
me["ECAML3"].hide();
|
||||
me["ECAML4"].hide();
|
||||
me["ECAML5"].hide();
|
||||
me["ECAML6"].hide();
|
||||
me["ECAML7"].hide();
|
||||
me["ECAML8"].hide();
|
||||
me["ECAM_Left"].hide();
|
||||
me["TO_Memo"].hide();
|
||||
}
|
||||
},
|
||||
};
|
||||
|
@ -270,8 +302,9 @@ var canvas_upperECAM_cfm_eis2 = {
|
|||
getKeys: func() {
|
||||
return ["N11-needle","N11-thr","N11-ylim","N11","N11-decpnt","N11-decimal","N11-box","N11-scale","N11-scale2","N11-scaletick","N11-scalenum","N11-XX","N11-XX2","N11-XX-box","EGT1-needle","EGT1","EGT1-scale","EGT1-box","EGT1-scale2","EGT1-scaletick",
|
||||
"EGT1-XX","N21","N21-decpnt","N21-decimal","N21-XX","FF1","FF1-XX","N12-needle","N12-thr","N12-ylim","N12","N12-decpnt","N12-decimal","N12-box","N12-scale","N12-scale2","N12-scaletick","N12-scalenum","N12-XX","N12-XX2","N12-XX-box","EGT2-needle","EGT2",
|
||||
"EGT2-scale","EGT2-box","EGT2-scale2","EGT2-scaletick","EGT2-XX","N22","N22-decpnt","N22-decimal","N22-XX","FF2","FF2-XX","FOB-LBS","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","FlapTxt","FlapDots","N1Lim-mode","N1Lim",
|
||||
"N1Lim-decpnt","N1Lim-decimal","N1Lim-percent","N1Lim-XX","N1Lim-XX2","REV1","REV1-box","REV2","REV2-box"];
|
||||
"EGT2-scale","EGT2-box","EGT2-scale2","EGT2-scaletick","EGT2-XX","N22","N22-decpnt","N22-decimal","N22-XX","FF2","FF2-XX","FOB-LBS","FlapTxt","FlapDots","N1Lim-mode","N1Lim","N1Lim-decpnt","N1Lim-decimal","N1Lim-percent","N1Lim-XX","N1Lim-XX2","REV1",
|
||||
"REV1-box","REV2","REV2-box","ECAM_Left","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","TO_Memo","TO_Autobrake","TO_Signs","TO_Spoilers","TO_Flaps","TO_Config","TO_Autobrake_B","TO_Signs_B","TO_Spoilers_B","TO_Flaps_B",
|
||||
"TO_Config_B"];
|
||||
},
|
||||
update: func() {
|
||||
# N1
|
||||
|
@ -496,8 +529,8 @@ var canvas_upperECAM_iae_eis2 = {
|
|||
return ["EPR1-needle","EPR1-thr","EPR1-ylim","EPR1","EPR1-decpnt","EPR1-decimal","EPR1-box","EPR1-scale","EPR1-scaletick","EPR1-scalenum","EPR1-XX","EPR1-XX2","EGT1-needle","EGT1","EGT1-scale","EGT1-box","EGT1-scale2","EGT1-scaletick","EGT1-XX",
|
||||
"N11-needle","N11-thr","N11-ylim","N11","N11-decpnt","N11-decimal","N11-scale","N11-scale2","N11-scaletick","N11-scalenum","N11-XX","N21","N21-decpnt","N21-decimal","N21-XX","FF1","FF1-XX","EPR2-needle","EPR2-thr","EPR2-ylim","EPR2","EPR2-decpnt",
|
||||
"EPR2-decimal","EPR2-box","EPR2-scale","EPR2-scaletick","EPR2-scalenum","EPR2-XX","EPR2-XX2","EGT2-needle","EGT2","EGT2-scale","EGT2-scale2","EGT2-box","EGT2-scaletick","EGT2-XX","N12-needle","N12-thr","N12-ylim","N12","N12-decpnt","N12-decimal",
|
||||
"N12-scale","N12-scale2","N12-scaletick","N12-scalenum","N12-XX","N22","N22-decpnt","N22-decimal","N22-XX","FF2","FF2-XX","FOB-LBS","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","FlapTxt","FlapDots","EPRLim-mode","EPRLim",
|
||||
"EPRLim-decpnt","EPRLim-decimal","EPRLim-XX","EPRLim-XX2","REV1","REV1-box","REV2","REV2-box"];
|
||||
"N12-scale","N12-scale2","N12-scaletick","N12-scalenum","N12-XX","N22","N22-decpnt","N22-decimal","N22-XX","FF2","FF2-XX","FOB-LBS","FlapTxt","FlapDots","EPRLim-mode","EPRLim","EPRLim-decpnt","EPRLim-decimal","EPRLim-XX","EPRLim-XX2","REV1","REV1-box",
|
||||
"REV2","REV2-box","ECAM_Left","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","TO_Memo","TO_Autobrake","TO_Signs","TO_Spoilers","TO_Flaps","TO_Config","TO_Autobrake_B","TO_Signs_B","TO_Spoilers_B","TO_Flaps_B","TO_Config_B"];
|
||||
},
|
||||
update: func() {
|
||||
# EPR
|
||||
|
|
|
@ -41,9 +41,9 @@
|
|||
inkscape:window-height="1030"
|
||||
id="namedview371"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="520.85242"
|
||||
inkscape:cy="1094.6024"
|
||||
inkscape:zoom="0.50000001"
|
||||
inkscape:cx="531.17625"
|
||||
inkscape:cy="512.09207"
|
||||
inkscape:window-x="1592"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
|
@ -197,34 +197,6 @@
|
|||
x="384.25583"
|
||||
id="tspan4435"
|
||||
sodipodi:role="line">LBS</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="686.0564"
|
||||
id="ECAML1"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4316"
|
||||
x="14.033532"
|
||||
y="686.0564"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 1</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML2"
|
||||
y="722.86761"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="722.86761"
|
||||
x="14.033532"
|
||||
id="tspan4352"
|
||||
sodipodi:role="line">LINE 2</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
|
@ -1232,88 +1204,375 @@
|
|||
style="fill:none;stroke:#ff0000;stroke-width:3.46754003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:transform-center-x="-74.153195" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="759.67896"
|
||||
id="ECAML3"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4312"
|
||||
<g
|
||||
id="ECAM_Left"
|
||||
inkscape:label="#g4376">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML1"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
id="tspan4316"
|
||||
sodipodi:role="line">LINE 1</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="722.86761"
|
||||
id="ECAML2"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4352"
|
||||
x="14.033532"
|
||||
y="722.86761"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 2</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML3"
|
||||
y="759.67896"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 3</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML4"
|
||||
y="796.4903"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="759.67896"
|
||||
x="14.033532"
|
||||
id="tspan4312"
|
||||
sodipodi:role="line">LINE 3</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="796.4903"
|
||||
x="14.033532"
|
||||
id="tspan4317"
|
||||
sodipodi:role="line">LINE 4</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="833.30164"
|
||||
id="ECAML5"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4321"
|
||||
x="14.033532"
|
||||
id="ECAML4"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4317"
|
||||
x="14.033532"
|
||||
y="796.4903"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 4</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML5"
|
||||
y="833.30164"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 5</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML6"
|
||||
y="870.11298"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="833.30164"
|
||||
x="14.033532"
|
||||
id="tspan4321"
|
||||
sodipodi:role="line">LINE 5</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="870.11298"
|
||||
x="14.033532"
|
||||
id="tspan4325"
|
||||
sodipodi:role="line">LINE 6</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="906.92432"
|
||||
id="ECAML7"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4329"
|
||||
x="14.033532"
|
||||
id="ECAML6"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4325"
|
||||
x="14.033532"
|
||||
y="870.11298"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 6</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML7"
|
||||
y="906.92432"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 7</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML8"
|
||||
y="943.73566"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="943.73566"
|
||||
x="14.033532"
|
||||
id="tspan4333"
|
||||
sodipodi:role="line">LINE 8</tspan></text>
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="906.92432"
|
||||
x="14.033532"
|
||||
id="tspan4329"
|
||||
sodipodi:role="line">LINE 7</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="943.73566"
|
||||
id="ECAML8"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4333"
|
||||
x="14.033532"
|
||||
y="943.73566"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 8</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
id="TO_Memo"
|
||||
inkscape:label="#g4517">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4412"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
id="tspan4414"
|
||||
sodipodi:role="line">T.O</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#0dc04b;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 13.8216,741.99564 77.932201,0"
|
||||
id="path4556"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="686.0564"
|
||||
id="TO_Autobrake"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4421"
|
||||
x="104.6523"
|
||||
y="686.0564"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">AUTO BRK</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="TO_Signs"
|
||||
y="722.50458"
|
||||
x="104.6523"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="722.50458"
|
||||
x="104.6523"
|
||||
id="tspan4425"
|
||||
sodipodi:role="line">SIGNS</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="759.67883"
|
||||
id="TO_Spoilers"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4429"
|
||||
x="104.6523"
|
||||
y="759.67883"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">SPLRS</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="TO_Flaps"
|
||||
y="796.12726"
|
||||
x="104.6523"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="796.12726"
|
||||
x="104.6523"
|
||||
id="tspan4436"
|
||||
sodipodi:role="line">FLAPS </tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="833.30151"
|
||||
id="TO_Config"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4440"
|
||||
x="104.6523"
|
||||
y="833.30151"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">T.O CONFIG</tspan></text>
|
||||
<g
|
||||
inkscape:label="#g4487"
|
||||
id="TO_Autobrake_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="686.41925"
|
||||
id="text4442"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4444"
|
||||
x="489.9281"
|
||||
y="686.41925"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">MAX</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4462"
|
||||
y="686.41925"
|
||||
x="403.6488"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="686.41925"
|
||||
x="403.6488"
|
||||
id="tspan4465"
|
||||
sodipodi:role="line">. . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4493"
|
||||
id="TO_Signs_B">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4446"
|
||||
y="722.50458"
|
||||
x="489.9281"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="722.50458"
|
||||
x="489.9281"
|
||||
id="tspan4448"
|
||||
sodipodi:role="line"> ON</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="424.27417"
|
||||
y="722.86768"
|
||||
id="text4471"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
inkscape:transform-center-y="-46.367479"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4473"
|
||||
x="424.27417"
|
||||
y="722.86768"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4499"
|
||||
id="TO_Spoilers_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="760.04193"
|
||||
id="text4450"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4452"
|
||||
x="489.9281"
|
||||
y="760.04193"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">ARM</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="403.6488"
|
||||
y="760.04193"
|
||||
id="text4475"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4477"
|
||||
x="403.6488"
|
||||
y="760.04193"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4505"
|
||||
id="TO_Flaps_B">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4454"
|
||||
y="796.12726"
|
||||
x="489.9281"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="796.12726"
|
||||
x="489.9281"
|
||||
id="tspan4456"
|
||||
sodipodi:role="line">T.O</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="424.27417"
|
||||
y="796.49036"
|
||||
id="text4479"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4481"
|
||||
x="424.27417"
|
||||
y="796.49036"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4511"
|
||||
id="TO_Config_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="833.30151"
|
||||
id="text4458"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4460"
|
||||
x="489.9281"
|
||||
y="833.30151"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">TEST</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4483"
|
||||
y="833.66461"
|
||||
x="383.02429"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="833.66461"
|
||||
x="383.02429"
|
||||
id="tspan4485"
|
||||
sodipodi:role="line">. . .</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 94 KiB |
|
@ -41,14 +41,14 @@
|
|||
inkscape:window-height="1030"
|
||||
id="namedview371"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.0622118"
|
||||
inkscape:cx="1105.0255"
|
||||
inkscape:cy="1220.4997"
|
||||
inkscape:zoom="1.5311059"
|
||||
inkscape:cx="247.80484"
|
||||
inkscape:cy="355.57872"
|
||||
inkscape:window-x="1592"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="false"
|
||||
showguides="true"
|
||||
inkscape:snap-global="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
|
@ -213,34 +213,6 @@
|
|||
x="384.25583"
|
||||
id="tspan4435"
|
||||
sodipodi:role="line">LBS</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="686.0564"
|
||||
id="ECAML1"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4316"
|
||||
x="14.033532"
|
||||
y="686.0564"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 1</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML2"
|
||||
y="722.86761"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="722.86761"
|
||||
x="14.033532"
|
||||
id="tspan4352"
|
||||
sodipodi:role="line">LINE 2</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
|
@ -866,90 +838,6 @@
|
|||
d="m 220.39233,320.0382 42.77869,0"
|
||||
style="fill:#001104;fill-opacity:0.32941176;stroke:#0dc04b;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:transform-center-x="70.6625" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="759.67896"
|
||||
id="ECAML3"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4312"
|
||||
x="14.033532"
|
||||
y="759.67896"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 3</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML4"
|
||||
y="796.4903"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="796.4903"
|
||||
x="14.033532"
|
||||
id="tspan4317"
|
||||
sodipodi:role="line">LINE 4</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="833.30164"
|
||||
id="ECAML5"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4321"
|
||||
x="14.033532"
|
||||
y="833.30164"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 5</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML6"
|
||||
y="870.11298"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="870.11298"
|
||||
x="14.033532"
|
||||
id="tspan4325"
|
||||
sodipodi:role="line">LINE 6</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="906.92432"
|
||||
id="ECAML7"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4329"
|
||||
x="14.033532"
|
||||
y="906.92432"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 7</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML8"
|
||||
y="943.73566"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="943.73566"
|
||||
x="14.033532"
|
||||
id="tspan4333"
|
||||
sodipodi:role="line">LINE 8</tspan></text>
|
||||
<text
|
||||
id="text4339"
|
||||
y="401.41238"
|
||||
|
@ -1702,4 +1590,375 @@
|
|||
x="720.09741"
|
||||
id="tspan4434"
|
||||
sodipodi:role="line">REV</tspan></text>
|
||||
<g
|
||||
id="ECAM_Left"
|
||||
inkscape:label="#g4376">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML1"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
id="tspan4316"
|
||||
sodipodi:role="line">LINE 1</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="722.86761"
|
||||
id="ECAML2"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4352"
|
||||
x="14.033532"
|
||||
y="722.86761"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 2</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML3"
|
||||
y="759.67896"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="759.67896"
|
||||
x="14.033532"
|
||||
id="tspan4312"
|
||||
sodipodi:role="line">LINE 3</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="796.4903"
|
||||
id="ECAML4"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4317"
|
||||
x="14.033532"
|
||||
y="796.4903"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 4</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML5"
|
||||
y="833.30164"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="833.30164"
|
||||
x="14.033532"
|
||||
id="tspan4321"
|
||||
sodipodi:role="line">LINE 5</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="870.11298"
|
||||
id="ECAML6"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4325"
|
||||
x="14.033532"
|
||||
y="870.11298"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 6</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="ECAML7"
|
||||
y="906.92432"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce"
|
||||
y="906.92432"
|
||||
x="14.033532"
|
||||
id="tspan4329"
|
||||
sodipodi:role="line">LINE 7</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="14.033532"
|
||||
y="943.73566"
|
||||
id="ECAML8"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4333"
|
||||
x="14.033532"
|
||||
y="943.73566"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#cecdce">LINE 8</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
id="TO_Memo"
|
||||
inkscape:label="#g4517">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4412"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="686.0564"
|
||||
x="14.033532"
|
||||
id="tspan4414"
|
||||
sodipodi:role="line">T.O</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#0dc04b;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 13.8216,741.99564 77.932201,0"
|
||||
id="path4556"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="686.0564"
|
||||
id="TO_Autobrake"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4421"
|
||||
x="104.6523"
|
||||
y="686.0564"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">AUTO BRK</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="TO_Signs"
|
||||
y="722.50458"
|
||||
x="104.6523"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="722.50458"
|
||||
x="104.6523"
|
||||
id="tspan4425"
|
||||
sodipodi:role="line">SIGNS</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="759.67883"
|
||||
id="TO_Spoilers"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4429"
|
||||
x="104.6523"
|
||||
y="759.67883"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">SPLRS</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="TO_Flaps"
|
||||
y="796.12726"
|
||||
x="104.6523"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1"
|
||||
y="796.12726"
|
||||
x="104.6523"
|
||||
id="tspan4436"
|
||||
sodipodi:role="line">FLAPS </tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="104.6523"
|
||||
y="833.30151"
|
||||
id="TO_Config"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4440"
|
||||
x="104.6523"
|
||||
y="833.30151"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">T.O CONFIG</tspan></text>
|
||||
<g
|
||||
inkscape:label="#g4487"
|
||||
id="TO_Autobrake_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="686.41925"
|
||||
id="text4442"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4444"
|
||||
x="489.9281"
|
||||
y="686.41925"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">MAX</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4462"
|
||||
y="686.41925"
|
||||
x="403.6488"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="686.41925"
|
||||
x="403.6488"
|
||||
id="tspan4465"
|
||||
sodipodi:role="line">. . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4493"
|
||||
id="TO_Signs_B">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4446"
|
||||
y="722.50458"
|
||||
x="489.9281"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="722.50458"
|
||||
x="489.9281"
|
||||
id="tspan4448"
|
||||
sodipodi:role="line"> ON</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="424.27417"
|
||||
y="722.86768"
|
||||
id="text4471"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
inkscape:transform-center-y="-46.367479"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4473"
|
||||
x="424.27417"
|
||||
y="722.86768"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4499"
|
||||
id="TO_Spoilers_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="760.04193"
|
||||
id="text4450"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4452"
|
||||
x="489.9281"
|
||||
y="760.04193"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">ARM</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="403.6488"
|
||||
y="760.04193"
|
||||
id="text4475"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4477"
|
||||
x="403.6488"
|
||||
y="760.04193"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4505"
|
||||
id="TO_Flaps_B">
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4454"
|
||||
y="796.12726"
|
||||
x="489.9281"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="796.12726"
|
||||
x="489.9281"
|
||||
id="tspan4456"
|
||||
sodipodi:role="line">T.O</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="424.27417"
|
||||
y="796.49036"
|
||||
id="text4479"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4481"
|
||||
x="424.27417"
|
||||
y="796.49036"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">. . . . . . . . . .</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g4511"
|
||||
id="TO_Config_B">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="489.9281"
|
||||
y="833.30151"
|
||||
id="text4458"
|
||||
inkscape:label="#text4314"
|
||||
sodipodi:linespacing="0%"
|
||||
transform="scale(0.92957935,1.0757554)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4460"
|
||||
x="489.9281"
|
||||
y="833.30151"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1">TEST</tspan></text>
|
||||
<text
|
||||
transform="scale(0.92957935,1.0757554)"
|
||||
sodipodi:linespacing="0%"
|
||||
inkscape:label="#text4314"
|
||||
id="text4483"
|
||||
y="833.66461"
|
||||
x="383.02429"
|
||||
style="font-style:normal;font-weight:normal;font-size:11.15495205px;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.1831665px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#179ab7;fill-opacity:1"
|
||||
y="833.66461"
|
||||
x="383.02429"
|
||||
id="tspan4485"
|
||||
sodipodi:role="line">. . .</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 118 KiB |
325
Nasal/ECAM.nas
325
Nasal/ECAM.nas
|
@ -5,194 +5,46 @@
|
|||
# Copyright (c) Joshua Davidson (it0uchpods) #
|
||||
##############################################
|
||||
|
||||
# It no works yet, so please don't touch a thing until it works. Thanks -JD
|
||||
|
||||
##################
|
||||
# Init Functions #
|
||||
##################
|
||||
|
||||
setprop("/ECAM/left-msg", "NONE");
|
||||
setprop("/position/gear-agl-ft", 0);
|
||||
setprop("/ECAM/noupdate", 0);
|
||||
setprop("/ECAM/donotrevert", 0);
|
||||
setprop("/ECAM/Lower/page", "eng");
|
||||
setprop("/ECAM/Lower/page", "fctl");
|
||||
# w = White, b = Blue, g = Green, a = Amber, r = Red
|
||||
|
||||
###########################################################
|
||||
# w = White, b = Blue, g = Green, a = Amber, r = Red #
|
||||
###########################################################
|
||||
|
||||
var ECAMinit = func {
|
||||
if (getprop("/options/enable-ecam-actions") == 1) {
|
||||
ECAMloop.start();
|
||||
setprop("/ECAM/phase-1-inhibit", 0);
|
||||
setprop("/ECAM/phase-2-inhibit", 0);
|
||||
setprop("/ECAM/phase-3-inhibit", 0);
|
||||
setprop("/ECAM/phase-4-inhibit", 0);
|
||||
setprop("/ECAM/phase-5-inhibit", 0);
|
||||
setprop("/ECAM/phase-6-inhibit", 0);
|
||||
setprop("/ECAM/phase-7-inhibit", 0);
|
||||
setprop("/ECAM/phase-8-inhibit", 0);
|
||||
setprop("/ECAM/phase-9-inhibit", 0);
|
||||
setprop("/ECAM/phase-10-inhibit", 0);
|
||||
var stateL = getprop("/engines/engine[0]/state");
|
||||
var stateR = getprop("/engines/engine[1]/state");
|
||||
var thrustL = getprop("/systems/thrust/state1");
|
||||
var thrustR = getprop("/systems/thrust/state2");
|
||||
var elec = getprop("/systems/electrical/on");
|
||||
var speed = getprop("/velocities/airspeed-kt");
|
||||
var wowL = getprop("/gear/gear[1]/wow");
|
||||
var altitude = getprop("/position/gear-agl-ft");
|
||||
var phase1inhibit = getprop("/ECAM/phase-1-inhibit");
|
||||
var phase2inhibit = getprop("/ECAM/phase-2-inhibit");
|
||||
var phase3inhibit = getprop("/ECAM/phase-3-inhibit");
|
||||
var phase4inhibit = getprop("/ECAM/phase-4-inhibit");
|
||||
var phase5inhibit = getprop("/ECAM/phase-5-inhibit");
|
||||
var phase6inhibit = getprop("/ECAM/phase-6-inhibit");
|
||||
var phase7inhibit = getprop("/ECAM/phase-7-inhibit");
|
||||
var phase8inhibit = getprop("/ECAM/phase-8-inhibit");
|
||||
var phase9inhibit = getprop("/ECAM/phase-9-inhibit");
|
||||
var phase10inhibit = getprop("/ECAM/phase-10-inhibit");
|
||||
}
|
||||
}
|
||||
|
||||
# setlistener("/ECAM/phase-10-inhibit", func {
|
||||
# phase10inhibit = getprop("/ECAM/phase-10-inhibit");
|
||||
# if (phase10inhibit) {
|
||||
# settimer(func {
|
||||
# setprop("/ECAM/phase-10-inhibit", 0);
|
||||
# }, 300);
|
||||
# }
|
||||
#});
|
||||
|
||||
var MSGclr = func {
|
||||
setprop("/ECAM/ecam-checklist-active", 0);
|
||||
setprop("/ECAM/left-msg", "NONE");
|
||||
setprop("/ECAM/msg/line1", "");
|
||||
setprop("/ECAM/msg/line2", "");
|
||||
setprop("/ECAM/msg/line3", "");
|
||||
setprop("/ECAM/msg/line4", "");
|
||||
setprop("/ECAM/msg/line5", "");
|
||||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "w");
|
||||
setprop("/ECAM/msg/line2c", "w");
|
||||
setprop("/ECAM/msg/line3c", "w");
|
||||
setprop("/ECAM/msg/line4c", "w");
|
||||
setprop("/ECAM/msg/line5c", "w");
|
||||
setprop("/ECAM/msg/line6c", "w");
|
||||
setprop("/ECAM/msg/line7c", "w");
|
||||
setprop("/ECAM/msg/line8c", "w");
|
||||
}
|
||||
|
||||
MSGclr();
|
||||
|
||||
var ECAMloop = maketimer(0.2, func {
|
||||
|
||||
stateL = getprop("/engines/engine[0]/state");
|
||||
stateR = getprop("/engines/engine[1]/state");
|
||||
thrustL = getprop("/systems/thrust/state1");
|
||||
thrustR = getprop("/systems/thrust/state2");
|
||||
elec = getprop("/systems/electrical/on");
|
||||
speed = getprop("/velocities/airspeed-kt");
|
||||
wowL = getprop("/gear/gear[1]/wow");
|
||||
altitude = getprop("/position/gear-agl-ft");
|
||||
phase1inhibit = getprop("/ECAM/phase-1-inhibit");
|
||||
phase2inhibit = getprop("/ECAM/phase-2-inhibit");
|
||||
phase3inhibit = getprop("/ECAM/phase-3-inhibit");
|
||||
phase4inhibit = getprop("/ECAM/phase-4-inhibit");
|
||||
phase5inhibit = getprop("/ECAM/phase-5-inhibit");
|
||||
phase6inhibit = getprop("/ECAM/phase-6-inhibit");
|
||||
phase7inhibit = getprop("/ECAM/phase-7-inhibit");
|
||||
phase8inhibit = getprop("/ECAM/phase-8-inhibit");
|
||||
phase9inhibit = getprop("/ECAM/phase-9-inhibit");
|
||||
phase10inhibit = getprop("/ECAM/phase-10-inhibit");
|
||||
|
||||
var noUpdate = getprop("/ECAM/noupdate");
|
||||
var doNotRevert = getprop("/ECAM/donotrevert");
|
||||
if (getprop("/FMGC/status/phase") == 0 and getprop("/engines/engine[0]/state") == 3 and getprop("/engines/engine[1]/state") == 3) {
|
||||
setprop("/ECAM/left-msg", "TO-MEMO");
|
||||
} else if (!doNotRevert) {
|
||||
setprop("/ECAM/left-msg", "NONE");
|
||||
}
|
||||
|
||||
var leftMSG = getprop("/ECAM/left-msg");
|
||||
|
||||
if (leftMSG == "TO-MEMO" and !noUpdate) {
|
||||
setprop("/ECAM/msg/line1", " AUTO BRK");
|
||||
setprop("/ECAM/msg/line2", " SIGNS");
|
||||
setprop("/ECAM/msg/line3", " CABIN");
|
||||
setprop("/ECAM/msg/line4", " SPLRS");
|
||||
setprop("/ECAM/msg/line5", " FLAPS");
|
||||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "g");
|
||||
setprop("/ECAM/msg/line2c", "g");
|
||||
setprop("/ECAM/msg/line3c", "g");
|
||||
setprop("/ECAM/msg/line4c", "g");
|
||||
setprop("/ECAM/msg/line5c", "g");
|
||||
setprop("/ECAM/msg/line6c", "g");
|
||||
setprop("/ECAM/msg/line7c", "g");
|
||||
setprop("/ECAM/msg/line8c", "g");
|
||||
}
|
||||
|
||||
###########
|
||||
# Inhibit #
|
||||
###########
|
||||
if (elec == 1 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-1-inhibit", 1);
|
||||
} else if (stateL == 3 or stateR == 3 and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
var ECAM = {
|
||||
init: func() {
|
||||
setprop("/ECAM/phase-1-inhibit", 0);
|
||||
setprop("/ECAM/phase-2-inhibit", 1);
|
||||
} else if (thrustL == "FLX" or thrustL == "TOGA" or thrustR == "FLX" or thrustR == "TOGA" and speed < 80 and !phase1inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-2-inhibit", 0);
|
||||
setprop("/ECAM/phase-3-inhibit", 1);
|
||||
} else if (thrustL == "FLX" or thrustL == "TOGA" or thrustR == "FLX" or thrustR == "TOGA" and speed > 80 and wowL and !phase1inhibit and !phase2inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-3-inhibit", 0);
|
||||
setprop("/ECAM/phase-4-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude < 1501 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-4-inhibit", 0);
|
||||
setprop("/ECAM/phase-5-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude > 1501 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-5-inhibit", 0);
|
||||
setprop("/ECAM/phase-6-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude < 801 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-6-inhibit", 0);
|
||||
setprop("/ECAM/phase-7-inhibit", 1);
|
||||
} else if (speed > 80 and wowL and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-7-inhibit", 0);
|
||||
setprop("/ECAM/phase-8-inhibit", 1);
|
||||
} else if (speed < 80 and wowL and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-8-inhibit", 0);
|
||||
setprop("/ECAM/phase-9-inhibit", 1);
|
||||
} else if (stateL == 0 and stateR == 0 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-9-inhibit", 0);
|
||||
setprop("/ECAM/phase-10-inhibit", 1);
|
||||
}
|
||||
############
|
||||
# Air Cond #
|
||||
############
|
||||
|
||||
if (getprop("/systems/failures/pack1") == 1 and getprop("/systems/failures/pack2") == 0 and getprop("/controls/pneumatic/switches/pack1") == 1 and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit) {
|
||||
setprop("/ECAM/msg/line1", "AIR PACK 1 FAULT");
|
||||
setprop("/ECAM/msg/line2", " - PACK 1: OFF");
|
||||
setprop("/ECAM/msg/line3", "");
|
||||
setprop("/ECAM/msg/line4", "");
|
||||
setprop("/ECAM/msg/line5", "");
|
||||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "a");
|
||||
setprop("/ECAM/msg/line2c", "b");
|
||||
setprop("/ECAM/msg/line3c", "g");
|
||||
setprop("/ECAM/msg/line4c", "g");
|
||||
setprop("/ECAM/msg/line5c", "g");
|
||||
setprop("/ECAM/msg/line6c", "g");
|
||||
setprop("/ECAM/msg/line7c", "g");
|
||||
setprop("/ECAM/msg/line8c", "g");
|
||||
setprop("/ECAM/left-msg", "MSG");
|
||||
} else if (getprop("/systems/failures/pack1") == 1 and getprop("/systems/failures/pack2") == 0 and getprop("/controls/pneumatic/switches/pack1") == 0 and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit) {
|
||||
setprop("/ECAM/msg/line1", "AIR PACK 1 FAULT");
|
||||
setprop("/ECAM/phase-10-inhibit", 0);
|
||||
var stateL = getprop("/engines/engine[0]/state");
|
||||
var stateR = getprop("/engines/engine[1]/state");
|
||||
var thrustL = getprop("/systems/thrust/state1");
|
||||
var thrustR = getprop("/systems/thrust/state2");
|
||||
var elec = getprop("/systems/electrical/on");
|
||||
var speed = getprop("/velocities/airspeed-kt");
|
||||
var wowL = getprop("/gear/gear[1]/wow");
|
||||
var altitude = getprop("/position/gear-agl-ft");
|
||||
var phase1inhibit = getprop("/ECAM/phase-1-inhibit");
|
||||
var phase2inhibit = getprop("/ECAM/phase-2-inhibit");
|
||||
var phase3inhibit = getprop("/ECAM/phase-3-inhibit");
|
||||
var phase4inhibit = getprop("/ECAM/phase-4-inhibit");
|
||||
var phase5inhibit = getprop("/ECAM/phase-5-inhibit");
|
||||
var phase6inhibit = getprop("/ECAM/phase-6-inhibit");
|
||||
var phase7inhibit = getprop("/ECAM/phase-7-inhibit");
|
||||
var phase8inhibit = getprop("/ECAM/phase-8-inhibit");
|
||||
var phase9inhibit = getprop("/ECAM/phase-9-inhibit");
|
||||
var phase10inhibit = getprop("/ECAM/phase-10-inhibit");
|
||||
},
|
||||
MSGclr: func() {
|
||||
setprop("/ECAM/ecam-checklist-active", 0);
|
||||
setprop("/ECAM/left-msg", "NONE");
|
||||
setprop("/ECAM/msg/line1", "");
|
||||
setprop("/ECAM/msg/line2", "");
|
||||
setprop("/ECAM/msg/line3", "");
|
||||
setprop("/ECAM/msg/line4", "");
|
||||
|
@ -200,59 +52,72 @@ var ECAMloop = maketimer(0.2, func {
|
|||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "a");
|
||||
setprop("/ECAM/msg/line2c", "g");
|
||||
setprop("/ECAM/msg/line3c", "g");
|
||||
setprop("/ECAM/msg/line4c", "g");
|
||||
setprop("/ECAM/msg/line5c", "g");
|
||||
setprop("/ECAM/msg/line6c", "g");
|
||||
setprop("/ECAM/msg/line7c", "g");
|
||||
setprop("/ECAM/msg/line8c", "g");
|
||||
setprop("/ECAM/left-msg", "MSG");
|
||||
} else {
|
||||
# MSGclr();
|
||||
}
|
||||
setprop("/ECAM/msg/line1c", "w");
|
||||
setprop("/ECAM/msg/line2c", "w");
|
||||
setprop("/ECAM/msg/line3c", "w");
|
||||
setprop("/ECAM/msg/line4c", "w");
|
||||
setprop("/ECAM/msg/line5c", "w");
|
||||
setprop("/ECAM/msg/line6c", "w");
|
||||
setprop("/ECAM/msg/line7c", "w");
|
||||
setprop("/ECAM/msg/line8c", "w");
|
||||
},
|
||||
loop: func() {
|
||||
stateL = getprop("/engines/engine[0]/state");
|
||||
stateR = getprop("/engines/engine[1]/state");
|
||||
thrustL = getprop("/systems/thrust/state1");
|
||||
thrustR = getprop("/systems/thrust/state2");
|
||||
elec = getprop("/systems/electrical/on");
|
||||
speed = getprop("/velocities/airspeed-kt");
|
||||
wowL = getprop("/gear/gear[1]/wow");
|
||||
altitude = getprop("/position/gear-agl-ft");
|
||||
phase1inhibit = getprop("/ECAM/phase-1-inhibit");
|
||||
phase2inhibit = getprop("/ECAM/phase-2-inhibit");
|
||||
phase3inhibit = getprop("/ECAM/phase-3-inhibit");
|
||||
phase4inhibit = getprop("/ECAM/phase-4-inhibit");
|
||||
phase5inhibit = getprop("/ECAM/phase-5-inhibit");
|
||||
phase6inhibit = getprop("/ECAM/phase-6-inhibit");
|
||||
phase7inhibit = getprop("/ECAM/phase-7-inhibit");
|
||||
phase8inhibit = getprop("/ECAM/phase-8-inhibit");
|
||||
phase9inhibit = getprop("/ECAM/phase-9-inhibit");
|
||||
phase10inhibit = getprop("/ECAM/phase-10-inhibit");
|
||||
|
||||
if (getprop("/systems/failures/pack1") == 0 and getprop("/systems/failures/pack2") == 1 and getprop("/controls/pneumatic/switches/pack2") == 1 and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit) {
|
||||
setprop("/ECAM/msg/line1", "AIR PACK 2 FAULT");
|
||||
setprop("/ECAM/msg/line2", " - PACK 2: OFF");
|
||||
setprop("/ECAM/msg/line3", "");
|
||||
setprop("/ECAM/msg/line4", "");
|
||||
setprop("/ECAM/msg/line5", "");
|
||||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "a");
|
||||
setprop("/ECAM/msg/line2c", "b");
|
||||
setprop("/ECAM/msg/line3c", "g");
|
||||
setprop("/ECAM/msg/line4c", "g");
|
||||
setprop("/ECAM/msg/line5c", "g");
|
||||
setprop("/ECAM/msg/line6c", "g");
|
||||
setprop("/ECAM/msg/line7c", "g");
|
||||
setprop("/ECAM/msg/line8c", "g");
|
||||
setprop("/ECAM/left-msg", "MSG");
|
||||
} else if (getprop("/systems/failures/pack1") == 0 and getprop("/systems/failures/pack2") == 1 and getprop("/controls/pneumatic/switches/pack2") == 0 and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit) {
|
||||
setprop("/ECAM/msg/line1", "AIR PACK 2 FAULT");
|
||||
setprop("/ECAM/msg/line2", "");
|
||||
setprop("/ECAM/msg/line3", "");
|
||||
setprop("/ECAM/msg/line4", "");
|
||||
setprop("/ECAM/msg/line5", "");
|
||||
setprop("/ECAM/msg/line6", "");
|
||||
setprop("/ECAM/msg/line7", "");
|
||||
setprop("/ECAM/msg/line8", "");
|
||||
setprop("/ECAM/msg/line1c", "a");
|
||||
setprop("/ECAM/msg/line2c", "g");
|
||||
setprop("/ECAM/msg/line3c", "g");
|
||||
setprop("/ECAM/msg/line4c", "g");
|
||||
setprop("/ECAM/msg/line5c", "g");
|
||||
setprop("/ECAM/msg/line6c", "g");
|
||||
setprop("/ECAM/msg/line7c", "g");
|
||||
setprop("/ECAM/msg/line8c", "g");
|
||||
setprop("/ECAM/left-msg", "MSG");
|
||||
} else {
|
||||
# MSGclr();
|
||||
}
|
||||
|
||||
});
|
||||
if (getprop("/FMGC/status/phase") == 0 and getprop("/engines/engine[0]/state") == 3 and getprop("/engines/engine[1]/state") == 3) {
|
||||
setprop("/ECAM/left-msg", "TO-MEMO");
|
||||
} else {
|
||||
setprop("/ECAM/left-msg", "NONE");
|
||||
}
|
||||
|
||||
if (elec == 1 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-1-inhibit", 1);
|
||||
} else if (stateL == 3 or stateR == 3 and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-1-inhibit", 0);
|
||||
setprop("/ECAM/phase-2-inhibit", 1);
|
||||
} else if (thrustL == "FLX" or thrustL == "TOGA" or thrustR == "FLX" or thrustR == "TOGA" and speed < 80 and !phase1inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-2-inhibit", 0);
|
||||
setprop("/ECAM/phase-3-inhibit", 1);
|
||||
} else if (thrustL == "FLX" or thrustL == "TOGA" or thrustR == "FLX" or thrustR == "TOGA" and speed > 80 and wowL and !phase1inhibit and !phase2inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-3-inhibit", 0);
|
||||
setprop("/ECAM/phase-4-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude < 1501 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-4-inhibit", 0);
|
||||
setprop("/ECAM/phase-5-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude > 1501 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-5-inhibit", 0);
|
||||
setprop("/ECAM/phase-6-inhibit", 1);
|
||||
} else if (speed > 80 and !wowL and altitude < 801 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase7inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-6-inhibit", 0);
|
||||
setprop("/ECAM/phase-7-inhibit", 1);
|
||||
} else if (speed > 80 and wowL and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase8inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-7-inhibit", 0);
|
||||
setprop("/ECAM/phase-8-inhibit", 1);
|
||||
} else if (speed < 80 and wowL and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase9inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-8-inhibit", 0);
|
||||
setprop("/ECAM/phase-9-inhibit", 1);
|
||||
} else if (stateL == 0 and stateR == 0 and !phase1inhibit and !phase2inhibit and !phase3inhibit and !phase4inhibit and !phase5inhibit and !phase6inhibit and !phase7inhibit and !phase8inhibit and !phase10inhibit) {
|
||||
setprop("/ECAM/phase-9-inhibit", 0);
|
||||
setprop("/ECAM/phase-10-inhibit", 1);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
ECAM.MSGclr();
|
||||
|
|
|
@ -168,7 +168,7 @@ var triggerDoor = func(door, doorName, doorDesc) {
|
|||
# Various Other Stuff #
|
||||
#######################
|
||||
|
||||
setlistener("/sim/signals/fdm-initialized", func {
|
||||
var systemsInit = func {
|
||||
fbw.fctlInit();
|
||||
systems.ELEC.init();
|
||||
systems.PNEU.init();
|
||||
|
@ -189,8 +189,12 @@ setlistener("/sim/signals/fdm-initialized", func {
|
|||
var autopilot = gui.Dialog.new("sim/gui/dialogs/autopilot/dialog", "Aircraft/IDG-A32X/Systems/autopilot-dlg.xml");
|
||||
setprop("/it-autoflight/input/fd1", 1);
|
||||
setprop("/it-autoflight/input/fd2", 1);
|
||||
libraries.ECAMinit();
|
||||
libraries.ECAM.init();
|
||||
libraries.variousReset();
|
||||
}
|
||||
|
||||
setlistener("/sim/signals/fdm-initialized", func {
|
||||
systemsInit();
|
||||
});
|
||||
|
||||
var systemsLoop = maketimer(0.1, func {
|
||||
|
@ -199,6 +203,7 @@ var systemsLoop = maketimer(0.1, func {
|
|||
systems.HYD.loop();
|
||||
systems.FUEL.loop();
|
||||
systems.ADIRS.loop();
|
||||
libraries.ECAM.loop();
|
||||
|
||||
if ((getprop("/controls/pneumatic/switches/groundair") or getprop("/controls/switches/cart")) and ((getprop("/velocities/groundspeed-kt") > 2) or getprop("/controls/gear/brake-parking") == 0)) {
|
||||
setprop("/controls/switches/cart", 0);
|
||||
|
|
|
@ -1 +1 @@
|
|||
4204
|
||||
4205
|
Reference in a new issue