1
0
Fork 0

DU: N1 Mode corrections on EWD

This commit is contained in:
Josh Davidson 2021-05-17 10:55:13 -04:00
parent d3d3f81c3a
commit 85486c77da
3 changed files with 368 additions and 188 deletions

View file

@ -243,29 +243,25 @@ var canvas_upperECAM = {
obj["N1Lim"].setText(sprintf("%s", math.floor(val + 0.05))); obj["N1Lim"].setText(sprintf("%s", math.floor(val + 0.05)));
obj["N1Lim-decimal"].setText(sprintf("%s", int(10 * math.mod(val + 0.05, 1)))); obj["N1Lim-decimal"].setText(sprintf("%s", int(10 * math.mod(val + 0.05, 1))));
}), }),
props.UpdateManager.FromHashList(["fadecPower1", "fadecPower2", "fadecPowerStart","thrustLimit"], nil, func(val) { props.UpdateManager.FromHashList(["fadecPower1", "fadecPower2", "fadecPowerStart", "thrustLimit"], nil, func(val) {
if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) { if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) {
obj["N1Lim"].show();
obj["N1Lim-decimal"].show();
obj["N1Lim-decpnt"].show();
obj["N1Lim-percent"].show();
obj["N1Lim-mode"].show(); obj["N1Lim-mode"].show();
obj["N1Lim-XX"].hide(); obj["N1Lim-XX"].hide();
obj["N1Lim-XX2"].hide(); obj["N1Lim-XX2"].hide();
} else { } else {
obj["N1Lim"].hide();
obj["N1Lim-decimal"].hide();
obj["N1Lim-decpnt"].hide();
obj["N1Lim-percent"].hide();
obj["N1Lim-mode"].hide(); obj["N1Lim-mode"].hide();
obj["N1Lim-XX"].show(); obj["N1Lim-XX"].show();
obj["N1Lim-XX2"].show(); obj["N1Lim-XX2"].show();
} }
if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) {
obj["N1Lim"].show();
obj["N1Lim-decpnt"].show();
obj["N1Lim-decimal"].show();
obj["N1Lim-percent"].show();
} else {
obj["N1Lim"].hide();
obj["N1Lim-decpnt"].hide();
obj["N1Lim-decimal"].hide();
obj["N1Lim-percent"].hide();
}
if ((val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) and val.thrustLimit == "FLX") { if ((val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) and val.thrustLimit == "FLX") {
obj["FlxLimDegreesC"].show(); obj["FlxLimDegreesC"].show();
obj["FlxLimTemp"].show(); obj["FlxLimTemp"].show();
@ -279,33 +275,60 @@ var canvas_upperECAM = {
obj.update_items_iae_only = [ obj.update_items_iae_only = [
props.UpdateManager.FromHashValue("thrustLimit", nil, func(val) { props.UpdateManager.FromHashValue("thrustLimit", nil, func(val) {
obj["EPRLim-mode"].setText(sprintf("%s", val)); obj["EPRLim-mode"].setText(sprintf("%s", val));
obj["N1Lim-mode"].setText(sprintf("%s", val));
}), }),
props.UpdateManager.FromHashValue("eprLimit", 0.0005, func(val) { props.UpdateManager.FromHashValue("eprLimit", 0.0005, func(val) {
obj["EPRLim"].setText(sprintf("%1.0f", math.floor(val))); obj["EPRLim"].setText(sprintf("%1.0f", math.floor(val)));
obj["EPRLim-decimal"].setText(sprintf("%03d", (val - int(val)) * 1000)); obj["EPRLim-decimal"].setText(sprintf("%03d", (val - int(val)) * 1000));
}), }),
props.UpdateManager.FromHashList(["fadecPower1", "fadecPower2", "fadecPowerStart","thrustLimit"], nil, func(val) { props.UpdateManager.FromHashValue("n1Limit", 0.01, func(val) {
obj["N1Lim"].setText(sprintf("%s", math.floor(val + 0.05)));
obj["N1Lim-decimal"].setText(sprintf("%s", int(10 * math.mod(val + 0.05, 1))));
}),
props.UpdateManager.FromHashList(["fadecPower1", "fadecPower2", "fadecPowerStart", "thrustLimit", "N1_mode_1", "N1_mode_2"], nil, func(val) {
if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) { if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) {
obj["EPRLim-mode"].show(); if (val.N1_mode_1 > 0 and val.N1_mode_2 > 0) {
obj["EPRLim-XX"].hide(); if (val.N1_mode_1 == 2 and val.N1_mode_2 == 2) {
obj["EPRLim-XX2"].hide(); obj["N1Lim"].hide();
obj["N1Lim-decimal"].hide();
obj["N1Lim-decpnt"].hide();
obj["N1Lim-percent"].hide();
obj["N1Lim-mode"].hide();
obj["N1Lim-XX"].show();
obj["N1Lim-XX2"].show();
} else {
obj["N1Lim"].show();
obj["N1Lim-decimal"].show();
obj["N1Lim-decpnt"].show();
obj["N1Lim-percent"].show();
obj["N1Lim-mode"].show();
obj["N1Lim-XX"].hide();
obj["N1Lim-XX2"].hide();
}
obj["EPRMode"].hide();
obj["N1Mode"].show();
} else {
obj["EPRLim"].show();
obj["EPRLim-decimal"].show();
obj["EPRLim-decpnt"].show();
obj["EPRLim-mode"].show();
obj["EPRLim-XX"].hide();
obj["EPRLim-XX2"].hide();
obj["EPRMode"].show();
obj["N1Mode"].hide();
}
} else { } else {
obj["EPRLim"].hide();
obj["EPRLim-decimal"].hide();
obj["EPRLim-decpnt"].hide();
obj["EPRLim-mode"].hide(); obj["EPRLim-mode"].hide();
obj["EPRLim-XX"].show(); obj["EPRLim-XX"].show();
obj["EPRLim-XX2"].show(); obj["EPRLim-XX2"].show();
obj["EPRMode"].show();
obj["N1Mode"].hide();
} }
if (val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) { if ((val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) and val.thrustLimit == "FLX" and val.N1_mode_1 == 0 and val.N1_mode_2 == 0) {
obj["EPRLim"].show();
obj["EPRLim-decpnt"].show();
obj["EPRLim-decimal"].show();
} else {
obj["EPRLim"].hide();
obj["EPRLim-decpnt"].hide();
obj["EPRLim-decimal"].hide();
}
if ((val.fadecPower1 or val.fadecPower2 or val.fadecPowerStart) and val.thrustLimit == "FLX") {
obj["FlxLimDegreesC"].show(); obj["FlxLimDegreesC"].show();
obj["FlxLimTemp"].show(); obj["FlxLimTemp"].show();
} else { } else {
@ -313,24 +336,6 @@ var canvas_upperECAM = {
obj["FlxLimTemp"].hide(); obj["FlxLimTemp"].hide();
} }
}), }),
props.UpdateManager.FromHashValue("N1_mode_1", nil, func(val) {
if (systems.FADEC_S.Eng1.n1.getValue() == 1 and val) {
obj["N11-thr"].show();
obj["N11-ylim"].hide(); # Keep it hidden, since N1 mode limit calculation is not done yet
} else {
obj["N11-thr"].hide();
obj["N11-ylim"].hide();
}
}),
props.UpdateManager.FromHashValue("N1_mode_2", nil, func(val) {
if (systems.FADEC_S.Eng2.n1.getValue() == 1 and val) {
obj["N12-thr"].show();
obj["N12-ylim"].hide(); # Keep it hidden, since N1 mode limit calculation is not done yet
} else {
obj["N12-thr"].hide();
obj["N12-ylim"].hide();
}
}),
]; ];
obj.update_items_fadec_powered_egt = [ obj.update_items_fadec_powered_egt = [
@ -467,16 +472,16 @@ var canvas_upperECAM = {
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", 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", "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","FlapTxt","FlapDots","N1Lim-mode","N1Lim","N1Lim-decpnt","N1Lim-decimal","N1Lim-percent","N1Lim-XX","N1Lim-XX2","REV1", "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","ECAMR1", "ECAMR2", "ECAMR3", "ECAMR4", "ECAMR5", "ECAMR6", "ECAMR7", "ECAMR8", "ECAM_Right", "REV1-box","REV2","REV2-box","ECAM_Left","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","ECAMR1","ECAMR2","ECAMR3","ECAMR4","ECAMR5","ECAMR6","ECAMR7","ECAMR8","ECAM_Right","FOB-weight-unit","FFlow-weight-unit","SlatAlphaLock",
"FOB-weight-unit","FFlow-weight-unit","SlatAlphaLock","SlatIndicator","FlapIndicator","SlatLine","FlapLine","aFloor","FlxLimDegreesC","FlxLimTemp"]; "SlatIndicator","FlapIndicator","SlatLine","FlapLine","aFloor","FlxLimDegreesC","FlxLimTemp"];
}, },
getKeysIAE: func() { getKeysIAE: func() {
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", 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", "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", "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","FlapTxt","FlapDots","EPRLim-mode","EPRLim","EPRLim-decpnt","EPRLim-decimal","EPRLim-XX","EPRLim-XX2","REV1","REV1-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","EPRMode",
"REV2","REV2-box","ECAM_Left","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8", "ECAMR1", "ECAMR2", "ECAMR3", "ECAMR4", "ECAMR5", "ECAMR6", "ECAMR7", "ECAMR8", "ECAM_Right", "N1Lim-mode","N1Lim","N1Lim-decpnt","N1Lim-decimal","N1Lim-percent","N1Lim-XX","N1Lim-XX2","N1Mode","REV1","REV1-box","REV2","REV2-box","ECAM_Left","ECAML1","ECAML2","ECAML3","ECAML4","ECAML5","ECAML6","ECAML7","ECAML8","ECAMR1","ECAMR2","ECAMR3",
"FFlow1-weight-unit", "FFlow2-weight-unit", "FOB-weight-unit","SlatAlphaLock","SlatIndicator","FlapIndicator","SlatLine","FlapLine","aFloor","FlxLimDegreesC","FlxLimTemp"]; "ECAMR4","ECAMR5","ECAMR6","ECAMR7","ECAMR8","ECAM_Right","FFlow1-weight-unit", "FFlow2-weight-unit", "FOB-weight-unit","SlatAlphaLock","SlatIndicator","FlapIndicator","SlatLine","FlapLine","aFloor","FlxLimDegreesC","FlxLimTemp"];
}, },
getKeysTest: func() { getKeysTest: func() {
return ["Test_white","Test_text"]; return ["Test_white","Test_text"];
@ -847,10 +852,26 @@ var canvas_upperECAM = {
updateFadecN1Power1: func(val) { updateFadecN1Power1: func(val) {
if (me.typeString == "IAE") { if (me.typeString == "IAE") {
if (val.reverser_1 < 0.01 and val.eng1_epr == 1 and val.N1_mode_1 != 1) { if (val.reverser_1 < 0.01 and val.eng1_epr == 1 and val.N1_mode_1 == 0) {
me["EPR1-thr"].show(); me["EPR1-thr"].show();
me["N11-thr"].hide();
me["N11-ylim"].hide();
} else if (val.reverser_1 < 0.01 and val.eng1_n1 == 1) {
me["EPR1-thr"].hide();
me["N11-thr"].show();
if (val.N1_mode_1 == 1) {
me["N11-ylim"].show();
} else {
me["N11-ylim"].hide();
}
} else { } else {
me["EPR1-thr"].hide(); me["EPR1-thr"].hide();
me["N11-thr"].hide();
if (val.N1_mode_1 == 1) {
me["N11-ylim"].show();
} else {
me["N11-ylim"].hide();
}
} }
} else { } else {
if (val.reverser_1 < 0.01 and val.eng1_n1 == 1) { if (val.reverser_1 < 0.01 and val.eng1_n1 == 1) {
@ -876,10 +897,26 @@ var canvas_upperECAM = {
}, },
updateFadecN1Power2: func(val) { updateFadecN1Power2: func(val) {
if (me.typeString == "IAE") { if (me.typeString == "IAE") {
if (val.reverser_2 < 0.01 and val.eng2_epr == 1 and val.N1_mode_2 != 1) { if (val.reverser_2 < 0.01 and val.eng2_epr == 1 and val.N1_mode_2 == 0) {
me["EPR2-thr"].show(); me["EPR2-thr"].show();
me["N12-thr"].hide();
me["N12-ylim"].hide();
} else if (val.reverser_2 < 0.01 and val.eng2_n1 == 1) {
me["EPR2-thr"].hide();
me["N12-thr"].show();
if (val.N1_mode_2 == 1) {
me["N12-ylim"].show();
} else {
me["N12-ylim"].hide();
}
} else { } else {
me["EPR2-thr"].hide(); me["EPR2-thr"].hide();
me["N12-thr"].hide();
if (val.N1_mode_2 == 1) {
me["N12-ylim"].show();
} else {
me["N12-ylim"].hide();
}
} }
} else { } else {
if (val.reverser_2 < 0.01 and val.eng2_n1 == 1) { if (val.reverser_2 < 0.01 and val.eng2_n1 == 1) {

View file

@ -42,8 +42,8 @@
id="namedview371" id="namedview371"
showgrid="true" showgrid="true"
inkscape:zoom="2.8284271" inkscape:zoom="2.8284271"
inkscape:cx="267.87446" inkscape:cx="1039.9444"
inkscape:cy="1220.4634" inkscape:cy="1186.7028"
inkscape:window-x="1592" inkscape:window-x="1592"
inkscape:window-y="-8" inkscape:window-y="-8"
inkscape:window-maximized="1" inkscape:window-maximized="1"
@ -485,32 +485,34 @@
transform="scale(0.87983286,1.1365795)" transform="scale(0.87983286,1.1365795)"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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="1101.5182" x="1117.8848"
y="76.473091" y="76.473091"
id="N1Lim-percent" id="N1Lim-percent"
inkscape:label="#text4443"><tspan inkscape:label="#text4443"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line" sodipodi:role="line"
id="tspan4445" id="tspan4445"
x="1101.5182" x="1117.8848"
y="76.473091" y="76.473091"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">%</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">%</tspan></text>
<text <text
transform="scale(0.87983286,1.1365795)" transform="scale(0.87983286,1.1365795)"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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="1031.3179" x="1047.6844"
y="44.548805" y="44.548805"
id="N1Lim-mode" id="N1Lim-mode"
inkscape:label="#text4447"><tspan inkscape:label="#text4447"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line" sodipodi:role="line"
id="tspan4449" id="tspan4449"
x="1031.3179" x="1047.6844"
y="44.548805" y="44.548805"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">TOGA</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">TOGA</tspan></text>
<rect <rect
inkscape:label="#rect4233" inkscape:label="#rect4233"
y="81.593391" y="81.593391"
x="920.31787" x="934.71777"
height="4" height="4"
width="4" width="4"
id="N1Lim-decpnt" id="N1Lim-decpnt"
@ -518,14 +520,15 @@
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;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" style="font-style:normal;font-weight:normal;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="941.91693" x="956.75433"
y="84.634254" y="84.634254"
id="N1Lim" id="N1Lim"
inkscape:label="#text4314" inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"><tspan transform="scale(0.97051272,1.0303832)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line" sodipodi:role="line"
id="tspan4455" id="tspan4455"
x="941.91693" x="956.75433"
y="84.634254" y="84.634254"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1">00</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1">00</tspan></text>
<text <text
@ -533,12 +536,13 @@
inkscape:label="#text4314" inkscape:label="#text4314"
id="N1Lim-decimal" id="N1Lim-decimal"
y="84.680061" y="84.680061"
x="982.33813" x="997.17554"
style="font-style:normal;font-weight:normal;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" style="font-style:normal;font-weight:normal;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 xml:space="preserve"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1"
y="84.680061" y="84.680061"
x="982.33813" x="997.17554"
id="tspan4459" id="tspan4459"
sodipodi:role="line">0</tspan></text> sodipodi:role="line">0</tspan></text>
<text <text
@ -546,25 +550,27 @@
inkscape:label="#text4314" inkscape:label="#text4314"
id="N1Lim-XX" id="N1Lim-XX"
y="48.075035" y="48.075035"
x="935.82275" x="950.66016"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan xml:space="preserve"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1"
y="48.075035" y="48.075035"
x="935.82275" x="950.66016"
id="tspan4475" id="tspan4475"
sodipodi:role="line">XX</tspan></text> sodipodi:role="line">XX</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="940.11499" x="954.95239"
y="84.566315" y="84.566315"
id="N1Lim-XX2" id="N1Lim-XX2"
inkscape:label="#text4314" inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"><tspan transform="scale(0.97051272,1.0303832)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line" sodipodi:role="line"
id="tspan4479" id="tspan4479"
x="940.11499" x="954.95239"
y="84.566315" y="84.566315"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text>
<text <text
@ -1433,25 +1439,27 @@
inkscape:label="#text4314" inkscape:label="#text4314"
id="FlxLimTemp" id="FlxLimTemp"
y="122.78025" y="122.78025"
x="919.25299" x="934.09039"
style="font-style:normal;font-weight:normal;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;" style="font-style:normal;font-weight:normal;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 xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1;" sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1"
y="122.78025" y="122.78025"
x="919.25299" x="934.09039"
id="tspan1029" id="tspan1029"
sodipodi:role="line">00</tspan></text> sodipodi:role="line">00</tspan></text>
<text <text
inkscape:label="#text4443" inkscape:label="#text4443"
id="FlxLimDegreesC" id="FlxLimDegreesC"
y="108.14707" y="108.14707"
x="1061.88" x="1078.2466"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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" xml:space="preserve"
transform="scale(0.87983286,1.1365795)"><tspan transform="scale(0.87983286,1.1365795)"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1"
y="108.14707" y="108.14707"
x="1061.88" x="1078.2466"
id="tspan1033" id="tspan1033"
sodipodi:role="line">°C</tspan></text> sodipodi:role="line">°C</tspan></text>
<text <text

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 89 KiB

View file

@ -12,7 +12,7 @@
viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"
version="1.1" version="1.1"
id="svg2" id="svg2"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)" inkscape:version="0.91 r13725"
sodipodi:docname="iae-eis2.svg"> sodipodi:docname="iae-eis2.svg">
<metadata <metadata
id="metadata375"> id="metadata375">
@ -37,14 +37,14 @@
guidetolerance="10" guidetolerance="10"
inkscape:pageopacity="1" inkscape:pageopacity="1"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1366" inkscape:window-width="1920"
inkscape:window-height="705" inkscape:window-height="1030"
id="namedview371" id="namedview371"
showgrid="false" showgrid="false"
inkscape:zoom="0.43942712" inkscape:zoom="1.7577085"
inkscape:cx="623.25944" inkscape:cx="1335.9862"
inkscape:cy="936.15332" inkscape:cy="1219.9392"
inkscape:window-x="-8" inkscape:window-x="1592"
inkscape:window-y="-8" inkscape:window-y="-8"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg2" inkscape:current-layer="svg2"
@ -54,27 +54,6 @@
type="xygrid" type="xygrid"
id="grid5153" /> id="grid5153" />
</sodipodi:namedview> </sodipodi:namedview>
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#0dc04b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="EPRLim-decpnt"
width="4"
height="3.999985"
x="890.70789"
y="81.59346"
inkscape:label="#rect4233" />
<text
transform="scale(0.97051451,1.0303813)"
inkscape:label="#text4314"
id="EPRLim"
y="84.634453"
x="907.75818"
style="font-style:normal;font-weight:normal;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:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1"
y="84.634453"
x="907.75818"
id="tspan4464"
sodipodi:role="line">1</tspan></text>
<rect <rect
transform="matrix(0,1,-1,0,0,0)" transform="matrix(0,1,-1,0,0,0)"
y="-649.10144" y="-649.10144"
@ -478,58 +457,6 @@
x="981.66541" x="981.66541"
y="480.23584" y="480.23584"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text>
<text
transform="scale(0.87983286,1.1365795)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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="1031.3179"
y="44.548805"
id="EPRLim-mode"
inkscape:label="#text4447"><tspan
sodipodi:role="line"
id="tspan4449"
x="1031.3179"
y="44.548805"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">TOGA</tspan></text>
<text
transform="scale(0.97051272,1.0303832)"
inkscape:label="#text4314"
id="EPRLim-XX"
y="48.075035"
x="935.82275"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;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:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1"
y="48.075035"
x="935.82275"
id="tspan4475"
sodipodi:role="line">XX</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="930.78723"
y="84.68026"
id="EPRLim-decimal"
inkscape:label="#text4314"
transform="scale(0.97051451,1.0303813)"><tspan
sodipodi:role="line"
id="tspan4468"
x="930.78723"
y="84.68026"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1">000</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="940.11499"
y="84.566315"
id="EPRLim-XX2"
inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"><tspan
sodipodi:role="line"
id="tspan4479"
x="940.11499"
y="84.566315"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text>
<text <text
transform="scale(0.97051272,1.0303832)" transform="scale(0.97051272,1.0303832)"
inkscape:label="#text4314" inkscape:label="#text4314"
@ -1500,7 +1427,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="REV2-box" id="REV2-box"
d="m 655.36702,147.06058 135.46981,0 0,-42.37155 -138.24966,0 0,42.37155" d="m 655.36702,147.06058 135.46981,0 0,-42.37155 -138.24966,0 0,42.37155"
style="fill:#000000;stroke:#666666;stroke-width:2.85113335;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:#000000;stroke:#666666;stroke-width:2.8512;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
@ -1796,32 +1723,117 @@
width="137.63597" width="137.63597"
id="SlatLine_clip" id="SlatLine_clip"
style="opacity:0.5;fill:none;fill-opacity:1;stroke:none;stroke-width:3.34691048;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> style="opacity:0.5;fill:none;fill-opacity:1;stroke:none;stroke-width:3.34691048;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<text <g
transform="scale(0.97051272,1.0303832)" id="EPRMode"
inkscape:label="#text4314" inkscape:label="#g3608"
id="FlxLimTemp" transform="translate(14.4,0)">
y="122.78025" <rect
x="919.25299" inkscape:label="#rect4233"
style="font-style:normal;font-weight:normal;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;" y="81.59346"
xml:space="preserve"><tspan x="890.70789"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1;" height="3.999985"
y="122.78025" width="4"
id="EPRLim-decpnt"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#0dc04b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;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="907.75818"
y="84.634453"
id="EPRLim"
inkscape:label="#text4314"
transform="scale(0.97051451,1.0303813)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line"
id="tspan4464"
x="907.75818"
y="84.634453"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1">1</tspan></text>
<text
inkscape:label="#text4447"
id="EPRLim-mode"
y="44.548805"
x="1031.3179"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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"
transform="scale(0.87983286,1.1365795)"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1"
y="44.548805"
x="1031.3179"
id="tspan4449"
sodipodi:role="line">TOGA</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="935.82275"
y="48.075035"
id="EPRLim-XX"
inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line"
id="tspan4475"
x="935.82275"
y="48.075035"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text>
<text
transform="scale(0.97051451,1.0303813)"
inkscape:label="#text4314"
id="EPRLim-decimal"
y="84.68026"
x="930.78723"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;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="84.68026"
x="930.78723"
id="tspan4468"
sodipodi:role="line">000</tspan></text>
<text
transform="scale(0.97051272,1.0303832)"
inkscape:label="#text4314"
id="EPRLim-XX2"
y="84.566315"
x="940.11499"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1"
y="84.566315"
x="940.11499"
id="tspan4479"
sodipodi:role="line">XX</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;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="919.25299" x="919.25299"
id="tspan1029" y="122.78025"
sodipodi:role="line">00</tspan></text> id="FlxLimTemp"
<text inkscape:label="#text4314"
inkscape:label="#text4443" transform="scale(0.97051272,1.0303832)"
id="FlxLimDegreesC" sodipodi:linespacing="0%"><tspan
y="108.14707" sodipodi:role="line"
x="1061.88" id="tspan1029"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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="919.25299"
xml:space="preserve" y="122.78025"
transform="scale(0.87983286,1.1365795)"><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1">00</tspan></text>
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1" <text
y="108.14707" transform="scale(0.87983286,1.1365795)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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="1061.88" x="1061.88"
id="tspan1033" y="108.14707"
sodipodi:role="line">°C</tspan></text> id="FlxLimDegreesC"
inkscape:label="#text4443"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line"
id="tspan1033"
x="1061.88"
y="108.14707"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1">°C</tspan></text>
</g>
<text <text
inkscape:label="#text4447" inkscape:label="#text4447"
id="aFloor" id="aFloor"
@ -1836,4 +1848,127 @@
x="111.21719" x="111.21719"
id="tspan3554" id="tspan3554"
sodipodi:role="line">A FLOOR</tspan></text> sodipodi:role="line">A FLOOR</tspan></text>
<g
id="N1Mode"
inkscape:label="#g4467"
transform="translate(14.4,0)">
<text
inkscape:label="#text4443"
id="N1Lim-percent"
y="110.93495"
x="1097.0216"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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"
transform="scale(0.87983286,1.1365795)"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25978088px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1"
y="110.93495"
x="1097.0216"
id="tspan4445"
sodipodi:role="line">%</tspan></text>
<text
inkscape:label="#text4447"
id="N1Lim-mode"
y="79.010666"
x="1031.3179"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';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"
transform="scale(0.87983286,1.1365795)"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1"
y="79.010666"
x="1031.3179"
id="tspan287"
sodipodi:role="line">TOGA</tspan></text>
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#0dc04b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="N1Lim-decpnt"
width="4"
height="4"
x="916.36169"
y="120.76204"
inkscape:label="#rect4233" />
<text
transform="scale(0.97051272,1.0303832)"
inkscape:label="#text4314"
id="N1Lim"
y="122.64793"
x="937.84045"
style="font-style:normal;font-weight:normal;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"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1"
y="122.64793"
x="937.84045"
id="tspan4455"
sodipodi:role="line">00</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;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="978.26166"
y="122.69373"
id="N1Lim-decimal"
inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line"
id="tspan4459"
x="978.26166"
y="122.69373"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1">0</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="935.82275"
y="86.088707"
id="N1Lim-XX"
inkscape:label="#text4314"
transform="scale(0.97051272,1.0303832)"
sodipodi:linespacing="0%"><tspan
sodipodi:role="line"
id="tspan295"
x="935.82275"
y="86.088707"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1">XX</tspan></text>
<text
transform="scale(0.97051272,1.0303832)"
inkscape:label="#text4314"
id="N1Lim-XX2"
y="122.57999"
x="936.03851"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
sodipodi:linespacing="0%"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.71494293px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#bb6100;fill-opacity:1"
y="122.57999"
x="936.03851"
id="tspan298"
sodipodi:role="line">XX</tspan></text>
<text
sodipodi:linespacing="0%"
transform="scale(0.87983286,1.1365795)"
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1031.3179"
y="44.548603"
id="text3630"
inkscape:label="#text4447"><tspan
sodipodi:role="line"
id="tspan3632"
x="1031.3179"
y="44.548603"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1">N1 MODE</tspan></text>
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path3647"
d="m 817.4832,42.6632 0,-31.264421 180.5648,0 0,31.264421"
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 817.4832,101.744 0,31.26477 180.5648,0 0,-31.26477"
id="path4449"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 120 KiB